roojs-all.js
[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  * @singleton
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         isGecko = !isSafari && ua.indexOf("gecko") > -1,
61         isBorderBox = isIE && !isStrict,
62         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
63         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
64         isLinux = (ua.indexOf("linux") != -1),
65         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
66         isIOS = /iphone|ipad/.test(ua),
67         isTouch =  (function() {
68             try {
69                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
70                     window.addEventListener('touchstart', function __set_has_touch__ () {
71                         Roo.isTouch = true;
72                         window.removeEventListener('touchstart', __set_has_touch__);
73                     });
74                     return false; // no touch on chrome!?
75                 }
76                 document.createEvent("TouchEvent");  
77                 return true;  
78             } catch (e) {  
79                 return false;  
80             } 
81             
82         })();
83     // remove css image flicker
84         if(isIE && !isIE7){
85         try{
86             document.execCommand("BackgroundImageCache", false, true);
87         }catch(e){}
88     }
89     
90     Roo.apply(Roo, {
91         /**
92          * True if the browser is in strict mode
93          * @type Boolean
94          */
95         isStrict : isStrict,
96         /**
97          * True if the page is running over SSL
98          * @type Boolean
99          */
100         isSecure : isSecure,
101         /**
102          * True when the document is fully initialized and ready for action
103          * @type Boolean
104          */
105         isReady : false,
106         /**
107          * Turn on debugging output (currently only the factory uses this)
108          * @type Boolean
109          */
110         
111         debug: false,
112
113         /**
114          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
115          * @type Boolean
116          */
117         enableGarbageCollector : true,
118
119         /**
120          * True to automatically purge event listeners after uncaching an element (defaults to false).
121          * Note: this only happens if enableGarbageCollector is true.
122          * @type Boolean
123          */
124         enableListenerCollection:false,
125
126         /**
127          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
128          * the IE insecure content warning (defaults to javascript:false).
129          * @type String
130          */
131         SSL_SECURE_URL : "javascript:false",
132
133         /**
134          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
135          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
136          * @type String
137          */
138         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
139
140         emptyFn : function(){},
141         
142         /**
143          * Copies all the properties of config to obj if they don't already exist.
144          * @param {Object} obj The receiver of the properties
145          * @param {Object} config The source of the properties
146          * @return {Object} returns obj
147          */
148         applyIf : function(o, c){
149             if(o && c){
150                 for(var p in c){
151                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
152                 }
153             }
154             return o;
155         },
156
157         /**
158          * Applies event listeners to elements by selectors when the document is ready.
159          * The event name is specified with an @ suffix.
160 <pre><code>
161 Roo.addBehaviors({
162    // add a listener for click on all anchors in element with id foo
163    '#foo a@click' : function(e, t){
164        // do something
165    },
166
167    // add the same listener to multiple selectors (separated by comma BEFORE the @)
168    '#foo a, #bar span.some-class@mouseover' : function(){
169        // do something
170    }
171 });
172 </code></pre>
173          * @param {Object} obj The list of behaviors to apply
174          */
175         addBehaviors : function(o){
176             if(!Roo.isReady){
177                 Roo.onReady(function(){
178                     Roo.addBehaviors(o);
179                 });
180                 return;
181             }
182             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
183             for(var b in o){
184                 var parts = b.split('@');
185                 if(parts[1]){ // for Object prototype breakers
186                     var s = parts[0];
187                     if(!cache[s]){
188                         cache[s] = Roo.select(s);
189                     }
190                     cache[s].on(parts[1], o[b]);
191                 }
192             }
193             cache = null;
194         },
195
196         /**
197          * Generates unique ids. If the element already has an id, it is unchanged
198          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
199          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
200          * @return {String} The generated Id.
201          */
202         id : function(el, prefix){
203             prefix = prefix || "roo-gen";
204             el = Roo.getDom(el);
205             var id = prefix + (++idSeed);
206             return el ? (el.id ? el.id : (el.id = id)) : id;
207         },
208          
209        
210         /**
211          * Extends one class with another class and optionally overrides members with the passed literal. This class
212          * also adds the function "override()" to the class that can be used to override
213          * members on an instance.
214          * @param {Object} subclass The class inheriting the functionality
215          * @param {Object} superclass The class being extended
216          * @param {Object} overrides (optional) A literal with members
217          * @method extend
218          */
219         extend : function(){
220             // inline overrides
221             var io = function(o){
222                 for(var m in o){
223                     this[m] = o[m];
224                 }
225             };
226             return function(sb, sp, overrides){
227                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
228                     overrides = sp;
229                     sp = sb;
230                     sb = function(){sp.apply(this, arguments);};
231                 }
232                 var F = function(){}, sbp, spp = sp.prototype;
233                 F.prototype = spp;
234                 sbp = sb.prototype = new F();
235                 sbp.constructor=sb;
236                 sb.superclass=spp;
237                 
238                 if(spp.constructor == Object.prototype.constructor){
239                     spp.constructor=sp;
240                    
241                 }
242                 
243                 sb.override = function(o){
244                     Roo.override(sb, o);
245                 };
246                 sbp.override = io;
247                 Roo.override(sb, overrides);
248                 return sb;
249             };
250         }(),
251
252         /**
253          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
254          * Usage:<pre><code>
255 Roo.override(MyClass, {
256     newMethod1: function(){
257         // etc.
258     },
259     newMethod2: function(foo){
260         // etc.
261     }
262 });
263  </code></pre>
264          * @param {Object} origclass The class to override
265          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
266          * containing one or more methods.
267          * @method override
268          */
269         override : function(origclass, overrides){
270             if(overrides){
271                 var p = origclass.prototype;
272                 for(var method in overrides){
273                     p[method] = overrides[method];
274                 }
275             }
276         },
277         /**
278          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
279          * <pre><code>
280 Roo.namespace('Company', 'Company.data');
281 Company.Widget = function() { ... }
282 Company.data.CustomStore = function(config) { ... }
283 </code></pre>
284          * @param {String} namespace1
285          * @param {String} namespace2
286          * @param {String} etc
287          * @method namespace
288          */
289         namespace : function(){
290             var a=arguments, o=null, i, j, d, rt;
291             for (i=0; i<a.length; ++i) {
292                 d=a[i].split(".");
293                 rt = d[0];
294                 /** eval:var:o */
295                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
296                 for (j=1; j<d.length; ++j) {
297                     o[d[j]]=o[d[j]] || {};
298                     o=o[d[j]];
299                 }
300             }
301         },
302         /**
303          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
304          * <pre><code>
305 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
306 Roo.factory(conf, Roo.data);
307 </code></pre>
308          * @param {String} classname
309          * @param {String} namespace (optional)
310          * @method factory
311          */
312          
313         factory : function(c, ns)
314         {
315             // no xtype, no ns or c.xns - or forced off by c.xns
316             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
317                 return c;
318             }
319             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
320             if (c.constructor == ns[c.xtype]) {// already created...
321                 return c;
322             }
323             if (ns[c.xtype]) {
324                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
325                 var ret = new ns[c.xtype](c);
326                 ret.xns = false;
327                 return ret;
328             }
329             c.xns = false; // prevent recursion..
330             return c;
331         },
332          /**
333          * Logs to console if it can.
334          *
335          * @param {String|Object} string
336          * @method log
337          */
338         log : function(s)
339         {
340             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
341                 return; // alerT?
342             }
343             console.log(s);
344             
345         },
346         /**
347          * 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.
348          * @param {Object} o
349          * @return {String}
350          */
351         urlEncode : function(o){
352             if(!o){
353                 return "";
354             }
355             var buf = [];
356             for(var key in o){
357                 var ov = o[key], k = Roo.encodeURIComponent(key);
358                 var type = typeof ov;
359                 if(type == 'undefined'){
360                     buf.push(k, "=&");
361                 }else if(type != "function" && type != "object"){
362                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
363                 }else if(ov instanceof Array){
364                     if (ov.length) {
365                             for(var i = 0, len = ov.length; i < len; i++) {
366                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
367                             }
368                         } else {
369                             buf.push(k, "=&");
370                         }
371                 }
372             }
373             buf.pop();
374             return buf.join("");
375         },
376          /**
377          * Safe version of encodeURIComponent
378          * @param {String} data 
379          * @return {String} 
380          */
381         
382         encodeURIComponent : function (data)
383         {
384             try {
385                 return encodeURIComponent(data);
386             } catch(e) {} // should be an uri encode error.
387             
388             if (data == '' || data == null){
389                return '';
390             }
391             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
392             function nibble_to_hex(nibble){
393                 var chars = '0123456789ABCDEF';
394                 return chars.charAt(nibble);
395             }
396             data = data.toString();
397             var buffer = '';
398             for(var i=0; i<data.length; i++){
399                 var c = data.charCodeAt(i);
400                 var bs = new Array();
401                 if (c > 0x10000){
402                         // 4 bytes
403                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
404                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
405                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
406                     bs[3] = 0x80 | (c & 0x3F);
407                 }else if (c > 0x800){
408                          // 3 bytes
409                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
410                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
411                     bs[2] = 0x80 | (c & 0x3F);
412                 }else if (c > 0x80){
413                        // 2 bytes
414                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
415                     bs[1] = 0x80 | (c & 0x3F);
416                 }else{
417                         // 1 byte
418                     bs[0] = c;
419                 }
420                 for(var j=0; j<bs.length; j++){
421                     var b = bs[j];
422                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
423                             + nibble_to_hex(b &0x0F);
424                     buffer += '%'+hex;
425                }
426             }
427             return buffer;    
428              
429         },
430
431         /**
432          * 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]}.
433          * @param {String} string
434          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
435          * @return {Object} A literal with members
436          */
437         urlDecode : function(string, overwrite){
438             if(!string || !string.length){
439                 return {};
440             }
441             var obj = {};
442             var pairs = string.split('&');
443             var pair, name, value;
444             for(var i = 0, len = pairs.length; i < len; i++){
445                 pair = pairs[i].split('=');
446                 name = decodeURIComponent(pair[0]);
447                 value = decodeURIComponent(pair[1]);
448                 if(overwrite !== true){
449                     if(typeof obj[name] == "undefined"){
450                         obj[name] = value;
451                     }else if(typeof obj[name] == "string"){
452                         obj[name] = [obj[name]];
453                         obj[name].push(value);
454                     }else{
455                         obj[name].push(value);
456                     }
457                 }else{
458                     obj[name] = value;
459                 }
460             }
461             return obj;
462         },
463
464         /**
465          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
466          * passed array is not really an array, your function is called once with it.
467          * The supplied function is called with (Object item, Number index, Array allItems).
468          * @param {Array/NodeList/Mixed} array
469          * @param {Function} fn
470          * @param {Object} scope
471          */
472         each : function(array, fn, scope){
473             if(typeof array.length == "undefined" || typeof array == "string"){
474                 array = [array];
475             }
476             for(var i = 0, len = array.length; i < len; i++){
477                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
478             }
479         },
480
481         // deprecated
482         combine : function(){
483             var as = arguments, l = as.length, r = [];
484             for(var i = 0; i < l; i++){
485                 var a = as[i];
486                 if(a instanceof Array){
487                     r = r.concat(a);
488                 }else if(a.length !== undefined && !a.substr){
489                     r = r.concat(Array.prototype.slice.call(a, 0));
490                 }else{
491                     r.push(a);
492                 }
493             }
494             return r;
495         },
496
497         /**
498          * Escapes the passed string for use in a regular expression
499          * @param {String} str
500          * @return {String}
501          */
502         escapeRe : function(s) {
503             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
504         },
505
506         // internal
507         callback : function(cb, scope, args, delay){
508             if(typeof cb == "function"){
509                 if(delay){
510                     cb.defer(delay, scope, args || []);
511                 }else{
512                     cb.apply(scope, args || []);
513                 }
514             }
515         },
516
517         /**
518          * Return the dom node for the passed string (id), dom node, or Roo.Element
519          * @param {String/HTMLElement/Roo.Element} el
520          * @return HTMLElement
521          */
522         getDom : function(el){
523             if(!el){
524                 return null;
525             }
526             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
527         },
528
529         /**
530         * Shorthand for {@link Roo.ComponentMgr#get}
531         * @param {String} id
532         * @return Roo.Component
533         */
534         getCmp : function(id){
535             return Roo.ComponentMgr.get(id);
536         },
537          
538         num : function(v, defaultValue){
539             if(typeof v != 'number'){
540                 return defaultValue;
541             }
542             return v;
543         },
544
545         destroy : function(){
546             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
547                 var as = a[i];
548                 if(as){
549                     if(as.dom){
550                         as.removeAllListeners();
551                         as.remove();
552                         continue;
553                     }
554                     if(typeof as.purgeListeners == 'function'){
555                         as.purgeListeners();
556                     }
557                     if(typeof as.destroy == 'function'){
558                         as.destroy();
559                     }
560                 }
561             }
562         },
563
564         // inpired by a similar function in mootools library
565         /**
566          * Returns the type of object that is passed in. If the object passed in is null or undefined it
567          * return false otherwise it returns one of the following values:<ul>
568          * <li><b>string</b>: If the object passed is a string</li>
569          * <li><b>number</b>: If the object passed is a number</li>
570          * <li><b>boolean</b>: If the object passed is a boolean value</li>
571          * <li><b>function</b>: If the object passed is a function reference</li>
572          * <li><b>object</b>: If the object passed is an object</li>
573          * <li><b>array</b>: If the object passed is an array</li>
574          * <li><b>regexp</b>: If the object passed is a regular expression</li>
575          * <li><b>element</b>: If the object passed is a DOM Element</li>
576          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
577          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
578          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
579          * @param {Mixed} object
580          * @return {String}
581          */
582         type : function(o){
583             if(o === undefined || o === null){
584                 return false;
585             }
586             if(o.htmlElement){
587                 return 'element';
588             }
589             var t = typeof o;
590             if(t == 'object' && o.nodeName) {
591                 switch(o.nodeType) {
592                     case 1: return 'element';
593                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
594                 }
595             }
596             if(t == 'object' || t == 'function') {
597                 switch(o.constructor) {
598                     case Array: return 'array';
599                     case RegExp: return 'regexp';
600                 }
601                 if(typeof o.length == 'number' && typeof o.item == 'function') {
602                     return 'nodelist';
603                 }
604             }
605             return t;
606         },
607
608         /**
609          * Returns true if the passed value is null, undefined or an empty string (optional).
610          * @param {Mixed} value The value to test
611          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
612          * @return {Boolean}
613          */
614         isEmpty : function(v, allowBlank){
615             return v === null || v === undefined || (!allowBlank ? v === '' : false);
616         },
617         
618         /** @type Boolean */
619         isOpera : isOpera,
620         /** @type Boolean */
621         isSafari : isSafari,
622         /** @type Boolean */
623         isFirefox : isFirefox,
624         /** @type Boolean */
625         isIE : isIE,
626         /** @type Boolean */
627         isIE7 : isIE7,
628         /** @type Boolean */
629         isIE11 : isIE11,
630         /** @type Boolean */
631         isGecko : isGecko,
632         /** @type Boolean */
633         isBorderBox : isBorderBox,
634         /** @type Boolean */
635         isWindows : isWindows,
636         /** @type Boolean */
637         isLinux : isLinux,
638         /** @type Boolean */
639         isMac : isMac,
640         /** @type Boolean */
641         isIOS : isIOS,
642         /** @type Boolean */
643         isTouch : isTouch,
644
645         /**
646          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
647          * you may want to set this to true.
648          * @type Boolean
649          */
650         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
651         
652         
653                 
654         /**
655          * Selects a single element as a Roo Element
656          * This is about as close as you can get to jQuery's $('do crazy stuff')
657          * @param {String} selector The selector/xpath query
658          * @param {Node} root (optional) The start of the query (defaults to document).
659          * @return {Roo.Element}
660          */
661         selectNode : function(selector, root) 
662         {
663             var node = Roo.DomQuery.selectNode(selector,root);
664             return node ? Roo.get(node) : new Roo.Element(false);
665         }
666         
667     });
668
669
670 })();
671
672 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
673                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
674                 "Roo.app", "Roo.ux",
675                 "Roo.bootstrap",
676                 "Roo.bootstrap.dash");
677 /*
678  * Based on:
679  * Ext JS Library 1.1.1
680  * Copyright(c) 2006-2007, Ext JS, LLC.
681  *
682  * Originally Released Under LGPL - original licence link has changed is not relivant.
683  *
684  * Fork - LGPL
685  * <script type="text/javascript">
686  */
687
688 (function() {    
689     // wrappedn so fnCleanup is not in global scope...
690     if(Roo.isIE) {
691         function fnCleanUp() {
692             var p = Function.prototype;
693             delete p.createSequence;
694             delete p.defer;
695             delete p.createDelegate;
696             delete p.createCallback;
697             delete p.createInterceptor;
698
699             window.detachEvent("onunload", fnCleanUp);
700         }
701         window.attachEvent("onunload", fnCleanUp);
702     }
703 })();
704
705
706 /**
707  * @class Function
708  * These functions are available on every Function object (any JavaScript function).
709  */
710 Roo.apply(Function.prototype, {
711      /**
712      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
713      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
714      * Will create a function that is bound to those 2 args.
715      * @return {Function} The new function
716     */
717     createCallback : function(/*args...*/){
718         // make args available, in function below
719         var args = arguments;
720         var method = this;
721         return function() {
722             return method.apply(window, args);
723         };
724     },
725
726     /**
727      * Creates a delegate (callback) that sets the scope to obj.
728      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
729      * Will create a function that is automatically scoped to this.
730      * @param {Object} obj (optional) The object for which the scope is set
731      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
732      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
733      *                                             if a number the args are inserted at the specified position
734      * @return {Function} The new function
735      */
736     createDelegate : function(obj, args, appendArgs){
737         var method = this;
738         return function() {
739             var callArgs = args || arguments;
740             if(appendArgs === true){
741                 callArgs = Array.prototype.slice.call(arguments, 0);
742                 callArgs = callArgs.concat(args);
743             }else if(typeof appendArgs == "number"){
744                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
745                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
746                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
747             }
748             return method.apply(obj || window, callArgs);
749         };
750     },
751
752     /**
753      * Calls this function after the number of millseconds specified.
754      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
755      * @param {Object} obj (optional) The object for which the scope is set
756      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
757      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
758      *                                             if a number the args are inserted at the specified position
759      * @return {Number} The timeout id that can be used with clearTimeout
760      */
761     defer : function(millis, obj, args, appendArgs){
762         var fn = this.createDelegate(obj, args, appendArgs);
763         if(millis){
764             return setTimeout(fn, millis);
765         }
766         fn();
767         return 0;
768     },
769     /**
770      * Create a combined function call sequence of the original function + the passed function.
771      * The resulting function returns the results of the original function.
772      * The passed fcn is called with the parameters of the original function
773      * @param {Function} fcn The function to sequence
774      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
775      * @return {Function} The new function
776      */
777     createSequence : function(fcn, scope){
778         if(typeof fcn != "function"){
779             return this;
780         }
781         var method = this;
782         return function() {
783             var retval = method.apply(this || window, arguments);
784             fcn.apply(scope || this || window, arguments);
785             return retval;
786         };
787     },
788
789     /**
790      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
791      * The resulting function returns the results of the original function.
792      * The passed fcn is called with the parameters of the original function.
793      * @addon
794      * @param {Function} fcn The function to call before the original
795      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
796      * @return {Function} The new function
797      */
798     createInterceptor : function(fcn, scope){
799         if(typeof fcn != "function"){
800             return this;
801         }
802         var method = this;
803         return function() {
804             fcn.target = this;
805             fcn.method = method;
806             if(fcn.apply(scope || this || window, arguments) === false){
807                 return;
808             }
809             return method.apply(this || window, arguments);
810         };
811     }
812 });
813 /*
814  * Based on:
815  * Ext JS Library 1.1.1
816  * Copyright(c) 2006-2007, Ext JS, LLC.
817  *
818  * Originally Released Under LGPL - original licence link has changed is not relivant.
819  *
820  * Fork - LGPL
821  * <script type="text/javascript">
822  */
823
824 Roo.applyIf(String, {
825     
826     /** @scope String */
827     
828     /**
829      * Escapes the passed string for ' and \
830      * @param {String} string The string to escape
831      * @return {String} The escaped string
832      * @static
833      */
834     escape : function(string) {
835         return string.replace(/('|\\)/g, "\\$1");
836     },
837
838     /**
839      * Pads the left side of a string with a specified character.  This is especially useful
840      * for normalizing number and date strings.  Example usage:
841      * <pre><code>
842 var s = String.leftPad('123', 5, '0');
843 // s now contains the string: '00123'
844 </code></pre>
845      * @param {String} string The original string
846      * @param {Number} size The total length of the output string
847      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
848      * @return {String} The padded string
849      * @static
850      */
851     leftPad : function (val, size, ch) {
852         var result = new String(val);
853         if(ch === null || ch === undefined || ch === '') {
854             ch = " ";
855         }
856         while (result.length < size) {
857             result = ch + result;
858         }
859         return result;
860     },
861
862     /**
863      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
864      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
865      * <pre><code>
866 var cls = 'my-class', text = 'Some text';
867 var s = String.format('<div class="{0}">{1}</div>', cls, text);
868 // s now contains the string: '<div class="my-class">Some text</div>'
869 </code></pre>
870      * @param {String} string The tokenized string to be formatted
871      * @param {String} value1 The value to replace token {0}
872      * @param {String} value2 Etc...
873      * @return {String} The formatted string
874      * @static
875      */
876     format : function(format){
877         var args = Array.prototype.slice.call(arguments, 1);
878         return format.replace(/\{(\d+)\}/g, function(m, i){
879             return Roo.util.Format.htmlEncode(args[i]);
880         });
881     }
882 });
883
884 /**
885  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
886  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
887  * they are already different, the first value passed in is returned.  Note that this method returns the new value
888  * but does not change the current string.
889  * <pre><code>
890 // alternate sort directions
891 sort = sort.toggle('ASC', 'DESC');
892
893 // instead of conditional logic:
894 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
895 </code></pre>
896  * @param {String} value The value to compare to the current string
897  * @param {String} other The new value to use if the string already equals the first value passed in
898  * @return {String} The new value
899  */
900  
901 String.prototype.toggle = function(value, other){
902     return this == value ? other : value;
903 };/*
904  * Based on:
905  * Ext JS Library 1.1.1
906  * Copyright(c) 2006-2007, Ext JS, LLC.
907  *
908  * Originally Released Under LGPL - original licence link has changed is not relivant.
909  *
910  * Fork - LGPL
911  * <script type="text/javascript">
912  */
913
914  /**
915  * @class Number
916  */
917 Roo.applyIf(Number.prototype, {
918     /**
919      * Checks whether or not the current number is within a desired range.  If the number is already within the
920      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
921      * exceeded.  Note that this method returns the constrained value but does not change the current number.
922      * @param {Number} min The minimum number in the range
923      * @param {Number} max The maximum number in the range
924      * @return {Number} The constrained value if outside the range, otherwise the current value
925      */
926     constrain : function(min, max){
927         return Math.min(Math.max(this, min), max);
928     }
929 });/*
930  * Based on:
931  * Ext JS Library 1.1.1
932  * Copyright(c) 2006-2007, Ext JS, LLC.
933  *
934  * Originally Released Under LGPL - original licence link has changed is not relivant.
935  *
936  * Fork - LGPL
937  * <script type="text/javascript">
938  */
939  /**
940  * @class Array
941  */
942 Roo.applyIf(Array.prototype, {
943     /**
944      * 
945      * Checks whether or not the specified object exists in the array.
946      * @param {Object} o The object to check for
947      * @return {Number} The index of o in the array (or -1 if it is not found)
948      */
949     indexOf : function(o){
950        for (var i = 0, len = this.length; i < len; i++){
951               if(this[i] == o) { return i; }
952        }
953            return -1;
954     },
955
956     /**
957      * Removes the specified object from the array.  If the object is not found nothing happens.
958      * @param {Object} o The object to remove
959      */
960     remove : function(o){
961        var index = this.indexOf(o);
962        if(index != -1){
963            this.splice(index, 1);
964        }
965     },
966     /**
967      * Map (JS 1.6 compatibility)
968      * @param {Function} function  to call
969      */
970     map : function(fun )
971     {
972         var len = this.length >>> 0;
973         if (typeof fun != "function") {
974             throw new TypeError();
975         }
976         var res = new Array(len);
977         var thisp = arguments[1];
978         for (var i = 0; i < len; i++)
979         {
980             if (i in this) {
981                 res[i] = fun.call(thisp, this[i], i, this);
982             }
983         }
984
985         return res;
986     }
987     
988 });
989
990
991  
992 /*
993  * Based on:
994  * Ext JS Library 1.1.1
995  * Copyright(c) 2006-2007, Ext JS, LLC.
996  *
997  * Originally Released Under LGPL - original licence link has changed is not relivant.
998  *
999  * Fork - LGPL
1000  * <script type="text/javascript">
1001  */
1002
1003 /**
1004  * @class Date
1005  *
1006  * The date parsing and format syntax is a subset of
1007  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1008  * supported will provide results equivalent to their PHP versions.
1009  *
1010  * Following is the list of all currently supported formats:
1011  *<pre>
1012 Sample date:
1013 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1014
1015 Format  Output      Description
1016 ------  ----------  --------------------------------------------------------------
1017   d      10         Day of the month, 2 digits with leading zeros
1018   D      Wed        A textual representation of a day, three letters
1019   j      10         Day of the month without leading zeros
1020   l      Wednesday  A full textual representation of the day of the week
1021   S      th         English ordinal day of month suffix, 2 chars (use with j)
1022   w      3          Numeric representation of the day of the week
1023   z      9          The julian date, or day of the year (0-365)
1024   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1025   F      January    A full textual representation of the month
1026   m      01         Numeric representation of a month, with leading zeros
1027   M      Jan        Month name abbreviation, three letters
1028   n      1          Numeric representation of a month, without leading zeros
1029   t      31         Number of days in the given month
1030   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1031   Y      2007       A full numeric representation of a year, 4 digits
1032   y      07         A two digit representation of a year
1033   a      pm         Lowercase Ante meridiem and Post meridiem
1034   A      PM         Uppercase Ante meridiem and Post meridiem
1035   g      3          12-hour format of an hour without leading zeros
1036   G      15         24-hour format of an hour without leading zeros
1037   h      03         12-hour format of an hour with leading zeros
1038   H      15         24-hour format of an hour with leading zeros
1039   i      05         Minutes with leading zeros
1040   s      01         Seconds, with leading zeros
1041   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1042   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1043   T      CST        Timezone setting of the machine running the code
1044   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1045 </pre>
1046  *
1047  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1048  * <pre><code>
1049 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1050 document.write(dt.format('Y-m-d'));                         //2007-01-10
1051 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1052 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
1053  </code></pre>
1054  *
1055  * Here are some standard date/time patterns that you might find helpful.  They
1056  * are not part of the source of Date.js, but to use them you can simply copy this
1057  * block of code into any script that is included after Date.js and they will also become
1058  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1059  * <pre><code>
1060 Date.patterns = {
1061     ISO8601Long:"Y-m-d H:i:s",
1062     ISO8601Short:"Y-m-d",
1063     ShortDate: "n/j/Y",
1064     LongDate: "l, F d, Y",
1065     FullDateTime: "l, F d, Y g:i:s A",
1066     MonthDay: "F d",
1067     ShortTime: "g:i A",
1068     LongTime: "g:i:s A",
1069     SortableDateTime: "Y-m-d\\TH:i:s",
1070     UniversalSortableDateTime: "Y-m-d H:i:sO",
1071     YearMonth: "F, Y"
1072 };
1073 </code></pre>
1074  *
1075  * Example usage:
1076  * <pre><code>
1077 var dt = new Date();
1078 document.write(dt.format(Date.patterns.ShortDate));
1079  </code></pre>
1080  */
1081
1082 /*
1083  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1084  * They generate precompiled functions from date formats instead of parsing and
1085  * processing the pattern every time you format a date.  These functions are available
1086  * on every Date object (any javascript function).
1087  *
1088  * The original article and download are here:
1089  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1090  *
1091  */
1092  
1093  
1094  // was in core
1095 /**
1096  Returns the number of milliseconds between this date and date
1097  @param {Date} date (optional) Defaults to now
1098  @return {Number} The diff in milliseconds
1099  @member Date getElapsed
1100  */
1101 Date.prototype.getElapsed = function(date) {
1102         return Math.abs((date || new Date()).getTime()-this.getTime());
1103 };
1104 // was in date file..
1105
1106
1107 // private
1108 Date.parseFunctions = {count:0};
1109 // private
1110 Date.parseRegexes = [];
1111 // private
1112 Date.formatFunctions = {count:0};
1113
1114 // private
1115 Date.prototype.dateFormat = function(format) {
1116     if (Date.formatFunctions[format] == null) {
1117         Date.createNewFormat(format);
1118     }
1119     var func = Date.formatFunctions[format];
1120     return this[func]();
1121 };
1122
1123
1124 /**
1125  * Formats a date given the supplied format string
1126  * @param {String} format The format string
1127  * @return {String} The formatted date
1128  * @method
1129  */
1130 Date.prototype.format = Date.prototype.dateFormat;
1131
1132 // private
1133 Date.createNewFormat = function(format) {
1134     var funcName = "format" + Date.formatFunctions.count++;
1135     Date.formatFunctions[format] = funcName;
1136     var code = "Date.prototype." + funcName + " = function(){return ";
1137     var special = false;
1138     var ch = '';
1139     for (var i = 0; i < format.length; ++i) {
1140         ch = format.charAt(i);
1141         if (!special && ch == "\\") {
1142             special = true;
1143         }
1144         else if (special) {
1145             special = false;
1146             code += "'" + String.escape(ch) + "' + ";
1147         }
1148         else {
1149             code += Date.getFormatCode(ch);
1150         }
1151     }
1152     /** eval:var:zzzzzzzzzzzzz */
1153     eval(code.substring(0, code.length - 3) + ";}");
1154 };
1155
1156 // private
1157 Date.getFormatCode = function(character) {
1158     switch (character) {
1159     case "d":
1160         return "String.leftPad(this.getDate(), 2, '0') + ";
1161     case "D":
1162         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1163     case "j":
1164         return "this.getDate() + ";
1165     case "l":
1166         return "Date.dayNames[this.getDay()] + ";
1167     case "S":
1168         return "this.getSuffix() + ";
1169     case "w":
1170         return "this.getDay() + ";
1171     case "z":
1172         return "this.getDayOfYear() + ";
1173     case "W":
1174         return "this.getWeekOfYear() + ";
1175     case "F":
1176         return "Date.monthNames[this.getMonth()] + ";
1177     case "m":
1178         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1179     case "M":
1180         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1181     case "n":
1182         return "(this.getMonth() + 1) + ";
1183     case "t":
1184         return "this.getDaysInMonth() + ";
1185     case "L":
1186         return "(this.isLeapYear() ? 1 : 0) + ";
1187     case "Y":
1188         return "this.getFullYear() + ";
1189     case "y":
1190         return "('' + this.getFullYear()).substring(2, 4) + ";
1191     case "a":
1192         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1193     case "A":
1194         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1195     case "g":
1196         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1197     case "G":
1198         return "this.getHours() + ";
1199     case "h":
1200         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1201     case "H":
1202         return "String.leftPad(this.getHours(), 2, '0') + ";
1203     case "i":
1204         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1205     case "s":
1206         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1207     case "O":
1208         return "this.getGMTOffset() + ";
1209     case "P":
1210         return "this.getGMTColonOffset() + ";
1211     case "T":
1212         return "this.getTimezone() + ";
1213     case "Z":
1214         return "(this.getTimezoneOffset() * -60) + ";
1215     default:
1216         return "'" + String.escape(character) + "' + ";
1217     }
1218 };
1219
1220 /**
1221  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1222  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1223  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1224  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1225  * string or the parse operation will fail.
1226  * Example Usage:
1227 <pre><code>
1228 //dt = Fri May 25 2007 (current date)
1229 var dt = new Date();
1230
1231 //dt = Thu May 25 2006 (today's month/day in 2006)
1232 dt = Date.parseDate("2006", "Y");
1233
1234 //dt = Sun Jan 15 2006 (all date parts specified)
1235 dt = Date.parseDate("2006-1-15", "Y-m-d");
1236
1237 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1238 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1239 </code></pre>
1240  * @param {String} input The unparsed date as a string
1241  * @param {String} format The format the date is in
1242  * @return {Date} The parsed date
1243  * @static
1244  */
1245 Date.parseDate = function(input, format) {
1246     if (Date.parseFunctions[format] == null) {
1247         Date.createParser(format);
1248     }
1249     var func = Date.parseFunctions[format];
1250     return Date[func](input);
1251 };
1252 /**
1253  * @private
1254  */
1255
1256 Date.createParser = function(format) {
1257     var funcName = "parse" + Date.parseFunctions.count++;
1258     var regexNum = Date.parseRegexes.length;
1259     var currentGroup = 1;
1260     Date.parseFunctions[format] = funcName;
1261
1262     var code = "Date." + funcName + " = function(input){\n"
1263         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1264         + "var d = new Date();\n"
1265         + "y = d.getFullYear();\n"
1266         + "m = d.getMonth();\n"
1267         + "d = d.getDate();\n"
1268         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1269         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1270         + "if (results && results.length > 0) {";
1271     var regex = "";
1272
1273     var special = false;
1274     var ch = '';
1275     for (var i = 0; i < format.length; ++i) {
1276         ch = format.charAt(i);
1277         if (!special && ch == "\\") {
1278             special = true;
1279         }
1280         else if (special) {
1281             special = false;
1282             regex += String.escape(ch);
1283         }
1284         else {
1285             var obj = Date.formatCodeToRegex(ch, currentGroup);
1286             currentGroup += obj.g;
1287             regex += obj.s;
1288             if (obj.g && obj.c) {
1289                 code += obj.c;
1290             }
1291         }
1292     }
1293
1294     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1295         + "{v = new Date(y, m, d, h, i, s);}\n"
1296         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1297         + "{v = new Date(y, m, d, h, i);}\n"
1298         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1299         + "{v = new Date(y, m, d, h);}\n"
1300         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1301         + "{v = new Date(y, m, d);}\n"
1302         + "else if (y >= 0 && m >= 0)\n"
1303         + "{v = new Date(y, m);}\n"
1304         + "else if (y >= 0)\n"
1305         + "{v = new Date(y);}\n"
1306         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1307         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1308         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1309         + ";}";
1310
1311     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1312     /** eval:var:zzzzzzzzzzzzz */
1313     eval(code);
1314 };
1315
1316 // private
1317 Date.formatCodeToRegex = function(character, currentGroup) {
1318     switch (character) {
1319     case "D":
1320         return {g:0,
1321         c:null,
1322         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1323     case "j":
1324         return {g:1,
1325             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1326             s:"(\\d{1,2})"}; // day of month without leading zeroes
1327     case "d":
1328         return {g:1,
1329             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1330             s:"(\\d{2})"}; // day of month with leading zeroes
1331     case "l":
1332         return {g:0,
1333             c:null,
1334             s:"(?:" + Date.dayNames.join("|") + ")"};
1335     case "S":
1336         return {g:0,
1337             c:null,
1338             s:"(?:st|nd|rd|th)"};
1339     case "w":
1340         return {g:0,
1341             c:null,
1342             s:"\\d"};
1343     case "z":
1344         return {g:0,
1345             c:null,
1346             s:"(?:\\d{1,3})"};
1347     case "W":
1348         return {g:0,
1349             c:null,
1350             s:"(?:\\d{2})"};
1351     case "F":
1352         return {g:1,
1353             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1354             s:"(" + Date.monthNames.join("|") + ")"};
1355     case "M":
1356         return {g:1,
1357             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1358             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1359     case "n":
1360         return {g:1,
1361             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1362             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1363     case "m":
1364         return {g:1,
1365             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1366             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1367     case "t":
1368         return {g:0,
1369             c:null,
1370             s:"\\d{1,2}"};
1371     case "L":
1372         return {g:0,
1373             c:null,
1374             s:"(?:1|0)"};
1375     case "Y":
1376         return {g:1,
1377             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1378             s:"(\\d{4})"};
1379     case "y":
1380         return {g:1,
1381             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1382                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1383             s:"(\\d{1,2})"};
1384     case "a":
1385         return {g:1,
1386             c:"if (results[" + currentGroup + "] == 'am') {\n"
1387                 + "if (h == 12) { h = 0; }\n"
1388                 + "} else { if (h < 12) { h += 12; }}",
1389             s:"(am|pm)"};
1390     case "A":
1391         return {g:1,
1392             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1393                 + "if (h == 12) { h = 0; }\n"
1394                 + "} else { if (h < 12) { h += 12; }}",
1395             s:"(AM|PM)"};
1396     case "g":
1397     case "G":
1398         return {g:1,
1399             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1400             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1401     case "h":
1402     case "H":
1403         return {g:1,
1404             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1405             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1406     case "i":
1407         return {g:1,
1408             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1409             s:"(\\d{2})"};
1410     case "s":
1411         return {g:1,
1412             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1413             s:"(\\d{2})"};
1414     case "O":
1415         return {g:1,
1416             c:[
1417                 "o = results[", currentGroup, "];\n",
1418                 "var sn = o.substring(0,1);\n", // get + / - sign
1419                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1420                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1421                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1422                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1423             ].join(""),
1424             s:"([+\-]\\d{2,4})"};
1425     
1426     
1427     case "P":
1428         return {g:1,
1429                 c:[
1430                    "o = results[", currentGroup, "];\n",
1431                    "var sn = o.substring(0,1);\n",
1432                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1433                    "var mn = o.substring(4,6) % 60;\n",
1434                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1435                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1436             ].join(""),
1437             s:"([+\-]\\d{4})"};
1438     case "T":
1439         return {g:0,
1440             c:null,
1441             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1442     case "Z":
1443         return {g:1,
1444             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1445                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1446             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1447     default:
1448         return {g:0,
1449             c:null,
1450             s:String.escape(character)};
1451     }
1452 };
1453
1454 /**
1455  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1456  * @return {String} The abbreviated timezone name (e.g. 'CST')
1457  */
1458 Date.prototype.getTimezone = function() {
1459     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1460 };
1461
1462 /**
1463  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1464  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1465  */
1466 Date.prototype.getGMTOffset = function() {
1467     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1468         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1469         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1470 };
1471
1472 /**
1473  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1474  * @return {String} 2-characters representing hours and 2-characters representing minutes
1475  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1476  */
1477 Date.prototype.getGMTColonOffset = function() {
1478         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1479                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1480                 + ":"
1481                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1482 }
1483
1484 /**
1485  * Get the numeric day number of the year, adjusted for leap year.
1486  * @return {Number} 0 through 364 (365 in leap years)
1487  */
1488 Date.prototype.getDayOfYear = function() {
1489     var num = 0;
1490     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1491     for (var i = 0; i < this.getMonth(); ++i) {
1492         num += Date.daysInMonth[i];
1493     }
1494     return num + this.getDate() - 1;
1495 };
1496
1497 /**
1498  * Get the string representation of the numeric week number of the year
1499  * (equivalent to the format specifier 'W').
1500  * @return {String} '00' through '52'
1501  */
1502 Date.prototype.getWeekOfYear = function() {
1503     // Skip to Thursday of this week
1504     var now = this.getDayOfYear() + (4 - this.getDay());
1505     // Find the first Thursday of the year
1506     var jan1 = new Date(this.getFullYear(), 0, 1);
1507     var then = (7 - jan1.getDay() + 4);
1508     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1509 };
1510
1511 /**
1512  * Whether or not the current date is in a leap year.
1513  * @return {Boolean} True if the current date is in a leap year, else false
1514  */
1515 Date.prototype.isLeapYear = function() {
1516     var year = this.getFullYear();
1517     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1518 };
1519
1520 /**
1521  * Get the first day of the current month, adjusted for leap year.  The returned value
1522  * is the numeric day index within the week (0-6) which can be used in conjunction with
1523  * the {@link #monthNames} array to retrieve the textual day name.
1524  * Example:
1525  *<pre><code>
1526 var dt = new Date('1/10/2007');
1527 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1528 </code></pre>
1529  * @return {Number} The day number (0-6)
1530  */
1531 Date.prototype.getFirstDayOfMonth = function() {
1532     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1533     return (day < 0) ? (day + 7) : day;
1534 };
1535
1536 /**
1537  * Get the last day of the current month, adjusted for leap year.  The returned value
1538  * is the numeric day index within the week (0-6) which can be used in conjunction with
1539  * the {@link #monthNames} array to retrieve the textual day name.
1540  * Example:
1541  *<pre><code>
1542 var dt = new Date('1/10/2007');
1543 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1544 </code></pre>
1545  * @return {Number} The day number (0-6)
1546  */
1547 Date.prototype.getLastDayOfMonth = function() {
1548     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1549     return (day < 0) ? (day + 7) : day;
1550 };
1551
1552
1553 /**
1554  * Get the first date of this date's month
1555  * @return {Date}
1556  */
1557 Date.prototype.getFirstDateOfMonth = function() {
1558     return new Date(this.getFullYear(), this.getMonth(), 1);
1559 };
1560
1561 /**
1562  * Get the last date of this date's month
1563  * @return {Date}
1564  */
1565 Date.prototype.getLastDateOfMonth = function() {
1566     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1567 };
1568 /**
1569  * Get the number of days in the current month, adjusted for leap year.
1570  * @return {Number} The number of days in the month
1571  */
1572 Date.prototype.getDaysInMonth = function() {
1573     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1574     return Date.daysInMonth[this.getMonth()];
1575 };
1576
1577 /**
1578  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1579  * @return {String} 'st, 'nd', 'rd' or 'th'
1580  */
1581 Date.prototype.getSuffix = function() {
1582     switch (this.getDate()) {
1583         case 1:
1584         case 21:
1585         case 31:
1586             return "st";
1587         case 2:
1588         case 22:
1589             return "nd";
1590         case 3:
1591         case 23:
1592             return "rd";
1593         default:
1594             return "th";
1595     }
1596 };
1597
1598 // private
1599 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1600
1601 /**
1602  * An array of textual month names.
1603  * Override these values for international dates, for example...
1604  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1605  * @type Array
1606  * @static
1607  */
1608 Date.monthNames =
1609    ["January",
1610     "February",
1611     "March",
1612     "April",
1613     "May",
1614     "June",
1615     "July",
1616     "August",
1617     "September",
1618     "October",
1619     "November",
1620     "December"];
1621
1622 /**
1623  * An array of textual day names.
1624  * Override these values for international dates, for example...
1625  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1626  * @type Array
1627  * @static
1628  */
1629 Date.dayNames =
1630    ["Sunday",
1631     "Monday",
1632     "Tuesday",
1633     "Wednesday",
1634     "Thursday",
1635     "Friday",
1636     "Saturday"];
1637
1638 // private
1639 Date.y2kYear = 50;
1640 // private
1641 Date.monthNumbers = {
1642     Jan:0,
1643     Feb:1,
1644     Mar:2,
1645     Apr:3,
1646     May:4,
1647     Jun:5,
1648     Jul:6,
1649     Aug:7,
1650     Sep:8,
1651     Oct:9,
1652     Nov:10,
1653     Dec:11};
1654
1655 /**
1656  * Creates and returns a new Date instance with the exact same date value as the called instance.
1657  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1658  * variable will also be changed.  When the intention is to create a new variable that will not
1659  * modify the original instance, you should create a clone.
1660  *
1661  * Example of correctly cloning a date:
1662  * <pre><code>
1663 //wrong way:
1664 var orig = new Date('10/1/2006');
1665 var copy = orig;
1666 copy.setDate(5);
1667 document.write(orig);  //returns 'Thu Oct 05 2006'!
1668
1669 //correct way:
1670 var orig = new Date('10/1/2006');
1671 var copy = orig.clone();
1672 copy.setDate(5);
1673 document.write(orig);  //returns 'Thu Oct 01 2006'
1674 </code></pre>
1675  * @return {Date} The new Date instance
1676  */
1677 Date.prototype.clone = function() {
1678         return new Date(this.getTime());
1679 };
1680
1681 /**
1682  * Clears any time information from this date
1683  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1684  @return {Date} this or the clone
1685  */
1686 Date.prototype.clearTime = function(clone){
1687     if(clone){
1688         return this.clone().clearTime();
1689     }
1690     this.setHours(0);
1691     this.setMinutes(0);
1692     this.setSeconds(0);
1693     this.setMilliseconds(0);
1694     return this;
1695 };
1696
1697 // private
1698 // safari setMonth is broken -- check that this is only donw once...
1699 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1700     Date.brokenSetMonth = Date.prototype.setMonth;
1701         Date.prototype.setMonth = function(num){
1702                 if(num <= -1){
1703                         var n = Math.ceil(-num);
1704                         var back_year = Math.ceil(n/12);
1705                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1706                         this.setFullYear(this.getFullYear() - back_year);
1707                         return Date.brokenSetMonth.call(this, month);
1708                 } else {
1709                         return Date.brokenSetMonth.apply(this, arguments);
1710                 }
1711         };
1712 }
1713
1714 /** Date interval constant 
1715 * @static 
1716 * @type String */
1717 Date.MILLI = "ms";
1718 /** Date interval constant 
1719 * @static 
1720 * @type String */
1721 Date.SECOND = "s";
1722 /** Date interval constant 
1723 * @static 
1724 * @type String */
1725 Date.MINUTE = "mi";
1726 /** Date interval constant 
1727 * @static 
1728 * @type String */
1729 Date.HOUR = "h";
1730 /** Date interval constant 
1731 * @static 
1732 * @type String */
1733 Date.DAY = "d";
1734 /** Date interval constant 
1735 * @static 
1736 * @type String */
1737 Date.MONTH = "mo";
1738 /** Date interval constant 
1739 * @static 
1740 * @type String */
1741 Date.YEAR = "y";
1742
1743 /**
1744  * Provides a convenient method of performing basic date arithmetic.  This method
1745  * does not modify the Date instance being called - it creates and returns
1746  * a new Date instance containing the resulting date value.
1747  *
1748  * Examples:
1749  * <pre><code>
1750 //Basic usage:
1751 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1752 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1753
1754 //Negative values will subtract correctly:
1755 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1756 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1757
1758 //You can even chain several calls together in one line!
1759 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1760 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1761  </code></pre>
1762  *
1763  * @param {String} interval   A valid date interval enum value
1764  * @param {Number} value      The amount to add to the current date
1765  * @return {Date} The new Date instance
1766  */
1767 Date.prototype.add = function(interval, value){
1768   var d = this.clone();
1769   if (!interval || value === 0) { return d; }
1770   switch(interval.toLowerCase()){
1771     case Date.MILLI:
1772       d.setMilliseconds(this.getMilliseconds() + value);
1773       break;
1774     case Date.SECOND:
1775       d.setSeconds(this.getSeconds() + value);
1776       break;
1777     case Date.MINUTE:
1778       d.setMinutes(this.getMinutes() + value);
1779       break;
1780     case Date.HOUR:
1781       d.setHours(this.getHours() + value);
1782       break;
1783     case Date.DAY:
1784       d.setDate(this.getDate() + value);
1785       break;
1786     case Date.MONTH:
1787       var day = this.getDate();
1788       if(day > 28){
1789           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1790       }
1791       d.setDate(day);
1792       d.setMonth(this.getMonth() + value);
1793       break;
1794     case Date.YEAR:
1795       d.setFullYear(this.getFullYear() + value);
1796       break;
1797   }
1798   return d;
1799 };
1800 /*
1801  * Based on:
1802  * Ext JS Library 1.1.1
1803  * Copyright(c) 2006-2007, Ext JS, LLC.
1804  *
1805  * Originally Released Under LGPL - original licence link has changed is not relivant.
1806  *
1807  * Fork - LGPL
1808  * <script type="text/javascript">
1809  */
1810
1811 /**
1812  * @class Roo.lib.Dom
1813  * @static
1814  * 
1815  * Dom utils (from YIU afaik)
1816  * 
1817  **/
1818 Roo.lib.Dom = {
1819     /**
1820      * Get the view width
1821      * @param {Boolean} full True will get the full document, otherwise it's the view width
1822      * @return {Number} The width
1823      */
1824      
1825     getViewWidth : function(full) {
1826         return full ? this.getDocumentWidth() : this.getViewportWidth();
1827     },
1828     /**
1829      * Get the view height
1830      * @param {Boolean} full True will get the full document, otherwise it's the view height
1831      * @return {Number} The height
1832      */
1833     getViewHeight : function(full) {
1834         return full ? this.getDocumentHeight() : this.getViewportHeight();
1835     },
1836
1837     getDocumentHeight: function() {
1838         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1839         return Math.max(scrollHeight, this.getViewportHeight());
1840     },
1841
1842     getDocumentWidth: function() {
1843         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1844         return Math.max(scrollWidth, this.getViewportWidth());
1845     },
1846
1847     getViewportHeight: function() {
1848         var height = self.innerHeight;
1849         var mode = document.compatMode;
1850
1851         if ((mode || Roo.isIE) && !Roo.isOpera) {
1852             height = (mode == "CSS1Compat") ?
1853                      document.documentElement.clientHeight :
1854                      document.body.clientHeight;
1855         }
1856
1857         return height;
1858     },
1859
1860     getViewportWidth: function() {
1861         var width = self.innerWidth;
1862         var mode = document.compatMode;
1863
1864         if (mode || Roo.isIE) {
1865             width = (mode == "CSS1Compat") ?
1866                     document.documentElement.clientWidth :
1867                     document.body.clientWidth;
1868         }
1869         return width;
1870     },
1871
1872     isAncestor : function(p, c) {
1873         p = Roo.getDom(p);
1874         c = Roo.getDom(c);
1875         if (!p || !c) {
1876             return false;
1877         }
1878
1879         if (p.contains && !Roo.isSafari) {
1880             return p.contains(c);
1881         } else if (p.compareDocumentPosition) {
1882             return !!(p.compareDocumentPosition(c) & 16);
1883         } else {
1884             var parent = c.parentNode;
1885             while (parent) {
1886                 if (parent == p) {
1887                     return true;
1888                 }
1889                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1890                     return false;
1891                 }
1892                 parent = parent.parentNode;
1893             }
1894             return false;
1895         }
1896     },
1897
1898     getRegion : function(el) {
1899         return Roo.lib.Region.getRegion(el);
1900     },
1901
1902     getY : function(el) {
1903         return this.getXY(el)[1];
1904     },
1905
1906     getX : function(el) {
1907         return this.getXY(el)[0];
1908     },
1909
1910     getXY : function(el) {
1911         var p, pe, b, scroll, bd = document.body;
1912         el = Roo.getDom(el);
1913         var fly = Roo.lib.AnimBase.fly;
1914         if (el.getBoundingClientRect) {
1915             b = el.getBoundingClientRect();
1916             scroll = fly(document).getScroll();
1917             return [b.left + scroll.left, b.top + scroll.top];
1918         }
1919         var x = 0, y = 0;
1920
1921         p = el;
1922
1923         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1924
1925         while (p) {
1926
1927             x += p.offsetLeft;
1928             y += p.offsetTop;
1929
1930             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1931                 hasAbsolute = true;
1932             }
1933
1934             if (Roo.isGecko) {
1935                 pe = fly(p);
1936
1937                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1938                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1939
1940
1941                 x += bl;
1942                 y += bt;
1943
1944
1945                 if (p != el && pe.getStyle('overflow') != 'visible') {
1946                     x += bl;
1947                     y += bt;
1948                 }
1949             }
1950             p = p.offsetParent;
1951         }
1952
1953         if (Roo.isSafari && hasAbsolute) {
1954             x -= bd.offsetLeft;
1955             y -= bd.offsetTop;
1956         }
1957
1958         if (Roo.isGecko && !hasAbsolute) {
1959             var dbd = fly(bd);
1960             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
1961             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
1962         }
1963
1964         p = el.parentNode;
1965         while (p && p != bd) {
1966             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
1967                 x -= p.scrollLeft;
1968                 y -= p.scrollTop;
1969             }
1970             p = p.parentNode;
1971         }
1972         return [x, y];
1973     },
1974  
1975   
1976
1977
1978     setXY : function(el, xy) {
1979         el = Roo.fly(el, '_setXY');
1980         el.position();
1981         var pts = el.translatePoints(xy);
1982         if (xy[0] !== false) {
1983             el.dom.style.left = pts.left + "px";
1984         }
1985         if (xy[1] !== false) {
1986             el.dom.style.top = pts.top + "px";
1987         }
1988     },
1989
1990     setX : function(el, x) {
1991         this.setXY(el, [x, false]);
1992     },
1993
1994     setY : function(el, y) {
1995         this.setXY(el, [false, y]);
1996     }
1997 };
1998 /*
1999  * Portions of this file are based on pieces of Yahoo User Interface Library
2000  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2001  * YUI licensed under the BSD License:
2002  * http://developer.yahoo.net/yui/license.txt
2003  * <script type="text/javascript">
2004  *
2005  */
2006
2007 Roo.lib.Event = function() {
2008     var loadComplete = false;
2009     var listeners = [];
2010     var unloadListeners = [];
2011     var retryCount = 0;
2012     var onAvailStack = [];
2013     var counter = 0;
2014     var lastError = null;
2015
2016     return {
2017         POLL_RETRYS: 200,
2018         POLL_INTERVAL: 20,
2019         EL: 0,
2020         TYPE: 1,
2021         FN: 2,
2022         WFN: 3,
2023         OBJ: 3,
2024         ADJ_SCOPE: 4,
2025         _interval: null,
2026
2027         startInterval: function() {
2028             if (!this._interval) {
2029                 var self = this;
2030                 var callback = function() {
2031                     self._tryPreloadAttach();
2032                 };
2033                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2034
2035             }
2036         },
2037
2038         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2039             onAvailStack.push({ id:         p_id,
2040                 fn:         p_fn,
2041                 obj:        p_obj,
2042                 override:   p_override,
2043                 checkReady: false    });
2044
2045             retryCount = this.POLL_RETRYS;
2046             this.startInterval();
2047         },
2048
2049
2050         addListener: function(el, eventName, fn) {
2051             el = Roo.getDom(el);
2052             if (!el || !fn) {
2053                 return false;
2054             }
2055
2056             if ("unload" == eventName) {
2057                 unloadListeners[unloadListeners.length] =
2058                 [el, eventName, fn];
2059                 return true;
2060             }
2061
2062             var wrappedFn = function(e) {
2063                 return fn(Roo.lib.Event.getEvent(e));
2064             };
2065
2066             var li = [el, eventName, fn, wrappedFn];
2067
2068             var index = listeners.length;
2069             listeners[index] = li;
2070
2071             this.doAdd(el, eventName, wrappedFn, false);
2072             return true;
2073
2074         },
2075
2076
2077         removeListener: function(el, eventName, fn) {
2078             var i, len;
2079
2080             el = Roo.getDom(el);
2081
2082             if(!fn) {
2083                 return this.purgeElement(el, false, eventName);
2084             }
2085
2086
2087             if ("unload" == eventName) {
2088
2089                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2090                     var li = unloadListeners[i];
2091                     if (li &&
2092                         li[0] == el &&
2093                         li[1] == eventName &&
2094                         li[2] == fn) {
2095                         unloadListeners.splice(i, 1);
2096                         return true;
2097                     }
2098                 }
2099
2100                 return false;
2101             }
2102
2103             var cacheItem = null;
2104
2105
2106             var index = arguments[3];
2107
2108             if ("undefined" == typeof index) {
2109                 index = this._getCacheIndex(el, eventName, fn);
2110             }
2111
2112             if (index >= 0) {
2113                 cacheItem = listeners[index];
2114             }
2115
2116             if (!el || !cacheItem) {
2117                 return false;
2118             }
2119
2120             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2121
2122             delete listeners[index][this.WFN];
2123             delete listeners[index][this.FN];
2124             listeners.splice(index, 1);
2125
2126             return true;
2127
2128         },
2129
2130
2131         getTarget: function(ev, resolveTextNode) {
2132             ev = ev.browserEvent || ev;
2133             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2134             var t = ev.target || ev.srcElement;
2135             return this.resolveTextNode(t);
2136         },
2137
2138
2139         resolveTextNode: function(node) {
2140             if (Roo.isSafari && node && 3 == node.nodeType) {
2141                 return node.parentNode;
2142             } else {
2143                 return node;
2144             }
2145         },
2146
2147
2148         getPageX: function(ev) {
2149             ev = ev.browserEvent || ev;
2150             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2151             var x = ev.pageX;
2152             if (!x && 0 !== x) {
2153                 x = ev.clientX || 0;
2154
2155                 if (Roo.isIE) {
2156                     x += this.getScroll()[1];
2157                 }
2158             }
2159
2160             return x;
2161         },
2162
2163
2164         getPageY: function(ev) {
2165             ev = ev.browserEvent || ev;
2166             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2167             var y = ev.pageY;
2168             if (!y && 0 !== y) {
2169                 y = ev.clientY || 0;
2170
2171                 if (Roo.isIE) {
2172                     y += this.getScroll()[0];
2173                 }
2174             }
2175
2176
2177             return y;
2178         },
2179
2180
2181         getXY: function(ev) {
2182             ev = ev.browserEvent || ev;
2183             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2184             return [this.getPageX(ev), this.getPageY(ev)];
2185         },
2186
2187
2188         getRelatedTarget: function(ev) {
2189             ev = ev.browserEvent || ev;
2190             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2191             var t = ev.relatedTarget;
2192             if (!t) {
2193                 if (ev.type == "mouseout") {
2194                     t = ev.toElement;
2195                 } else if (ev.type == "mouseover") {
2196                     t = ev.fromElement;
2197                 }
2198             }
2199
2200             return this.resolveTextNode(t);
2201         },
2202
2203
2204         getTime: function(ev) {
2205             ev = ev.browserEvent || ev;
2206             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2207             if (!ev.time) {
2208                 var t = new Date().getTime();
2209                 try {
2210                     ev.time = t;
2211                 } catch(ex) {
2212                     this.lastError = ex;
2213                     return t;
2214                 }
2215             }
2216
2217             return ev.time;
2218         },
2219
2220
2221         stopEvent: function(ev) {
2222             this.stopPropagation(ev);
2223             this.preventDefault(ev);
2224         },
2225
2226
2227         stopPropagation: function(ev) {
2228             ev = ev.browserEvent || ev;
2229             if (ev.stopPropagation) {
2230                 ev.stopPropagation();
2231             } else {
2232                 ev.cancelBubble = true;
2233             }
2234         },
2235
2236
2237         preventDefault: function(ev) {
2238             ev = ev.browserEvent || ev;
2239             if(ev.preventDefault) {
2240                 ev.preventDefault();
2241             } else {
2242                 ev.returnValue = false;
2243             }
2244         },
2245
2246
2247         getEvent: function(e) {
2248             var ev = e || window.event;
2249             if (!ev) {
2250                 var c = this.getEvent.caller;
2251                 while (c) {
2252                     ev = c.arguments[0];
2253                     if (ev && Event == ev.constructor) {
2254                         break;
2255                     }
2256                     c = c.caller;
2257                 }
2258             }
2259             return ev;
2260         },
2261
2262
2263         getCharCode: function(ev) {
2264             ev = ev.browserEvent || ev;
2265             return ev.charCode || ev.keyCode || 0;
2266         },
2267
2268
2269         _getCacheIndex: function(el, eventName, fn) {
2270             for (var i = 0,len = listeners.length; i < len; ++i) {
2271                 var li = listeners[i];
2272                 if (li &&
2273                     li[this.FN] == fn &&
2274                     li[this.EL] == el &&
2275                     li[this.TYPE] == eventName) {
2276                     return i;
2277                 }
2278             }
2279
2280             return -1;
2281         },
2282
2283
2284         elCache: {},
2285
2286
2287         getEl: function(id) {
2288             return document.getElementById(id);
2289         },
2290
2291
2292         clearCache: function() {
2293         },
2294
2295
2296         _load: function(e) {
2297             loadComplete = true;
2298             var EU = Roo.lib.Event;
2299
2300
2301             if (Roo.isIE) {
2302                 EU.doRemove(window, "load", EU._load);
2303             }
2304         },
2305
2306
2307         _tryPreloadAttach: function() {
2308
2309             if (this.locked) {
2310                 return false;
2311             }
2312
2313             this.locked = true;
2314
2315
2316             var tryAgain = !loadComplete;
2317             if (!tryAgain) {
2318                 tryAgain = (retryCount > 0);
2319             }
2320
2321
2322             var notAvail = [];
2323             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2324                 var item = onAvailStack[i];
2325                 if (item) {
2326                     var el = this.getEl(item.id);
2327
2328                     if (el) {
2329                         if (!item.checkReady ||
2330                             loadComplete ||
2331                             el.nextSibling ||
2332                             (document && document.body)) {
2333
2334                             var scope = el;
2335                             if (item.override) {
2336                                 if (item.override === true) {
2337                                     scope = item.obj;
2338                                 } else {
2339                                     scope = item.override;
2340                                 }
2341                             }
2342                             item.fn.call(scope, item.obj);
2343                             onAvailStack[i] = null;
2344                         }
2345                     } else {
2346                         notAvail.push(item);
2347                     }
2348                 }
2349             }
2350
2351             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2352
2353             if (tryAgain) {
2354
2355                 this.startInterval();
2356             } else {
2357                 clearInterval(this._interval);
2358                 this._interval = null;
2359             }
2360
2361             this.locked = false;
2362
2363             return true;
2364
2365         },
2366
2367
2368         purgeElement: function(el, recurse, eventName) {
2369             var elListeners = this.getListeners(el, eventName);
2370             if (elListeners) {
2371                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2372                     var l = elListeners[i];
2373                     this.removeListener(el, l.type, l.fn);
2374                 }
2375             }
2376
2377             if (recurse && el && el.childNodes) {
2378                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2379                     this.purgeElement(el.childNodes[i], recurse, eventName);
2380                 }
2381             }
2382         },
2383
2384
2385         getListeners: function(el, eventName) {
2386             var results = [], searchLists;
2387             if (!eventName) {
2388                 searchLists = [listeners, unloadListeners];
2389             } else if (eventName == "unload") {
2390                 searchLists = [unloadListeners];
2391             } else {
2392                 searchLists = [listeners];
2393             }
2394
2395             for (var j = 0; j < searchLists.length; ++j) {
2396                 var searchList = searchLists[j];
2397                 if (searchList && searchList.length > 0) {
2398                     for (var i = 0,len = searchList.length; i < len; ++i) {
2399                         var l = searchList[i];
2400                         if (l && l[this.EL] === el &&
2401                             (!eventName || eventName === l[this.TYPE])) {
2402                             results.push({
2403                                 type:   l[this.TYPE],
2404                                 fn:     l[this.FN],
2405                                 obj:    l[this.OBJ],
2406                                 adjust: l[this.ADJ_SCOPE],
2407                                 index:  i
2408                             });
2409                         }
2410                     }
2411                 }
2412             }
2413
2414             return (results.length) ? results : null;
2415         },
2416
2417
2418         _unload: function(e) {
2419
2420             var EU = Roo.lib.Event, i, j, l, len, index;
2421
2422             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2423                 l = unloadListeners[i];
2424                 if (l) {
2425                     var scope = window;
2426                     if (l[EU.ADJ_SCOPE]) {
2427                         if (l[EU.ADJ_SCOPE] === true) {
2428                             scope = l[EU.OBJ];
2429                         } else {
2430                             scope = l[EU.ADJ_SCOPE];
2431                         }
2432                     }
2433                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2434                     unloadListeners[i] = null;
2435                     l = null;
2436                     scope = null;
2437                 }
2438             }
2439
2440             unloadListeners = null;
2441
2442             if (listeners && listeners.length > 0) {
2443                 j = listeners.length;
2444                 while (j) {
2445                     index = j - 1;
2446                     l = listeners[index];
2447                     if (l) {
2448                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2449                                 l[EU.FN], index);
2450                     }
2451                     j = j - 1;
2452                 }
2453                 l = null;
2454
2455                 EU.clearCache();
2456             }
2457
2458             EU.doRemove(window, "unload", EU._unload);
2459
2460         },
2461
2462
2463         getScroll: function() {
2464             var dd = document.documentElement, db = document.body;
2465             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2466                 return [dd.scrollTop, dd.scrollLeft];
2467             } else if (db) {
2468                 return [db.scrollTop, db.scrollLeft];
2469             } else {
2470                 return [0, 0];
2471             }
2472         },
2473
2474
2475         doAdd: function () {
2476             if (window.addEventListener) {
2477                 return function(el, eventName, fn, capture) {
2478                     el.addEventListener(eventName, fn, (capture));
2479                 };
2480             } else if (window.attachEvent) {
2481                 return function(el, eventName, fn, capture) {
2482                     el.attachEvent("on" + eventName, fn);
2483                 };
2484             } else {
2485                 return function() {
2486                 };
2487             }
2488         }(),
2489
2490
2491         doRemove: function() {
2492             if (window.removeEventListener) {
2493                 return function (el, eventName, fn, capture) {
2494                     el.removeEventListener(eventName, fn, (capture));
2495                 };
2496             } else if (window.detachEvent) {
2497                 return function (el, eventName, fn) {
2498                     el.detachEvent("on" + eventName, fn);
2499                 };
2500             } else {
2501                 return function() {
2502                 };
2503             }
2504         }()
2505     };
2506     
2507 }();
2508 (function() {     
2509    
2510     var E = Roo.lib.Event;
2511     E.on = E.addListener;
2512     E.un = E.removeListener;
2513
2514     if (document && document.body) {
2515         E._load();
2516     } else {
2517         E.doAdd(window, "load", E._load);
2518     }
2519     E.doAdd(window, "unload", E._unload);
2520     E._tryPreloadAttach();
2521 })();
2522
2523 /*
2524  * Portions of this file are based on pieces of Yahoo User Interface Library
2525  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2526  * YUI licensed under the BSD License:
2527  * http://developer.yahoo.net/yui/license.txt
2528  * <script type="text/javascript">
2529  *
2530  */
2531
2532 (function() {
2533     /**
2534      * @class Roo.lib.Ajax
2535      *
2536      */
2537     Roo.lib.Ajax = {
2538         /**
2539          * @static 
2540          */
2541         request : function(method, uri, cb, data, options) {
2542             if(options){
2543                 var hs = options.headers;
2544                 if(hs){
2545                     for(var h in hs){
2546                         if(hs.hasOwnProperty(h)){
2547                             this.initHeader(h, hs[h], false);
2548                         }
2549                     }
2550                 }
2551                 if(options.xmlData){
2552                     this.initHeader('Content-Type', 'text/xml', false);
2553                     method = 'POST';
2554                     data = options.xmlData;
2555                 }
2556             }
2557
2558             return this.asyncRequest(method, uri, cb, data);
2559         },
2560
2561         serializeForm : function(form) {
2562             if(typeof form == 'string') {
2563                 form = (document.getElementById(form) || document.forms[form]);
2564             }
2565
2566             var el, name, val, disabled, data = '', hasSubmit = false;
2567             for (var i = 0; i < form.elements.length; i++) {
2568                 el = form.elements[i];
2569                 disabled = form.elements[i].disabled;
2570                 name = form.elements[i].name;
2571                 val = form.elements[i].value;
2572
2573                 if (!disabled && name){
2574                     switch (el.type)
2575                             {
2576                         case 'select-one':
2577                         case 'select-multiple':
2578                             for (var j = 0; j < el.options.length; j++) {
2579                                 if (el.options[j].selected) {
2580                                     if (Roo.isIE) {
2581                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2582                                     }
2583                                     else {
2584                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2585                                     }
2586                                 }
2587                             }
2588                             break;
2589                         case 'radio':
2590                         case 'checkbox':
2591                             if (el.checked) {
2592                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2593                             }
2594                             break;
2595                         case 'file':
2596
2597                         case undefined:
2598
2599                         case 'reset':
2600
2601                         case 'button':
2602
2603                             break;
2604                         case 'submit':
2605                             if(hasSubmit == false) {
2606                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2607                                 hasSubmit = true;
2608                             }
2609                             break;
2610                         default:
2611                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2612                             break;
2613                     }
2614                 }
2615             }
2616             data = data.substr(0, data.length - 1);
2617             return data;
2618         },
2619
2620         headers:{},
2621
2622         hasHeaders:false,
2623
2624         useDefaultHeader:true,
2625
2626         defaultPostHeader:'application/x-www-form-urlencoded',
2627
2628         useDefaultXhrHeader:true,
2629
2630         defaultXhrHeader:'XMLHttpRequest',
2631
2632         hasDefaultHeaders:true,
2633
2634         defaultHeaders:{},
2635
2636         poll:{},
2637
2638         timeout:{},
2639
2640         pollInterval:50,
2641
2642         transactionId:0,
2643
2644         setProgId:function(id)
2645         {
2646             this.activeX.unshift(id);
2647         },
2648
2649         setDefaultPostHeader:function(b)
2650         {
2651             this.useDefaultHeader = b;
2652         },
2653
2654         setDefaultXhrHeader:function(b)
2655         {
2656             this.useDefaultXhrHeader = b;
2657         },
2658
2659         setPollingInterval:function(i)
2660         {
2661             if (typeof i == 'number' && isFinite(i)) {
2662                 this.pollInterval = i;
2663             }
2664         },
2665
2666         createXhrObject:function(transactionId)
2667         {
2668             var obj,http;
2669             try
2670             {
2671
2672                 http = new XMLHttpRequest();
2673
2674                 obj = { conn:http, tId:transactionId };
2675             }
2676             catch(e)
2677             {
2678                 for (var i = 0; i < this.activeX.length; ++i) {
2679                     try
2680                     {
2681
2682                         http = new ActiveXObject(this.activeX[i]);
2683
2684                         obj = { conn:http, tId:transactionId };
2685                         break;
2686                     }
2687                     catch(e) {
2688                     }
2689                 }
2690             }
2691             finally
2692             {
2693                 return obj;
2694             }
2695         },
2696
2697         getConnectionObject:function()
2698         {
2699             var o;
2700             var tId = this.transactionId;
2701
2702             try
2703             {
2704                 o = this.createXhrObject(tId);
2705                 if (o) {
2706                     this.transactionId++;
2707                 }
2708             }
2709             catch(e) {
2710             }
2711             finally
2712             {
2713                 return o;
2714             }
2715         },
2716
2717         asyncRequest:function(method, uri, callback, postData)
2718         {
2719             var o = this.getConnectionObject();
2720
2721             if (!o) {
2722                 return null;
2723             }
2724             else {
2725                 o.conn.open(method, uri, true);
2726
2727                 if (this.useDefaultXhrHeader) {
2728                     if (!this.defaultHeaders['X-Requested-With']) {
2729                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2730                     }
2731                 }
2732
2733                 if(postData && this.useDefaultHeader){
2734                     this.initHeader('Content-Type', this.defaultPostHeader);
2735                 }
2736
2737                  if (this.hasDefaultHeaders || this.hasHeaders) {
2738                     this.setHeader(o);
2739                 }
2740
2741                 this.handleReadyState(o, callback);
2742                 o.conn.send(postData || null);
2743
2744                 return o;
2745             }
2746         },
2747
2748         handleReadyState:function(o, callback)
2749         {
2750             var oConn = this;
2751
2752             if (callback && callback.timeout) {
2753                 
2754                 this.timeout[o.tId] = window.setTimeout(function() {
2755                     oConn.abort(o, callback, true);
2756                 }, callback.timeout);
2757             }
2758
2759             this.poll[o.tId] = window.setInterval(
2760                     function() {
2761                         if (o.conn && o.conn.readyState == 4) {
2762                             window.clearInterval(oConn.poll[o.tId]);
2763                             delete oConn.poll[o.tId];
2764
2765                             if(callback && callback.timeout) {
2766                                 window.clearTimeout(oConn.timeout[o.tId]);
2767                                 delete oConn.timeout[o.tId];
2768                             }
2769
2770                             oConn.handleTransactionResponse(o, callback);
2771                         }
2772                     }
2773                     , this.pollInterval);
2774         },
2775
2776         handleTransactionResponse:function(o, callback, isAbort)
2777         {
2778
2779             if (!callback) {
2780                 this.releaseObject(o);
2781                 return;
2782             }
2783
2784             var httpStatus, responseObject;
2785
2786             try
2787             {
2788                 if (o.conn.status !== undefined && o.conn.status != 0) {
2789                     httpStatus = o.conn.status;
2790                 }
2791                 else {
2792                     httpStatus = 13030;
2793                 }
2794             }
2795             catch(e) {
2796
2797
2798                 httpStatus = 13030;
2799             }
2800
2801             if (httpStatus >= 200 && httpStatus < 300) {
2802                 responseObject = this.createResponseObject(o, callback.argument);
2803                 if (callback.success) {
2804                     if (!callback.scope) {
2805                         callback.success(responseObject);
2806                     }
2807                     else {
2808
2809
2810                         callback.success.apply(callback.scope, [responseObject]);
2811                     }
2812                 }
2813             }
2814             else {
2815                 switch (httpStatus) {
2816
2817                     case 12002:
2818                     case 12029:
2819                     case 12030:
2820                     case 12031:
2821                     case 12152:
2822                     case 13030:
2823                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2824                         if (callback.failure) {
2825                             if (!callback.scope) {
2826                                 callback.failure(responseObject);
2827                             }
2828                             else {
2829                                 callback.failure.apply(callback.scope, [responseObject]);
2830                             }
2831                         }
2832                         break;
2833                     default:
2834                         responseObject = this.createResponseObject(o, callback.argument);
2835                         if (callback.failure) {
2836                             if (!callback.scope) {
2837                                 callback.failure(responseObject);
2838                             }
2839                             else {
2840                                 callback.failure.apply(callback.scope, [responseObject]);
2841                             }
2842                         }
2843                 }
2844             }
2845
2846             this.releaseObject(o);
2847             responseObject = null;
2848         },
2849
2850         createResponseObject:function(o, callbackArg)
2851         {
2852             var obj = {};
2853             var headerObj = {};
2854
2855             try
2856             {
2857                 var headerStr = o.conn.getAllResponseHeaders();
2858                 var header = headerStr.split('\n');
2859                 for (var i = 0; i < header.length; i++) {
2860                     var delimitPos = header[i].indexOf(':');
2861                     if (delimitPos != -1) {
2862                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2863                     }
2864                 }
2865             }
2866             catch(e) {
2867             }
2868
2869             obj.tId = o.tId;
2870             obj.status = o.conn.status;
2871             obj.statusText = o.conn.statusText;
2872             obj.getResponseHeader = headerObj;
2873             obj.getAllResponseHeaders = headerStr;
2874             obj.responseText = o.conn.responseText;
2875             obj.responseXML = o.conn.responseXML;
2876
2877             if (typeof callbackArg !== undefined) {
2878                 obj.argument = callbackArg;
2879             }
2880
2881             return obj;
2882         },
2883
2884         createExceptionObject:function(tId, callbackArg, isAbort)
2885         {
2886             var COMM_CODE = 0;
2887             var COMM_ERROR = 'communication failure';
2888             var ABORT_CODE = -1;
2889             var ABORT_ERROR = 'transaction aborted';
2890
2891             var obj = {};
2892
2893             obj.tId = tId;
2894             if (isAbort) {
2895                 obj.status = ABORT_CODE;
2896                 obj.statusText = ABORT_ERROR;
2897             }
2898             else {
2899                 obj.status = COMM_CODE;
2900                 obj.statusText = COMM_ERROR;
2901             }
2902
2903             if (callbackArg) {
2904                 obj.argument = callbackArg;
2905             }
2906
2907             return obj;
2908         },
2909
2910         initHeader:function(label, value, isDefault)
2911         {
2912             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2913
2914             if (headerObj[label] === undefined) {
2915                 headerObj[label] = value;
2916             }
2917             else {
2918
2919
2920                 headerObj[label] = value + "," + headerObj[label];
2921             }
2922
2923             if (isDefault) {
2924                 this.hasDefaultHeaders = true;
2925             }
2926             else {
2927                 this.hasHeaders = true;
2928             }
2929         },
2930
2931
2932         setHeader:function(o)
2933         {
2934             if (this.hasDefaultHeaders) {
2935                 for (var prop in this.defaultHeaders) {
2936                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2937                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2938                     }
2939                 }
2940             }
2941
2942             if (this.hasHeaders) {
2943                 for (var prop in this.headers) {
2944                     if (this.headers.hasOwnProperty(prop)) {
2945                         o.conn.setRequestHeader(prop, this.headers[prop]);
2946                     }
2947                 }
2948                 this.headers = {};
2949                 this.hasHeaders = false;
2950             }
2951         },
2952
2953         resetDefaultHeaders:function() {
2954             delete this.defaultHeaders;
2955             this.defaultHeaders = {};
2956             this.hasDefaultHeaders = false;
2957         },
2958
2959         abort:function(o, callback, isTimeout)
2960         {
2961             if(this.isCallInProgress(o)) {
2962                 o.conn.abort();
2963                 window.clearInterval(this.poll[o.tId]);
2964                 delete this.poll[o.tId];
2965                 if (isTimeout) {
2966                     delete this.timeout[o.tId];
2967                 }
2968
2969                 this.handleTransactionResponse(o, callback, true);
2970
2971                 return true;
2972             }
2973             else {
2974                 return false;
2975             }
2976         },
2977
2978
2979         isCallInProgress:function(o)
2980         {
2981             if (o && o.conn) {
2982                 return o.conn.readyState != 4 && o.conn.readyState != 0;
2983             }
2984             else {
2985
2986                 return false;
2987             }
2988         },
2989
2990
2991         releaseObject:function(o)
2992         {
2993
2994             o.conn = null;
2995
2996             o = null;
2997         },
2998
2999         activeX:[
3000         'MSXML2.XMLHTTP.3.0',
3001         'MSXML2.XMLHTTP',
3002         'Microsoft.XMLHTTP'
3003         ]
3004
3005
3006     };
3007 })();/*
3008  * Portions of this file are based on pieces of Yahoo User Interface Library
3009  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3010  * YUI licensed under the BSD License:
3011  * http://developer.yahoo.net/yui/license.txt
3012  * <script type="text/javascript">
3013  *
3014  */
3015
3016 Roo.lib.Region = function(t, r, b, l) {
3017     this.top = t;
3018     this[1] = t;
3019     this.right = r;
3020     this.bottom = b;
3021     this.left = l;
3022     this[0] = l;
3023 };
3024
3025
3026 Roo.lib.Region.prototype = {
3027     contains : function(region) {
3028         return ( region.left >= this.left &&
3029                  region.right <= this.right &&
3030                  region.top >= this.top &&
3031                  region.bottom <= this.bottom    );
3032
3033     },
3034
3035     getArea : function() {
3036         return ( (this.bottom - this.top) * (this.right - this.left) );
3037     },
3038
3039     intersect : function(region) {
3040         var t = Math.max(this.top, region.top);
3041         var r = Math.min(this.right, region.right);
3042         var b = Math.min(this.bottom, region.bottom);
3043         var l = Math.max(this.left, region.left);
3044
3045         if (b >= t && r >= l) {
3046             return new Roo.lib.Region(t, r, b, l);
3047         } else {
3048             return null;
3049         }
3050     },
3051     union : function(region) {
3052         var t = Math.min(this.top, region.top);
3053         var r = Math.max(this.right, region.right);
3054         var b = Math.max(this.bottom, region.bottom);
3055         var l = Math.min(this.left, region.left);
3056
3057         return new Roo.lib.Region(t, r, b, l);
3058     },
3059
3060     adjust : function(t, l, b, r) {
3061         this.top += t;
3062         this.left += l;
3063         this.right += r;
3064         this.bottom += b;
3065         return this;
3066     }
3067 };
3068
3069 Roo.lib.Region.getRegion = function(el) {
3070     var p = Roo.lib.Dom.getXY(el);
3071
3072     var t = p[1];
3073     var r = p[0] + el.offsetWidth;
3074     var b = p[1] + el.offsetHeight;
3075     var l = p[0];
3076
3077     return new Roo.lib.Region(t, r, b, l);
3078 };
3079 /*
3080  * Portions of this file are based on pieces of Yahoo User Interface Library
3081  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3082  * YUI licensed under the BSD License:
3083  * http://developer.yahoo.net/yui/license.txt
3084  * <script type="text/javascript">
3085  *
3086  */
3087 //@@dep Roo.lib.Region
3088
3089
3090 Roo.lib.Point = function(x, y) {
3091     if (x instanceof Array) {
3092         y = x[1];
3093         x = x[0];
3094     }
3095     this.x = this.right = this.left = this[0] = x;
3096     this.y = this.top = this.bottom = this[1] = y;
3097 };
3098
3099 Roo.lib.Point.prototype = new Roo.lib.Region();
3100 /*
3101  * Portions of this file are based on pieces of Yahoo User Interface Library
3102  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3103  * YUI licensed under the BSD License:
3104  * http://developer.yahoo.net/yui/license.txt
3105  * <script type="text/javascript">
3106  *
3107  */
3108  
3109 (function() {   
3110
3111     Roo.lib.Anim = {
3112         scroll : function(el, args, duration, easing, cb, scope) {
3113             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3114         },
3115
3116         motion : function(el, args, duration, easing, cb, scope) {
3117             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3118         },
3119
3120         color : function(el, args, duration, easing, cb, scope) {
3121             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3122         },
3123
3124         run : function(el, args, duration, easing, cb, scope, type) {
3125             type = type || Roo.lib.AnimBase;
3126             if (typeof easing == "string") {
3127                 easing = Roo.lib.Easing[easing];
3128             }
3129             var anim = new type(el, args, duration, easing);
3130             anim.animateX(function() {
3131                 Roo.callback(cb, scope);
3132             });
3133             return anim;
3134         }
3135     };
3136 })();/*
3137  * Portions of this file are based on pieces of Yahoo User Interface Library
3138  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3139  * YUI licensed under the BSD License:
3140  * http://developer.yahoo.net/yui/license.txt
3141  * <script type="text/javascript">
3142  *
3143  */
3144
3145 (function() {    
3146     var libFlyweight;
3147     
3148     function fly(el) {
3149         if (!libFlyweight) {
3150             libFlyweight = new Roo.Element.Flyweight();
3151         }
3152         libFlyweight.dom = el;
3153         return libFlyweight;
3154     }
3155
3156     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3157     
3158    
3159     
3160     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3161         if (el) {
3162             this.init(el, attributes, duration, method);
3163         }
3164     };
3165
3166     Roo.lib.AnimBase.fly = fly;
3167     
3168     
3169     
3170     Roo.lib.AnimBase.prototype = {
3171
3172         toString: function() {
3173             var el = this.getEl();
3174             var id = el.id || el.tagName;
3175             return ("Anim " + id);
3176         },
3177
3178         patterns: {
3179             noNegatives:        /width|height|opacity|padding/i,
3180             offsetAttribute:  /^((width|height)|(top|left))$/,
3181             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3182             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3183         },
3184
3185
3186         doMethod: function(attr, start, end) {
3187             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3188         },
3189
3190
3191         setAttribute: function(attr, val, unit) {
3192             if (this.patterns.noNegatives.test(attr)) {
3193                 val = (val > 0) ? val : 0;
3194             }
3195
3196             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3197         },
3198
3199
3200         getAttribute: function(attr) {
3201             var el = this.getEl();
3202             var val = fly(el).getStyle(attr);
3203
3204             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3205                 return parseFloat(val);
3206             }
3207
3208             var a = this.patterns.offsetAttribute.exec(attr) || [];
3209             var pos = !!( a[3] );
3210             var box = !!( a[2] );
3211
3212
3213             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3214                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3215             } else {
3216                 val = 0;
3217             }
3218
3219             return val;
3220         },
3221
3222
3223         getDefaultUnit: function(attr) {
3224             if (this.patterns.defaultUnit.test(attr)) {
3225                 return 'px';
3226             }
3227
3228             return '';
3229         },
3230
3231         animateX : function(callback, scope) {
3232             var f = function() {
3233                 this.onComplete.removeListener(f);
3234                 if (typeof callback == "function") {
3235                     callback.call(scope || this, this);
3236                 }
3237             };
3238             this.onComplete.addListener(f, this);
3239             this.animate();
3240         },
3241
3242
3243         setRuntimeAttribute: function(attr) {
3244             var start;
3245             var end;
3246             var attributes = this.attributes;
3247
3248             this.runtimeAttributes[attr] = {};
3249
3250             var isset = function(prop) {
3251                 return (typeof prop !== 'undefined');
3252             };
3253
3254             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3255                 return false;
3256             }
3257
3258             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3259
3260
3261             if (isset(attributes[attr]['to'])) {
3262                 end = attributes[attr]['to'];
3263             } else if (isset(attributes[attr]['by'])) {
3264                 if (start.constructor == Array) {
3265                     end = [];
3266                     for (var i = 0, len = start.length; i < len; ++i) {
3267                         end[i] = start[i] + attributes[attr]['by'][i];
3268                     }
3269                 } else {
3270                     end = start + attributes[attr]['by'];
3271                 }
3272             }
3273
3274             this.runtimeAttributes[attr].start = start;
3275             this.runtimeAttributes[attr].end = end;
3276
3277
3278             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3279         },
3280
3281
3282         init: function(el, attributes, duration, method) {
3283
3284             var isAnimated = false;
3285
3286
3287             var startTime = null;
3288
3289
3290             var actualFrames = 0;
3291
3292
3293             el = Roo.getDom(el);
3294
3295
3296             this.attributes = attributes || {};
3297
3298
3299             this.duration = duration || 1;
3300
3301
3302             this.method = method || Roo.lib.Easing.easeNone;
3303
3304
3305             this.useSeconds = true;
3306
3307
3308             this.currentFrame = 0;
3309
3310
3311             this.totalFrames = Roo.lib.AnimMgr.fps;
3312
3313
3314             this.getEl = function() {
3315                 return el;
3316             };
3317
3318
3319             this.isAnimated = function() {
3320                 return isAnimated;
3321             };
3322
3323
3324             this.getStartTime = function() {
3325                 return startTime;
3326             };
3327
3328             this.runtimeAttributes = {};
3329
3330
3331             this.animate = function() {
3332                 if (this.isAnimated()) {
3333                     return false;
3334                 }
3335
3336                 this.currentFrame = 0;
3337
3338                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3339
3340                 Roo.lib.AnimMgr.registerElement(this);
3341             };
3342
3343
3344             this.stop = function(finish) {
3345                 if (finish) {
3346                     this.currentFrame = this.totalFrames;
3347                     this._onTween.fire();
3348                 }
3349                 Roo.lib.AnimMgr.stop(this);
3350             };
3351
3352             var onStart = function() {
3353                 this.onStart.fire();
3354
3355                 this.runtimeAttributes = {};
3356                 for (var attr in this.attributes) {
3357                     this.setRuntimeAttribute(attr);
3358                 }
3359
3360                 isAnimated = true;
3361                 actualFrames = 0;
3362                 startTime = new Date();
3363             };
3364
3365
3366             var onTween = function() {
3367                 var data = {
3368                     duration: new Date() - this.getStartTime(),
3369                     currentFrame: this.currentFrame
3370                 };
3371
3372                 data.toString = function() {
3373                     return (
3374                             'duration: ' + data.duration +
3375                             ', currentFrame: ' + data.currentFrame
3376                             );
3377                 };
3378
3379                 this.onTween.fire(data);
3380
3381                 var runtimeAttributes = this.runtimeAttributes;
3382
3383                 for (var attr in runtimeAttributes) {
3384                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3385                 }
3386
3387                 actualFrames += 1;
3388             };
3389
3390             var onComplete = function() {
3391                 var actual_duration = (new Date() - startTime) / 1000 ;
3392
3393                 var data = {
3394                     duration: actual_duration,
3395                     frames: actualFrames,
3396                     fps: actualFrames / actual_duration
3397                 };
3398
3399                 data.toString = function() {
3400                     return (
3401                             'duration: ' + data.duration +
3402                             ', frames: ' + data.frames +
3403                             ', fps: ' + data.fps
3404                             );
3405                 };
3406
3407                 isAnimated = false;
3408                 actualFrames = 0;
3409                 this.onComplete.fire(data);
3410             };
3411
3412
3413             this._onStart = new Roo.util.Event(this);
3414             this.onStart = new Roo.util.Event(this);
3415             this.onTween = new Roo.util.Event(this);
3416             this._onTween = new Roo.util.Event(this);
3417             this.onComplete = new Roo.util.Event(this);
3418             this._onComplete = new Roo.util.Event(this);
3419             this._onStart.addListener(onStart);
3420             this._onTween.addListener(onTween);
3421             this._onComplete.addListener(onComplete);
3422         }
3423     };
3424 })();
3425 /*
3426  * Portions of this file are based on pieces of Yahoo User Interface Library
3427  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3428  * YUI licensed under the BSD License:
3429  * http://developer.yahoo.net/yui/license.txt
3430  * <script type="text/javascript">
3431  *
3432  */
3433
3434 Roo.lib.AnimMgr = new function() {
3435
3436     var thread = null;
3437
3438
3439     var queue = [];
3440
3441
3442     var tweenCount = 0;
3443
3444
3445     this.fps = 1000;
3446
3447
3448     this.delay = 1;
3449
3450
3451     this.registerElement = function(tween) {
3452         queue[queue.length] = tween;
3453         tweenCount += 1;
3454         tween._onStart.fire();
3455         this.start();
3456     };
3457
3458
3459     this.unRegister = function(tween, index) {
3460         tween._onComplete.fire();
3461         index = index || getIndex(tween);
3462         if (index != -1) {
3463             queue.splice(index, 1);
3464         }
3465
3466         tweenCount -= 1;
3467         if (tweenCount <= 0) {
3468             this.stop();
3469         }
3470     };
3471
3472
3473     this.start = function() {
3474         if (thread === null) {
3475             thread = setInterval(this.run, this.delay);
3476         }
3477     };
3478
3479
3480     this.stop = function(tween) {
3481         if (!tween) {
3482             clearInterval(thread);
3483
3484             for (var i = 0, len = queue.length; i < len; ++i) {
3485                 if (queue[0].isAnimated()) {
3486                     this.unRegister(queue[0], 0);
3487                 }
3488             }
3489
3490             queue = [];
3491             thread = null;
3492             tweenCount = 0;
3493         }
3494         else {
3495             this.unRegister(tween);
3496         }
3497     };
3498
3499
3500     this.run = function() {
3501         for (var i = 0, len = queue.length; i < len; ++i) {
3502             var tween = queue[i];
3503             if (!tween || !tween.isAnimated()) {
3504                 continue;
3505             }
3506
3507             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3508             {
3509                 tween.currentFrame += 1;
3510
3511                 if (tween.useSeconds) {
3512                     correctFrame(tween);
3513                 }
3514                 tween._onTween.fire();
3515             }
3516             else {
3517                 Roo.lib.AnimMgr.stop(tween, i);
3518             }
3519         }
3520     };
3521
3522     var getIndex = function(anim) {
3523         for (var i = 0, len = queue.length; i < len; ++i) {
3524             if (queue[i] == anim) {
3525                 return i;
3526             }
3527         }
3528         return -1;
3529     };
3530
3531
3532     var correctFrame = function(tween) {
3533         var frames = tween.totalFrames;
3534         var frame = tween.currentFrame;
3535         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3536         var elapsed = (new Date() - tween.getStartTime());
3537         var tweak = 0;
3538
3539         if (elapsed < tween.duration * 1000) {
3540             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3541         } else {
3542             tweak = frames - (frame + 1);
3543         }
3544         if (tweak > 0 && isFinite(tweak)) {
3545             if (tween.currentFrame + tweak >= frames) {
3546                 tweak = frames - (frame + 1);
3547             }
3548
3549             tween.currentFrame += tweak;
3550         }
3551     };
3552 };
3553
3554     /*
3555  * Portions of this file are based on pieces of Yahoo User Interface Library
3556  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3557  * YUI licensed under the BSD License:
3558  * http://developer.yahoo.net/yui/license.txt
3559  * <script type="text/javascript">
3560  *
3561  */
3562 Roo.lib.Bezier = new function() {
3563
3564         this.getPosition = function(points, t) {
3565             var n = points.length;
3566             var tmp = [];
3567
3568             for (var i = 0; i < n; ++i) {
3569                 tmp[i] = [points[i][0], points[i][1]];
3570             }
3571
3572             for (var j = 1; j < n; ++j) {
3573                 for (i = 0; i < n - j; ++i) {
3574                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3575                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3576                 }
3577             }
3578
3579             return [ tmp[0][0], tmp[0][1] ];
3580
3581         };
3582     };/*
3583  * Portions of this file are based on pieces of Yahoo User Interface Library
3584  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3585  * YUI licensed under the BSD License:
3586  * http://developer.yahoo.net/yui/license.txt
3587  * <script type="text/javascript">
3588  *
3589  */
3590 (function() {
3591
3592     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3593         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3594     };
3595
3596     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3597
3598     var fly = Roo.lib.AnimBase.fly;
3599     var Y = Roo.lib;
3600     var superclass = Y.ColorAnim.superclass;
3601     var proto = Y.ColorAnim.prototype;
3602
3603     proto.toString = function() {
3604         var el = this.getEl();
3605         var id = el.id || el.tagName;
3606         return ("ColorAnim " + id);
3607     };
3608
3609     proto.patterns.color = /color$/i;
3610     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3611     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3612     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3613     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3614
3615
3616     proto.parseColor = function(s) {
3617         if (s.length == 3) {
3618             return s;
3619         }
3620
3621         var c = this.patterns.hex.exec(s);
3622         if (c && c.length == 4) {
3623             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3624         }
3625
3626         c = this.patterns.rgb.exec(s);
3627         if (c && c.length == 4) {
3628             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3629         }
3630
3631         c = this.patterns.hex3.exec(s);
3632         if (c && c.length == 4) {
3633             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3634         }
3635
3636         return null;
3637     };
3638     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3639     proto.getAttribute = function(attr) {
3640         var el = this.getEl();
3641         if (this.patterns.color.test(attr)) {
3642             var val = fly(el).getStyle(attr);
3643
3644             if (this.patterns.transparent.test(val)) {
3645                 var parent = el.parentNode;
3646                 val = fly(parent).getStyle(attr);
3647
3648                 while (parent && this.patterns.transparent.test(val)) {
3649                     parent = parent.parentNode;
3650                     val = fly(parent).getStyle(attr);
3651                     if (parent.tagName.toUpperCase() == 'HTML') {
3652                         val = '#fff';
3653                     }
3654                 }
3655             }
3656         } else {
3657             val = superclass.getAttribute.call(this, attr);
3658         }
3659
3660         return val;
3661     };
3662     proto.getAttribute = function(attr) {
3663         var el = this.getEl();
3664         if (this.patterns.color.test(attr)) {
3665             var val = fly(el).getStyle(attr);
3666
3667             if (this.patterns.transparent.test(val)) {
3668                 var parent = el.parentNode;
3669                 val = fly(parent).getStyle(attr);
3670
3671                 while (parent && this.patterns.transparent.test(val)) {
3672                     parent = parent.parentNode;
3673                     val = fly(parent).getStyle(attr);
3674                     if (parent.tagName.toUpperCase() == 'HTML') {
3675                         val = '#fff';
3676                     }
3677                 }
3678             }
3679         } else {
3680             val = superclass.getAttribute.call(this, attr);
3681         }
3682
3683         return val;
3684     };
3685
3686     proto.doMethod = function(attr, start, end) {
3687         var val;
3688
3689         if (this.patterns.color.test(attr)) {
3690             val = [];
3691             for (var i = 0, len = start.length; i < len; ++i) {
3692                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3693             }
3694
3695             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3696         }
3697         else {
3698             val = superclass.doMethod.call(this, attr, start, end);
3699         }
3700
3701         return val;
3702     };
3703
3704     proto.setRuntimeAttribute = function(attr) {
3705         superclass.setRuntimeAttribute.call(this, attr);
3706
3707         if (this.patterns.color.test(attr)) {
3708             var attributes = this.attributes;
3709             var start = this.parseColor(this.runtimeAttributes[attr].start);
3710             var end = this.parseColor(this.runtimeAttributes[attr].end);
3711
3712             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3713                 end = this.parseColor(attributes[attr].by);
3714
3715                 for (var i = 0, len = start.length; i < len; ++i) {
3716                     end[i] = start[i] + end[i];
3717                 }
3718             }
3719
3720             this.runtimeAttributes[attr].start = start;
3721             this.runtimeAttributes[attr].end = end;
3722         }
3723     };
3724 })();
3725
3726 /*
3727  * Portions of this file are based on pieces of Yahoo User Interface Library
3728  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3729  * YUI licensed under the BSD License:
3730  * http://developer.yahoo.net/yui/license.txt
3731  * <script type="text/javascript">
3732  *
3733  */
3734 Roo.lib.Easing = {
3735
3736
3737     easeNone: function (t, b, c, d) {
3738         return c * t / d + b;
3739     },
3740
3741
3742     easeIn: function (t, b, c, d) {
3743         return c * (t /= d) * t + b;
3744     },
3745
3746
3747     easeOut: function (t, b, c, d) {
3748         return -c * (t /= d) * (t - 2) + b;
3749     },
3750
3751
3752     easeBoth: function (t, b, c, d) {
3753         if ((t /= d / 2) < 1) {
3754             return c / 2 * t * t + b;
3755         }
3756
3757         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3758     },
3759
3760
3761     easeInStrong: function (t, b, c, d) {
3762         return c * (t /= d) * t * t * t + b;
3763     },
3764
3765
3766     easeOutStrong: function (t, b, c, d) {
3767         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3768     },
3769
3770
3771     easeBothStrong: function (t, b, c, d) {
3772         if ((t /= d / 2) < 1) {
3773             return c / 2 * t * t * t * t + b;
3774         }
3775
3776         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3777     },
3778
3779
3780
3781     elasticIn: function (t, b, c, d, a, p) {
3782         if (t == 0) {
3783             return b;
3784         }
3785         if ((t /= d) == 1) {
3786             return b + c;
3787         }
3788         if (!p) {
3789             p = d * .3;
3790         }
3791
3792         if (!a || a < Math.abs(c)) {
3793             a = c;
3794             var s = p / 4;
3795         }
3796         else {
3797             var s = p / (2 * Math.PI) * Math.asin(c / a);
3798         }
3799
3800         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3801     },
3802
3803
3804     elasticOut: function (t, b, c, d, a, p) {
3805         if (t == 0) {
3806             return b;
3807         }
3808         if ((t /= d) == 1) {
3809             return b + c;
3810         }
3811         if (!p) {
3812             p = d * .3;
3813         }
3814
3815         if (!a || a < Math.abs(c)) {
3816             a = c;
3817             var s = p / 4;
3818         }
3819         else {
3820             var s = p / (2 * Math.PI) * Math.asin(c / a);
3821         }
3822
3823         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3824     },
3825
3826
3827     elasticBoth: function (t, b, c, d, a, p) {
3828         if (t == 0) {
3829             return b;
3830         }
3831
3832         if ((t /= d / 2) == 2) {
3833             return b + c;
3834         }
3835
3836         if (!p) {
3837             p = d * (.3 * 1.5);
3838         }
3839
3840         if (!a || a < Math.abs(c)) {
3841             a = c;
3842             var s = p / 4;
3843         }
3844         else {
3845             var s = p / (2 * Math.PI) * Math.asin(c / a);
3846         }
3847
3848         if (t < 1) {
3849             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3850                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3851         }
3852         return a * Math.pow(2, -10 * (t -= 1)) *
3853                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3854     },
3855
3856
3857
3858     backIn: function (t, b, c, d, s) {
3859         if (typeof s == 'undefined') {
3860             s = 1.70158;
3861         }
3862         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3863     },
3864
3865
3866     backOut: function (t, b, c, d, s) {
3867         if (typeof s == 'undefined') {
3868             s = 1.70158;
3869         }
3870         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3871     },
3872
3873
3874     backBoth: function (t, b, c, d, s) {
3875         if (typeof s == 'undefined') {
3876             s = 1.70158;
3877         }
3878
3879         if ((t /= d / 2 ) < 1) {
3880             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3881         }
3882         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3883     },
3884
3885
3886     bounceIn: function (t, b, c, d) {
3887         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3888     },
3889
3890
3891     bounceOut: function (t, b, c, d) {
3892         if ((t /= d) < (1 / 2.75)) {
3893             return c * (7.5625 * t * t) + b;
3894         } else if (t < (2 / 2.75)) {
3895             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3896         } else if (t < (2.5 / 2.75)) {
3897             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3898         }
3899         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3900     },
3901
3902
3903     bounceBoth: function (t, b, c, d) {
3904         if (t < d / 2) {
3905             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3906         }
3907         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3908     }
3909 };/*
3910  * Portions of this file are based on pieces of Yahoo User Interface Library
3911  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3912  * YUI licensed under the BSD License:
3913  * http://developer.yahoo.net/yui/license.txt
3914  * <script type="text/javascript">
3915  *
3916  */
3917     (function() {
3918         Roo.lib.Motion = function(el, attributes, duration, method) {
3919             if (el) {
3920                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3921             }
3922         };
3923
3924         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3925
3926
3927         var Y = Roo.lib;
3928         var superclass = Y.Motion.superclass;
3929         var proto = Y.Motion.prototype;
3930
3931         proto.toString = function() {
3932             var el = this.getEl();
3933             var id = el.id || el.tagName;
3934             return ("Motion " + id);
3935         };
3936
3937         proto.patterns.points = /^points$/i;
3938
3939         proto.setAttribute = function(attr, val, unit) {
3940             if (this.patterns.points.test(attr)) {
3941                 unit = unit || 'px';
3942                 superclass.setAttribute.call(this, 'left', val[0], unit);
3943                 superclass.setAttribute.call(this, 'top', val[1], unit);
3944             } else {
3945                 superclass.setAttribute.call(this, attr, val, unit);
3946             }
3947         };
3948
3949         proto.getAttribute = function(attr) {
3950             if (this.patterns.points.test(attr)) {
3951                 var val = [
3952                         superclass.getAttribute.call(this, 'left'),
3953                         superclass.getAttribute.call(this, 'top')
3954                         ];
3955             } else {
3956                 val = superclass.getAttribute.call(this, attr);
3957             }
3958
3959             return val;
3960         };
3961
3962         proto.doMethod = function(attr, start, end) {
3963             var val = null;
3964
3965             if (this.patterns.points.test(attr)) {
3966                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
3967                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
3968             } else {
3969                 val = superclass.doMethod.call(this, attr, start, end);
3970             }
3971             return val;
3972         };
3973
3974         proto.setRuntimeAttribute = function(attr) {
3975             if (this.patterns.points.test(attr)) {
3976                 var el = this.getEl();
3977                 var attributes = this.attributes;
3978                 var start;
3979                 var control = attributes['points']['control'] || [];
3980                 var end;
3981                 var i, len;
3982
3983                 if (control.length > 0 && !(control[0] instanceof Array)) {
3984                     control = [control];
3985                 } else {
3986                     var tmp = [];
3987                     for (i = 0,len = control.length; i < len; ++i) {
3988                         tmp[i] = control[i];
3989                     }
3990                     control = tmp;
3991                 }
3992
3993                 Roo.fly(el).position();
3994
3995                 if (isset(attributes['points']['from'])) {
3996                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
3997                 }
3998                 else {
3999                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4000                 }
4001
4002                 start = this.getAttribute('points');
4003
4004
4005                 if (isset(attributes['points']['to'])) {
4006                     end = translateValues.call(this, attributes['points']['to'], start);
4007
4008                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4009                     for (i = 0,len = control.length; i < len; ++i) {
4010                         control[i] = translateValues.call(this, control[i], start);
4011                     }
4012
4013
4014                 } else if (isset(attributes['points']['by'])) {
4015                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4016
4017                     for (i = 0,len = control.length; i < len; ++i) {
4018                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4019                     }
4020                 }
4021
4022                 this.runtimeAttributes[attr] = [start];
4023
4024                 if (control.length > 0) {
4025                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4026                 }
4027
4028                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4029             }
4030             else {
4031                 superclass.setRuntimeAttribute.call(this, attr);
4032             }
4033         };
4034
4035         var translateValues = function(val, start) {
4036             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4037             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4038
4039             return val;
4040         };
4041
4042         var isset = function(prop) {
4043             return (typeof prop !== 'undefined');
4044         };
4045     })();
4046 /*
4047  * Portions of this file are based on pieces of Yahoo User Interface Library
4048  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4049  * YUI licensed under the BSD License:
4050  * http://developer.yahoo.net/yui/license.txt
4051  * <script type="text/javascript">
4052  *
4053  */
4054     (function() {
4055         Roo.lib.Scroll = function(el, attributes, duration, method) {
4056             if (el) {
4057                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4058             }
4059         };
4060
4061         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4062
4063
4064         var Y = Roo.lib;
4065         var superclass = Y.Scroll.superclass;
4066         var proto = Y.Scroll.prototype;
4067
4068         proto.toString = function() {
4069             var el = this.getEl();
4070             var id = el.id || el.tagName;
4071             return ("Scroll " + id);
4072         };
4073
4074         proto.doMethod = function(attr, start, end) {
4075             var val = null;
4076
4077             if (attr == 'scroll') {
4078                 val = [
4079                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4080                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4081                         ];
4082
4083             } else {
4084                 val = superclass.doMethod.call(this, attr, start, end);
4085             }
4086             return val;
4087         };
4088
4089         proto.getAttribute = function(attr) {
4090             var val = null;
4091             var el = this.getEl();
4092
4093             if (attr == 'scroll') {
4094                 val = [ el.scrollLeft, el.scrollTop ];
4095             } else {
4096                 val = superclass.getAttribute.call(this, attr);
4097             }
4098
4099             return val;
4100         };
4101
4102         proto.setAttribute = function(attr, val, unit) {
4103             var el = this.getEl();
4104
4105             if (attr == 'scroll') {
4106                 el.scrollLeft = val[0];
4107                 el.scrollTop = val[1];
4108             } else {
4109                 superclass.setAttribute.call(this, attr, val, unit);
4110             }
4111         };
4112     })();
4113 /*
4114  * Based on:
4115  * Ext JS Library 1.1.1
4116  * Copyright(c) 2006-2007, Ext JS, LLC.
4117  *
4118  * Originally Released Under LGPL - original licence link has changed is not relivant.
4119  *
4120  * Fork - LGPL
4121  * <script type="text/javascript">
4122  */
4123
4124
4125 // nasty IE9 hack - what a pile of crap that is..
4126
4127  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4128     Range.prototype.createContextualFragment = function (html) {
4129         var doc = window.document;
4130         var container = doc.createElement("div");
4131         container.innerHTML = html;
4132         var frag = doc.createDocumentFragment(), n;
4133         while ((n = container.firstChild)) {
4134             frag.appendChild(n);
4135         }
4136         return frag;
4137     };
4138 }
4139
4140 /**
4141  * @class Roo.DomHelper
4142  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4143  * 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>.
4144  * @singleton
4145  */
4146 Roo.DomHelper = function(){
4147     var tempTableEl = null;
4148     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4149     var tableRe = /^table|tbody|tr|td$/i;
4150     var xmlns = {};
4151     // build as innerHTML where available
4152     /** @ignore */
4153     var createHtml = function(o){
4154         if(typeof o == 'string'){
4155             return o;
4156         }
4157         var b = "";
4158         if(!o.tag){
4159             o.tag = "div";
4160         }
4161         b += "<" + o.tag;
4162         for(var attr in o){
4163             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4164             if(attr == "style"){
4165                 var s = o["style"];
4166                 if(typeof s == "function"){
4167                     s = s.call();
4168                 }
4169                 if(typeof s == "string"){
4170                     b += ' style="' + s + '"';
4171                 }else if(typeof s == "object"){
4172                     b += ' style="';
4173                     for(var key in s){
4174                         if(typeof s[key] != "function"){
4175                             b += key + ":" + s[key] + ";";
4176                         }
4177                     }
4178                     b += '"';
4179                 }
4180             }else{
4181                 if(attr == "cls"){
4182                     b += ' class="' + o["cls"] + '"';
4183                 }else if(attr == "htmlFor"){
4184                     b += ' for="' + o["htmlFor"] + '"';
4185                 }else{
4186                     b += " " + attr + '="' + o[attr] + '"';
4187                 }
4188             }
4189         }
4190         if(emptyTags.test(o.tag)){
4191             b += "/>";
4192         }else{
4193             b += ">";
4194             var cn = o.children || o.cn;
4195             if(cn){
4196                 //http://bugs.kde.org/show_bug.cgi?id=71506
4197                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4198                     for(var i = 0, len = cn.length; i < len; i++) {
4199                         b += createHtml(cn[i], b);
4200                     }
4201                 }else{
4202                     b += createHtml(cn, b);
4203                 }
4204             }
4205             if(o.html){
4206                 b += o.html;
4207             }
4208             b += "</" + o.tag + ">";
4209         }
4210         return b;
4211     };
4212
4213     // build as dom
4214     /** @ignore */
4215     var createDom = function(o, parentNode){
4216          
4217         // defininition craeted..
4218         var ns = false;
4219         if (o.ns && o.ns != 'html') {
4220                
4221             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4222                 xmlns[o.ns] = o.xmlns;
4223                 ns = o.xmlns;
4224             }
4225             if (typeof(xmlns[o.ns]) == 'undefined') {
4226                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4227             }
4228             ns = xmlns[o.ns];
4229         }
4230         
4231         
4232         if (typeof(o) == 'string') {
4233             return parentNode.appendChild(document.createTextNode(o));
4234         }
4235         o.tag = o.tag || div;
4236         if (o.ns && Roo.isIE) {
4237             ns = false;
4238             o.tag = o.ns + ':' + o.tag;
4239             
4240         }
4241         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4242         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4243         for(var attr in o){
4244             
4245             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4246                     attr == "style" || typeof o[attr] == "function") { continue; }
4247                     
4248             if(attr=="cls" && Roo.isIE){
4249                 el.className = o["cls"];
4250             }else{
4251                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4252                 else { 
4253                     el[attr] = o[attr];
4254                 }
4255             }
4256         }
4257         Roo.DomHelper.applyStyles(el, o.style);
4258         var cn = o.children || o.cn;
4259         if(cn){
4260             //http://bugs.kde.org/show_bug.cgi?id=71506
4261              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4262                 for(var i = 0, len = cn.length; i < len; i++) {
4263                     createDom(cn[i], el);
4264                 }
4265             }else{
4266                 createDom(cn, el);
4267             }
4268         }
4269         if(o.html){
4270             el.innerHTML = o.html;
4271         }
4272         if(parentNode){
4273            parentNode.appendChild(el);
4274         }
4275         return el;
4276     };
4277
4278     var ieTable = function(depth, s, h, e){
4279         tempTableEl.innerHTML = [s, h, e].join('');
4280         var i = -1, el = tempTableEl;
4281         while(++i < depth){
4282             el = el.firstChild;
4283         }
4284         return el;
4285     };
4286
4287     // kill repeat to save bytes
4288     var ts = '<table>',
4289         te = '</table>',
4290         tbs = ts+'<tbody>',
4291         tbe = '</tbody>'+te,
4292         trs = tbs + '<tr>',
4293         tre = '</tr>'+tbe;
4294
4295     /**
4296      * @ignore
4297      * Nasty code for IE's broken table implementation
4298      */
4299     var insertIntoTable = function(tag, where, el, html){
4300         if(!tempTableEl){
4301             tempTableEl = document.createElement('div');
4302         }
4303         var node;
4304         var before = null;
4305         if(tag == 'td'){
4306             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4307                 return;
4308             }
4309             if(where == 'beforebegin'){
4310                 before = el;
4311                 el = el.parentNode;
4312             } else{
4313                 before = el.nextSibling;
4314                 el = el.parentNode;
4315             }
4316             node = ieTable(4, trs, html, tre);
4317         }
4318         else if(tag == 'tr'){
4319             if(where == 'beforebegin'){
4320                 before = el;
4321                 el = el.parentNode;
4322                 node = ieTable(3, tbs, html, tbe);
4323             } else if(where == 'afterend'){
4324                 before = el.nextSibling;
4325                 el = el.parentNode;
4326                 node = ieTable(3, tbs, html, tbe);
4327             } else{ // INTO a TR
4328                 if(where == 'afterbegin'){
4329                     before = el.firstChild;
4330                 }
4331                 node = ieTable(4, trs, html, tre);
4332             }
4333         } else if(tag == 'tbody'){
4334             if(where == 'beforebegin'){
4335                 before = el;
4336                 el = el.parentNode;
4337                 node = ieTable(2, ts, html, te);
4338             } else if(where == 'afterend'){
4339                 before = el.nextSibling;
4340                 el = el.parentNode;
4341                 node = ieTable(2, ts, html, te);
4342             } else{
4343                 if(where == 'afterbegin'){
4344                     before = el.firstChild;
4345                 }
4346                 node = ieTable(3, tbs, html, tbe);
4347             }
4348         } else{ // TABLE
4349             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4350                 return;
4351             }
4352             if(where == 'afterbegin'){
4353                 before = el.firstChild;
4354             }
4355             node = ieTable(2, ts, html, te);
4356         }
4357         el.insertBefore(node, before);
4358         return node;
4359     };
4360
4361     return {
4362     /** True to force the use of DOM instead of html fragments @type Boolean */
4363     useDom : false,
4364
4365     /**
4366      * Returns the markup for the passed Element(s) config
4367      * @param {Object} o The Dom object spec (and children)
4368      * @return {String}
4369      */
4370     markup : function(o){
4371         return createHtml(o);
4372     },
4373
4374     /**
4375      * Applies a style specification to an element
4376      * @param {String/HTMLElement} el The element to apply styles to
4377      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4378      * a function which returns such a specification.
4379      */
4380     applyStyles : function(el, styles){
4381         if(styles){
4382            el = Roo.fly(el);
4383            if(typeof styles == "string"){
4384                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4385                var matches;
4386                while ((matches = re.exec(styles)) != null){
4387                    el.setStyle(matches[1], matches[2]);
4388                }
4389            }else if (typeof styles == "object"){
4390                for (var style in styles){
4391                   el.setStyle(style, styles[style]);
4392                }
4393            }else if (typeof styles == "function"){
4394                 Roo.DomHelper.applyStyles(el, styles.call());
4395            }
4396         }
4397     },
4398
4399     /**
4400      * Inserts an HTML fragment into the Dom
4401      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4402      * @param {HTMLElement} el The context element
4403      * @param {String} html The HTML fragmenet
4404      * @return {HTMLElement} The new node
4405      */
4406     insertHtml : function(where, el, html){
4407         where = where.toLowerCase();
4408         if(el.insertAdjacentHTML){
4409             if(tableRe.test(el.tagName)){
4410                 var rs;
4411                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4412                     return rs;
4413                 }
4414             }
4415             switch(where){
4416                 case "beforebegin":
4417                     el.insertAdjacentHTML('BeforeBegin', html);
4418                     return el.previousSibling;
4419                 case "afterbegin":
4420                     el.insertAdjacentHTML('AfterBegin', html);
4421                     return el.firstChild;
4422                 case "beforeend":
4423                     el.insertAdjacentHTML('BeforeEnd', html);
4424                     return el.lastChild;
4425                 case "afterend":
4426                     el.insertAdjacentHTML('AfterEnd', html);
4427                     return el.nextSibling;
4428             }
4429             throw 'Illegal insertion point -> "' + where + '"';
4430         }
4431         var range = el.ownerDocument.createRange();
4432         var frag;
4433         switch(where){
4434              case "beforebegin":
4435                 range.setStartBefore(el);
4436                 frag = range.createContextualFragment(html);
4437                 el.parentNode.insertBefore(frag, el);
4438                 return el.previousSibling;
4439              case "afterbegin":
4440                 if(el.firstChild){
4441                     range.setStartBefore(el.firstChild);
4442                     frag = range.createContextualFragment(html);
4443                     el.insertBefore(frag, el.firstChild);
4444                     return el.firstChild;
4445                 }else{
4446                     el.innerHTML = html;
4447                     return el.firstChild;
4448                 }
4449             case "beforeend":
4450                 if(el.lastChild){
4451                     range.setStartAfter(el.lastChild);
4452                     frag = range.createContextualFragment(html);
4453                     el.appendChild(frag);
4454                     return el.lastChild;
4455                 }else{
4456                     el.innerHTML = html;
4457                     return el.lastChild;
4458                 }
4459             case "afterend":
4460                 range.setStartAfter(el);
4461                 frag = range.createContextualFragment(html);
4462                 el.parentNode.insertBefore(frag, el.nextSibling);
4463                 return el.nextSibling;
4464             }
4465             throw 'Illegal insertion point -> "' + where + '"';
4466     },
4467
4468     /**
4469      * Creates new Dom element(s) and inserts them before el
4470      * @param {String/HTMLElement/Element} el The context element
4471      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4472      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4473      * @return {HTMLElement/Roo.Element} The new node
4474      */
4475     insertBefore : function(el, o, returnElement){
4476         return this.doInsert(el, o, returnElement, "beforeBegin");
4477     },
4478
4479     /**
4480      * Creates new Dom element(s) and inserts them after el
4481      * @param {String/HTMLElement/Element} el The context element
4482      * @param {Object} o The Dom object spec (and children)
4483      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4484      * @return {HTMLElement/Roo.Element} The new node
4485      */
4486     insertAfter : function(el, o, returnElement){
4487         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4488     },
4489
4490     /**
4491      * Creates new Dom element(s) and inserts them as the first child of el
4492      * @param {String/HTMLElement/Element} el The context element
4493      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4494      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4495      * @return {HTMLElement/Roo.Element} The new node
4496      */
4497     insertFirst : function(el, o, returnElement){
4498         return this.doInsert(el, o, returnElement, "afterBegin");
4499     },
4500
4501     // private
4502     doInsert : function(el, o, returnElement, pos, sibling){
4503         el = Roo.getDom(el);
4504         var newNode;
4505         if(this.useDom || o.ns){
4506             newNode = createDom(o, null);
4507             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4508         }else{
4509             var html = createHtml(o);
4510             newNode = this.insertHtml(pos, el, html);
4511         }
4512         return returnElement ? Roo.get(newNode, true) : newNode;
4513     },
4514
4515     /**
4516      * Creates new Dom element(s) and appends them to el
4517      * @param {String/HTMLElement/Element} el The context element
4518      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4519      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4520      * @return {HTMLElement/Roo.Element} The new node
4521      */
4522     append : function(el, o, returnElement){
4523         el = Roo.getDom(el);
4524         var newNode;
4525         if(this.useDom || o.ns){
4526             newNode = createDom(o, null);
4527             el.appendChild(newNode);
4528         }else{
4529             var html = createHtml(o);
4530             newNode = this.insertHtml("beforeEnd", el, html);
4531         }
4532         return returnElement ? Roo.get(newNode, true) : newNode;
4533     },
4534
4535     /**
4536      * Creates new Dom element(s) and overwrites the contents of el with them
4537      * @param {String/HTMLElement/Element} el The context element
4538      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4539      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4540      * @return {HTMLElement/Roo.Element} The new node
4541      */
4542     overwrite : function(el, o, returnElement){
4543         el = Roo.getDom(el);
4544         if (o.ns) {
4545           
4546             while (el.childNodes.length) {
4547                 el.removeChild(el.firstChild);
4548             }
4549             createDom(o, el);
4550         } else {
4551             el.innerHTML = createHtml(o);   
4552         }
4553         
4554         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4555     },
4556
4557     /**
4558      * Creates a new Roo.DomHelper.Template from the Dom object spec
4559      * @param {Object} o The Dom object spec (and children)
4560      * @return {Roo.DomHelper.Template} The new template
4561      */
4562     createTemplate : function(o){
4563         var html = createHtml(o);
4564         return new Roo.Template(html);
4565     }
4566     };
4567 }();
4568 /*
4569  * Based on:
4570  * Ext JS Library 1.1.1
4571  * Copyright(c) 2006-2007, Ext JS, LLC.
4572  *
4573  * Originally Released Under LGPL - original licence link has changed is not relivant.
4574  *
4575  * Fork - LGPL
4576  * <script type="text/javascript">
4577  */
4578  
4579 /**
4580 * @class Roo.Template
4581 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4582 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4583 * Usage:
4584 <pre><code>
4585 var t = new Roo.Template({
4586     html :  '&lt;div name="{id}"&gt;' + 
4587         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4588         '&lt;/div&gt;',
4589     myformat: function (value, allValues) {
4590         return 'XX' + value;
4591     }
4592 });
4593 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4594 </code></pre>
4595 * For more information see this blog post with examples:
4596 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4597      - Create Elements using DOM, HTML fragments and Templates</a>. 
4598 * @constructor
4599 * @param {Object} cfg - Configuration object.
4600 */
4601 Roo.Template = function(cfg){
4602     // BC!
4603     if(cfg instanceof Array){
4604         cfg = cfg.join("");
4605     }else if(arguments.length > 1){
4606         cfg = Array.prototype.join.call(arguments, "");
4607     }
4608     
4609     
4610     if (typeof(cfg) == 'object') {
4611         Roo.apply(this,cfg)
4612     } else {
4613         // bc
4614         this.html = cfg;
4615     }
4616     if (this.url) {
4617         this.load();
4618     }
4619     
4620 };
4621 Roo.Template.prototype = {
4622     
4623     /**
4624      * @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..
4625      *                    it should be fixed so that template is observable...
4626      */
4627     url : false,
4628     /**
4629      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4630      */
4631     html : '',
4632     /**
4633      * Returns an HTML fragment of this template with the specified values applied.
4634      * @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'})
4635      * @return {String} The HTML fragment
4636      */
4637     applyTemplate : function(values){
4638         try {
4639            
4640             if(this.compiled){
4641                 return this.compiled(values);
4642             }
4643             var useF = this.disableFormats !== true;
4644             var fm = Roo.util.Format, tpl = this;
4645             var fn = function(m, name, format, args){
4646                 if(format && useF){
4647                     if(format.substr(0, 5) == "this."){
4648                         return tpl.call(format.substr(5), values[name], values);
4649                     }else{
4650                         if(args){
4651                             // quoted values are required for strings in compiled templates, 
4652                             // but for non compiled we need to strip them
4653                             // quoted reversed for jsmin
4654                             var re = /^\s*['"](.*)["']\s*$/;
4655                             args = args.split(',');
4656                             for(var i = 0, len = args.length; i < len; i++){
4657                                 args[i] = args[i].replace(re, "$1");
4658                             }
4659                             args = [values[name]].concat(args);
4660                         }else{
4661                             args = [values[name]];
4662                         }
4663                         return fm[format].apply(fm, args);
4664                     }
4665                 }else{
4666                     return values[name] !== undefined ? values[name] : "";
4667                 }
4668             };
4669             return this.html.replace(this.re, fn);
4670         } catch (e) {
4671             Roo.log(e);
4672             throw e;
4673         }
4674          
4675     },
4676     
4677     loading : false,
4678       
4679     load : function ()
4680     {
4681          
4682         if (this.loading) {
4683             return;
4684         }
4685         var _t = this;
4686         
4687         this.loading = true;
4688         this.compiled = false;
4689         
4690         var cx = new Roo.data.Connection();
4691         cx.request({
4692             url : this.url,
4693             method : 'GET',
4694             success : function (response) {
4695                 _t.loading = false;
4696                 _t.html = response.responseText;
4697                 _t.url = false;
4698                 _t.compile();
4699              },
4700             failure : function(response) {
4701                 Roo.log("Template failed to load from " + _t.url);
4702                 _t.loading = false;
4703             }
4704         });
4705     },
4706
4707     /**
4708      * Sets the HTML used as the template and optionally compiles it.
4709      * @param {String} html
4710      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4711      * @return {Roo.Template} this
4712      */
4713     set : function(html, compile){
4714         this.html = html;
4715         this.compiled = null;
4716         if(compile){
4717             this.compile();
4718         }
4719         return this;
4720     },
4721     
4722     /**
4723      * True to disable format functions (defaults to false)
4724      * @type Boolean
4725      */
4726     disableFormats : false,
4727     
4728     /**
4729     * The regular expression used to match template variables 
4730     * @type RegExp
4731     * @property 
4732     */
4733     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4734     
4735     /**
4736      * Compiles the template into an internal function, eliminating the RegEx overhead.
4737      * @return {Roo.Template} this
4738      */
4739     compile : function(){
4740         var fm = Roo.util.Format;
4741         var useF = this.disableFormats !== true;
4742         var sep = Roo.isGecko ? "+" : ",";
4743         var fn = function(m, name, format, args){
4744             if(format && useF){
4745                 args = args ? ',' + args : "";
4746                 if(format.substr(0, 5) != "this."){
4747                     format = "fm." + format + '(';
4748                 }else{
4749                     format = 'this.call("'+ format.substr(5) + '", ';
4750                     args = ", values";
4751                 }
4752             }else{
4753                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4754             }
4755             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4756         };
4757         var body;
4758         // branched to use + in gecko and [].join() in others
4759         if(Roo.isGecko){
4760             body = "this.compiled = function(values){ return '" +
4761                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4762                     "';};";
4763         }else{
4764             body = ["this.compiled = function(values){ return ['"];
4765             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4766             body.push("'].join('');};");
4767             body = body.join('');
4768         }
4769         /**
4770          * eval:var:values
4771          * eval:var:fm
4772          */
4773         eval(body);
4774         return this;
4775     },
4776     
4777     // private function used to call members
4778     call : function(fnName, value, allValues){
4779         return this[fnName](value, allValues);
4780     },
4781     
4782     /**
4783      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4784      * @param {String/HTMLElement/Roo.Element} el The context element
4785      * @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'})
4786      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4787      * @return {HTMLElement/Roo.Element} The new node or Element
4788      */
4789     insertFirst: function(el, values, returnElement){
4790         return this.doInsert('afterBegin', el, values, returnElement);
4791     },
4792
4793     /**
4794      * Applies the supplied values to the template and inserts the new node(s) before el.
4795      * @param {String/HTMLElement/Roo.Element} el The context element
4796      * @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'})
4797      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4798      * @return {HTMLElement/Roo.Element} The new node or Element
4799      */
4800     insertBefore: function(el, values, returnElement){
4801         return this.doInsert('beforeBegin', el, values, returnElement);
4802     },
4803
4804     /**
4805      * Applies the supplied values to the template and inserts the new node(s) after el.
4806      * @param {String/HTMLElement/Roo.Element} el The context element
4807      * @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'})
4808      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4809      * @return {HTMLElement/Roo.Element} The new node or Element
4810      */
4811     insertAfter : function(el, values, returnElement){
4812         return this.doInsert('afterEnd', el, values, returnElement);
4813     },
4814     
4815     /**
4816      * Applies the supplied values to the template and appends the new node(s) to el.
4817      * @param {String/HTMLElement/Roo.Element} el The context element
4818      * @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'})
4819      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4820      * @return {HTMLElement/Roo.Element} The new node or Element
4821      */
4822     append : function(el, values, returnElement){
4823         return this.doInsert('beforeEnd', el, values, returnElement);
4824     },
4825
4826     doInsert : function(where, el, values, returnEl){
4827         el = Roo.getDom(el);
4828         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4829         return returnEl ? Roo.get(newNode, true) : newNode;
4830     },
4831
4832     /**
4833      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4834      * @param {String/HTMLElement/Roo.Element} el The context element
4835      * @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'})
4836      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4837      * @return {HTMLElement/Roo.Element} The new node or Element
4838      */
4839     overwrite : function(el, values, returnElement){
4840         el = Roo.getDom(el);
4841         el.innerHTML = this.applyTemplate(values);
4842         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4843     }
4844 };
4845 /**
4846  * Alias for {@link #applyTemplate}
4847  * @method
4848  */
4849 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4850
4851 // backwards compat
4852 Roo.DomHelper.Template = Roo.Template;
4853
4854 /**
4855  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4856  * @param {String/HTMLElement} el A DOM element or its id
4857  * @returns {Roo.Template} The created template
4858  * @static
4859  */
4860 Roo.Template.from = function(el){
4861     el = Roo.getDom(el);
4862     return new Roo.Template(el.value || el.innerHTML);
4863 };/*
4864  * Based on:
4865  * Ext JS Library 1.1.1
4866  * Copyright(c) 2006-2007, Ext JS, LLC.
4867  *
4868  * Originally Released Under LGPL - original licence link has changed is not relivant.
4869  *
4870  * Fork - LGPL
4871  * <script type="text/javascript">
4872  */
4873  
4874
4875 /*
4876  * This is code is also distributed under MIT license for use
4877  * with jQuery and prototype JavaScript libraries.
4878  */
4879 /**
4880  * @class Roo.DomQuery
4881 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).
4882 <p>
4883 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>
4884
4885 <p>
4886 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.
4887 </p>
4888 <h4>Element Selectors:</h4>
4889 <ul class="list">
4890     <li> <b>*</b> any element</li>
4891     <li> <b>E</b> an element with the tag E</li>
4892     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4893     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4894     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4895     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4896 </ul>
4897 <h4>Attribute Selectors:</h4>
4898 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4899 <ul class="list">
4900     <li> <b>E[foo]</b> has an attribute "foo"</li>
4901     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4902     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4903     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4904     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4905     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4906     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4907 </ul>
4908 <h4>Pseudo Classes:</h4>
4909 <ul class="list">
4910     <li> <b>E:first-child</b> E is the first child of its parent</li>
4911     <li> <b>E:last-child</b> E is the last child of its parent</li>
4912     <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>
4913     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4914     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4915     <li> <b>E:only-child</b> E is the only child of its parent</li>
4916     <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>
4917     <li> <b>E:first</b> the first E in the resultset</li>
4918     <li> <b>E:last</b> the last E in the resultset</li>
4919     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4920     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4921     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4922     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4923     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
4924     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
4925     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
4926     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
4927     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
4928 </ul>
4929 <h4>CSS Value Selectors:</h4>
4930 <ul class="list">
4931     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
4932     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
4933     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
4934     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
4935     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
4936     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
4937 </ul>
4938  * @singleton
4939  */
4940 Roo.DomQuery = function(){
4941     var cache = {}, simpleCache = {}, valueCache = {};
4942     var nonSpace = /\S/;
4943     var trimRe = /^\s+|\s+$/g;
4944     var tplRe = /\{(\d+)\}/g;
4945     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
4946     var tagTokenRe = /^(#)?([\w-\*]+)/;
4947     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
4948
4949     function child(p, index){
4950         var i = 0;
4951         var n = p.firstChild;
4952         while(n){
4953             if(n.nodeType == 1){
4954                if(++i == index){
4955                    return n;
4956                }
4957             }
4958             n = n.nextSibling;
4959         }
4960         return null;
4961     };
4962
4963     function next(n){
4964         while((n = n.nextSibling) && n.nodeType != 1);
4965         return n;
4966     };
4967
4968     function prev(n){
4969         while((n = n.previousSibling) && n.nodeType != 1);
4970         return n;
4971     };
4972
4973     function children(d){
4974         var n = d.firstChild, ni = -1;
4975             while(n){
4976                 var nx = n.nextSibling;
4977                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
4978                     d.removeChild(n);
4979                 }else{
4980                     n.nodeIndex = ++ni;
4981                 }
4982                 n = nx;
4983             }
4984             return this;
4985         };
4986
4987     function byClassName(c, a, v){
4988         if(!v){
4989             return c;
4990         }
4991         var r = [], ri = -1, cn;
4992         for(var i = 0, ci; ci = c[i]; i++){
4993             if((' '+ci.className+' ').indexOf(v) != -1){
4994                 r[++ri] = ci;
4995             }
4996         }
4997         return r;
4998     };
4999
5000     function attrValue(n, attr){
5001         if(!n.tagName && typeof n.length != "undefined"){
5002             n = n[0];
5003         }
5004         if(!n){
5005             return null;
5006         }
5007         if(attr == "for"){
5008             return n.htmlFor;
5009         }
5010         if(attr == "class" || attr == "className"){
5011             return n.className;
5012         }
5013         return n.getAttribute(attr) || n[attr];
5014
5015     };
5016
5017     function getNodes(ns, mode, tagName){
5018         var result = [], ri = -1, cs;
5019         if(!ns){
5020             return result;
5021         }
5022         tagName = tagName || "*";
5023         if(typeof ns.getElementsByTagName != "undefined"){
5024             ns = [ns];
5025         }
5026         if(!mode){
5027             for(var i = 0, ni; ni = ns[i]; i++){
5028                 cs = ni.getElementsByTagName(tagName);
5029                 for(var j = 0, ci; ci = cs[j]; j++){
5030                     result[++ri] = ci;
5031                 }
5032             }
5033         }else if(mode == "/" || mode == ">"){
5034             var utag = tagName.toUpperCase();
5035             for(var i = 0, ni, cn; ni = ns[i]; i++){
5036                 cn = ni.children || ni.childNodes;
5037                 for(var j = 0, cj; cj = cn[j]; j++){
5038                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5039                         result[++ri] = cj;
5040                     }
5041                 }
5042             }
5043         }else if(mode == "+"){
5044             var utag = tagName.toUpperCase();
5045             for(var i = 0, n; n = ns[i]; i++){
5046                 while((n = n.nextSibling) && n.nodeType != 1);
5047                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5048                     result[++ri] = n;
5049                 }
5050             }
5051         }else if(mode == "~"){
5052             for(var i = 0, n; n = ns[i]; i++){
5053                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5054                 if(n){
5055                     result[++ri] = n;
5056                 }
5057             }
5058         }
5059         return result;
5060     };
5061
5062     function concat(a, b){
5063         if(b.slice){
5064             return a.concat(b);
5065         }
5066         for(var i = 0, l = b.length; i < l; i++){
5067             a[a.length] = b[i];
5068         }
5069         return a;
5070     }
5071
5072     function byTag(cs, tagName){
5073         if(cs.tagName || cs == document){
5074             cs = [cs];
5075         }
5076         if(!tagName){
5077             return cs;
5078         }
5079         var r = [], ri = -1;
5080         tagName = tagName.toLowerCase();
5081         for(var i = 0, ci; ci = cs[i]; i++){
5082             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5083                 r[++ri] = ci;
5084             }
5085         }
5086         return r;
5087     };
5088
5089     function byId(cs, attr, id){
5090         if(cs.tagName || cs == document){
5091             cs = [cs];
5092         }
5093         if(!id){
5094             return cs;
5095         }
5096         var r = [], ri = -1;
5097         for(var i = 0,ci; ci = cs[i]; i++){
5098             if(ci && ci.id == id){
5099                 r[++ri] = ci;
5100                 return r;
5101             }
5102         }
5103         return r;
5104     };
5105
5106     function byAttribute(cs, attr, value, op, custom){
5107         var r = [], ri = -1, st = custom=="{";
5108         var f = Roo.DomQuery.operators[op];
5109         for(var i = 0, ci; ci = cs[i]; i++){
5110             var a;
5111             if(st){
5112                 a = Roo.DomQuery.getStyle(ci, attr);
5113             }
5114             else if(attr == "class" || attr == "className"){
5115                 a = ci.className;
5116             }else if(attr == "for"){
5117                 a = ci.htmlFor;
5118             }else if(attr == "href"){
5119                 a = ci.getAttribute("href", 2);
5120             }else{
5121                 a = ci.getAttribute(attr);
5122             }
5123             if((f && f(a, value)) || (!f && a)){
5124                 r[++ri] = ci;
5125             }
5126         }
5127         return r;
5128     };
5129
5130     function byPseudo(cs, name, value){
5131         return Roo.DomQuery.pseudos[name](cs, value);
5132     };
5133
5134     // This is for IE MSXML which does not support expandos.
5135     // IE runs the same speed using setAttribute, however FF slows way down
5136     // and Safari completely fails so they need to continue to use expandos.
5137     var isIE = window.ActiveXObject ? true : false;
5138
5139     // this eval is stop the compressor from
5140     // renaming the variable to something shorter
5141     
5142     /** eval:var:batch */
5143     var batch = 30803; 
5144
5145     var key = 30803;
5146
5147     function nodupIEXml(cs){
5148         var d = ++key;
5149         cs[0].setAttribute("_nodup", d);
5150         var r = [cs[0]];
5151         for(var i = 1, len = cs.length; i < len; i++){
5152             var c = cs[i];
5153             if(!c.getAttribute("_nodup") != d){
5154                 c.setAttribute("_nodup", d);
5155                 r[r.length] = c;
5156             }
5157         }
5158         for(var i = 0, len = cs.length; i < len; i++){
5159             cs[i].removeAttribute("_nodup");
5160         }
5161         return r;
5162     }
5163
5164     function nodup(cs){
5165         if(!cs){
5166             return [];
5167         }
5168         var len = cs.length, c, i, r = cs, cj, ri = -1;
5169         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5170             return cs;
5171         }
5172         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5173             return nodupIEXml(cs);
5174         }
5175         var d = ++key;
5176         cs[0]._nodup = d;
5177         for(i = 1; c = cs[i]; i++){
5178             if(c._nodup != d){
5179                 c._nodup = d;
5180             }else{
5181                 r = [];
5182                 for(var j = 0; j < i; j++){
5183                     r[++ri] = cs[j];
5184                 }
5185                 for(j = i+1; cj = cs[j]; j++){
5186                     if(cj._nodup != d){
5187                         cj._nodup = d;
5188                         r[++ri] = cj;
5189                     }
5190                 }
5191                 return r;
5192             }
5193         }
5194         return r;
5195     }
5196
5197     function quickDiffIEXml(c1, c2){
5198         var d = ++key;
5199         for(var i = 0, len = c1.length; i < len; i++){
5200             c1[i].setAttribute("_qdiff", d);
5201         }
5202         var r = [];
5203         for(var i = 0, len = c2.length; i < len; i++){
5204             if(c2[i].getAttribute("_qdiff") != d){
5205                 r[r.length] = c2[i];
5206             }
5207         }
5208         for(var i = 0, len = c1.length; i < len; i++){
5209            c1[i].removeAttribute("_qdiff");
5210         }
5211         return r;
5212     }
5213
5214     function quickDiff(c1, c2){
5215         var len1 = c1.length;
5216         if(!len1){
5217             return c2;
5218         }
5219         if(isIE && c1[0].selectSingleNode){
5220             return quickDiffIEXml(c1, c2);
5221         }
5222         var d = ++key;
5223         for(var i = 0; i < len1; i++){
5224             c1[i]._qdiff = d;
5225         }
5226         var r = [];
5227         for(var i = 0, len = c2.length; i < len; i++){
5228             if(c2[i]._qdiff != d){
5229                 r[r.length] = c2[i];
5230             }
5231         }
5232         return r;
5233     }
5234
5235     function quickId(ns, mode, root, id){
5236         if(ns == root){
5237            var d = root.ownerDocument || root;
5238            return d.getElementById(id);
5239         }
5240         ns = getNodes(ns, mode, "*");
5241         return byId(ns, null, id);
5242     }
5243
5244     return {
5245         getStyle : function(el, name){
5246             return Roo.fly(el).getStyle(name);
5247         },
5248         /**
5249          * Compiles a selector/xpath query into a reusable function. The returned function
5250          * takes one parameter "root" (optional), which is the context node from where the query should start.
5251          * @param {String} selector The selector/xpath query
5252          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5253          * @return {Function}
5254          */
5255         compile : function(path, type){
5256             type = type || "select";
5257             
5258             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5259             var q = path, mode, lq;
5260             var tk = Roo.DomQuery.matchers;
5261             var tklen = tk.length;
5262             var mm;
5263
5264             // accept leading mode switch
5265             var lmode = q.match(modeRe);
5266             if(lmode && lmode[1]){
5267                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5268                 q = q.replace(lmode[1], "");
5269             }
5270             // strip leading slashes
5271             while(path.substr(0, 1)=="/"){
5272                 path = path.substr(1);
5273             }
5274
5275             while(q && lq != q){
5276                 lq = q;
5277                 var tm = q.match(tagTokenRe);
5278                 if(type == "select"){
5279                     if(tm){
5280                         if(tm[1] == "#"){
5281                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5282                         }else{
5283                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5284                         }
5285                         q = q.replace(tm[0], "");
5286                     }else if(q.substr(0, 1) != '@'){
5287                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5288                     }
5289                 }else{
5290                     if(tm){
5291                         if(tm[1] == "#"){
5292                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5293                         }else{
5294                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5295                         }
5296                         q = q.replace(tm[0], "");
5297                     }
5298                 }
5299                 while(!(mm = q.match(modeRe))){
5300                     var matched = false;
5301                     for(var j = 0; j < tklen; j++){
5302                         var t = tk[j];
5303                         var m = q.match(t.re);
5304                         if(m){
5305                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5306                                                     return m[i];
5307                                                 });
5308                             q = q.replace(m[0], "");
5309                             matched = true;
5310                             break;
5311                         }
5312                     }
5313                     // prevent infinite loop on bad selector
5314                     if(!matched){
5315                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5316                     }
5317                 }
5318                 if(mm[1]){
5319                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5320                     q = q.replace(mm[1], "");
5321                 }
5322             }
5323             fn[fn.length] = "return nodup(n);\n}";
5324             
5325              /** 
5326               * list of variables that need from compression as they are used by eval.
5327              *  eval:var:batch 
5328              *  eval:var:nodup
5329              *  eval:var:byTag
5330              *  eval:var:ById
5331              *  eval:var:getNodes
5332              *  eval:var:quickId
5333              *  eval:var:mode
5334              *  eval:var:root
5335              *  eval:var:n
5336              *  eval:var:byClassName
5337              *  eval:var:byPseudo
5338              *  eval:var:byAttribute
5339              *  eval:var:attrValue
5340              * 
5341              **/ 
5342             eval(fn.join(""));
5343             return f;
5344         },
5345
5346         /**
5347          * Selects a group of elements.
5348          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5349          * @param {Node} root (optional) The start of the query (defaults to document).
5350          * @return {Array}
5351          */
5352         select : function(path, root, type){
5353             if(!root || root == document){
5354                 root = document;
5355             }
5356             if(typeof root == "string"){
5357                 root = document.getElementById(root);
5358             }
5359             var paths = path.split(",");
5360             var results = [];
5361             for(var i = 0, len = paths.length; i < len; i++){
5362                 var p = paths[i].replace(trimRe, "");
5363                 if(!cache[p]){
5364                     cache[p] = Roo.DomQuery.compile(p);
5365                     if(!cache[p]){
5366                         throw p + " is not a valid selector";
5367                     }
5368                 }
5369                 var result = cache[p](root);
5370                 if(result && result != document){
5371                     results = results.concat(result);
5372                 }
5373             }
5374             if(paths.length > 1){
5375                 return nodup(results);
5376             }
5377             return results;
5378         },
5379
5380         /**
5381          * Selects a single element.
5382          * @param {String} selector The selector/xpath query
5383          * @param {Node} root (optional) The start of the query (defaults to document).
5384          * @return {Element}
5385          */
5386         selectNode : function(path, root){
5387             return Roo.DomQuery.select(path, root)[0];
5388         },
5389
5390         /**
5391          * Selects the value of a node, optionally replacing null with the defaultValue.
5392          * @param {String} selector The selector/xpath query
5393          * @param {Node} root (optional) The start of the query (defaults to document).
5394          * @param {String} defaultValue
5395          */
5396         selectValue : function(path, root, defaultValue){
5397             path = path.replace(trimRe, "");
5398             if(!valueCache[path]){
5399                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5400             }
5401             var n = valueCache[path](root);
5402             n = n[0] ? n[0] : n;
5403             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5404             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5405         },
5406
5407         /**
5408          * Selects the value of a node, parsing integers and floats.
5409          * @param {String} selector The selector/xpath query
5410          * @param {Node} root (optional) The start of the query (defaults to document).
5411          * @param {Number} defaultValue
5412          * @return {Number}
5413          */
5414         selectNumber : function(path, root, defaultValue){
5415             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5416             return parseFloat(v);
5417         },
5418
5419         /**
5420          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5421          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5422          * @param {String} selector The simple selector to test
5423          * @return {Boolean}
5424          */
5425         is : function(el, ss){
5426             if(typeof el == "string"){
5427                 el = document.getElementById(el);
5428             }
5429             var isArray = (el instanceof Array);
5430             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5431             return isArray ? (result.length == el.length) : (result.length > 0);
5432         },
5433
5434         /**
5435          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5436          * @param {Array} el An array of elements to filter
5437          * @param {String} selector The simple selector to test
5438          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5439          * the selector instead of the ones that match
5440          * @return {Array}
5441          */
5442         filter : function(els, ss, nonMatches){
5443             ss = ss.replace(trimRe, "");
5444             if(!simpleCache[ss]){
5445                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5446             }
5447             var result = simpleCache[ss](els);
5448             return nonMatches ? quickDiff(result, els) : result;
5449         },
5450
5451         /**
5452          * Collection of matching regular expressions and code snippets.
5453          */
5454         matchers : [{
5455                 re: /^\.([\w-]+)/,
5456                 select: 'n = byClassName(n, null, " {1} ");'
5457             }, {
5458                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5459                 select: 'n = byPseudo(n, "{1}", "{2}");'
5460             },{
5461                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5462                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5463             }, {
5464                 re: /^#([\w-]+)/,
5465                 select: 'n = byId(n, null, "{1}");'
5466             },{
5467                 re: /^@([\w-]+)/,
5468                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5469             }
5470         ],
5471
5472         /**
5473          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5474          * 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;.
5475          */
5476         operators : {
5477             "=" : function(a, v){
5478                 return a == v;
5479             },
5480             "!=" : function(a, v){
5481                 return a != v;
5482             },
5483             "^=" : function(a, v){
5484                 return a && a.substr(0, v.length) == v;
5485             },
5486             "$=" : function(a, v){
5487                 return a && a.substr(a.length-v.length) == v;
5488             },
5489             "*=" : function(a, v){
5490                 return a && a.indexOf(v) !== -1;
5491             },
5492             "%=" : function(a, v){
5493                 return (a % v) == 0;
5494             },
5495             "|=" : function(a, v){
5496                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5497             },
5498             "~=" : function(a, v){
5499                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5500             }
5501         },
5502
5503         /**
5504          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5505          * and the argument (if any) supplied in the selector.
5506          */
5507         pseudos : {
5508             "first-child" : function(c){
5509                 var r = [], ri = -1, n;
5510                 for(var i = 0, ci; ci = n = c[i]; i++){
5511                     while((n = n.previousSibling) && n.nodeType != 1);
5512                     if(!n){
5513                         r[++ri] = ci;
5514                     }
5515                 }
5516                 return r;
5517             },
5518
5519             "last-child" : function(c){
5520                 var r = [], ri = -1, n;
5521                 for(var i = 0, ci; ci = n = c[i]; i++){
5522                     while((n = n.nextSibling) && n.nodeType != 1);
5523                     if(!n){
5524                         r[++ri] = ci;
5525                     }
5526                 }
5527                 return r;
5528             },
5529
5530             "nth-child" : function(c, a) {
5531                 var r = [], ri = -1;
5532                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5533                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5534                 for(var i = 0, n; n = c[i]; i++){
5535                     var pn = n.parentNode;
5536                     if (batch != pn._batch) {
5537                         var j = 0;
5538                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5539                             if(cn.nodeType == 1){
5540                                cn.nodeIndex = ++j;
5541                             }
5542                         }
5543                         pn._batch = batch;
5544                     }
5545                     if (f == 1) {
5546                         if (l == 0 || n.nodeIndex == l){
5547                             r[++ri] = n;
5548                         }
5549                     } else if ((n.nodeIndex + l) % f == 0){
5550                         r[++ri] = n;
5551                     }
5552                 }
5553
5554                 return r;
5555             },
5556
5557             "only-child" : function(c){
5558                 var r = [], ri = -1;;
5559                 for(var i = 0, ci; ci = c[i]; i++){
5560                     if(!prev(ci) && !next(ci)){
5561                         r[++ri] = ci;
5562                     }
5563                 }
5564                 return r;
5565             },
5566
5567             "empty" : function(c){
5568                 var r = [], ri = -1;
5569                 for(var i = 0, ci; ci = c[i]; i++){
5570                     var cns = ci.childNodes, j = 0, cn, empty = true;
5571                     while(cn = cns[j]){
5572                         ++j;
5573                         if(cn.nodeType == 1 || cn.nodeType == 3){
5574                             empty = false;
5575                             break;
5576                         }
5577                     }
5578                     if(empty){
5579                         r[++ri] = ci;
5580                     }
5581                 }
5582                 return r;
5583             },
5584
5585             "contains" : function(c, v){
5586                 var r = [], ri = -1;
5587                 for(var i = 0, ci; ci = c[i]; i++){
5588                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "nodeValue" : function(c, v){
5596                 var r = [], ri = -1;
5597                 for(var i = 0, ci; ci = c[i]; i++){
5598                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5599                         r[++ri] = ci;
5600                     }
5601                 }
5602                 return r;
5603             },
5604
5605             "checked" : function(c){
5606                 var r = [], ri = -1;
5607                 for(var i = 0, ci; ci = c[i]; i++){
5608                     if(ci.checked == true){
5609                         r[++ri] = ci;
5610                     }
5611                 }
5612                 return r;
5613             },
5614
5615             "not" : function(c, ss){
5616                 return Roo.DomQuery.filter(c, ss, true);
5617             },
5618
5619             "odd" : function(c){
5620                 return this["nth-child"](c, "odd");
5621             },
5622
5623             "even" : function(c){
5624                 return this["nth-child"](c, "even");
5625             },
5626
5627             "nth" : function(c, a){
5628                 return c[a-1] || [];
5629             },
5630
5631             "first" : function(c){
5632                 return c[0] || [];
5633             },
5634
5635             "last" : function(c){
5636                 return c[c.length-1] || [];
5637             },
5638
5639             "has" : function(c, ss){
5640                 var s = Roo.DomQuery.select;
5641                 var r = [], ri = -1;
5642                 for(var i = 0, ci; ci = c[i]; i++){
5643                     if(s(ss, ci).length > 0){
5644                         r[++ri] = ci;
5645                     }
5646                 }
5647                 return r;
5648             },
5649
5650             "next" : function(c, ss){
5651                 var is = Roo.DomQuery.is;
5652                 var r = [], ri = -1;
5653                 for(var i = 0, ci; ci = c[i]; i++){
5654                     var n = next(ci);
5655                     if(n && is(n, ss)){
5656                         r[++ri] = ci;
5657                     }
5658                 }
5659                 return r;
5660             },
5661
5662             "prev" : function(c, ss){
5663                 var is = Roo.DomQuery.is;
5664                 var r = [], ri = -1;
5665                 for(var i = 0, ci; ci = c[i]; i++){
5666                     var n = prev(ci);
5667                     if(n && is(n, ss)){
5668                         r[++ri] = ci;
5669                     }
5670                 }
5671                 return r;
5672             }
5673         }
5674     };
5675 }();
5676
5677 /**
5678  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5679  * @param {String} path The selector/xpath query
5680  * @param {Node} root (optional) The start of the query (defaults to document).
5681  * @return {Array}
5682  * @member Roo
5683  * @method query
5684  */
5685 Roo.query = Roo.DomQuery.select;
5686 /*
5687  * Based on:
5688  * Ext JS Library 1.1.1
5689  * Copyright(c) 2006-2007, Ext JS, LLC.
5690  *
5691  * Originally Released Under LGPL - original licence link has changed is not relivant.
5692  *
5693  * Fork - LGPL
5694  * <script type="text/javascript">
5695  */
5696
5697 /**
5698  * @class Roo.util.Observable
5699  * Base class that provides a common interface for publishing events. Subclasses are expected to
5700  * to have a property "events" with all the events defined.<br>
5701  * For example:
5702  * <pre><code>
5703  Employee = function(name){
5704     this.name = name;
5705     this.addEvents({
5706         "fired" : true,
5707         "quit" : true
5708     });
5709  }
5710  Roo.extend(Employee, Roo.util.Observable);
5711 </code></pre>
5712  * @param {Object} config properties to use (incuding events / listeners)
5713  */
5714
5715 Roo.util.Observable = function(cfg){
5716     
5717     cfg = cfg|| {};
5718     this.addEvents(cfg.events || {});
5719     if (cfg.events) {
5720         delete cfg.events; // make sure
5721     }
5722      
5723     Roo.apply(this, cfg);
5724     
5725     if(this.listeners){
5726         this.on(this.listeners);
5727         delete this.listeners;
5728     }
5729 };
5730 Roo.util.Observable.prototype = {
5731     /** 
5732  * @cfg {Object} listeners  list of events and functions to call for this object, 
5733  * For example :
5734  * <pre><code>
5735     listeners :  { 
5736        'click' : function(e) {
5737            ..... 
5738         } ,
5739         .... 
5740     } 
5741   </code></pre>
5742  */
5743     
5744     
5745     /**
5746      * Fires the specified event with the passed parameters (minus the event name).
5747      * @param {String} eventName
5748      * @param {Object...} args Variable number of parameters are passed to handlers
5749      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5750      */
5751     fireEvent : function(){
5752         var ce = this.events[arguments[0].toLowerCase()];
5753         if(typeof ce == "object"){
5754             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5755         }else{
5756             return true;
5757         }
5758     },
5759
5760     // private
5761     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5762
5763     /**
5764      * Appends an event handler to this component
5765      * @param {String}   eventName The type of event to listen for
5766      * @param {Function} handler The method the event invokes
5767      * @param {Object}   scope (optional) The scope in which to execute the handler
5768      * function. The handler function's "this" context.
5769      * @param {Object}   options (optional) An object containing handler configuration
5770      * properties. This may contain any of the following properties:<ul>
5771      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5772      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5773      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5774      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5775      * by the specified number of milliseconds. If the event fires again within that time, the original
5776      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5777      * </ul><br>
5778      * <p>
5779      * <b>Combining Options</b><br>
5780      * Using the options argument, it is possible to combine different types of listeners:<br>
5781      * <br>
5782      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5783                 <pre><code>
5784                 el.on('click', this.onClick, this, {
5785                         single: true,
5786                 delay: 100,
5787                 forumId: 4
5788                 });
5789                 </code></pre>
5790      * <p>
5791      * <b>Attaching multiple handlers in 1 call</b><br>
5792      * The method also allows for a single argument to be passed which is a config object containing properties
5793      * which specify multiple handlers.
5794      * <pre><code>
5795                 el.on({
5796                         'click': {
5797                         fn: this.onClick,
5798                         scope: this,
5799                         delay: 100
5800                 }, 
5801                 'mouseover': {
5802                         fn: this.onMouseOver,
5803                         scope: this
5804                 },
5805                 'mouseout': {
5806                         fn: this.onMouseOut,
5807                         scope: this
5808                 }
5809                 });
5810                 </code></pre>
5811      * <p>
5812      * Or a shorthand syntax which passes the same scope object to all handlers:
5813         <pre><code>
5814                 el.on({
5815                         'click': this.onClick,
5816                 'mouseover': this.onMouseOver,
5817                 'mouseout': this.onMouseOut,
5818                 scope: this
5819                 });
5820                 </code></pre>
5821      */
5822     addListener : function(eventName, fn, scope, o){
5823         if(typeof eventName == "object"){
5824             o = eventName;
5825             for(var e in o){
5826                 if(this.filterOptRe.test(e)){
5827                     continue;
5828                 }
5829                 if(typeof o[e] == "function"){
5830                     // shared options
5831                     this.addListener(e, o[e], o.scope,  o);
5832                 }else{
5833                     // individual options
5834                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5835                 }
5836             }
5837             return;
5838         }
5839         o = (!o || typeof o == "boolean") ? {} : o;
5840         eventName = eventName.toLowerCase();
5841         var ce = this.events[eventName] || true;
5842         if(typeof ce == "boolean"){
5843             ce = new Roo.util.Event(this, eventName);
5844             this.events[eventName] = ce;
5845         }
5846         ce.addListener(fn, scope, o);
5847     },
5848
5849     /**
5850      * Removes a listener
5851      * @param {String}   eventName     The type of event to listen for
5852      * @param {Function} handler        The handler to remove
5853      * @param {Object}   scope  (optional) The scope (this object) for the handler
5854      */
5855     removeListener : function(eventName, fn, scope){
5856         var ce = this.events[eventName.toLowerCase()];
5857         if(typeof ce == "object"){
5858             ce.removeListener(fn, scope);
5859         }
5860     },
5861
5862     /**
5863      * Removes all listeners for this object
5864      */
5865     purgeListeners : function(){
5866         for(var evt in this.events){
5867             if(typeof this.events[evt] == "object"){
5868                  this.events[evt].clearListeners();
5869             }
5870         }
5871     },
5872
5873     relayEvents : function(o, events){
5874         var createHandler = function(ename){
5875             return function(){
5876                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5877             };
5878         };
5879         for(var i = 0, len = events.length; i < len; i++){
5880             var ename = events[i];
5881             if(!this.events[ename]){ this.events[ename] = true; };
5882             o.on(ename, createHandler(ename), this);
5883         }
5884     },
5885
5886     /**
5887      * Used to define events on this Observable
5888      * @param {Object} object The object with the events defined
5889      */
5890     addEvents : function(o){
5891         if(!this.events){
5892             this.events = {};
5893         }
5894         Roo.applyIf(this.events, o);
5895     },
5896
5897     /**
5898      * Checks to see if this object has any listeners for a specified event
5899      * @param {String} eventName The name of the event to check for
5900      * @return {Boolean} True if the event is being listened for, else false
5901      */
5902     hasListener : function(eventName){
5903         var e = this.events[eventName];
5904         return typeof e == "object" && e.listeners.length > 0;
5905     }
5906 };
5907 /**
5908  * Appends an event handler to this element (shorthand for addListener)
5909  * @param {String}   eventName     The type of event to listen for
5910  * @param {Function} handler        The method the event invokes
5911  * @param {Object}   scope (optional) The scope in which to execute the handler
5912  * function. The handler function's "this" context.
5913  * @param {Object}   options  (optional)
5914  * @method
5915  */
5916 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5917 /**
5918  * Removes a listener (shorthand for removeListener)
5919  * @param {String}   eventName     The type of event to listen for
5920  * @param {Function} handler        The handler to remove
5921  * @param {Object}   scope  (optional) The scope (this object) for the handler
5922  * @method
5923  */
5924 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
5925
5926 /**
5927  * Starts capture on the specified Observable. All events will be passed
5928  * to the supplied function with the event name + standard signature of the event
5929  * <b>before</b> the event is fired. If the supplied function returns false,
5930  * the event will not fire.
5931  * @param {Observable} o The Observable to capture
5932  * @param {Function} fn The function to call
5933  * @param {Object} scope (optional) The scope (this object) for the fn
5934  * @static
5935  */
5936 Roo.util.Observable.capture = function(o, fn, scope){
5937     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
5938 };
5939
5940 /**
5941  * Removes <b>all</b> added captures from the Observable.
5942  * @param {Observable} o The Observable to release
5943  * @static
5944  */
5945 Roo.util.Observable.releaseCapture = function(o){
5946     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
5947 };
5948
5949 (function(){
5950
5951     var createBuffered = function(h, o, scope){
5952         var task = new Roo.util.DelayedTask();
5953         return function(){
5954             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
5955         };
5956     };
5957
5958     var createSingle = function(h, e, fn, scope){
5959         return function(){
5960             e.removeListener(fn, scope);
5961             return h.apply(scope, arguments);
5962         };
5963     };
5964
5965     var createDelayed = function(h, o, scope){
5966         return function(){
5967             var args = Array.prototype.slice.call(arguments, 0);
5968             setTimeout(function(){
5969                 h.apply(scope, args);
5970             }, o.delay || 10);
5971         };
5972     };
5973
5974     Roo.util.Event = function(obj, name){
5975         this.name = name;
5976         this.obj = obj;
5977         this.listeners = [];
5978     };
5979
5980     Roo.util.Event.prototype = {
5981         addListener : function(fn, scope, options){
5982             var o = options || {};
5983             scope = scope || this.obj;
5984             if(!this.isListening(fn, scope)){
5985                 var l = {fn: fn, scope: scope, options: o};
5986                 var h = fn;
5987                 if(o.delay){
5988                     h = createDelayed(h, o, scope);
5989                 }
5990                 if(o.single){
5991                     h = createSingle(h, this, fn, scope);
5992                 }
5993                 if(o.buffer){
5994                     h = createBuffered(h, o, scope);
5995                 }
5996                 l.fireFn = h;
5997                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
5998                     this.listeners.push(l);
5999                 }else{
6000                     this.listeners = this.listeners.slice(0);
6001                     this.listeners.push(l);
6002                 }
6003             }
6004         },
6005
6006         findListener : function(fn, scope){
6007             scope = scope || this.obj;
6008             var ls = this.listeners;
6009             for(var i = 0, len = ls.length; i < len; i++){
6010                 var l = ls[i];
6011                 if(l.fn == fn && l.scope == scope){
6012                     return i;
6013                 }
6014             }
6015             return -1;
6016         },
6017
6018         isListening : function(fn, scope){
6019             return this.findListener(fn, scope) != -1;
6020         },
6021
6022         removeListener : function(fn, scope){
6023             var index;
6024             if((index = this.findListener(fn, scope)) != -1){
6025                 if(!this.firing){
6026                     this.listeners.splice(index, 1);
6027                 }else{
6028                     this.listeners = this.listeners.slice(0);
6029                     this.listeners.splice(index, 1);
6030                 }
6031                 return true;
6032             }
6033             return false;
6034         },
6035
6036         clearListeners : function(){
6037             this.listeners = [];
6038         },
6039
6040         fire : function(){
6041             var ls = this.listeners, scope, len = ls.length;
6042             if(len > 0){
6043                 this.firing = true;
6044                 var args = Array.prototype.slice.call(arguments, 0);
6045                 for(var i = 0; i < len; i++){
6046                     var l = ls[i];
6047                     if(l.fireFn.apply(l.scope||this.obj||window, arguments) === false){
6048                         this.firing = false;
6049                         return false;
6050                     }
6051                 }
6052                 this.firing = false;
6053             }
6054             return true;
6055         }
6056     };
6057 })();/*
6058  * RooJS Library 
6059  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6060  *
6061  * Licence LGPL 
6062  *
6063  */
6064  
6065 /**
6066  * @class Roo.Document
6067  * @extends Roo.util.Observable
6068  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6069  * 
6070  * @param {Object} config the methods and properties of the 'base' class for the application.
6071  * 
6072  *  Generic Page handler - implement this to start your app..
6073  * 
6074  * eg.
6075  *  MyProject = new Roo.Document({
6076         events : {
6077             'load' : true // your events..
6078         },
6079         listeners : {
6080             'ready' : function() {
6081                 // fired on Roo.onReady()
6082             }
6083         }
6084  * 
6085  */
6086 Roo.Document = function(cfg) {
6087      
6088     this.addEvents({ 
6089         'ready' : true
6090     });
6091     Roo.util.Observable.call(this,cfg);
6092     
6093     var _this = this;
6094     
6095     Roo.onReady(function() {
6096         _this.fireEvent('ready');
6097     },null,false);
6098     
6099     
6100 }
6101
6102 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6103  * Based on:
6104  * Ext JS Library 1.1.1
6105  * Copyright(c) 2006-2007, Ext JS, LLC.
6106  *
6107  * Originally Released Under LGPL - original licence link has changed is not relivant.
6108  *
6109  * Fork - LGPL
6110  * <script type="text/javascript">
6111  */
6112
6113 /**
6114  * @class Roo.EventManager
6115  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6116  * several useful events directly.
6117  * See {@link Roo.EventObject} for more details on normalized event objects.
6118  * @singleton
6119  */
6120 Roo.EventManager = function(){
6121     var docReadyEvent, docReadyProcId, docReadyState = false;
6122     var resizeEvent, resizeTask, textEvent, textSize;
6123     var E = Roo.lib.Event;
6124     var D = Roo.lib.Dom;
6125
6126     
6127     
6128
6129     var fireDocReady = function(){
6130         if(!docReadyState){
6131             docReadyState = true;
6132             Roo.isReady = true;
6133             if(docReadyProcId){
6134                 clearInterval(docReadyProcId);
6135             }
6136             if(Roo.isGecko || Roo.isOpera) {
6137                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6138             }
6139             if(Roo.isIE){
6140                 var defer = document.getElementById("ie-deferred-loader");
6141                 if(defer){
6142                     defer.onreadystatechange = null;
6143                     defer.parentNode.removeChild(defer);
6144                 }
6145             }
6146             if(docReadyEvent){
6147                 docReadyEvent.fire();
6148                 docReadyEvent.clearListeners();
6149             }
6150         }
6151     };
6152     
6153     var initDocReady = function(){
6154         docReadyEvent = new Roo.util.Event();
6155         if(Roo.isGecko || Roo.isOpera) {
6156             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6157         }else if(Roo.isIE){
6158             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6159             var defer = document.getElementById("ie-deferred-loader");
6160             defer.onreadystatechange = function(){
6161                 if(this.readyState == "complete"){
6162                     fireDocReady();
6163                 }
6164             };
6165         }else if(Roo.isSafari){ 
6166             docReadyProcId = setInterval(function(){
6167                 var rs = document.readyState;
6168                 if(rs == "complete") {
6169                     fireDocReady();     
6170                  }
6171             }, 10);
6172         }
6173         // no matter what, make sure it fires on load
6174         E.on(window, "load", fireDocReady);
6175     };
6176
6177     var createBuffered = function(h, o){
6178         var task = new Roo.util.DelayedTask(h);
6179         return function(e){
6180             // create new event object impl so new events don't wipe out properties
6181             e = new Roo.EventObjectImpl(e);
6182             task.delay(o.buffer, h, null, [e]);
6183         };
6184     };
6185
6186     var createSingle = function(h, el, ename, fn){
6187         return function(e){
6188             Roo.EventManager.removeListener(el, ename, fn);
6189             h(e);
6190         };
6191     };
6192
6193     var createDelayed = function(h, o){
6194         return function(e){
6195             // create new event object impl so new events don't wipe out properties
6196             e = new Roo.EventObjectImpl(e);
6197             setTimeout(function(){
6198                 h(e);
6199             }, o.delay || 10);
6200         };
6201     };
6202     var transitionEndVal = false;
6203     
6204     var transitionEnd = function()
6205     {
6206         if (transitionEndVal) {
6207             return transitionEndVal;
6208         }
6209         var el = document.createElement('div');
6210
6211         var transEndEventNames = {
6212             WebkitTransition : 'webkitTransitionEnd',
6213             MozTransition    : 'transitionend',
6214             OTransition      : 'oTransitionEnd otransitionend',
6215             transition       : 'transitionend'
6216         };
6217     
6218         for (var name in transEndEventNames) {
6219             if (el.style[name] !== undefined) {
6220                 transitionEndVal = transEndEventNames[name];
6221                 return  transitionEndVal ;
6222             }
6223         }
6224     }
6225     
6226
6227     var listen = function(element, ename, opt, fn, scope){
6228         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6229         fn = fn || o.fn; scope = scope || o.scope;
6230         var el = Roo.getDom(element);
6231         
6232         
6233         if(!el){
6234             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6235         }
6236         
6237         if (ename == 'transitionend') {
6238             ename = transitionEnd();
6239         }
6240         var h = function(e){
6241             e = Roo.EventObject.setEvent(e);
6242             var t;
6243             if(o.delegate){
6244                 t = e.getTarget(o.delegate, el);
6245                 if(!t){
6246                     return;
6247                 }
6248             }else{
6249                 t = e.target;
6250             }
6251             if(o.stopEvent === true){
6252                 e.stopEvent();
6253             }
6254             if(o.preventDefault === true){
6255                e.preventDefault();
6256             }
6257             if(o.stopPropagation === true){
6258                 e.stopPropagation();
6259             }
6260
6261             if(o.normalized === false){
6262                 e = e.browserEvent;
6263             }
6264
6265             fn.call(scope || el, e, t, o);
6266         };
6267         if(o.delay){
6268             h = createDelayed(h, o);
6269         }
6270         if(o.single){
6271             h = createSingle(h, el, ename, fn);
6272         }
6273         if(o.buffer){
6274             h = createBuffered(h, o);
6275         }
6276         fn._handlers = fn._handlers || [];
6277         
6278         
6279         fn._handlers.push([Roo.id(el), ename, h]);
6280         
6281         
6282          
6283         E.on(el, ename, h);
6284         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6285             el.addEventListener("DOMMouseScroll", h, false);
6286             E.on(window, 'unload', function(){
6287                 el.removeEventListener("DOMMouseScroll", h, false);
6288             });
6289         }
6290         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6291             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6292         }
6293         return h;
6294     };
6295
6296     var stopListening = function(el, ename, fn){
6297         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6298         if(hds){
6299             for(var i = 0, len = hds.length; i < len; i++){
6300                 var h = hds[i];
6301                 if(h[0] == id && h[1] == ename){
6302                     hd = h[2];
6303                     hds.splice(i, 1);
6304                     break;
6305                 }
6306             }
6307         }
6308         E.un(el, ename, hd);
6309         el = Roo.getDom(el);
6310         if(ename == "mousewheel" && el.addEventListener){
6311             el.removeEventListener("DOMMouseScroll", hd, false);
6312         }
6313         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6314             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6315         }
6316     };
6317
6318     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6319     
6320     var pub = {
6321         
6322         
6323         /** 
6324          * Fix for doc tools
6325          * @scope Roo.EventManager
6326          */
6327         
6328         
6329         /** 
6330          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6331          * object with a Roo.EventObject
6332          * @param {Function} fn        The method the event invokes
6333          * @param {Object}   scope    An object that becomes the scope of the handler
6334          * @param {boolean}  override If true, the obj passed in becomes
6335          *                             the execution scope of the listener
6336          * @return {Function} The wrapped function
6337          * @deprecated
6338          */
6339         wrap : function(fn, scope, override){
6340             return function(e){
6341                 Roo.EventObject.setEvent(e);
6342                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6343             };
6344         },
6345         
6346         /**
6347      * Appends an event handler to an element (shorthand for addListener)
6348      * @param {String/HTMLElement}   element        The html element or id to assign the
6349      * @param {String}   eventName The type of event to listen for
6350      * @param {Function} handler The method the event invokes
6351      * @param {Object}   scope (optional) The scope in which to execute the handler
6352      * function. The handler function's "this" context.
6353      * @param {Object}   options (optional) An object containing handler configuration
6354      * properties. This may contain any of the following properties:<ul>
6355      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6356      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6357      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6358      * <li>preventDefault {Boolean} True to prevent the default action</li>
6359      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6360      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6361      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6362      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6363      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6364      * by the specified number of milliseconds. If the event fires again within that time, the original
6365      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6366      * </ul><br>
6367      * <p>
6368      * <b>Combining Options</b><br>
6369      * Using the options argument, it is possible to combine different types of listeners:<br>
6370      * <br>
6371      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6372      * Code:<pre><code>
6373 el.on('click', this.onClick, this, {
6374     single: true,
6375     delay: 100,
6376     stopEvent : true,
6377     forumId: 4
6378 });</code></pre>
6379      * <p>
6380      * <b>Attaching multiple handlers in 1 call</b><br>
6381       * The method also allows for a single argument to be passed which is a config object containing properties
6382      * which specify multiple handlers.
6383      * <p>
6384      * Code:<pre><code>
6385 el.on({
6386     'click' : {
6387         fn: this.onClick
6388         scope: this,
6389         delay: 100
6390     },
6391     'mouseover' : {
6392         fn: this.onMouseOver
6393         scope: this
6394     },
6395     'mouseout' : {
6396         fn: this.onMouseOut
6397         scope: this
6398     }
6399 });</code></pre>
6400      * <p>
6401      * Or a shorthand syntax:<br>
6402      * Code:<pre><code>
6403 el.on({
6404     'click' : this.onClick,
6405     'mouseover' : this.onMouseOver,
6406     'mouseout' : this.onMouseOut
6407     scope: this
6408 });</code></pre>
6409      */
6410         addListener : function(element, eventName, fn, scope, options){
6411             if(typeof eventName == "object"){
6412                 var o = eventName;
6413                 for(var e in o){
6414                     if(propRe.test(e)){
6415                         continue;
6416                     }
6417                     if(typeof o[e] == "function"){
6418                         // shared options
6419                         listen(element, e, o, o[e], o.scope);
6420                     }else{
6421                         // individual options
6422                         listen(element, e, o[e]);
6423                     }
6424                 }
6425                 return;
6426             }
6427             return listen(element, eventName, options, fn, scope);
6428         },
6429         
6430         /**
6431          * Removes an event handler
6432          *
6433          * @param {String/HTMLElement}   element        The id or html element to remove the 
6434          *                             event from
6435          * @param {String}   eventName     The type of event
6436          * @param {Function} fn
6437          * @return {Boolean} True if a listener was actually removed
6438          */
6439         removeListener : function(element, eventName, fn){
6440             return stopListening(element, eventName, fn);
6441         },
6442         
6443         /**
6444          * Fires when the document is ready (before onload and before images are loaded). Can be 
6445          * accessed shorthanded Roo.onReady().
6446          * @param {Function} fn        The method the event invokes
6447          * @param {Object}   scope    An  object that becomes the scope of the handler
6448          * @param {boolean}  options
6449          */
6450         onDocumentReady : function(fn, scope, options){
6451             if(docReadyState){ // if it already fired
6452                 docReadyEvent.addListener(fn, scope, options);
6453                 docReadyEvent.fire();
6454                 docReadyEvent.clearListeners();
6455                 return;
6456             }
6457             if(!docReadyEvent){
6458                 initDocReady();
6459             }
6460             docReadyEvent.addListener(fn, scope, options);
6461         },
6462         
6463         /**
6464          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6465          * @param {Function} fn        The method the event invokes
6466          * @param {Object}   scope    An object that becomes the scope of the handler
6467          * @param {boolean}  options
6468          */
6469         onWindowResize : function(fn, scope, options){
6470             if(!resizeEvent){
6471                 resizeEvent = new Roo.util.Event();
6472                 resizeTask = new Roo.util.DelayedTask(function(){
6473                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6474                 });
6475                 E.on(window, "resize", function(){
6476                     if(Roo.isIE){
6477                         resizeTask.delay(50);
6478                     }else{
6479                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6480                     }
6481                 });
6482             }
6483             resizeEvent.addListener(fn, scope, options);
6484         },
6485
6486         /**
6487          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6488          * @param {Function} fn        The method the event invokes
6489          * @param {Object}   scope    An object that becomes the scope of the handler
6490          * @param {boolean}  options
6491          */
6492         onTextResize : function(fn, scope, options){
6493             if(!textEvent){
6494                 textEvent = new Roo.util.Event();
6495                 var textEl = new Roo.Element(document.createElement('div'));
6496                 textEl.dom.className = 'x-text-resize';
6497                 textEl.dom.innerHTML = 'X';
6498                 textEl.appendTo(document.body);
6499                 textSize = textEl.dom.offsetHeight;
6500                 setInterval(function(){
6501                     if(textEl.dom.offsetHeight != textSize){
6502                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6503                     }
6504                 }, this.textResizeInterval);
6505             }
6506             textEvent.addListener(fn, scope, options);
6507         },
6508
6509         /**
6510          * Removes the passed window resize listener.
6511          * @param {Function} fn        The method the event invokes
6512          * @param {Object}   scope    The scope of handler
6513          */
6514         removeResizeListener : function(fn, scope){
6515             if(resizeEvent){
6516                 resizeEvent.removeListener(fn, scope);
6517             }
6518         },
6519
6520         // private
6521         fireResize : function(){
6522             if(resizeEvent){
6523                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6524             }   
6525         },
6526         /**
6527          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6528          */
6529         ieDeferSrc : false,
6530         /**
6531          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6532          */
6533         textResizeInterval : 50
6534     };
6535     
6536     /**
6537      * Fix for doc tools
6538      * @scopeAlias pub=Roo.EventManager
6539      */
6540     
6541      /**
6542      * Appends an event handler to an element (shorthand for addListener)
6543      * @param {String/HTMLElement}   element        The html element or id to assign the
6544      * @param {String}   eventName The type of event to listen for
6545      * @param {Function} handler The method the event invokes
6546      * @param {Object}   scope (optional) The scope in which to execute the handler
6547      * function. The handler function's "this" context.
6548      * @param {Object}   options (optional) An object containing handler configuration
6549      * properties. This may contain any of the following properties:<ul>
6550      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6551      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6552      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6553      * <li>preventDefault {Boolean} True to prevent the default action</li>
6554      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6555      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6556      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6557      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6558      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6559      * by the specified number of milliseconds. If the event fires again within that time, the original
6560      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6561      * </ul><br>
6562      * <p>
6563      * <b>Combining Options</b><br>
6564      * Using the options argument, it is possible to combine different types of listeners:<br>
6565      * <br>
6566      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6567      * Code:<pre><code>
6568 el.on('click', this.onClick, this, {
6569     single: true,
6570     delay: 100,
6571     stopEvent : true,
6572     forumId: 4
6573 });</code></pre>
6574      * <p>
6575      * <b>Attaching multiple handlers in 1 call</b><br>
6576       * The method also allows for a single argument to be passed which is a config object containing properties
6577      * which specify multiple handlers.
6578      * <p>
6579      * Code:<pre><code>
6580 el.on({
6581     'click' : {
6582         fn: this.onClick
6583         scope: this,
6584         delay: 100
6585     },
6586     'mouseover' : {
6587         fn: this.onMouseOver
6588         scope: this
6589     },
6590     'mouseout' : {
6591         fn: this.onMouseOut
6592         scope: this
6593     }
6594 });</code></pre>
6595      * <p>
6596      * Or a shorthand syntax:<br>
6597      * Code:<pre><code>
6598 el.on({
6599     'click' : this.onClick,
6600     'mouseover' : this.onMouseOver,
6601     'mouseout' : this.onMouseOut
6602     scope: this
6603 });</code></pre>
6604      */
6605     pub.on = pub.addListener;
6606     pub.un = pub.removeListener;
6607
6608     pub.stoppedMouseDownEvent = new Roo.util.Event();
6609     return pub;
6610 }();
6611 /**
6612   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6613   * @param {Function} fn        The method the event invokes
6614   * @param {Object}   scope    An  object that becomes the scope of the handler
6615   * @param {boolean}  override If true, the obj passed in becomes
6616   *                             the execution scope of the listener
6617   * @member Roo
6618   * @method onReady
6619  */
6620 Roo.onReady = Roo.EventManager.onDocumentReady;
6621
6622 Roo.onReady(function(){
6623     var bd = Roo.get(document.body);
6624     if(!bd){ return; }
6625
6626     var cls = [
6627             Roo.isIE ? "roo-ie"
6628             : Roo.isGecko ? "roo-gecko"
6629             : Roo.isOpera ? "roo-opera"
6630             : Roo.isSafari ? "roo-safari" : ""];
6631
6632     if(Roo.isMac){
6633         cls.push("roo-mac");
6634     }
6635     if(Roo.isLinux){
6636         cls.push("roo-linux");
6637     }
6638     if(Roo.isIOS){
6639         cls.push("roo-ios");
6640     }
6641     if(Roo.isTouch){
6642         cls.push("roo-touch");
6643     }
6644     if(Roo.isBorderBox){
6645         cls.push('roo-border-box');
6646     }
6647     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6648         var p = bd.dom.parentNode;
6649         if(p){
6650             p.className += ' roo-strict';
6651         }
6652     }
6653     bd.addClass(cls.join(' '));
6654 });
6655
6656 /**
6657  * @class Roo.EventObject
6658  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6659  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6660  * Example:
6661  * <pre><code>
6662  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6663     e.preventDefault();
6664     var target = e.getTarget();
6665     ...
6666  }
6667  var myDiv = Roo.get("myDiv");
6668  myDiv.on("click", handleClick);
6669  //or
6670  Roo.EventManager.on("myDiv", 'click', handleClick);
6671  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6672  </code></pre>
6673  * @singleton
6674  */
6675 Roo.EventObject = function(){
6676     
6677     var E = Roo.lib.Event;
6678     
6679     // safari keypress events for special keys return bad keycodes
6680     var safariKeys = {
6681         63234 : 37, // left
6682         63235 : 39, // right
6683         63232 : 38, // up
6684         63233 : 40, // down
6685         63276 : 33, // page up
6686         63277 : 34, // page down
6687         63272 : 46, // delete
6688         63273 : 36, // home
6689         63275 : 35  // end
6690     };
6691
6692     // normalize button clicks
6693     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6694                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6695
6696     Roo.EventObjectImpl = function(e){
6697         if(e){
6698             this.setEvent(e.browserEvent || e);
6699         }
6700     };
6701     Roo.EventObjectImpl.prototype = {
6702         /**
6703          * Used to fix doc tools.
6704          * @scope Roo.EventObject.prototype
6705          */
6706             
6707
6708         
6709         
6710         /** The normal browser event */
6711         browserEvent : null,
6712         /** The button pressed in a mouse event */
6713         button : -1,
6714         /** True if the shift key was down during the event */
6715         shiftKey : false,
6716         /** True if the control key was down during the event */
6717         ctrlKey : false,
6718         /** True if the alt key was down during the event */
6719         altKey : false,
6720
6721         /** Key constant 
6722         * @type Number */
6723         BACKSPACE : 8,
6724         /** Key constant 
6725         * @type Number */
6726         TAB : 9,
6727         /** Key constant 
6728         * @type Number */
6729         RETURN : 13,
6730         /** Key constant 
6731         * @type Number */
6732         ENTER : 13,
6733         /** Key constant 
6734         * @type Number */
6735         SHIFT : 16,
6736         /** Key constant 
6737         * @type Number */
6738         CONTROL : 17,
6739         /** Key constant 
6740         * @type Number */
6741         ESC : 27,
6742         /** Key constant 
6743         * @type Number */
6744         SPACE : 32,
6745         /** Key constant 
6746         * @type Number */
6747         PAGEUP : 33,
6748         /** Key constant 
6749         * @type Number */
6750         PAGEDOWN : 34,
6751         /** Key constant 
6752         * @type Number */
6753         END : 35,
6754         /** Key constant 
6755         * @type Number */
6756         HOME : 36,
6757         /** Key constant 
6758         * @type Number */
6759         LEFT : 37,
6760         /** Key constant 
6761         * @type Number */
6762         UP : 38,
6763         /** Key constant 
6764         * @type Number */
6765         RIGHT : 39,
6766         /** Key constant 
6767         * @type Number */
6768         DOWN : 40,
6769         /** Key constant 
6770         * @type Number */
6771         DELETE : 46,
6772         /** Key constant 
6773         * @type Number */
6774         F5 : 116,
6775
6776            /** @private */
6777         setEvent : function(e){
6778             if(e == this || (e && e.browserEvent)){ // already wrapped
6779                 return e;
6780             }
6781             this.browserEvent = e;
6782             if(e){
6783                 // normalize buttons
6784                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6785                 if(e.type == 'click' && this.button == -1){
6786                     this.button = 0;
6787                 }
6788                 this.type = e.type;
6789                 this.shiftKey = e.shiftKey;
6790                 // mac metaKey behaves like ctrlKey
6791                 this.ctrlKey = e.ctrlKey || e.metaKey;
6792                 this.altKey = e.altKey;
6793                 // in getKey these will be normalized for the mac
6794                 this.keyCode = e.keyCode;
6795                 // keyup warnings on firefox.
6796                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6797                 // cache the target for the delayed and or buffered events
6798                 this.target = E.getTarget(e);
6799                 // same for XY
6800                 this.xy = E.getXY(e);
6801             }else{
6802                 this.button = -1;
6803                 this.shiftKey = false;
6804                 this.ctrlKey = false;
6805                 this.altKey = false;
6806                 this.keyCode = 0;
6807                 this.charCode =0;
6808                 this.target = null;
6809                 this.xy = [0, 0];
6810             }
6811             return this;
6812         },
6813
6814         /**
6815          * Stop the event (preventDefault and stopPropagation)
6816          */
6817         stopEvent : function(){
6818             if(this.browserEvent){
6819                 if(this.browserEvent.type == 'mousedown'){
6820                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6821                 }
6822                 E.stopEvent(this.browserEvent);
6823             }
6824         },
6825
6826         /**
6827          * Prevents the browsers default handling of the event.
6828          */
6829         preventDefault : function(){
6830             if(this.browserEvent){
6831                 E.preventDefault(this.browserEvent);
6832             }
6833         },
6834
6835         /** @private */
6836         isNavKeyPress : function(){
6837             var k = this.keyCode;
6838             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6839             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6840         },
6841
6842         isSpecialKey : function(){
6843             var k = this.keyCode;
6844             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6845             (k == 16) || (k == 17) ||
6846             (k >= 18 && k <= 20) ||
6847             (k >= 33 && k <= 35) ||
6848             (k >= 36 && k <= 39) ||
6849             (k >= 44 && k <= 45);
6850         },
6851         /**
6852          * Cancels bubbling of the event.
6853          */
6854         stopPropagation : function(){
6855             if(this.browserEvent){
6856                 if(this.type == 'mousedown'){
6857                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6858                 }
6859                 E.stopPropagation(this.browserEvent);
6860             }
6861         },
6862
6863         /**
6864          * Gets the key code for the event.
6865          * @return {Number}
6866          */
6867         getCharCode : function(){
6868             return this.charCode || this.keyCode;
6869         },
6870
6871         /**
6872          * Returns a normalized keyCode for the event.
6873          * @return {Number} The key code
6874          */
6875         getKey : function(){
6876             var k = this.keyCode || this.charCode;
6877             return Roo.isSafari ? (safariKeys[k] || k) : k;
6878         },
6879
6880         /**
6881          * Gets the x coordinate of the event.
6882          * @return {Number}
6883          */
6884         getPageX : function(){
6885             return this.xy[0];
6886         },
6887
6888         /**
6889          * Gets the y coordinate of the event.
6890          * @return {Number}
6891          */
6892         getPageY : function(){
6893             return this.xy[1];
6894         },
6895
6896         /**
6897          * Gets the time of the event.
6898          * @return {Number}
6899          */
6900         getTime : function(){
6901             if(this.browserEvent){
6902                 return E.getTime(this.browserEvent);
6903             }
6904             return null;
6905         },
6906
6907         /**
6908          * Gets the page coordinates of the event.
6909          * @return {Array} The xy values like [x, y]
6910          */
6911         getXY : function(){
6912             return this.xy;
6913         },
6914
6915         /**
6916          * Gets the target for the event.
6917          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
6918          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
6919                 search as a number or element (defaults to 10 || document.body)
6920          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
6921          * @return {HTMLelement}
6922          */
6923         getTarget : function(selector, maxDepth, returnEl){
6924             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
6925         },
6926         /**
6927          * Gets the related target.
6928          * @return {HTMLElement}
6929          */
6930         getRelatedTarget : function(){
6931             if(this.browserEvent){
6932                 return E.getRelatedTarget(this.browserEvent);
6933             }
6934             return null;
6935         },
6936
6937         /**
6938          * Normalizes mouse wheel delta across browsers
6939          * @return {Number} The delta
6940          */
6941         getWheelDelta : function(){
6942             var e = this.browserEvent;
6943             var delta = 0;
6944             if(e.wheelDelta){ /* IE/Opera. */
6945                 delta = e.wheelDelta/120;
6946             }else if(e.detail){ /* Mozilla case. */
6947                 delta = -e.detail/3;
6948             }
6949             return delta;
6950         },
6951
6952         /**
6953          * Returns true if the control, meta, shift or alt key was pressed during this event.
6954          * @return {Boolean}
6955          */
6956         hasModifier : function(){
6957             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
6958         },
6959
6960         /**
6961          * Returns true if the target of this event equals el or is a child of el
6962          * @param {String/HTMLElement/Element} el
6963          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
6964          * @return {Boolean}
6965          */
6966         within : function(el, related){
6967             var t = this[related ? "getRelatedTarget" : "getTarget"]();
6968             return t && Roo.fly(el).contains(t);
6969         },
6970
6971         getPoint : function(){
6972             return new Roo.lib.Point(this.xy[0], this.xy[1]);
6973         }
6974     };
6975
6976     return new Roo.EventObjectImpl();
6977 }();
6978             
6979     /*
6980  * Based on:
6981  * Ext JS Library 1.1.1
6982  * Copyright(c) 2006-2007, Ext JS, LLC.
6983  *
6984  * Originally Released Under LGPL - original licence link has changed is not relivant.
6985  *
6986  * Fork - LGPL
6987  * <script type="text/javascript">
6988  */
6989
6990  
6991 // was in Composite Element!??!?!
6992  
6993 (function(){
6994     var D = Roo.lib.Dom;
6995     var E = Roo.lib.Event;
6996     var A = Roo.lib.Anim;
6997
6998     // local style camelizing for speed
6999     var propCache = {};
7000     var camelRe = /(-[a-z])/gi;
7001     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7002     var view = document.defaultView;
7003
7004 /**
7005  * @class Roo.Element
7006  * Represents an Element in the DOM.<br><br>
7007  * Usage:<br>
7008 <pre><code>
7009 var el = Roo.get("my-div");
7010
7011 // or with getEl
7012 var el = getEl("my-div");
7013
7014 // or with a DOM element
7015 var el = Roo.get(myDivElement);
7016 </code></pre>
7017  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7018  * each call instead of constructing a new one.<br><br>
7019  * <b>Animations</b><br />
7020  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7021  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7022 <pre>
7023 Option    Default   Description
7024 --------- --------  ---------------------------------------------
7025 duration  .35       The duration of the animation in seconds
7026 easing    easeOut   The YUI easing method
7027 callback  none      A function to execute when the anim completes
7028 scope     this      The scope (this) of the callback function
7029 </pre>
7030 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7031 * manipulate the animation. Here's an example:
7032 <pre><code>
7033 var el = Roo.get("my-div");
7034
7035 // no animation
7036 el.setWidth(100);
7037
7038 // default animation
7039 el.setWidth(100, true);
7040
7041 // animation with some options set
7042 el.setWidth(100, {
7043     duration: 1,
7044     callback: this.foo,
7045     scope: this
7046 });
7047
7048 // using the "anim" property to get the Anim object
7049 var opt = {
7050     duration: 1,
7051     callback: this.foo,
7052     scope: this
7053 };
7054 el.setWidth(100, opt);
7055 ...
7056 if(opt.anim.isAnimated()){
7057     opt.anim.stop();
7058 }
7059 </code></pre>
7060 * <b> Composite (Collections of) Elements</b><br />
7061  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7062  * @constructor Create a new Element directly.
7063  * @param {String/HTMLElement} element
7064  * @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).
7065  */
7066     Roo.Element = function(element, forceNew){
7067         var dom = typeof element == "string" ?
7068                 document.getElementById(element) : element;
7069         if(!dom){ // invalid id/element
7070             return null;
7071         }
7072         var id = dom.id;
7073         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7074             return Roo.Element.cache[id];
7075         }
7076
7077         /**
7078          * The DOM element
7079          * @type HTMLElement
7080          */
7081         this.dom = dom;
7082
7083         /**
7084          * The DOM element ID
7085          * @type String
7086          */
7087         this.id = id || Roo.id(dom);
7088     };
7089
7090     var El = Roo.Element;
7091
7092     El.prototype = {
7093         /**
7094          * The element's default display mode  (defaults to "")
7095          * @type String
7096          */
7097         originalDisplay : "",
7098
7099         visibilityMode : 1,
7100         /**
7101          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7102          * @type String
7103          */
7104         defaultUnit : "px",
7105         
7106         /**
7107          * Sets the element's visibility mode. When setVisible() is called it
7108          * will use this to determine whether to set the visibility or the display property.
7109          * @param visMode Element.VISIBILITY or Element.DISPLAY
7110          * @return {Roo.Element} this
7111          */
7112         setVisibilityMode : function(visMode){
7113             this.visibilityMode = visMode;
7114             return this;
7115         },
7116         /**
7117          * Convenience method for setVisibilityMode(Element.DISPLAY)
7118          * @param {String} display (optional) What to set display to when visible
7119          * @return {Roo.Element} this
7120          */
7121         enableDisplayMode : function(display){
7122             this.setVisibilityMode(El.DISPLAY);
7123             if(typeof display != "undefined") { this.originalDisplay = display; }
7124             return this;
7125         },
7126
7127         /**
7128          * 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)
7129          * @param {String} selector The simple selector to test
7130          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7131                 search as a number or element (defaults to 10 || document.body)
7132          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7133          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7134          */
7135         findParent : function(simpleSelector, maxDepth, returnEl){
7136             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7137             maxDepth = maxDepth || 50;
7138             if(typeof maxDepth != "number"){
7139                 stopEl = Roo.getDom(maxDepth);
7140                 maxDepth = 10;
7141             }
7142             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7143                 if(dq.is(p, simpleSelector)){
7144                     return returnEl ? Roo.get(p) : p;
7145                 }
7146                 depth++;
7147                 p = p.parentNode;
7148             }
7149             return null;
7150         },
7151
7152
7153         /**
7154          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7155          * @param {String} selector The simple selector to test
7156          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7157                 search as a number or element (defaults to 10 || document.body)
7158          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7159          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7160          */
7161         findParentNode : function(simpleSelector, maxDepth, returnEl){
7162             var p = Roo.fly(this.dom.parentNode, '_internal');
7163             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7164         },
7165         
7166         /**
7167          * Looks at  the scrollable parent element
7168          */
7169         findScrollableParent : function(){
7170             
7171             var el = Roo.get(this.dom.parentNode);
7172             
7173             while (
7174                     el && 
7175                     (
7176                         !el.isScrollable() ||
7177                         (
7178                             el.isScrollable() &&
7179                             (
7180                                 D.getViewHeight() - el.dom.clientHeight > 15 || 
7181                                 D.getViewWidth() - el.dom.clientWidth > 15
7182                             )
7183                         )
7184                     ) &&
7185                     el.dom.nodeName.toLowerCase() != 'body'
7186             ){
7187                 el = Roo.get(el.dom.parentNode);
7188             }
7189             
7190             if(!el.isScrollable()){
7191                 return null;
7192             }
7193             
7194             return el;
7195         },
7196
7197         /**
7198          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7199          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7200          * @param {String} selector The simple selector to test
7201          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7202                 search as a number or element (defaults to 10 || document.body)
7203          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7204          */
7205         up : function(simpleSelector, maxDepth){
7206             return this.findParentNode(simpleSelector, maxDepth, true);
7207         },
7208
7209
7210
7211         /**
7212          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7213          * @param {String} selector The simple selector to test
7214          * @return {Boolean} True if this element matches the selector, else false
7215          */
7216         is : function(simpleSelector){
7217             return Roo.DomQuery.is(this.dom, simpleSelector);
7218         },
7219
7220         /**
7221          * Perform animation on this element.
7222          * @param {Object} args The YUI animation control args
7223          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7224          * @param {Function} onComplete (optional) Function to call when animation completes
7225          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7226          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7227          * @return {Roo.Element} this
7228          */
7229         animate : function(args, duration, onComplete, easing, animType){
7230             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7231             return this;
7232         },
7233
7234         /*
7235          * @private Internal animation call
7236          */
7237         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7238             animType = animType || 'run';
7239             opt = opt || {};
7240             var anim = Roo.lib.Anim[animType](
7241                 this.dom, args,
7242                 (opt.duration || defaultDur) || .35,
7243                 (opt.easing || defaultEase) || 'easeOut',
7244                 function(){
7245                     Roo.callback(cb, this);
7246                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7247                 },
7248                 this
7249             );
7250             opt.anim = anim;
7251             return anim;
7252         },
7253
7254         // private legacy anim prep
7255         preanim : function(a, i){
7256             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7257         },
7258
7259         /**
7260          * Removes worthless text nodes
7261          * @param {Boolean} forceReclean (optional) By default the element
7262          * keeps track if it has been cleaned already so
7263          * you can call this over and over. However, if you update the element and
7264          * need to force a reclean, you can pass true.
7265          */
7266         clean : function(forceReclean){
7267             if(this.isCleaned && forceReclean !== true){
7268                 return this;
7269             }
7270             var ns = /\S/;
7271             var d = this.dom, n = d.firstChild, ni = -1;
7272             while(n){
7273                 var nx = n.nextSibling;
7274                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7275                     d.removeChild(n);
7276                 }else{
7277                     n.nodeIndex = ++ni;
7278                 }
7279                 n = nx;
7280             }
7281             this.isCleaned = true;
7282             return this;
7283         },
7284
7285         // private
7286         calcOffsetsTo : function(el){
7287             el = Roo.get(el);
7288             var d = el.dom;
7289             var restorePos = false;
7290             if(el.getStyle('position') == 'static'){
7291                 el.position('relative');
7292                 restorePos = true;
7293             }
7294             var x = 0, y =0;
7295             var op = this.dom;
7296             while(op && op != d && op.tagName != 'HTML'){
7297                 x+= op.offsetLeft;
7298                 y+= op.offsetTop;
7299                 op = op.offsetParent;
7300             }
7301             if(restorePos){
7302                 el.position('static');
7303             }
7304             return [x, y];
7305         },
7306
7307         /**
7308          * Scrolls this element into view within the passed container.
7309          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7310          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7311          * @return {Roo.Element} this
7312          */
7313         scrollIntoView : function(container, hscroll){
7314             var c = Roo.getDom(container) || document.body;
7315             var el = this.dom;
7316
7317             var o = this.calcOffsetsTo(c),
7318                 l = o[0],
7319                 t = o[1],
7320                 b = t+el.offsetHeight,
7321                 r = l+el.offsetWidth;
7322
7323             var ch = c.clientHeight;
7324             var ct = parseInt(c.scrollTop, 10);
7325             var cl = parseInt(c.scrollLeft, 10);
7326             var cb = ct + ch;
7327             var cr = cl + c.clientWidth;
7328
7329             if(t < ct){
7330                 c.scrollTop = t;
7331             }else if(b > cb){
7332                 c.scrollTop = b-ch;
7333             }
7334
7335             if(hscroll !== false){
7336                 if(l < cl){
7337                     c.scrollLeft = l;
7338                 }else if(r > cr){
7339                     c.scrollLeft = r-c.clientWidth;
7340                 }
7341             }
7342             return this;
7343         },
7344
7345         // private
7346         scrollChildIntoView : function(child, hscroll){
7347             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7348         },
7349
7350         /**
7351          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7352          * the new height may not be available immediately.
7353          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7354          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7355          * @param {Function} onComplete (optional) Function to call when animation completes
7356          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7357          * @return {Roo.Element} this
7358          */
7359         autoHeight : function(animate, duration, onComplete, easing){
7360             var oldHeight = this.getHeight();
7361             this.clip();
7362             this.setHeight(1); // force clipping
7363             setTimeout(function(){
7364                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7365                 if(!animate){
7366                     this.setHeight(height);
7367                     this.unclip();
7368                     if(typeof onComplete == "function"){
7369                         onComplete();
7370                     }
7371                 }else{
7372                     this.setHeight(oldHeight); // restore original height
7373                     this.setHeight(height, animate, duration, function(){
7374                         this.unclip();
7375                         if(typeof onComplete == "function") { onComplete(); }
7376                     }.createDelegate(this), easing);
7377                 }
7378             }.createDelegate(this), 0);
7379             return this;
7380         },
7381
7382         /**
7383          * Returns true if this element is an ancestor of the passed element
7384          * @param {HTMLElement/String} el The element to check
7385          * @return {Boolean} True if this element is an ancestor of el, else false
7386          */
7387         contains : function(el){
7388             if(!el){return false;}
7389             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7390         },
7391
7392         /**
7393          * Checks whether the element is currently visible using both visibility and display properties.
7394          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7395          * @return {Boolean} True if the element is currently visible, else false
7396          */
7397         isVisible : function(deep) {
7398             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7399             if(deep !== true || !vis){
7400                 return vis;
7401             }
7402             var p = this.dom.parentNode;
7403             while(p && p.tagName.toLowerCase() != "body"){
7404                 if(!Roo.fly(p, '_isVisible').isVisible()){
7405                     return false;
7406                 }
7407                 p = p.parentNode;
7408             }
7409             return true;
7410         },
7411
7412         /**
7413          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7414          * @param {String} selector The CSS selector
7415          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7416          * @return {CompositeElement/CompositeElementLite} The composite element
7417          */
7418         select : function(selector, unique){
7419             return El.select(selector, unique, this.dom);
7420         },
7421
7422         /**
7423          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7424          * @param {String} selector The CSS selector
7425          * @return {Array} An array of the matched nodes
7426          */
7427         query : function(selector, unique){
7428             return Roo.DomQuery.select(selector, this.dom);
7429         },
7430
7431         /**
7432          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7433          * @param {String} selector The CSS selector
7434          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7435          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7436          */
7437         child : function(selector, returnDom){
7438             var n = Roo.DomQuery.selectNode(selector, this.dom);
7439             return returnDom ? n : Roo.get(n);
7440         },
7441
7442         /**
7443          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7444          * @param {String} selector The CSS selector
7445          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7446          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7447          */
7448         down : function(selector, returnDom){
7449             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7450             return returnDom ? n : Roo.get(n);
7451         },
7452
7453         /**
7454          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7455          * @param {String} group The group the DD object is member of
7456          * @param {Object} config The DD config object
7457          * @param {Object} overrides An object containing methods to override/implement on the DD object
7458          * @return {Roo.dd.DD} The DD object
7459          */
7460         initDD : function(group, config, overrides){
7461             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7462             return Roo.apply(dd, overrides);
7463         },
7464
7465         /**
7466          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7467          * @param {String} group The group the DDProxy object is member of
7468          * @param {Object} config The DDProxy config object
7469          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7470          * @return {Roo.dd.DDProxy} The DDProxy object
7471          */
7472         initDDProxy : function(group, config, overrides){
7473             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7474             return Roo.apply(dd, overrides);
7475         },
7476
7477         /**
7478          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7479          * @param {String} group The group the DDTarget object is member of
7480          * @param {Object} config The DDTarget config object
7481          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7482          * @return {Roo.dd.DDTarget} The DDTarget object
7483          */
7484         initDDTarget : function(group, config, overrides){
7485             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7486             return Roo.apply(dd, overrides);
7487         },
7488
7489         /**
7490          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7491          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7492          * @param {Boolean} visible Whether the element is visible
7493          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7494          * @return {Roo.Element} this
7495          */
7496          setVisible : function(visible, animate){
7497             if(!animate || !A){
7498                 if(this.visibilityMode == El.DISPLAY){
7499                     this.setDisplayed(visible);
7500                 }else{
7501                     this.fixDisplay();
7502                     this.dom.style.visibility = visible ? "visible" : "hidden";
7503                 }
7504             }else{
7505                 // closure for composites
7506                 var dom = this.dom;
7507                 var visMode = this.visibilityMode;
7508                 if(visible){
7509                     this.setOpacity(.01);
7510                     this.setVisible(true);
7511                 }
7512                 this.anim({opacity: { to: (visible?1:0) }},
7513                       this.preanim(arguments, 1),
7514                       null, .35, 'easeIn', function(){
7515                          if(!visible){
7516                              if(visMode == El.DISPLAY){
7517                                  dom.style.display = "none";
7518                              }else{
7519                                  dom.style.visibility = "hidden";
7520                              }
7521                              Roo.get(dom).setOpacity(1);
7522                          }
7523                      });
7524             }
7525             return this;
7526         },
7527
7528         /**
7529          * Returns true if display is not "none"
7530          * @return {Boolean}
7531          */
7532         isDisplayed : function() {
7533             return this.getStyle("display") != "none";
7534         },
7535
7536         /**
7537          * Toggles the element's visibility or display, depending on visibility mode.
7538          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7539          * @return {Roo.Element} this
7540          */
7541         toggle : function(animate){
7542             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7543             return this;
7544         },
7545
7546         /**
7547          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7548          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7549          * @return {Roo.Element} this
7550          */
7551         setDisplayed : function(value) {
7552             if(typeof value == "boolean"){
7553                value = value ? this.originalDisplay : "none";
7554             }
7555             this.setStyle("display", value);
7556             return this;
7557         },
7558
7559         /**
7560          * Tries to focus the element. Any exceptions are caught and ignored.
7561          * @return {Roo.Element} this
7562          */
7563         focus : function() {
7564             try{
7565                 this.dom.focus();
7566             }catch(e){}
7567             return this;
7568         },
7569
7570         /**
7571          * Tries to blur the element. Any exceptions are caught and ignored.
7572          * @return {Roo.Element} this
7573          */
7574         blur : function() {
7575             try{
7576                 this.dom.blur();
7577             }catch(e){}
7578             return this;
7579         },
7580
7581         /**
7582          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7583          * @param {String/Array} className The CSS class to add, or an array of classes
7584          * @return {Roo.Element} this
7585          */
7586         addClass : function(className){
7587             if(className instanceof Array){
7588                 for(var i = 0, len = className.length; i < len; i++) {
7589                     this.addClass(className[i]);
7590                 }
7591             }else{
7592                 if(className && !this.hasClass(className)){
7593                     this.dom.className = this.dom.className + " " + className;
7594                 }
7595             }
7596             return this;
7597         },
7598
7599         /**
7600          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7601          * @param {String/Array} className The CSS class to add, or an array of classes
7602          * @return {Roo.Element} this
7603          */
7604         radioClass : function(className){
7605             var siblings = this.dom.parentNode.childNodes;
7606             for(var i = 0; i < siblings.length; i++) {
7607                 var s = siblings[i];
7608                 if(s.nodeType == 1){
7609                     Roo.get(s).removeClass(className);
7610                 }
7611             }
7612             this.addClass(className);
7613             return this;
7614         },
7615
7616         /**
7617          * Removes one or more CSS classes from the element.
7618          * @param {String/Array} className The CSS class to remove, or an array of classes
7619          * @return {Roo.Element} this
7620          */
7621         removeClass : function(className){
7622             if(!className || !this.dom.className){
7623                 return this;
7624             }
7625             if(className instanceof Array){
7626                 for(var i = 0, len = className.length; i < len; i++) {
7627                     this.removeClass(className[i]);
7628                 }
7629             }else{
7630                 if(this.hasClass(className)){
7631                     var re = this.classReCache[className];
7632                     if (!re) {
7633                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7634                        this.classReCache[className] = re;
7635                     }
7636                     this.dom.className =
7637                         this.dom.className.replace(re, " ");
7638                 }
7639             }
7640             return this;
7641         },
7642
7643         // private
7644         classReCache: {},
7645
7646         /**
7647          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7648          * @param {String} className The CSS class to toggle
7649          * @return {Roo.Element} this
7650          */
7651         toggleClass : function(className){
7652             if(this.hasClass(className)){
7653                 this.removeClass(className);
7654             }else{
7655                 this.addClass(className);
7656             }
7657             return this;
7658         },
7659
7660         /**
7661          * Checks if the specified CSS class exists on this element's DOM node.
7662          * @param {String} className The CSS class to check for
7663          * @return {Boolean} True if the class exists, else false
7664          */
7665         hasClass : function(className){
7666             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7667         },
7668
7669         /**
7670          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7671          * @param {String} oldClassName The CSS class to replace
7672          * @param {String} newClassName The replacement CSS class
7673          * @return {Roo.Element} this
7674          */
7675         replaceClass : function(oldClassName, newClassName){
7676             this.removeClass(oldClassName);
7677             this.addClass(newClassName);
7678             return this;
7679         },
7680
7681         /**
7682          * Returns an object with properties matching the styles requested.
7683          * For example, el.getStyles('color', 'font-size', 'width') might return
7684          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7685          * @param {String} style1 A style name
7686          * @param {String} style2 A style name
7687          * @param {String} etc.
7688          * @return {Object} The style object
7689          */
7690         getStyles : function(){
7691             var a = arguments, len = a.length, r = {};
7692             for(var i = 0; i < len; i++){
7693                 r[a[i]] = this.getStyle(a[i]);
7694             }
7695             return r;
7696         },
7697
7698         /**
7699          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7700          * @param {String} property The style property whose value is returned.
7701          * @return {String} The current value of the style property for this element.
7702          */
7703         getStyle : function(){
7704             return view && view.getComputedStyle ?
7705                 function(prop){
7706                     var el = this.dom, v, cs, camel;
7707                     if(prop == 'float'){
7708                         prop = "cssFloat";
7709                     }
7710                     if(el.style && (v = el.style[prop])){
7711                         return v;
7712                     }
7713                     if(cs = view.getComputedStyle(el, "")){
7714                         if(!(camel = propCache[prop])){
7715                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7716                         }
7717                         return cs[camel];
7718                     }
7719                     return null;
7720                 } :
7721                 function(prop){
7722                     var el = this.dom, v, cs, camel;
7723                     if(prop == 'opacity'){
7724                         if(typeof el.style.filter == 'string'){
7725                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7726                             if(m){
7727                                 var fv = parseFloat(m[1]);
7728                                 if(!isNaN(fv)){
7729                                     return fv ? fv / 100 : 0;
7730                                 }
7731                             }
7732                         }
7733                         return 1;
7734                     }else if(prop == 'float'){
7735                         prop = "styleFloat";
7736                     }
7737                     if(!(camel = propCache[prop])){
7738                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7739                     }
7740                     if(v = el.style[camel]){
7741                         return v;
7742                     }
7743                     if(cs = el.currentStyle){
7744                         return cs[camel];
7745                     }
7746                     return null;
7747                 };
7748         }(),
7749
7750         /**
7751          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7752          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7753          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7754          * @return {Roo.Element} this
7755          */
7756         setStyle : function(prop, value){
7757             if(typeof prop == "string"){
7758                 
7759                 if (prop == 'float') {
7760                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7761                     return this;
7762                 }
7763                 
7764                 var camel;
7765                 if(!(camel = propCache[prop])){
7766                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7767                 }
7768                 
7769                 if(camel == 'opacity') {
7770                     this.setOpacity(value);
7771                 }else{
7772                     this.dom.style[camel] = value;
7773                 }
7774             }else{
7775                 for(var style in prop){
7776                     if(typeof prop[style] != "function"){
7777                        this.setStyle(style, prop[style]);
7778                     }
7779                 }
7780             }
7781             return this;
7782         },
7783
7784         /**
7785          * More flexible version of {@link #setStyle} for setting style properties.
7786          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7787          * a function which returns such a specification.
7788          * @return {Roo.Element} this
7789          */
7790         applyStyles : function(style){
7791             Roo.DomHelper.applyStyles(this.dom, style);
7792             return this;
7793         },
7794
7795         /**
7796           * 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).
7797           * @return {Number} The X position of the element
7798           */
7799         getX : function(){
7800             return D.getX(this.dom);
7801         },
7802
7803         /**
7804           * 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).
7805           * @return {Number} The Y position of the element
7806           */
7807         getY : function(){
7808             return D.getY(this.dom);
7809         },
7810
7811         /**
7812           * 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).
7813           * @return {Array} The XY position of the element
7814           */
7815         getXY : function(){
7816             return D.getXY(this.dom);
7817         },
7818
7819         /**
7820          * 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).
7821          * @param {Number} The X position of the element
7822          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7823          * @return {Roo.Element} this
7824          */
7825         setX : function(x, animate){
7826             if(!animate || !A){
7827                 D.setX(this.dom, x);
7828             }else{
7829                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7830             }
7831             return this;
7832         },
7833
7834         /**
7835          * 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).
7836          * @param {Number} The Y position of the element
7837          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7838          * @return {Roo.Element} this
7839          */
7840         setY : function(y, animate){
7841             if(!animate || !A){
7842                 D.setY(this.dom, y);
7843             }else{
7844                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7845             }
7846             return this;
7847         },
7848
7849         /**
7850          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7851          * @param {String} left The left CSS property value
7852          * @return {Roo.Element} this
7853          */
7854         setLeft : function(left){
7855             this.setStyle("left", this.addUnits(left));
7856             return this;
7857         },
7858
7859         /**
7860          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7861          * @param {String} top The top CSS property value
7862          * @return {Roo.Element} this
7863          */
7864         setTop : function(top){
7865             this.setStyle("top", this.addUnits(top));
7866             return this;
7867         },
7868
7869         /**
7870          * Sets the element's CSS right style.
7871          * @param {String} right The right CSS property value
7872          * @return {Roo.Element} this
7873          */
7874         setRight : function(right){
7875             this.setStyle("right", this.addUnits(right));
7876             return this;
7877         },
7878
7879         /**
7880          * Sets the element's CSS bottom style.
7881          * @param {String} bottom The bottom CSS property value
7882          * @return {Roo.Element} this
7883          */
7884         setBottom : function(bottom){
7885             this.setStyle("bottom", this.addUnits(bottom));
7886             return this;
7887         },
7888
7889         /**
7890          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7891          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7892          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7893          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7894          * @return {Roo.Element} this
7895          */
7896         setXY : function(pos, animate){
7897             if(!animate || !A){
7898                 D.setXY(this.dom, pos);
7899             }else{
7900                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7901             }
7902             return this;
7903         },
7904
7905         /**
7906          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7907          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7908          * @param {Number} x X value for new position (coordinates are page-based)
7909          * @param {Number} y Y value for new position (coordinates are page-based)
7910          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7911          * @return {Roo.Element} this
7912          */
7913         setLocation : function(x, y, animate){
7914             this.setXY([x, y], this.preanim(arguments, 2));
7915             return this;
7916         },
7917
7918         /**
7919          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7920          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7921          * @param {Number} x X value for new position (coordinates are page-based)
7922          * @param {Number} y Y value for new position (coordinates are page-based)
7923          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7924          * @return {Roo.Element} this
7925          */
7926         moveTo : function(x, y, animate){
7927             this.setXY([x, y], this.preanim(arguments, 2));
7928             return this;
7929         },
7930
7931         /**
7932          * Returns the region of the given element.
7933          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
7934          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
7935          */
7936         getRegion : function(){
7937             return D.getRegion(this.dom);
7938         },
7939
7940         /**
7941          * Returns the offset height of the element
7942          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
7943          * @return {Number} The element's height
7944          */
7945         getHeight : function(contentHeight){
7946             var h = this.dom.offsetHeight || 0;
7947             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
7948         },
7949
7950         /**
7951          * Returns the offset width of the element
7952          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
7953          * @return {Number} The element's width
7954          */
7955         getWidth : function(contentWidth){
7956             var w = this.dom.offsetWidth || 0;
7957             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
7958         },
7959
7960         /**
7961          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
7962          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
7963          * if a height has not been set using CSS.
7964          * @return {Number}
7965          */
7966         getComputedHeight : function(){
7967             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
7968             if(!h){
7969                 h = parseInt(this.getStyle('height'), 10) || 0;
7970                 if(!this.isBorderBox()){
7971                     h += this.getFrameWidth('tb');
7972                 }
7973             }
7974             return h;
7975         },
7976
7977         /**
7978          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
7979          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
7980          * if a width has not been set using CSS.
7981          * @return {Number}
7982          */
7983         getComputedWidth : function(){
7984             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
7985             if(!w){
7986                 w = parseInt(this.getStyle('width'), 10) || 0;
7987                 if(!this.isBorderBox()){
7988                     w += this.getFrameWidth('lr');
7989                 }
7990             }
7991             return w;
7992         },
7993
7994         /**
7995          * Returns the size of the element.
7996          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
7997          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
7998          */
7999         getSize : function(contentSize){
8000             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8001         },
8002
8003         /**
8004          * Returns the width and height of the viewport.
8005          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8006          */
8007         getViewSize : function(){
8008             var d = this.dom, doc = document, aw = 0, ah = 0;
8009             if(d == doc || d == doc.body){
8010                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8011             }else{
8012                 return {
8013                     width : d.clientWidth,
8014                     height: d.clientHeight
8015                 };
8016             }
8017         },
8018
8019         /**
8020          * Returns the value of the "value" attribute
8021          * @param {Boolean} asNumber true to parse the value as a number
8022          * @return {String/Number}
8023          */
8024         getValue : function(asNumber){
8025             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8026         },
8027
8028         // private
8029         adjustWidth : function(width){
8030             if(typeof width == "number"){
8031                 if(this.autoBoxAdjust && !this.isBorderBox()){
8032                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8033                 }
8034                 if(width < 0){
8035                     width = 0;
8036                 }
8037             }
8038             return width;
8039         },
8040
8041         // private
8042         adjustHeight : function(height){
8043             if(typeof height == "number"){
8044                if(this.autoBoxAdjust && !this.isBorderBox()){
8045                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8046                }
8047                if(height < 0){
8048                    height = 0;
8049                }
8050             }
8051             return height;
8052         },
8053
8054         /**
8055          * Set the width of the element
8056          * @param {Number} width The new width
8057          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8058          * @return {Roo.Element} this
8059          */
8060         setWidth : function(width, animate){
8061             width = this.adjustWidth(width);
8062             if(!animate || !A){
8063                 this.dom.style.width = this.addUnits(width);
8064             }else{
8065                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8066             }
8067             return this;
8068         },
8069
8070         /**
8071          * Set the height of the element
8072          * @param {Number} height The new height
8073          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8074          * @return {Roo.Element} this
8075          */
8076          setHeight : function(height, animate){
8077             height = this.adjustHeight(height);
8078             if(!animate || !A){
8079                 this.dom.style.height = this.addUnits(height);
8080             }else{
8081                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8082             }
8083             return this;
8084         },
8085
8086         /**
8087          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8088          * @param {Number} width The new width
8089          * @param {Number} height The new height
8090          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8091          * @return {Roo.Element} this
8092          */
8093          setSize : function(width, height, animate){
8094             if(typeof width == "object"){ // in case of object from getSize()
8095                 height = width.height; width = width.width;
8096             }
8097             width = this.adjustWidth(width); height = this.adjustHeight(height);
8098             if(!animate || !A){
8099                 this.dom.style.width = this.addUnits(width);
8100                 this.dom.style.height = this.addUnits(height);
8101             }else{
8102                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8103             }
8104             return this;
8105         },
8106
8107         /**
8108          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8109          * @param {Number} x X value for new position (coordinates are page-based)
8110          * @param {Number} y Y value for new position (coordinates are page-based)
8111          * @param {Number} width The new width
8112          * @param {Number} height The new height
8113          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8114          * @return {Roo.Element} this
8115          */
8116         setBounds : function(x, y, width, height, animate){
8117             if(!animate || !A){
8118                 this.setSize(width, height);
8119                 this.setLocation(x, y);
8120             }else{
8121                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8122                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8123                               this.preanim(arguments, 4), 'motion');
8124             }
8125             return this;
8126         },
8127
8128         /**
8129          * 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.
8130          * @param {Roo.lib.Region} region The region to fill
8131          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8132          * @return {Roo.Element} this
8133          */
8134         setRegion : function(region, animate){
8135             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8136             return this;
8137         },
8138
8139         /**
8140          * Appends an event handler
8141          *
8142          * @param {String}   eventName     The type of event to append
8143          * @param {Function} fn        The method the event invokes
8144          * @param {Object} scope       (optional) The scope (this object) of the fn
8145          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8146          */
8147         addListener : function(eventName, fn, scope, options){
8148             if (this.dom) {
8149                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8150             }
8151         },
8152
8153         /**
8154          * Removes an event handler from this element
8155          * @param {String} eventName the type of event to remove
8156          * @param {Function} fn the method the event invokes
8157          * @return {Roo.Element} this
8158          */
8159         removeListener : function(eventName, fn){
8160             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8161             return this;
8162         },
8163
8164         /**
8165          * Removes all previous added listeners from this element
8166          * @return {Roo.Element} this
8167          */
8168         removeAllListeners : function(){
8169             E.purgeElement(this.dom);
8170             return this;
8171         },
8172
8173         relayEvent : function(eventName, observable){
8174             this.on(eventName, function(e){
8175                 observable.fireEvent(eventName, e);
8176             });
8177         },
8178
8179         /**
8180          * Set the opacity of the element
8181          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8182          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8183          * @return {Roo.Element} this
8184          */
8185          setOpacity : function(opacity, animate){
8186             if(!animate || !A){
8187                 var s = this.dom.style;
8188                 if(Roo.isIE){
8189                     s.zoom = 1;
8190                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8191                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8192                 }else{
8193                     s.opacity = opacity;
8194                 }
8195             }else{
8196                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8197             }
8198             return this;
8199         },
8200
8201         /**
8202          * Gets the left X coordinate
8203          * @param {Boolean} local True to get the local css position instead of page coordinate
8204          * @return {Number}
8205          */
8206         getLeft : function(local){
8207             if(!local){
8208                 return this.getX();
8209             }else{
8210                 return parseInt(this.getStyle("left"), 10) || 0;
8211             }
8212         },
8213
8214         /**
8215          * Gets the right X coordinate of the element (element X position + element width)
8216          * @param {Boolean} local True to get the local css position instead of page coordinate
8217          * @return {Number}
8218          */
8219         getRight : function(local){
8220             if(!local){
8221                 return this.getX() + this.getWidth();
8222             }else{
8223                 return (this.getLeft(true) + this.getWidth()) || 0;
8224             }
8225         },
8226
8227         /**
8228          * Gets the top Y coordinate
8229          * @param {Boolean} local True to get the local css position instead of page coordinate
8230          * @return {Number}
8231          */
8232         getTop : function(local) {
8233             if(!local){
8234                 return this.getY();
8235             }else{
8236                 return parseInt(this.getStyle("top"), 10) || 0;
8237             }
8238         },
8239
8240         /**
8241          * Gets the bottom Y coordinate of the element (element Y position + element height)
8242          * @param {Boolean} local True to get the local css position instead of page coordinate
8243          * @return {Number}
8244          */
8245         getBottom : function(local){
8246             if(!local){
8247                 return this.getY() + this.getHeight();
8248             }else{
8249                 return (this.getTop(true) + this.getHeight()) || 0;
8250             }
8251         },
8252
8253         /**
8254         * Initializes positioning on this element. If a desired position is not passed, it will make the
8255         * the element positioned relative IF it is not already positioned.
8256         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8257         * @param {Number} zIndex (optional) The zIndex to apply
8258         * @param {Number} x (optional) Set the page X position
8259         * @param {Number} y (optional) Set the page Y position
8260         */
8261         position : function(pos, zIndex, x, y){
8262             if(!pos){
8263                if(this.getStyle('position') == 'static'){
8264                    this.setStyle('position', 'relative');
8265                }
8266             }else{
8267                 this.setStyle("position", pos);
8268             }
8269             if(zIndex){
8270                 this.setStyle("z-index", zIndex);
8271             }
8272             if(x !== undefined && y !== undefined){
8273                 this.setXY([x, y]);
8274             }else if(x !== undefined){
8275                 this.setX(x);
8276             }else if(y !== undefined){
8277                 this.setY(y);
8278             }
8279         },
8280
8281         /**
8282         * Clear positioning back to the default when the document was loaded
8283         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8284         * @return {Roo.Element} this
8285          */
8286         clearPositioning : function(value){
8287             value = value ||'';
8288             this.setStyle({
8289                 "left": value,
8290                 "right": value,
8291                 "top": value,
8292                 "bottom": value,
8293                 "z-index": "",
8294                 "position" : "static"
8295             });
8296             return this;
8297         },
8298
8299         /**
8300         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8301         * snapshot before performing an update and then restoring the element.
8302         * @return {Object}
8303         */
8304         getPositioning : function(){
8305             var l = this.getStyle("left");
8306             var t = this.getStyle("top");
8307             return {
8308                 "position" : this.getStyle("position"),
8309                 "left" : l,
8310                 "right" : l ? "" : this.getStyle("right"),
8311                 "top" : t,
8312                 "bottom" : t ? "" : this.getStyle("bottom"),
8313                 "z-index" : this.getStyle("z-index")
8314             };
8315         },
8316
8317         /**
8318          * Gets the width of the border(s) for the specified side(s)
8319          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8320          * passing lr would get the border (l)eft width + the border (r)ight width.
8321          * @return {Number} The width of the sides passed added together
8322          */
8323         getBorderWidth : function(side){
8324             return this.addStyles(side, El.borders);
8325         },
8326
8327         /**
8328          * Gets the width of the padding(s) for the specified side(s)
8329          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8330          * passing lr would get the padding (l)eft + the padding (r)ight.
8331          * @return {Number} The padding of the sides passed added together
8332          */
8333         getPadding : function(side){
8334             return this.addStyles(side, El.paddings);
8335         },
8336
8337         /**
8338         * Set positioning with an object returned by getPositioning().
8339         * @param {Object} posCfg
8340         * @return {Roo.Element} this
8341          */
8342         setPositioning : function(pc){
8343             this.applyStyles(pc);
8344             if(pc.right == "auto"){
8345                 this.dom.style.right = "";
8346             }
8347             if(pc.bottom == "auto"){
8348                 this.dom.style.bottom = "";
8349             }
8350             return this;
8351         },
8352
8353         // private
8354         fixDisplay : function(){
8355             if(this.getStyle("display") == "none"){
8356                 this.setStyle("visibility", "hidden");
8357                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8358                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8359                     this.setStyle("display", "block");
8360                 }
8361             }
8362         },
8363
8364         /**
8365          * Quick set left and top adding default units
8366          * @param {String} left The left CSS property value
8367          * @param {String} top The top CSS property value
8368          * @return {Roo.Element} this
8369          */
8370          setLeftTop : function(left, top){
8371             this.dom.style.left = this.addUnits(left);
8372             this.dom.style.top = this.addUnits(top);
8373             return this;
8374         },
8375
8376         /**
8377          * Move this element relative to its current position.
8378          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8379          * @param {Number} distance How far to move the element in pixels
8380          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8381          * @return {Roo.Element} this
8382          */
8383          move : function(direction, distance, animate){
8384             var xy = this.getXY();
8385             direction = direction.toLowerCase();
8386             switch(direction){
8387                 case "l":
8388                 case "left":
8389                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8390                     break;
8391                case "r":
8392                case "right":
8393                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8394                     break;
8395                case "t":
8396                case "top":
8397                case "up":
8398                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8399                     break;
8400                case "b":
8401                case "bottom":
8402                case "down":
8403                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8404                     break;
8405             }
8406             return this;
8407         },
8408
8409         /**
8410          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8411          * @return {Roo.Element} this
8412          */
8413         clip : function(){
8414             if(!this.isClipped){
8415                this.isClipped = true;
8416                this.originalClip = {
8417                    "o": this.getStyle("overflow"),
8418                    "x": this.getStyle("overflow-x"),
8419                    "y": this.getStyle("overflow-y")
8420                };
8421                this.setStyle("overflow", "hidden");
8422                this.setStyle("overflow-x", "hidden");
8423                this.setStyle("overflow-y", "hidden");
8424             }
8425             return this;
8426         },
8427
8428         /**
8429          *  Return clipping (overflow) to original clipping before clip() was called
8430          * @return {Roo.Element} this
8431          */
8432         unclip : function(){
8433             if(this.isClipped){
8434                 this.isClipped = false;
8435                 var o = this.originalClip;
8436                 if(o.o){this.setStyle("overflow", o.o);}
8437                 if(o.x){this.setStyle("overflow-x", o.x);}
8438                 if(o.y){this.setStyle("overflow-y", o.y);}
8439             }
8440             return this;
8441         },
8442
8443
8444         /**
8445          * Gets the x,y coordinates specified by the anchor position on the element.
8446          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8447          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8448          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8449          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8450          * @return {Array} [x, y] An array containing the element's x and y coordinates
8451          */
8452         getAnchorXY : function(anchor, local, s){
8453             //Passing a different size is useful for pre-calculating anchors,
8454             //especially for anchored animations that change the el size.
8455
8456             var w, h, vp = false;
8457             if(!s){
8458                 var d = this.dom;
8459                 if(d == document.body || d == document){
8460                     vp = true;
8461                     w = D.getViewWidth(); h = D.getViewHeight();
8462                 }else{
8463                     w = this.getWidth(); h = this.getHeight();
8464                 }
8465             }else{
8466                 w = s.width;  h = s.height;
8467             }
8468             var x = 0, y = 0, r = Math.round;
8469             switch((anchor || "tl").toLowerCase()){
8470                 case "c":
8471                     x = r(w*.5);
8472                     y = r(h*.5);
8473                 break;
8474                 case "t":
8475                     x = r(w*.5);
8476                     y = 0;
8477                 break;
8478                 case "l":
8479                     x = 0;
8480                     y = r(h*.5);
8481                 break;
8482                 case "r":
8483                     x = w;
8484                     y = r(h*.5);
8485                 break;
8486                 case "b":
8487                     x = r(w*.5);
8488                     y = h;
8489                 break;
8490                 case "tl":
8491                     x = 0;
8492                     y = 0;
8493                 break;
8494                 case "bl":
8495                     x = 0;
8496                     y = h;
8497                 break;
8498                 case "br":
8499                     x = w;
8500                     y = h;
8501                 break;
8502                 case "tr":
8503                     x = w;
8504                     y = 0;
8505                 break;
8506             }
8507             if(local === true){
8508                 return [x, y];
8509             }
8510             if(vp){
8511                 var sc = this.getScroll();
8512                 return [x + sc.left, y + sc.top];
8513             }
8514             //Add the element's offset xy
8515             var o = this.getXY();
8516             return [x+o[0], y+o[1]];
8517         },
8518
8519         /**
8520          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8521          * supported position values.
8522          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8523          * @param {String} position The position to align to.
8524          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8525          * @return {Array} [x, y]
8526          */
8527         getAlignToXY : function(el, p, o){
8528             el = Roo.get(el);
8529             var d = this.dom;
8530             if(!el.dom){
8531                 throw "Element.alignTo with an element that doesn't exist";
8532             }
8533             var c = false; //constrain to viewport
8534             var p1 = "", p2 = "";
8535             o = o || [0,0];
8536
8537             if(!p){
8538                 p = "tl-bl";
8539             }else if(p == "?"){
8540                 p = "tl-bl?";
8541             }else if(p.indexOf("-") == -1){
8542                 p = "tl-" + p;
8543             }
8544             p = p.toLowerCase();
8545             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8546             if(!m){
8547                throw "Element.alignTo with an invalid alignment " + p;
8548             }
8549             p1 = m[1]; p2 = m[2]; c = !!m[3];
8550
8551             //Subtract the aligned el's internal xy from the target's offset xy
8552             //plus custom offset to get the aligned el's new offset xy
8553             var a1 = this.getAnchorXY(p1, true);
8554             var a2 = el.getAnchorXY(p2, false);
8555             var x = a2[0] - a1[0] + o[0];
8556             var y = a2[1] - a1[1] + o[1];
8557             if(c){
8558                 //constrain the aligned el to viewport if necessary
8559                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8560                 // 5px of margin for ie
8561                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8562
8563                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8564                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8565                 //otherwise swap the aligned el to the opposite border of the target.
8566                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8567                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8568                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
8569                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8570
8571                var doc = document;
8572                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8573                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8574
8575                if((x+w) > dw + scrollX){
8576                     x = swapX ? r.left-w : dw+scrollX-w;
8577                 }
8578                if(x < scrollX){
8579                    x = swapX ? r.right : scrollX;
8580                }
8581                if((y+h) > dh + scrollY){
8582                     y = swapY ? r.top-h : dh+scrollY-h;
8583                 }
8584                if (y < scrollY){
8585                    y = swapY ? r.bottom : scrollY;
8586                }
8587             }
8588             return [x,y];
8589         },
8590
8591         // private
8592         getConstrainToXY : function(){
8593             var os = {top:0, left:0, bottom:0, right: 0};
8594
8595             return function(el, local, offsets, proposedXY){
8596                 el = Roo.get(el);
8597                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8598
8599                 var vw, vh, vx = 0, vy = 0;
8600                 if(el.dom == document.body || el.dom == document){
8601                     vw = Roo.lib.Dom.getViewWidth();
8602                     vh = Roo.lib.Dom.getViewHeight();
8603                 }else{
8604                     vw = el.dom.clientWidth;
8605                     vh = el.dom.clientHeight;
8606                     if(!local){
8607                         var vxy = el.getXY();
8608                         vx = vxy[0];
8609                         vy = vxy[1];
8610                     }
8611                 }
8612
8613                 var s = el.getScroll();
8614
8615                 vx += offsets.left + s.left;
8616                 vy += offsets.top + s.top;
8617
8618                 vw -= offsets.right;
8619                 vh -= offsets.bottom;
8620
8621                 var vr = vx+vw;
8622                 var vb = vy+vh;
8623
8624                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8625                 var x = xy[0], y = xy[1];
8626                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8627
8628                 // only move it if it needs it
8629                 var moved = false;
8630
8631                 // first validate right/bottom
8632                 if((x + w) > vr){
8633                     x = vr - w;
8634                     moved = true;
8635                 }
8636                 if((y + h) > vb){
8637                     y = vb - h;
8638                     moved = true;
8639                 }
8640                 // then make sure top/left isn't negative
8641                 if(x < vx){
8642                     x = vx;
8643                     moved = true;
8644                 }
8645                 if(y < vy){
8646                     y = vy;
8647                     moved = true;
8648                 }
8649                 return moved ? [x, y] : false;
8650             };
8651         }(),
8652
8653         // private
8654         adjustForConstraints : function(xy, parent, offsets){
8655             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8656         },
8657
8658         /**
8659          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8660          * document it aligns it to the viewport.
8661          * The position parameter is optional, and can be specified in any one of the following formats:
8662          * <ul>
8663          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8664          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8665          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8666          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8667          *   <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
8668          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8669          * </ul>
8670          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8671          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8672          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8673          * that specified in order to enforce the viewport constraints.
8674          * Following are all of the supported anchor positions:
8675     <pre>
8676     Value  Description
8677     -----  -----------------------------
8678     tl     The top left corner (default)
8679     t      The center of the top edge
8680     tr     The top right corner
8681     l      The center of the left edge
8682     c      In the center of the element
8683     r      The center of the right edge
8684     bl     The bottom left corner
8685     b      The center of the bottom edge
8686     br     The bottom right corner
8687     </pre>
8688     Example Usage:
8689     <pre><code>
8690     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8691     el.alignTo("other-el");
8692
8693     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8694     el.alignTo("other-el", "tr?");
8695
8696     // align the bottom right corner of el with the center left edge of other-el
8697     el.alignTo("other-el", "br-l?");
8698
8699     // align the center of el with the bottom left corner of other-el and
8700     // adjust the x position by -6 pixels (and the y position by 0)
8701     el.alignTo("other-el", "c-bl", [-6, 0]);
8702     </code></pre>
8703          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8704          * @param {String} position The position to align to.
8705          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8706          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8707          * @return {Roo.Element} this
8708          */
8709         alignTo : function(element, position, offsets, animate){
8710             var xy = this.getAlignToXY(element, position, offsets);
8711             this.setXY(xy, this.preanim(arguments, 3));
8712             return this;
8713         },
8714
8715         /**
8716          * Anchors an element to another element and realigns it when the window is resized.
8717          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8718          * @param {String} position The position to align to.
8719          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8720          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8721          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8722          * is a number, it is used as the buffer delay (defaults to 50ms).
8723          * @param {Function} callback The function to call after the animation finishes
8724          * @return {Roo.Element} this
8725          */
8726         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8727             var action = function(){
8728                 this.alignTo(el, alignment, offsets, animate);
8729                 Roo.callback(callback, this);
8730             };
8731             Roo.EventManager.onWindowResize(action, this);
8732             var tm = typeof monitorScroll;
8733             if(tm != 'undefined'){
8734                 Roo.EventManager.on(window, 'scroll', action, this,
8735                     {buffer: tm == 'number' ? monitorScroll : 50});
8736             }
8737             action.call(this); // align immediately
8738             return this;
8739         },
8740         /**
8741          * Clears any opacity settings from this element. Required in some cases for IE.
8742          * @return {Roo.Element} this
8743          */
8744         clearOpacity : function(){
8745             if (window.ActiveXObject) {
8746                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8747                     this.dom.style.filter = "";
8748                 }
8749             } else {
8750                 this.dom.style.opacity = "";
8751                 this.dom.style["-moz-opacity"] = "";
8752                 this.dom.style["-khtml-opacity"] = "";
8753             }
8754             return this;
8755         },
8756
8757         /**
8758          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8759          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8760          * @return {Roo.Element} this
8761          */
8762         hide : function(animate){
8763             this.setVisible(false, this.preanim(arguments, 0));
8764             return this;
8765         },
8766
8767         /**
8768         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8769         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8770          * @return {Roo.Element} this
8771          */
8772         show : function(animate){
8773             this.setVisible(true, this.preanim(arguments, 0));
8774             return this;
8775         },
8776
8777         /**
8778          * @private Test if size has a unit, otherwise appends the default
8779          */
8780         addUnits : function(size){
8781             return Roo.Element.addUnits(size, this.defaultUnit);
8782         },
8783
8784         /**
8785          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8786          * @return {Roo.Element} this
8787          */
8788         beginMeasure : function(){
8789             var el = this.dom;
8790             if(el.offsetWidth || el.offsetHeight){
8791                 return this; // offsets work already
8792             }
8793             var changed = [];
8794             var p = this.dom, b = document.body; // start with this element
8795             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8796                 var pe = Roo.get(p);
8797                 if(pe.getStyle('display') == 'none'){
8798                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8799                     p.style.visibility = "hidden";
8800                     p.style.display = "block";
8801                 }
8802                 p = p.parentNode;
8803             }
8804             this._measureChanged = changed;
8805             return this;
8806
8807         },
8808
8809         /**
8810          * Restores displays to before beginMeasure was called
8811          * @return {Roo.Element} this
8812          */
8813         endMeasure : function(){
8814             var changed = this._measureChanged;
8815             if(changed){
8816                 for(var i = 0, len = changed.length; i < len; i++) {
8817                     var r = changed[i];
8818                     r.el.style.visibility = r.visibility;
8819                     r.el.style.display = "none";
8820                 }
8821                 this._measureChanged = null;
8822             }
8823             return this;
8824         },
8825
8826         /**
8827         * Update the innerHTML of this element, optionally searching for and processing scripts
8828         * @param {String} html The new HTML
8829         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8830         * @param {Function} callback For async script loading you can be noticed when the update completes
8831         * @return {Roo.Element} this
8832          */
8833         update : function(html, loadScripts, callback){
8834             if(typeof html == "undefined"){
8835                 html = "";
8836             }
8837             if(loadScripts !== true){
8838                 this.dom.innerHTML = html;
8839                 if(typeof callback == "function"){
8840                     callback();
8841                 }
8842                 return this;
8843             }
8844             var id = Roo.id();
8845             var dom = this.dom;
8846
8847             html += '<span id="' + id + '"></span>';
8848
8849             E.onAvailable(id, function(){
8850                 var hd = document.getElementsByTagName("head")[0];
8851                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8852                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8853                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8854
8855                 var match;
8856                 while(match = re.exec(html)){
8857                     var attrs = match[1];
8858                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8859                     if(srcMatch && srcMatch[2]){
8860                        var s = document.createElement("script");
8861                        s.src = srcMatch[2];
8862                        var typeMatch = attrs.match(typeRe);
8863                        if(typeMatch && typeMatch[2]){
8864                            s.type = typeMatch[2];
8865                        }
8866                        hd.appendChild(s);
8867                     }else if(match[2] && match[2].length > 0){
8868                         if(window.execScript) {
8869                            window.execScript(match[2]);
8870                         } else {
8871                             /**
8872                              * eval:var:id
8873                              * eval:var:dom
8874                              * eval:var:html
8875                              * 
8876                              */
8877                            window.eval(match[2]);
8878                         }
8879                     }
8880                 }
8881                 var el = document.getElementById(id);
8882                 if(el){el.parentNode.removeChild(el);}
8883                 if(typeof callback == "function"){
8884                     callback();
8885                 }
8886             });
8887             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8888             return this;
8889         },
8890
8891         /**
8892          * Direct access to the UpdateManager update() method (takes the same parameters).
8893          * @param {String/Function} url The url for this request or a function to call to get the url
8894          * @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}
8895          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8896          * @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.
8897          * @return {Roo.Element} this
8898          */
8899         load : function(){
8900             var um = this.getUpdateManager();
8901             um.update.apply(um, arguments);
8902             return this;
8903         },
8904
8905         /**
8906         * Gets this element's UpdateManager
8907         * @return {Roo.UpdateManager} The UpdateManager
8908         */
8909         getUpdateManager : function(){
8910             if(!this.updateManager){
8911                 this.updateManager = new Roo.UpdateManager(this);
8912             }
8913             return this.updateManager;
8914         },
8915
8916         /**
8917          * Disables text selection for this element (normalized across browsers)
8918          * @return {Roo.Element} this
8919          */
8920         unselectable : function(){
8921             this.dom.unselectable = "on";
8922             this.swallowEvent("selectstart", true);
8923             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
8924             this.addClass("x-unselectable");
8925             return this;
8926         },
8927
8928         /**
8929         * Calculates the x, y to center this element on the screen
8930         * @return {Array} The x, y values [x, y]
8931         */
8932         getCenterXY : function(){
8933             return this.getAlignToXY(document, 'c-c');
8934         },
8935
8936         /**
8937         * Centers the Element in either the viewport, or another Element.
8938         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
8939         */
8940         center : function(centerIn){
8941             this.alignTo(centerIn || document, 'c-c');
8942             return this;
8943         },
8944
8945         /**
8946          * Tests various css rules/browsers to determine if this element uses a border box
8947          * @return {Boolean}
8948          */
8949         isBorderBox : function(){
8950             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
8951         },
8952
8953         /**
8954          * Return a box {x, y, width, height} that can be used to set another elements
8955          * size/location to match this element.
8956          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
8957          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
8958          * @return {Object} box An object in the format {x, y, width, height}
8959          */
8960         getBox : function(contentBox, local){
8961             var xy;
8962             if(!local){
8963                 xy = this.getXY();
8964             }else{
8965                 var left = parseInt(this.getStyle("left"), 10) || 0;
8966                 var top = parseInt(this.getStyle("top"), 10) || 0;
8967                 xy = [left, top];
8968             }
8969             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
8970             if(!contentBox){
8971                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
8972             }else{
8973                 var l = this.getBorderWidth("l")+this.getPadding("l");
8974                 var r = this.getBorderWidth("r")+this.getPadding("r");
8975                 var t = this.getBorderWidth("t")+this.getPadding("t");
8976                 var b = this.getBorderWidth("b")+this.getPadding("b");
8977                 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)};
8978             }
8979             bx.right = bx.x + bx.width;
8980             bx.bottom = bx.y + bx.height;
8981             return bx;
8982         },
8983
8984         /**
8985          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
8986          for more information about the sides.
8987          * @param {String} sides
8988          * @return {Number}
8989          */
8990         getFrameWidth : function(sides, onlyContentBox){
8991             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
8992         },
8993
8994         /**
8995          * 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.
8996          * @param {Object} box The box to fill {x, y, width, height}
8997          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
8998          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8999          * @return {Roo.Element} this
9000          */
9001         setBox : function(box, adjust, animate){
9002             var w = box.width, h = box.height;
9003             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9004                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9005                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9006             }
9007             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9008             return this;
9009         },
9010
9011         /**
9012          * Forces the browser to repaint this element
9013          * @return {Roo.Element} this
9014          */
9015          repaint : function(){
9016             var dom = this.dom;
9017             this.addClass("x-repaint");
9018             setTimeout(function(){
9019                 Roo.get(dom).removeClass("x-repaint");
9020             }, 1);
9021             return this;
9022         },
9023
9024         /**
9025          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9026          * then it returns the calculated width of the sides (see getPadding)
9027          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9028          * @return {Object/Number}
9029          */
9030         getMargins : function(side){
9031             if(!side){
9032                 return {
9033                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9034                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9035                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9036                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9037                 };
9038             }else{
9039                 return this.addStyles(side, El.margins);
9040              }
9041         },
9042
9043         // private
9044         addStyles : function(sides, styles){
9045             var val = 0, v, w;
9046             for(var i = 0, len = sides.length; i < len; i++){
9047                 v = this.getStyle(styles[sides.charAt(i)]);
9048                 if(v){
9049                      w = parseInt(v, 10);
9050                      if(w){ val += w; }
9051                 }
9052             }
9053             return val;
9054         },
9055
9056         /**
9057          * Creates a proxy element of this element
9058          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9059          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9060          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9061          * @return {Roo.Element} The new proxy element
9062          */
9063         createProxy : function(config, renderTo, matchBox){
9064             if(renderTo){
9065                 renderTo = Roo.getDom(renderTo);
9066             }else{
9067                 renderTo = document.body;
9068             }
9069             config = typeof config == "object" ?
9070                 config : {tag : "div", cls: config};
9071             var proxy = Roo.DomHelper.append(renderTo, config, true);
9072             if(matchBox){
9073                proxy.setBox(this.getBox());
9074             }
9075             return proxy;
9076         },
9077
9078         /**
9079          * Puts a mask over this element to disable user interaction. Requires core.css.
9080          * This method can only be applied to elements which accept child nodes.
9081          * @param {String} msg (optional) A message to display in the mask
9082          * @param {String} msgCls (optional) A css class to apply to the msg element
9083          * @return {Element} The mask  element
9084          */
9085         mask : function(msg, msgCls)
9086         {
9087             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9088                 this.setStyle("position", "relative");
9089             }
9090             if(!this._mask){
9091                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9092             }
9093             this.addClass("x-masked");
9094             this._mask.setDisplayed(true);
9095             
9096             // we wander
9097             var z = 0;
9098             var dom = this.dom;
9099             while (dom && dom.style) {
9100                 if (!isNaN(parseInt(dom.style.zIndex))) {
9101                     z = Math.max(z, parseInt(dom.style.zIndex));
9102                 }
9103                 dom = dom.parentNode;
9104             }
9105             // if we are masking the body - then it hides everything..
9106             if (this.dom == document.body) {
9107                 z = 1000000;
9108                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9109                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9110             }
9111            
9112             if(typeof msg == 'string'){
9113                 if(!this._maskMsg){
9114                     this._maskMsg = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask-msg", cn:{tag:'div'}}, true);
9115                 }
9116                 var mm = this._maskMsg;
9117                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9118                 if (mm.dom.firstChild) { // weird IE issue?
9119                     mm.dom.firstChild.innerHTML = msg;
9120                 }
9121                 mm.setDisplayed(true);
9122                 mm.center(this);
9123                 mm.setStyle('z-index', z + 102);
9124             }
9125             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9126                 this._mask.setHeight(this.getHeight());
9127             }
9128             this._mask.setStyle('z-index', z + 100);
9129             
9130             return this._mask;
9131         },
9132
9133         /**
9134          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9135          * it is cached for reuse.
9136          */
9137         unmask : function(removeEl){
9138             if(this._mask){
9139                 if(removeEl === true){
9140                     this._mask.remove();
9141                     delete this._mask;
9142                     if(this._maskMsg){
9143                         this._maskMsg.remove();
9144                         delete this._maskMsg;
9145                     }
9146                 }else{
9147                     this._mask.setDisplayed(false);
9148                     if(this._maskMsg){
9149                         this._maskMsg.setDisplayed(false);
9150                     }
9151                 }
9152             }
9153             this.removeClass("x-masked");
9154         },
9155
9156         /**
9157          * Returns true if this element is masked
9158          * @return {Boolean}
9159          */
9160         isMasked : function(){
9161             return this._mask && this._mask.isVisible();
9162         },
9163
9164         /**
9165          * Creates an iframe shim for this element to keep selects and other windowed objects from
9166          * showing through.
9167          * @return {Roo.Element} The new shim element
9168          */
9169         createShim : function(){
9170             var el = document.createElement('iframe');
9171             el.frameBorder = 'no';
9172             el.className = 'roo-shim';
9173             if(Roo.isIE && Roo.isSecure){
9174                 el.src = Roo.SSL_SECURE_URL;
9175             }
9176             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9177             shim.autoBoxAdjust = false;
9178             return shim;
9179         },
9180
9181         /**
9182          * Removes this element from the DOM and deletes it from the cache
9183          */
9184         remove : function(){
9185             if(this.dom.parentNode){
9186                 this.dom.parentNode.removeChild(this.dom);
9187             }
9188             delete El.cache[this.dom.id];
9189         },
9190
9191         /**
9192          * Sets up event handlers to add and remove a css class when the mouse is over this element
9193          * @param {String} className
9194          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9195          * mouseout events for children elements
9196          * @return {Roo.Element} this
9197          */
9198         addClassOnOver : function(className, preventFlicker){
9199             this.on("mouseover", function(){
9200                 Roo.fly(this, '_internal').addClass(className);
9201             }, this.dom);
9202             var removeFn = function(e){
9203                 if(preventFlicker !== true || !e.within(this, true)){
9204                     Roo.fly(this, '_internal').removeClass(className);
9205                 }
9206             };
9207             this.on("mouseout", removeFn, this.dom);
9208             return this;
9209         },
9210
9211         /**
9212          * Sets up event handlers to add and remove a css class when this element has the focus
9213          * @param {String} className
9214          * @return {Roo.Element} this
9215          */
9216         addClassOnFocus : function(className){
9217             this.on("focus", function(){
9218                 Roo.fly(this, '_internal').addClass(className);
9219             }, this.dom);
9220             this.on("blur", function(){
9221                 Roo.fly(this, '_internal').removeClass(className);
9222             }, this.dom);
9223             return this;
9224         },
9225         /**
9226          * 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)
9227          * @param {String} className
9228          * @return {Roo.Element} this
9229          */
9230         addClassOnClick : function(className){
9231             var dom = this.dom;
9232             this.on("mousedown", function(){
9233                 Roo.fly(dom, '_internal').addClass(className);
9234                 var d = Roo.get(document);
9235                 var fn = function(){
9236                     Roo.fly(dom, '_internal').removeClass(className);
9237                     d.removeListener("mouseup", fn);
9238                 };
9239                 d.on("mouseup", fn);
9240             });
9241             return this;
9242         },
9243
9244         /**
9245          * Stops the specified event from bubbling and optionally prevents the default action
9246          * @param {String} eventName
9247          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9248          * @return {Roo.Element} this
9249          */
9250         swallowEvent : function(eventName, preventDefault){
9251             var fn = function(e){
9252                 e.stopPropagation();
9253                 if(preventDefault){
9254                     e.preventDefault();
9255                 }
9256             };
9257             if(eventName instanceof Array){
9258                 for(var i = 0, len = eventName.length; i < len; i++){
9259                      this.on(eventName[i], fn);
9260                 }
9261                 return this;
9262             }
9263             this.on(eventName, fn);
9264             return this;
9265         },
9266
9267         /**
9268          * @private
9269          */
9270       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9271
9272         /**
9273          * Sizes this element to its parent element's dimensions performing
9274          * neccessary box adjustments.
9275          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9276          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9277          * @return {Roo.Element} this
9278          */
9279         fitToParent : function(monitorResize, targetParent) {
9280           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9281           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9282           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9283             return;
9284           }
9285           var p = Roo.get(targetParent || this.dom.parentNode);
9286           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9287           if (monitorResize === true) {
9288             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9289             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9290           }
9291           return this;
9292         },
9293
9294         /**
9295          * Gets the next sibling, skipping text nodes
9296          * @return {HTMLElement} The next sibling or null
9297          */
9298         getNextSibling : function(){
9299             var n = this.dom.nextSibling;
9300             while(n && n.nodeType != 1){
9301                 n = n.nextSibling;
9302             }
9303             return n;
9304         },
9305
9306         /**
9307          * Gets the previous sibling, skipping text nodes
9308          * @return {HTMLElement} The previous sibling or null
9309          */
9310         getPrevSibling : function(){
9311             var n = this.dom.previousSibling;
9312             while(n && n.nodeType != 1){
9313                 n = n.previousSibling;
9314             }
9315             return n;
9316         },
9317
9318
9319         /**
9320          * Appends the passed element(s) to this element
9321          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9322          * @return {Roo.Element} this
9323          */
9324         appendChild: function(el){
9325             el = Roo.get(el);
9326             el.appendTo(this);
9327             return this;
9328         },
9329
9330         /**
9331          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9332          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9333          * automatically generated with the specified attributes.
9334          * @param {HTMLElement} insertBefore (optional) a child element of this element
9335          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9336          * @return {Roo.Element} The new child element
9337          */
9338         createChild: function(config, insertBefore, returnDom){
9339             config = config || {tag:'div'};
9340             if(insertBefore){
9341                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9342             }
9343             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9344         },
9345
9346         /**
9347          * Appends this element to the passed element
9348          * @param {String/HTMLElement/Element} el The new parent element
9349          * @return {Roo.Element} this
9350          */
9351         appendTo: function(el){
9352             el = Roo.getDom(el);
9353             el.appendChild(this.dom);
9354             return this;
9355         },
9356
9357         /**
9358          * Inserts this element before the passed element in the DOM
9359          * @param {String/HTMLElement/Element} el The element to insert before
9360          * @return {Roo.Element} this
9361          */
9362         insertBefore: function(el){
9363             el = Roo.getDom(el);
9364             el.parentNode.insertBefore(this.dom, el);
9365             return this;
9366         },
9367
9368         /**
9369          * Inserts this element after the passed element in the DOM
9370          * @param {String/HTMLElement/Element} el The element to insert after
9371          * @return {Roo.Element} this
9372          */
9373         insertAfter: function(el){
9374             el = Roo.getDom(el);
9375             el.parentNode.insertBefore(this.dom, el.nextSibling);
9376             return this;
9377         },
9378
9379         /**
9380          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9381          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9382          * @return {Roo.Element} The new child
9383          */
9384         insertFirst: function(el, returnDom){
9385             el = el || {};
9386             if(typeof el == 'object' && !el.nodeType){ // dh config
9387                 return this.createChild(el, this.dom.firstChild, returnDom);
9388             }else{
9389                 el = Roo.getDom(el);
9390                 this.dom.insertBefore(el, this.dom.firstChild);
9391                 return !returnDom ? Roo.get(el) : el;
9392             }
9393         },
9394
9395         /**
9396          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9397          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9398          * @param {String} where (optional) 'before' or 'after' defaults to before
9399          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9400          * @return {Roo.Element} the inserted Element
9401          */
9402         insertSibling: function(el, where, returnDom){
9403             where = where ? where.toLowerCase() : 'before';
9404             el = el || {};
9405             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9406
9407             if(typeof el == 'object' && !el.nodeType){ // dh config
9408                 if(where == 'after' && !this.dom.nextSibling){
9409                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9410                 }else{
9411                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9412                 }
9413
9414             }else{
9415                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9416                             where == 'before' ? this.dom : this.dom.nextSibling);
9417                 if(!returnDom){
9418                     rt = Roo.get(rt);
9419                 }
9420             }
9421             return rt;
9422         },
9423
9424         /**
9425          * Creates and wraps this element with another element
9426          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9427          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9428          * @return {HTMLElement/Element} The newly created wrapper element
9429          */
9430         wrap: function(config, returnDom){
9431             if(!config){
9432                 config = {tag: "div"};
9433             }
9434             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9435             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9436             return newEl;
9437         },
9438
9439         /**
9440          * Replaces the passed element with this element
9441          * @param {String/HTMLElement/Element} el The element to replace
9442          * @return {Roo.Element} this
9443          */
9444         replace: function(el){
9445             el = Roo.get(el);
9446             this.insertBefore(el);
9447             el.remove();
9448             return this;
9449         },
9450
9451         /**
9452          * Inserts an html fragment into this element
9453          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9454          * @param {String} html The HTML fragment
9455          * @param {Boolean} returnEl True to return an Roo.Element
9456          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9457          */
9458         insertHtml : function(where, html, returnEl){
9459             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9460             return returnEl ? Roo.get(el) : el;
9461         },
9462
9463         /**
9464          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9465          * @param {Object} o The object with the attributes
9466          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9467          * @return {Roo.Element} this
9468          */
9469         set : function(o, useSet){
9470             var el = this.dom;
9471             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9472             for(var attr in o){
9473                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9474                 if(attr=="cls"){
9475                     el.className = o["cls"];
9476                 }else{
9477                     if(useSet) {
9478                         el.setAttribute(attr, o[attr]);
9479                     } else {
9480                         el[attr] = o[attr];
9481                     }
9482                 }
9483             }
9484             if(o.style){
9485                 Roo.DomHelper.applyStyles(el, o.style);
9486             }
9487             return this;
9488         },
9489
9490         /**
9491          * Convenience method for constructing a KeyMap
9492          * @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:
9493          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9494          * @param {Function} fn The function to call
9495          * @param {Object} scope (optional) The scope of the function
9496          * @return {Roo.KeyMap} The KeyMap created
9497          */
9498         addKeyListener : function(key, fn, scope){
9499             var config;
9500             if(typeof key != "object" || key instanceof Array){
9501                 config = {
9502                     key: key,
9503                     fn: fn,
9504                     scope: scope
9505                 };
9506             }else{
9507                 config = {
9508                     key : key.key,
9509                     shift : key.shift,
9510                     ctrl : key.ctrl,
9511                     alt : key.alt,
9512                     fn: fn,
9513                     scope: scope
9514                 };
9515             }
9516             return new Roo.KeyMap(this, config);
9517         },
9518
9519         /**
9520          * Creates a KeyMap for this element
9521          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9522          * @return {Roo.KeyMap} The KeyMap created
9523          */
9524         addKeyMap : function(config){
9525             return new Roo.KeyMap(this, config);
9526         },
9527
9528         /**
9529          * Returns true if this element is scrollable.
9530          * @return {Boolean}
9531          */
9532          isScrollable : function(){
9533             var dom = this.dom;
9534             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9535         },
9536
9537         /**
9538          * 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().
9539          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9540          * @param {Number} value The new scroll value
9541          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9542          * @return {Element} this
9543          */
9544
9545         scrollTo : function(side, value, animate){
9546             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9547             if(!animate || !A){
9548                 this.dom[prop] = value;
9549             }else{
9550                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9551                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9552             }
9553             return this;
9554         },
9555
9556         /**
9557          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9558          * within this element's scrollable range.
9559          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9560          * @param {Number} distance How far to scroll the element in pixels
9561          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9562          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9563          * was scrolled as far as it could go.
9564          */
9565          scroll : function(direction, distance, animate){
9566              if(!this.isScrollable()){
9567                  return;
9568              }
9569              var el = this.dom;
9570              var l = el.scrollLeft, t = el.scrollTop;
9571              var w = el.scrollWidth, h = el.scrollHeight;
9572              var cw = el.clientWidth, ch = el.clientHeight;
9573              direction = direction.toLowerCase();
9574              var scrolled = false;
9575              var a = this.preanim(arguments, 2);
9576              switch(direction){
9577                  case "l":
9578                  case "left":
9579                      if(w - l > cw){
9580                          var v = Math.min(l + distance, w-cw);
9581                          this.scrollTo("left", v, a);
9582                          scrolled = true;
9583                      }
9584                      break;
9585                 case "r":
9586                 case "right":
9587                      if(l > 0){
9588                          var v = Math.max(l - distance, 0);
9589                          this.scrollTo("left", v, a);
9590                          scrolled = true;
9591                      }
9592                      break;
9593                 case "t":
9594                 case "top":
9595                 case "up":
9596                      if(t > 0){
9597                          var v = Math.max(t - distance, 0);
9598                          this.scrollTo("top", v, a);
9599                          scrolled = true;
9600                      }
9601                      break;
9602                 case "b":
9603                 case "bottom":
9604                 case "down":
9605                      if(h - t > ch){
9606                          var v = Math.min(t + distance, h-ch);
9607                          this.scrollTo("top", v, a);
9608                          scrolled = true;
9609                      }
9610                      break;
9611              }
9612              return scrolled;
9613         },
9614
9615         /**
9616          * Translates the passed page coordinates into left/top css values for this element
9617          * @param {Number/Array} x The page x or an array containing [x, y]
9618          * @param {Number} y The page y
9619          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9620          */
9621         translatePoints : function(x, y){
9622             if(typeof x == 'object' || x instanceof Array){
9623                 y = x[1]; x = x[0];
9624             }
9625             var p = this.getStyle('position');
9626             var o = this.getXY();
9627
9628             var l = parseInt(this.getStyle('left'), 10);
9629             var t = parseInt(this.getStyle('top'), 10);
9630
9631             if(isNaN(l)){
9632                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9633             }
9634             if(isNaN(t)){
9635                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9636             }
9637
9638             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9639         },
9640
9641         /**
9642          * Returns the current scroll position of the element.
9643          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9644          */
9645         getScroll : function(){
9646             var d = this.dom, doc = document;
9647             if(d == doc || d == doc.body){
9648                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9649                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9650                 return {left: l, top: t};
9651             }else{
9652                 return {left: d.scrollLeft, top: d.scrollTop};
9653             }
9654         },
9655
9656         /**
9657          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9658          * are convert to standard 6 digit hex color.
9659          * @param {String} attr The css attribute
9660          * @param {String} defaultValue The default value to use when a valid color isn't found
9661          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9662          * YUI color anims.
9663          */
9664         getColor : function(attr, defaultValue, prefix){
9665             var v = this.getStyle(attr);
9666             if(!v || v == "transparent" || v == "inherit") {
9667                 return defaultValue;
9668             }
9669             var color = typeof prefix == "undefined" ? "#" : prefix;
9670             if(v.substr(0, 4) == "rgb("){
9671                 var rvs = v.slice(4, v.length -1).split(",");
9672                 for(var i = 0; i < 3; i++){
9673                     var h = parseInt(rvs[i]).toString(16);
9674                     if(h < 16){
9675                         h = "0" + h;
9676                     }
9677                     color += h;
9678                 }
9679             } else {
9680                 if(v.substr(0, 1) == "#"){
9681                     if(v.length == 4) {
9682                         for(var i = 1; i < 4; i++){
9683                             var c = v.charAt(i);
9684                             color +=  c + c;
9685                         }
9686                     }else if(v.length == 7){
9687                         color += v.substr(1);
9688                     }
9689                 }
9690             }
9691             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9692         },
9693
9694         /**
9695          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9696          * gradient background, rounded corners and a 4-way shadow.
9697          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9698          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9699          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9700          * @return {Roo.Element} this
9701          */
9702         boxWrap : function(cls){
9703             cls = cls || 'x-box';
9704             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9705             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9706             return el;
9707         },
9708
9709         /**
9710          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9711          * @param {String} namespace The namespace in which to look for the attribute
9712          * @param {String} name The attribute name
9713          * @return {String} The attribute value
9714          */
9715         getAttributeNS : Roo.isIE ? function(ns, name){
9716             var d = this.dom;
9717             var type = typeof d[ns+":"+name];
9718             if(type != 'undefined' && type != 'unknown'){
9719                 return d[ns+":"+name];
9720             }
9721             return d[name];
9722         } : function(ns, name){
9723             var d = this.dom;
9724             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9725         },
9726         
9727         
9728         /**
9729          * Sets or Returns the value the dom attribute value
9730          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9731          * @param {String} value (optional) The value to set the attribute to
9732          * @return {String} The attribute value
9733          */
9734         attr : function(name){
9735             if (arguments.length > 1) {
9736                 this.dom.setAttribute(name, arguments[1]);
9737                 return arguments[1];
9738             }
9739             if (typeof(name) == 'object') {
9740                 for(var i in name) {
9741                     this.attr(i, name[i]);
9742                 }
9743                 return name;
9744             }
9745             
9746             
9747             if (!this.dom.hasAttribute(name)) {
9748                 return undefined;
9749             }
9750             return this.dom.getAttribute(name);
9751         }
9752         
9753         
9754         
9755     };
9756
9757     var ep = El.prototype;
9758
9759     /**
9760      * Appends an event handler (Shorthand for addListener)
9761      * @param {String}   eventName     The type of event to append
9762      * @param {Function} fn        The method the event invokes
9763      * @param {Object} scope       (optional) The scope (this object) of the fn
9764      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9765      * @method
9766      */
9767     ep.on = ep.addListener;
9768         // backwards compat
9769     ep.mon = ep.addListener;
9770
9771     /**
9772      * Removes an event handler from this element (shorthand for removeListener)
9773      * @param {String} eventName the type of event to remove
9774      * @param {Function} fn the method the event invokes
9775      * @return {Roo.Element} this
9776      * @method
9777      */
9778     ep.un = ep.removeListener;
9779
9780     /**
9781      * true to automatically adjust width and height settings for box-model issues (default to true)
9782      */
9783     ep.autoBoxAdjust = true;
9784
9785     // private
9786     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9787
9788     // private
9789     El.addUnits = function(v, defaultUnit){
9790         if(v === "" || v == "auto"){
9791             return v;
9792         }
9793         if(v === undefined){
9794             return '';
9795         }
9796         if(typeof v == "number" || !El.unitPattern.test(v)){
9797             return v + (defaultUnit || 'px');
9798         }
9799         return v;
9800     };
9801
9802     // special markup used throughout Roo when box wrapping elements
9803     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>';
9804     /**
9805      * Visibility mode constant - Use visibility to hide element
9806      * @static
9807      * @type Number
9808      */
9809     El.VISIBILITY = 1;
9810     /**
9811      * Visibility mode constant - Use display to hide element
9812      * @static
9813      * @type Number
9814      */
9815     El.DISPLAY = 2;
9816
9817     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9818     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9819     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9820
9821
9822
9823     /**
9824      * @private
9825      */
9826     El.cache = {};
9827
9828     var docEl;
9829
9830     /**
9831      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9832      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9833      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9834      * @return {Element} The Element object
9835      * @static
9836      */
9837     El.get = function(el){
9838         var ex, elm, id;
9839         if(!el){ return null; }
9840         if(typeof el == "string"){ // element id
9841             if(!(elm = document.getElementById(el))){
9842                 return null;
9843             }
9844             if(ex = El.cache[el]){
9845                 ex.dom = elm;
9846             }else{
9847                 ex = El.cache[el] = new El(elm);
9848             }
9849             return ex;
9850         }else if(el.tagName){ // dom element
9851             if(!(id = el.id)){
9852                 id = Roo.id(el);
9853             }
9854             if(ex = El.cache[id]){
9855                 ex.dom = el;
9856             }else{
9857                 ex = El.cache[id] = new El(el);
9858             }
9859             return ex;
9860         }else if(el instanceof El){
9861             if(el != docEl){
9862                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9863                                                               // catch case where it hasn't been appended
9864                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9865             }
9866             return el;
9867         }else if(el.isComposite){
9868             return el;
9869         }else if(el instanceof Array){
9870             return El.select(el);
9871         }else if(el == document){
9872             // create a bogus element object representing the document object
9873             if(!docEl){
9874                 var f = function(){};
9875                 f.prototype = El.prototype;
9876                 docEl = new f();
9877                 docEl.dom = document;
9878             }
9879             return docEl;
9880         }
9881         return null;
9882     };
9883
9884     // private
9885     El.uncache = function(el){
9886         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9887             if(a[i]){
9888                 delete El.cache[a[i].id || a[i]];
9889             }
9890         }
9891     };
9892
9893     // private
9894     // Garbage collection - uncache elements/purge listeners on orphaned elements
9895     // so we don't hold a reference and cause the browser to retain them
9896     El.garbageCollect = function(){
9897         if(!Roo.enableGarbageCollector){
9898             clearInterval(El.collectorThread);
9899             return;
9900         }
9901         for(var eid in El.cache){
9902             var el = El.cache[eid], d = el.dom;
9903             // -------------------------------------------------------
9904             // Determining what is garbage:
9905             // -------------------------------------------------------
9906             // !d
9907             // dom node is null, definitely garbage
9908             // -------------------------------------------------------
9909             // !d.parentNode
9910             // no parentNode == direct orphan, definitely garbage
9911             // -------------------------------------------------------
9912             // !d.offsetParent && !document.getElementById(eid)
9913             // display none elements have no offsetParent so we will
9914             // also try to look it up by it's id. However, check
9915             // offsetParent first so we don't do unneeded lookups.
9916             // This enables collection of elements that are not orphans
9917             // directly, but somewhere up the line they have an orphan
9918             // parent.
9919             // -------------------------------------------------------
9920             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
9921                 delete El.cache[eid];
9922                 if(d && Roo.enableListenerCollection){
9923                     E.purgeElement(d);
9924                 }
9925             }
9926         }
9927     }
9928     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
9929
9930
9931     // dom is optional
9932     El.Flyweight = function(dom){
9933         this.dom = dom;
9934     };
9935     El.Flyweight.prototype = El.prototype;
9936
9937     El._flyweights = {};
9938     /**
9939      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9940      * the dom node can be overwritten by other code.
9941      * @param {String/HTMLElement} el The dom node or id
9942      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9943      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9944      * @static
9945      * @return {Element} The shared Element object
9946      */
9947     El.fly = function(el, named){
9948         named = named || '_global';
9949         el = Roo.getDom(el);
9950         if(!el){
9951             return null;
9952         }
9953         if(!El._flyweights[named]){
9954             El._flyweights[named] = new El.Flyweight();
9955         }
9956         El._flyweights[named].dom = el;
9957         return El._flyweights[named];
9958     };
9959
9960     /**
9961      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9962      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9963      * Shorthand of {@link Roo.Element#get}
9964      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9965      * @return {Element} The Element object
9966      * @member Roo
9967      * @method get
9968      */
9969     Roo.get = El.get;
9970     /**
9971      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9972      * the dom node can be overwritten by other code.
9973      * Shorthand of {@link Roo.Element#fly}
9974      * @param {String/HTMLElement} el The dom node or id
9975      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9976      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9977      * @static
9978      * @return {Element} The shared Element object
9979      * @member Roo
9980      * @method fly
9981      */
9982     Roo.fly = El.fly;
9983
9984     // speedy lookup for elements never to box adjust
9985     var noBoxAdjust = Roo.isStrict ? {
9986         select:1
9987     } : {
9988         input:1, select:1, textarea:1
9989     };
9990     if(Roo.isIE || Roo.isGecko){
9991         noBoxAdjust['button'] = 1;
9992     }
9993
9994
9995     Roo.EventManager.on(window, 'unload', function(){
9996         delete El.cache;
9997         delete El._flyweights;
9998     });
9999 })();
10000
10001
10002
10003
10004 if(Roo.DomQuery){
10005     Roo.Element.selectorFunction = Roo.DomQuery.select;
10006 }
10007
10008 Roo.Element.select = function(selector, unique, root){
10009     var els;
10010     if(typeof selector == "string"){
10011         els = Roo.Element.selectorFunction(selector, root);
10012     }else if(selector.length !== undefined){
10013         els = selector;
10014     }else{
10015         throw "Invalid selector";
10016     }
10017     if(unique === true){
10018         return new Roo.CompositeElement(els);
10019     }else{
10020         return new Roo.CompositeElementLite(els);
10021     }
10022 };
10023 /**
10024  * Selects elements based on the passed CSS selector to enable working on them as 1.
10025  * @param {String/Array} selector The CSS selector or an array of elements
10026  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10027  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10028  * @return {CompositeElementLite/CompositeElement}
10029  * @member Roo
10030  * @method select
10031  */
10032 Roo.select = Roo.Element.select;
10033
10034
10035
10036
10037
10038
10039
10040
10041
10042
10043
10044
10045
10046
10047 /*
10048  * Based on:
10049  * Ext JS Library 1.1.1
10050  * Copyright(c) 2006-2007, Ext JS, LLC.
10051  *
10052  * Originally Released Under LGPL - original licence link has changed is not relivant.
10053  *
10054  * Fork - LGPL
10055  * <script type="text/javascript">
10056  */
10057
10058
10059
10060 //Notifies Element that fx methods are available
10061 Roo.enableFx = true;
10062
10063 /**
10064  * @class Roo.Fx
10065  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10066  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10067  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10068  * Element effects to work.</p><br/>
10069  *
10070  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10071  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10072  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10073  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10074  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10075  * expected results and should be done with care.</p><br/>
10076  *
10077  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10078  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10079 <pre>
10080 Value  Description
10081 -----  -----------------------------
10082 tl     The top left corner
10083 t      The center of the top edge
10084 tr     The top right corner
10085 l      The center of the left edge
10086 r      The center of the right edge
10087 bl     The bottom left corner
10088 b      The center of the bottom edge
10089 br     The bottom right corner
10090 </pre>
10091  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10092  * below are common options that can be passed to any Fx method.</b>
10093  * @cfg {Function} callback A function called when the effect is finished
10094  * @cfg {Object} scope The scope of the effect function
10095  * @cfg {String} easing A valid Easing value for the effect
10096  * @cfg {String} afterCls A css class to apply after the effect
10097  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10098  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10099  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10100  * effects that end with the element being visually hidden, ignored otherwise)
10101  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10102  * a function which returns such a specification that will be applied to the Element after the effect finishes
10103  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10104  * @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
10105  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10106  */
10107 Roo.Fx = {
10108         /**
10109          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10110          * origin for the slide effect.  This function automatically handles wrapping the element with
10111          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10112          * Usage:
10113          *<pre><code>
10114 // default: slide the element in from the top
10115 el.slideIn();
10116
10117 // custom: slide the element in from the right with a 2-second duration
10118 el.slideIn('r', { duration: 2 });
10119
10120 // common config options shown with default values
10121 el.slideIn('t', {
10122     easing: 'easeOut',
10123     duration: .5
10124 });
10125 </code></pre>
10126          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10127          * @param {Object} options (optional) Object literal with any of the Fx config options
10128          * @return {Roo.Element} The Element
10129          */
10130     slideIn : function(anchor, o){
10131         var el = this.getFxEl();
10132         o = o || {};
10133
10134         el.queueFx(o, function(){
10135
10136             anchor = anchor || "t";
10137
10138             // fix display to visibility
10139             this.fixDisplay();
10140
10141             // restore values after effect
10142             var r = this.getFxRestore();
10143             var b = this.getBox();
10144             // fixed size for slide
10145             this.setSize(b);
10146
10147             // wrap if needed
10148             var wrap = this.fxWrap(r.pos, o, "hidden");
10149
10150             var st = this.dom.style;
10151             st.visibility = "visible";
10152             st.position = "absolute";
10153
10154             // clear out temp styles after slide and unwrap
10155             var after = function(){
10156                 el.fxUnwrap(wrap, r.pos, o);
10157                 st.width = r.width;
10158                 st.height = r.height;
10159                 el.afterFx(o);
10160             };
10161             // time to calc the positions
10162             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10163
10164             switch(anchor.toLowerCase()){
10165                 case "t":
10166                     wrap.setSize(b.width, 0);
10167                     st.left = st.bottom = "0";
10168                     a = {height: bh};
10169                 break;
10170                 case "l":
10171                     wrap.setSize(0, b.height);
10172                     st.right = st.top = "0";
10173                     a = {width: bw};
10174                 break;
10175                 case "r":
10176                     wrap.setSize(0, b.height);
10177                     wrap.setX(b.right);
10178                     st.left = st.top = "0";
10179                     a = {width: bw, points: pt};
10180                 break;
10181                 case "b":
10182                     wrap.setSize(b.width, 0);
10183                     wrap.setY(b.bottom);
10184                     st.left = st.top = "0";
10185                     a = {height: bh, points: pt};
10186                 break;
10187                 case "tl":
10188                     wrap.setSize(0, 0);
10189                     st.right = st.bottom = "0";
10190                     a = {width: bw, height: bh};
10191                 break;
10192                 case "bl":
10193                     wrap.setSize(0, 0);
10194                     wrap.setY(b.y+b.height);
10195                     st.right = st.top = "0";
10196                     a = {width: bw, height: bh, points: pt};
10197                 break;
10198                 case "br":
10199                     wrap.setSize(0, 0);
10200                     wrap.setXY([b.right, b.bottom]);
10201                     st.left = st.top = "0";
10202                     a = {width: bw, height: bh, points: pt};
10203                 break;
10204                 case "tr":
10205                     wrap.setSize(0, 0);
10206                     wrap.setX(b.x+b.width);
10207                     st.left = st.bottom = "0";
10208                     a = {width: bw, height: bh, points: pt};
10209                 break;
10210             }
10211             this.dom.style.visibility = "visible";
10212             wrap.show();
10213
10214             arguments.callee.anim = wrap.fxanim(a,
10215                 o,
10216                 'motion',
10217                 .5,
10218                 'easeOut', after);
10219         });
10220         return this;
10221     },
10222     
10223         /**
10224          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10225          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10226          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10227          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10228          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10229          * Usage:
10230          *<pre><code>
10231 // default: slide the element out to the top
10232 el.slideOut();
10233
10234 // custom: slide the element out to the right with a 2-second duration
10235 el.slideOut('r', { duration: 2 });
10236
10237 // common config options shown with default values
10238 el.slideOut('t', {
10239     easing: 'easeOut',
10240     duration: .5,
10241     remove: false,
10242     useDisplay: false
10243 });
10244 </code></pre>
10245          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10246          * @param {Object} options (optional) Object literal with any of the Fx config options
10247          * @return {Roo.Element} The Element
10248          */
10249     slideOut : function(anchor, o){
10250         var el = this.getFxEl();
10251         o = o || {};
10252
10253         el.queueFx(o, function(){
10254
10255             anchor = anchor || "t";
10256
10257             // restore values after effect
10258             var r = this.getFxRestore();
10259             
10260             var b = this.getBox();
10261             // fixed size for slide
10262             this.setSize(b);
10263
10264             // wrap if needed
10265             var wrap = this.fxWrap(r.pos, o, "visible");
10266
10267             var st = this.dom.style;
10268             st.visibility = "visible";
10269             st.position = "absolute";
10270
10271             wrap.setSize(b);
10272
10273             var after = function(){
10274                 if(o.useDisplay){
10275                     el.setDisplayed(false);
10276                 }else{
10277                     el.hide();
10278                 }
10279
10280                 el.fxUnwrap(wrap, r.pos, o);
10281
10282                 st.width = r.width;
10283                 st.height = r.height;
10284
10285                 el.afterFx(o);
10286             };
10287
10288             var a, zero = {to: 0};
10289             switch(anchor.toLowerCase()){
10290                 case "t":
10291                     st.left = st.bottom = "0";
10292                     a = {height: zero};
10293                 break;
10294                 case "l":
10295                     st.right = st.top = "0";
10296                     a = {width: zero};
10297                 break;
10298                 case "r":
10299                     st.left = st.top = "0";
10300                     a = {width: zero, points: {to:[b.right, b.y]}};
10301                 break;
10302                 case "b":
10303                     st.left = st.top = "0";
10304                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10305                 break;
10306                 case "tl":
10307                     st.right = st.bottom = "0";
10308                     a = {width: zero, height: zero};
10309                 break;
10310                 case "bl":
10311                     st.right = st.top = "0";
10312                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10313                 break;
10314                 case "br":
10315                     st.left = st.top = "0";
10316                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10317                 break;
10318                 case "tr":
10319                     st.left = st.bottom = "0";
10320                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10321                 break;
10322             }
10323
10324             arguments.callee.anim = wrap.fxanim(a,
10325                 o,
10326                 'motion',
10327                 .5,
10328                 "easeOut", after);
10329         });
10330         return this;
10331     },
10332
10333         /**
10334          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10335          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10336          * The element must be removed from the DOM using the 'remove' config option if desired.
10337          * Usage:
10338          *<pre><code>
10339 // default
10340 el.puff();
10341
10342 // common config options shown with default values
10343 el.puff({
10344     easing: 'easeOut',
10345     duration: .5,
10346     remove: false,
10347     useDisplay: false
10348 });
10349 </code></pre>
10350          * @param {Object} options (optional) Object literal with any of the Fx config options
10351          * @return {Roo.Element} The Element
10352          */
10353     puff : function(o){
10354         var el = this.getFxEl();
10355         o = o || {};
10356
10357         el.queueFx(o, function(){
10358             this.clearOpacity();
10359             this.show();
10360
10361             // restore values after effect
10362             var r = this.getFxRestore();
10363             var st = this.dom.style;
10364
10365             var after = function(){
10366                 if(o.useDisplay){
10367                     el.setDisplayed(false);
10368                 }else{
10369                     el.hide();
10370                 }
10371
10372                 el.clearOpacity();
10373
10374                 el.setPositioning(r.pos);
10375                 st.width = r.width;
10376                 st.height = r.height;
10377                 st.fontSize = '';
10378                 el.afterFx(o);
10379             };
10380
10381             var width = this.getWidth();
10382             var height = this.getHeight();
10383
10384             arguments.callee.anim = this.fxanim({
10385                     width : {to: this.adjustWidth(width * 2)},
10386                     height : {to: this.adjustHeight(height * 2)},
10387                     points : {by: [-(width * .5), -(height * .5)]},
10388                     opacity : {to: 0},
10389                     fontSize: {to:200, unit: "%"}
10390                 },
10391                 o,
10392                 'motion',
10393                 .5,
10394                 "easeOut", after);
10395         });
10396         return this;
10397     },
10398
10399         /**
10400          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10401          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10402          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10403          * Usage:
10404          *<pre><code>
10405 // default
10406 el.switchOff();
10407
10408 // all config options shown with default values
10409 el.switchOff({
10410     easing: 'easeIn',
10411     duration: .3,
10412     remove: false,
10413     useDisplay: false
10414 });
10415 </code></pre>
10416          * @param {Object} options (optional) Object literal with any of the Fx config options
10417          * @return {Roo.Element} The Element
10418          */
10419     switchOff : function(o){
10420         var el = this.getFxEl();
10421         o = o || {};
10422
10423         el.queueFx(o, function(){
10424             this.clearOpacity();
10425             this.clip();
10426
10427             // restore values after effect
10428             var r = this.getFxRestore();
10429             var st = this.dom.style;
10430
10431             var after = function(){
10432                 if(o.useDisplay){
10433                     el.setDisplayed(false);
10434                 }else{
10435                     el.hide();
10436                 }
10437
10438                 el.clearOpacity();
10439                 el.setPositioning(r.pos);
10440                 st.width = r.width;
10441                 st.height = r.height;
10442
10443                 el.afterFx(o);
10444             };
10445
10446             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10447                 this.clearOpacity();
10448                 (function(){
10449                     this.fxanim({
10450                         height:{to:1},
10451                         points:{by:[0, this.getHeight() * .5]}
10452                     }, o, 'motion', 0.3, 'easeIn', after);
10453                 }).defer(100, this);
10454             });
10455         });
10456         return this;
10457     },
10458
10459     /**
10460      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10461      * changed using the "attr" config option) and then fading back to the original color. If no original
10462      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10463      * Usage:
10464 <pre><code>
10465 // default: highlight background to yellow
10466 el.highlight();
10467
10468 // custom: highlight foreground text to blue for 2 seconds
10469 el.highlight("0000ff", { attr: 'color', duration: 2 });
10470
10471 // common config options shown with default values
10472 el.highlight("ffff9c", {
10473     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10474     endColor: (current color) or "ffffff",
10475     easing: 'easeIn',
10476     duration: 1
10477 });
10478 </code></pre>
10479      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10480      * @param {Object} options (optional) Object literal with any of the Fx config options
10481      * @return {Roo.Element} The Element
10482      */ 
10483     highlight : function(color, o){
10484         var el = this.getFxEl();
10485         o = o || {};
10486
10487         el.queueFx(o, function(){
10488             color = color || "ffff9c";
10489             attr = o.attr || "backgroundColor";
10490
10491             this.clearOpacity();
10492             this.show();
10493
10494             var origColor = this.getColor(attr);
10495             var restoreColor = this.dom.style[attr];
10496             endColor = (o.endColor || origColor) || "ffffff";
10497
10498             var after = function(){
10499                 el.dom.style[attr] = restoreColor;
10500                 el.afterFx(o);
10501             };
10502
10503             var a = {};
10504             a[attr] = {from: color, to: endColor};
10505             arguments.callee.anim = this.fxanim(a,
10506                 o,
10507                 'color',
10508                 1,
10509                 'easeIn', after);
10510         });
10511         return this;
10512     },
10513
10514    /**
10515     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10516     * Usage:
10517 <pre><code>
10518 // default: a single light blue ripple
10519 el.frame();
10520
10521 // custom: 3 red ripples lasting 3 seconds total
10522 el.frame("ff0000", 3, { duration: 3 });
10523
10524 // common config options shown with default values
10525 el.frame("C3DAF9", 1, {
10526     duration: 1 //duration of entire animation (not each individual ripple)
10527     // Note: Easing is not configurable and will be ignored if included
10528 });
10529 </code></pre>
10530     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10531     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10532     * @param {Object} options (optional) Object literal with any of the Fx config options
10533     * @return {Roo.Element} The Element
10534     */
10535     frame : function(color, count, o){
10536         var el = this.getFxEl();
10537         o = o || {};
10538
10539         el.queueFx(o, function(){
10540             color = color || "#C3DAF9";
10541             if(color.length == 6){
10542                 color = "#" + color;
10543             }
10544             count = count || 1;
10545             duration = o.duration || 1;
10546             this.show();
10547
10548             var b = this.getBox();
10549             var animFn = function(){
10550                 var proxy = this.createProxy({
10551
10552                      style:{
10553                         visbility:"hidden",
10554                         position:"absolute",
10555                         "z-index":"35000", // yee haw
10556                         border:"0px solid " + color
10557                      }
10558                   });
10559                 var scale = Roo.isBorderBox ? 2 : 1;
10560                 proxy.animate({
10561                     top:{from:b.y, to:b.y - 20},
10562                     left:{from:b.x, to:b.x - 20},
10563                     borderWidth:{from:0, to:10},
10564                     opacity:{from:1, to:0},
10565                     height:{from:b.height, to:(b.height + (20*scale))},
10566                     width:{from:b.width, to:(b.width + (20*scale))}
10567                 }, duration, function(){
10568                     proxy.remove();
10569                 });
10570                 if(--count > 0){
10571                      animFn.defer((duration/2)*1000, this);
10572                 }else{
10573                     el.afterFx(o);
10574                 }
10575             };
10576             animFn.call(this);
10577         });
10578         return this;
10579     },
10580
10581    /**
10582     * Creates a pause before any subsequent queued effects begin.  If there are
10583     * no effects queued after the pause it will have no effect.
10584     * Usage:
10585 <pre><code>
10586 el.pause(1);
10587 </code></pre>
10588     * @param {Number} seconds The length of time to pause (in seconds)
10589     * @return {Roo.Element} The Element
10590     */
10591     pause : function(seconds){
10592         var el = this.getFxEl();
10593         var o = {};
10594
10595         el.queueFx(o, function(){
10596             setTimeout(function(){
10597                 el.afterFx(o);
10598             }, seconds * 1000);
10599         });
10600         return this;
10601     },
10602
10603    /**
10604     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10605     * using the "endOpacity" config option.
10606     * Usage:
10607 <pre><code>
10608 // default: fade in from opacity 0 to 100%
10609 el.fadeIn();
10610
10611 // custom: fade in from opacity 0 to 75% over 2 seconds
10612 el.fadeIn({ endOpacity: .75, duration: 2});
10613
10614 // common config options shown with default values
10615 el.fadeIn({
10616     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10617     easing: 'easeOut',
10618     duration: .5
10619 });
10620 </code></pre>
10621     * @param {Object} options (optional) Object literal with any of the Fx config options
10622     * @return {Roo.Element} The Element
10623     */
10624     fadeIn : function(o){
10625         var el = this.getFxEl();
10626         o = o || {};
10627         el.queueFx(o, function(){
10628             this.setOpacity(0);
10629             this.fixDisplay();
10630             this.dom.style.visibility = 'visible';
10631             var to = o.endOpacity || 1;
10632             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10633                 o, null, .5, "easeOut", function(){
10634                 if(to == 1){
10635                     this.clearOpacity();
10636                 }
10637                 el.afterFx(o);
10638             });
10639         });
10640         return this;
10641     },
10642
10643    /**
10644     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10645     * using the "endOpacity" config option.
10646     * Usage:
10647 <pre><code>
10648 // default: fade out from the element's current opacity to 0
10649 el.fadeOut();
10650
10651 // custom: fade out from the element's current opacity to 25% over 2 seconds
10652 el.fadeOut({ endOpacity: .25, duration: 2});
10653
10654 // common config options shown with default values
10655 el.fadeOut({
10656     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10657     easing: 'easeOut',
10658     duration: .5
10659     remove: false,
10660     useDisplay: false
10661 });
10662 </code></pre>
10663     * @param {Object} options (optional) Object literal with any of the Fx config options
10664     * @return {Roo.Element} The Element
10665     */
10666     fadeOut : function(o){
10667         var el = this.getFxEl();
10668         o = o || {};
10669         el.queueFx(o, function(){
10670             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10671                 o, null, .5, "easeOut", function(){
10672                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10673                      this.dom.style.display = "none";
10674                 }else{
10675                      this.dom.style.visibility = "hidden";
10676                 }
10677                 this.clearOpacity();
10678                 el.afterFx(o);
10679             });
10680         });
10681         return this;
10682     },
10683
10684    /**
10685     * Animates the transition of an element's dimensions from a starting height/width
10686     * to an ending height/width.
10687     * Usage:
10688 <pre><code>
10689 // change height and width to 100x100 pixels
10690 el.scale(100, 100);
10691
10692 // common config options shown with default values.  The height and width will default to
10693 // the element's existing values if passed as null.
10694 el.scale(
10695     [element's width],
10696     [element's height], {
10697     easing: 'easeOut',
10698     duration: .35
10699 });
10700 </code></pre>
10701     * @param {Number} width  The new width (pass undefined to keep the original width)
10702     * @param {Number} height  The new height (pass undefined to keep the original height)
10703     * @param {Object} options (optional) Object literal with any of the Fx config options
10704     * @return {Roo.Element} The Element
10705     */
10706     scale : function(w, h, o){
10707         this.shift(Roo.apply({}, o, {
10708             width: w,
10709             height: h
10710         }));
10711         return this;
10712     },
10713
10714    /**
10715     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10716     * Any of these properties not specified in the config object will not be changed.  This effect 
10717     * requires that at least one new dimension, position or opacity setting must be passed in on
10718     * the config object in order for the function to have any effect.
10719     * Usage:
10720 <pre><code>
10721 // slide the element horizontally to x position 200 while changing the height and opacity
10722 el.shift({ x: 200, height: 50, opacity: .8 });
10723
10724 // common config options shown with default values.
10725 el.shift({
10726     width: [element's width],
10727     height: [element's height],
10728     x: [element's x position],
10729     y: [element's y position],
10730     opacity: [element's opacity],
10731     easing: 'easeOut',
10732     duration: .35
10733 });
10734 </code></pre>
10735     * @param {Object} options  Object literal with any of the Fx config options
10736     * @return {Roo.Element} The Element
10737     */
10738     shift : function(o){
10739         var el = this.getFxEl();
10740         o = o || {};
10741         el.queueFx(o, function(){
10742             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10743             if(w !== undefined){
10744                 a.width = {to: this.adjustWidth(w)};
10745             }
10746             if(h !== undefined){
10747                 a.height = {to: this.adjustHeight(h)};
10748             }
10749             if(x !== undefined || y !== undefined){
10750                 a.points = {to: [
10751                     x !== undefined ? x : this.getX(),
10752                     y !== undefined ? y : this.getY()
10753                 ]};
10754             }
10755             if(op !== undefined){
10756                 a.opacity = {to: op};
10757             }
10758             if(o.xy !== undefined){
10759                 a.points = {to: o.xy};
10760             }
10761             arguments.callee.anim = this.fxanim(a,
10762                 o, 'motion', .35, "easeOut", function(){
10763                 el.afterFx(o);
10764             });
10765         });
10766         return this;
10767     },
10768
10769         /**
10770          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10771          * ending point of the effect.
10772          * Usage:
10773          *<pre><code>
10774 // default: slide the element downward while fading out
10775 el.ghost();
10776
10777 // custom: slide the element out to the right with a 2-second duration
10778 el.ghost('r', { duration: 2 });
10779
10780 // common config options shown with default values
10781 el.ghost('b', {
10782     easing: 'easeOut',
10783     duration: .5
10784     remove: false,
10785     useDisplay: false
10786 });
10787 </code></pre>
10788          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10789          * @param {Object} options (optional) Object literal with any of the Fx config options
10790          * @return {Roo.Element} The Element
10791          */
10792     ghost : function(anchor, o){
10793         var el = this.getFxEl();
10794         o = o || {};
10795
10796         el.queueFx(o, function(){
10797             anchor = anchor || "b";
10798
10799             // restore values after effect
10800             var r = this.getFxRestore();
10801             var w = this.getWidth(),
10802                 h = this.getHeight();
10803
10804             var st = this.dom.style;
10805
10806             var after = function(){
10807                 if(o.useDisplay){
10808                     el.setDisplayed(false);
10809                 }else{
10810                     el.hide();
10811                 }
10812
10813                 el.clearOpacity();
10814                 el.setPositioning(r.pos);
10815                 st.width = r.width;
10816                 st.height = r.height;
10817
10818                 el.afterFx(o);
10819             };
10820
10821             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10822             switch(anchor.toLowerCase()){
10823                 case "t":
10824                     pt.by = [0, -h];
10825                 break;
10826                 case "l":
10827                     pt.by = [-w, 0];
10828                 break;
10829                 case "r":
10830                     pt.by = [w, 0];
10831                 break;
10832                 case "b":
10833                     pt.by = [0, h];
10834                 break;
10835                 case "tl":
10836                     pt.by = [-w, -h];
10837                 break;
10838                 case "bl":
10839                     pt.by = [-w, h];
10840                 break;
10841                 case "br":
10842                     pt.by = [w, h];
10843                 break;
10844                 case "tr":
10845                     pt.by = [w, -h];
10846                 break;
10847             }
10848
10849             arguments.callee.anim = this.fxanim(a,
10850                 o,
10851                 'motion',
10852                 .5,
10853                 "easeOut", after);
10854         });
10855         return this;
10856     },
10857
10858         /**
10859          * Ensures that all effects queued after syncFx is called on the element are
10860          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10861          * @return {Roo.Element} The Element
10862          */
10863     syncFx : function(){
10864         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10865             block : false,
10866             concurrent : true,
10867             stopFx : false
10868         });
10869         return this;
10870     },
10871
10872         /**
10873          * Ensures that all effects queued after sequenceFx is called on the element are
10874          * run in sequence.  This is the opposite of {@link #syncFx}.
10875          * @return {Roo.Element} The Element
10876          */
10877     sequenceFx : function(){
10878         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10879             block : false,
10880             concurrent : false,
10881             stopFx : false
10882         });
10883         return this;
10884     },
10885
10886         /* @private */
10887     nextFx : function(){
10888         var ef = this.fxQueue[0];
10889         if(ef){
10890             ef.call(this);
10891         }
10892     },
10893
10894         /**
10895          * Returns true if the element has any effects actively running or queued, else returns false.
10896          * @return {Boolean} True if element has active effects, else false
10897          */
10898     hasActiveFx : function(){
10899         return this.fxQueue && this.fxQueue[0];
10900     },
10901
10902         /**
10903          * Stops any running effects and clears the element's internal effects queue if it contains
10904          * any additional effects that haven't started yet.
10905          * @return {Roo.Element} The Element
10906          */
10907     stopFx : function(){
10908         if(this.hasActiveFx()){
10909             var cur = this.fxQueue[0];
10910             if(cur && cur.anim && cur.anim.isAnimated()){
10911                 this.fxQueue = [cur]; // clear out others
10912                 cur.anim.stop(true);
10913             }
10914         }
10915         return this;
10916     },
10917
10918         /* @private */
10919     beforeFx : function(o){
10920         if(this.hasActiveFx() && !o.concurrent){
10921            if(o.stopFx){
10922                this.stopFx();
10923                return true;
10924            }
10925            return false;
10926         }
10927         return true;
10928     },
10929
10930         /**
10931          * Returns true if the element is currently blocking so that no other effect can be queued
10932          * until this effect is finished, else returns false if blocking is not set.  This is commonly
10933          * used to ensure that an effect initiated by a user action runs to completion prior to the
10934          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
10935          * @return {Boolean} True if blocking, else false
10936          */
10937     hasFxBlock : function(){
10938         var q = this.fxQueue;
10939         return q && q[0] && q[0].block;
10940     },
10941
10942         /* @private */
10943     queueFx : function(o, fn){
10944         if(!this.fxQueue){
10945             this.fxQueue = [];
10946         }
10947         if(!this.hasFxBlock()){
10948             Roo.applyIf(o, this.fxDefaults);
10949             if(!o.concurrent){
10950                 var run = this.beforeFx(o);
10951                 fn.block = o.block;
10952                 this.fxQueue.push(fn);
10953                 if(run){
10954                     this.nextFx();
10955                 }
10956             }else{
10957                 fn.call(this);
10958             }
10959         }
10960         return this;
10961     },
10962
10963         /* @private */
10964     fxWrap : function(pos, o, vis){
10965         var wrap;
10966         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
10967             var wrapXY;
10968             if(o.fixPosition){
10969                 wrapXY = this.getXY();
10970             }
10971             var div = document.createElement("div");
10972             div.style.visibility = vis;
10973             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
10974             wrap.setPositioning(pos);
10975             if(wrap.getStyle("position") == "static"){
10976                 wrap.position("relative");
10977             }
10978             this.clearPositioning('auto');
10979             wrap.clip();
10980             wrap.dom.appendChild(this.dom);
10981             if(wrapXY){
10982                 wrap.setXY(wrapXY);
10983             }
10984         }
10985         return wrap;
10986     },
10987
10988         /* @private */
10989     fxUnwrap : function(wrap, pos, o){
10990         this.clearPositioning();
10991         this.setPositioning(pos);
10992         if(!o.wrap){
10993             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
10994             wrap.remove();
10995         }
10996     },
10997
10998         /* @private */
10999     getFxRestore : function(){
11000         var st = this.dom.style;
11001         return {pos: this.getPositioning(), width: st.width, height : st.height};
11002     },
11003
11004         /* @private */
11005     afterFx : function(o){
11006         if(o.afterStyle){
11007             this.applyStyles(o.afterStyle);
11008         }
11009         if(o.afterCls){
11010             this.addClass(o.afterCls);
11011         }
11012         if(o.remove === true){
11013             this.remove();
11014         }
11015         Roo.callback(o.callback, o.scope, [this]);
11016         if(!o.concurrent){
11017             this.fxQueue.shift();
11018             this.nextFx();
11019         }
11020     },
11021
11022         /* @private */
11023     getFxEl : function(){ // support for composite element fx
11024         return Roo.get(this.dom);
11025     },
11026
11027         /* @private */
11028     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11029         animType = animType || 'run';
11030         opt = opt || {};
11031         var anim = Roo.lib.Anim[animType](
11032             this.dom, args,
11033             (opt.duration || defaultDur) || .35,
11034             (opt.easing || defaultEase) || 'easeOut',
11035             function(){
11036                 Roo.callback(cb, this);
11037             },
11038             this
11039         );
11040         opt.anim = anim;
11041         return anim;
11042     }
11043 };
11044
11045 // backwords compat
11046 Roo.Fx.resize = Roo.Fx.scale;
11047
11048 //When included, Roo.Fx is automatically applied to Element so that all basic
11049 //effects are available directly via the Element API
11050 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11051  * Based on:
11052  * Ext JS Library 1.1.1
11053  * Copyright(c) 2006-2007, Ext JS, LLC.
11054  *
11055  * Originally Released Under LGPL - original licence link has changed is not relivant.
11056  *
11057  * Fork - LGPL
11058  * <script type="text/javascript">
11059  */
11060
11061
11062 /**
11063  * @class Roo.CompositeElement
11064  * Standard composite class. Creates a Roo.Element for every element in the collection.
11065  * <br><br>
11066  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11067  * actions will be performed on all the elements in this collection.</b>
11068  * <br><br>
11069  * All methods return <i>this</i> and can be chained.
11070  <pre><code>
11071  var els = Roo.select("#some-el div.some-class", true);
11072  // or select directly from an existing element
11073  var el = Roo.get('some-el');
11074  el.select('div.some-class', true);
11075
11076  els.setWidth(100); // all elements become 100 width
11077  els.hide(true); // all elements fade out and hide
11078  // or
11079  els.setWidth(100).hide(true);
11080  </code></pre>
11081  */
11082 Roo.CompositeElement = function(els){
11083     this.elements = [];
11084     this.addElements(els);
11085 };
11086 Roo.CompositeElement.prototype = {
11087     isComposite: true,
11088     addElements : function(els){
11089         if(!els) {
11090             return this;
11091         }
11092         if(typeof els == "string"){
11093             els = Roo.Element.selectorFunction(els);
11094         }
11095         var yels = this.elements;
11096         var index = yels.length-1;
11097         for(var i = 0, len = els.length; i < len; i++) {
11098                 yels[++index] = Roo.get(els[i]);
11099         }
11100         return this;
11101     },
11102
11103     /**
11104     * Clears this composite and adds the elements returned by the passed selector.
11105     * @param {String/Array} els A string CSS selector, an array of elements or an element
11106     * @return {CompositeElement} this
11107     */
11108     fill : function(els){
11109         this.elements = [];
11110         this.add(els);
11111         return this;
11112     },
11113
11114     /**
11115     * Filters this composite to only elements that match the passed selector.
11116     * @param {String} selector A string CSS selector
11117     * @param {Boolean} inverse return inverse filter (not matches)
11118     * @return {CompositeElement} this
11119     */
11120     filter : function(selector, inverse){
11121         var els = [];
11122         inverse = inverse || false;
11123         this.each(function(el){
11124             var match = inverse ? !el.is(selector) : el.is(selector);
11125             if(match){
11126                 els[els.length] = el.dom;
11127             }
11128         });
11129         this.fill(els);
11130         return this;
11131     },
11132
11133     invoke : function(fn, args){
11134         var els = this.elements;
11135         for(var i = 0, len = els.length; i < len; i++) {
11136                 Roo.Element.prototype[fn].apply(els[i], args);
11137         }
11138         return this;
11139     },
11140     /**
11141     * Adds elements to this composite.
11142     * @param {String/Array} els A string CSS selector, an array of elements or an element
11143     * @return {CompositeElement} this
11144     */
11145     add : function(els){
11146         if(typeof els == "string"){
11147             this.addElements(Roo.Element.selectorFunction(els));
11148         }else if(els.length !== undefined){
11149             this.addElements(els);
11150         }else{
11151             this.addElements([els]);
11152         }
11153         return this;
11154     },
11155     /**
11156     * Calls the passed function passing (el, this, index) for each element in this composite.
11157     * @param {Function} fn The function to call
11158     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11159     * @return {CompositeElement} this
11160     */
11161     each : function(fn, scope){
11162         var els = this.elements;
11163         for(var i = 0, len = els.length; i < len; i++){
11164             if(fn.call(scope || els[i], els[i], this, i) === false) {
11165                 break;
11166             }
11167         }
11168         return this;
11169     },
11170
11171     /**
11172      * Returns the Element object at the specified index
11173      * @param {Number} index
11174      * @return {Roo.Element}
11175      */
11176     item : function(index){
11177         return this.elements[index] || null;
11178     },
11179
11180     /**
11181      * Returns the first Element
11182      * @return {Roo.Element}
11183      */
11184     first : function(){
11185         return this.item(0);
11186     },
11187
11188     /**
11189      * Returns the last Element
11190      * @return {Roo.Element}
11191      */
11192     last : function(){
11193         return this.item(this.elements.length-1);
11194     },
11195
11196     /**
11197      * Returns the number of elements in this composite
11198      * @return Number
11199      */
11200     getCount : function(){
11201         return this.elements.length;
11202     },
11203
11204     /**
11205      * Returns true if this composite contains the passed element
11206      * @return Boolean
11207      */
11208     contains : function(el){
11209         return this.indexOf(el) !== -1;
11210     },
11211
11212     /**
11213      * Returns true if this composite contains the passed element
11214      * @return Boolean
11215      */
11216     indexOf : function(el){
11217         return this.elements.indexOf(Roo.get(el));
11218     },
11219
11220
11221     /**
11222     * Removes the specified element(s).
11223     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11224     * or an array of any of those.
11225     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11226     * @return {CompositeElement} this
11227     */
11228     removeElement : function(el, removeDom){
11229         if(el instanceof Array){
11230             for(var i = 0, len = el.length; i < len; i++){
11231                 this.removeElement(el[i]);
11232             }
11233             return this;
11234         }
11235         var index = typeof el == 'number' ? el : this.indexOf(el);
11236         if(index !== -1){
11237             if(removeDom){
11238                 var d = this.elements[index];
11239                 if(d.dom){
11240                     d.remove();
11241                 }else{
11242                     d.parentNode.removeChild(d);
11243                 }
11244             }
11245             this.elements.splice(index, 1);
11246         }
11247         return this;
11248     },
11249
11250     /**
11251     * Replaces the specified element with the passed element.
11252     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11253     * to replace.
11254     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11255     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11256     * @return {CompositeElement} this
11257     */
11258     replaceElement : function(el, replacement, domReplace){
11259         var index = typeof el == 'number' ? el : this.indexOf(el);
11260         if(index !== -1){
11261             if(domReplace){
11262                 this.elements[index].replaceWith(replacement);
11263             }else{
11264                 this.elements.splice(index, 1, Roo.get(replacement))
11265             }
11266         }
11267         return this;
11268     },
11269
11270     /**
11271      * Removes all elements.
11272      */
11273     clear : function(){
11274         this.elements = [];
11275     }
11276 };
11277 (function(){
11278     Roo.CompositeElement.createCall = function(proto, fnName){
11279         if(!proto[fnName]){
11280             proto[fnName] = function(){
11281                 return this.invoke(fnName, arguments);
11282             };
11283         }
11284     };
11285     for(var fnName in Roo.Element.prototype){
11286         if(typeof Roo.Element.prototype[fnName] == "function"){
11287             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11288         }
11289     };
11290 })();
11291 /*
11292  * Based on:
11293  * Ext JS Library 1.1.1
11294  * Copyright(c) 2006-2007, Ext JS, LLC.
11295  *
11296  * Originally Released Under LGPL - original licence link has changed is not relivant.
11297  *
11298  * Fork - LGPL
11299  * <script type="text/javascript">
11300  */
11301
11302 /**
11303  * @class Roo.CompositeElementLite
11304  * @extends Roo.CompositeElement
11305  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11306  <pre><code>
11307  var els = Roo.select("#some-el div.some-class");
11308  // or select directly from an existing element
11309  var el = Roo.get('some-el');
11310  el.select('div.some-class');
11311
11312  els.setWidth(100); // all elements become 100 width
11313  els.hide(true); // all elements fade out and hide
11314  // or
11315  els.setWidth(100).hide(true);
11316  </code></pre><br><br>
11317  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11318  * actions will be performed on all the elements in this collection.</b>
11319  */
11320 Roo.CompositeElementLite = function(els){
11321     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11322     this.el = new Roo.Element.Flyweight();
11323 };
11324 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11325     addElements : function(els){
11326         if(els){
11327             if(els instanceof Array){
11328                 this.elements = this.elements.concat(els);
11329             }else{
11330                 var yels = this.elements;
11331                 var index = yels.length-1;
11332                 for(var i = 0, len = els.length; i < len; i++) {
11333                     yels[++index] = els[i];
11334                 }
11335             }
11336         }
11337         return this;
11338     },
11339     invoke : function(fn, args){
11340         var els = this.elements;
11341         var el = this.el;
11342         for(var i = 0, len = els.length; i < len; i++) {
11343             el.dom = els[i];
11344                 Roo.Element.prototype[fn].apply(el, args);
11345         }
11346         return this;
11347     },
11348     /**
11349      * Returns a flyweight Element of the dom element object at the specified index
11350      * @param {Number} index
11351      * @return {Roo.Element}
11352      */
11353     item : function(index){
11354         if(!this.elements[index]){
11355             return null;
11356         }
11357         this.el.dom = this.elements[index];
11358         return this.el;
11359     },
11360
11361     // fixes scope with flyweight
11362     addListener : function(eventName, handler, scope, opt){
11363         var els = this.elements;
11364         for(var i = 0, len = els.length; i < len; i++) {
11365             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11366         }
11367         return this;
11368     },
11369
11370     /**
11371     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11372     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11373     * a reference to the dom node, use el.dom.</b>
11374     * @param {Function} fn The function to call
11375     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11376     * @return {CompositeElement} this
11377     */
11378     each : function(fn, scope){
11379         var els = this.elements;
11380         var el = this.el;
11381         for(var i = 0, len = els.length; i < len; i++){
11382             el.dom = els[i];
11383                 if(fn.call(scope || el, el, this, i) === false){
11384                 break;
11385             }
11386         }
11387         return this;
11388     },
11389
11390     indexOf : function(el){
11391         return this.elements.indexOf(Roo.getDom(el));
11392     },
11393
11394     replaceElement : function(el, replacement, domReplace){
11395         var index = typeof el == 'number' ? el : this.indexOf(el);
11396         if(index !== -1){
11397             replacement = Roo.getDom(replacement);
11398             if(domReplace){
11399                 var d = this.elements[index];
11400                 d.parentNode.insertBefore(replacement, d);
11401                 d.parentNode.removeChild(d);
11402             }
11403             this.elements.splice(index, 1, replacement);
11404         }
11405         return this;
11406     }
11407 });
11408 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11409
11410 /*
11411  * Based on:
11412  * Ext JS Library 1.1.1
11413  * Copyright(c) 2006-2007, Ext JS, LLC.
11414  *
11415  * Originally Released Under LGPL - original licence link has changed is not relivant.
11416  *
11417  * Fork - LGPL
11418  * <script type="text/javascript">
11419  */
11420
11421  
11422
11423 /**
11424  * @class Roo.data.Connection
11425  * @extends Roo.util.Observable
11426  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11427  * either to a configured URL, or to a URL specified at request time.<br><br>
11428  * <p>
11429  * Requests made by this class are asynchronous, and will return immediately. No data from
11430  * the server will be available to the statement immediately following the {@link #request} call.
11431  * To process returned data, use a callback in the request options object, or an event listener.</p><br>
11432  * <p>
11433  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11434  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11435  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11436  * property and, if present, the IFRAME's XML document as the responseXML property.</p><br>
11437  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11438  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11439  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11440  * standard DOM methods.
11441  * @constructor
11442  * @param {Object} config a configuration object.
11443  */
11444 Roo.data.Connection = function(config){
11445     Roo.apply(this, config);
11446     this.addEvents({
11447         /**
11448          * @event beforerequest
11449          * Fires before a network request is made to retrieve a data object.
11450          * @param {Connection} conn This Connection object.
11451          * @param {Object} options The options config object passed to the {@link #request} method.
11452          */
11453         "beforerequest" : true,
11454         /**
11455          * @event requestcomplete
11456          * Fires if the request was successfully completed.
11457          * @param {Connection} conn This Connection object.
11458          * @param {Object} response The XHR object containing the response data.
11459          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11460          * @param {Object} options The options config object passed to the {@link #request} method.
11461          */
11462         "requestcomplete" : true,
11463         /**
11464          * @event requestexception
11465          * Fires if an error HTTP status was returned from the server.
11466          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11467          * @param {Connection} conn This Connection object.
11468          * @param {Object} response The XHR object containing the response data.
11469          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11470          * @param {Object} options The options config object passed to the {@link #request} method.
11471          */
11472         "requestexception" : true
11473     });
11474     Roo.data.Connection.superclass.constructor.call(this);
11475 };
11476
11477 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11478     /**
11479      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11480      */
11481     /**
11482      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11483      * extra parameters to each request made by this object. (defaults to undefined)
11484      */
11485     /**
11486      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11487      *  to each request made by this object. (defaults to undefined)
11488      */
11489     /**
11490      * @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)
11491      */
11492     /**
11493      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11494      */
11495     timeout : 30000,
11496     /**
11497      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11498      * @type Boolean
11499      */
11500     autoAbort:false,
11501
11502     /**
11503      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11504      * @type Boolean
11505      */
11506     disableCaching: true,
11507
11508     /**
11509      * Sends an HTTP request to a remote server.
11510      * @param {Object} options An object which may contain the following properties:<ul>
11511      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11512      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11513      * request, a url encoded string or a function to call to get either.</li>
11514      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11515      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11516      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11517      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11518      * <li>options {Object} The parameter to the request call.</li>
11519      * <li>success {Boolean} True if the request succeeded.</li>
11520      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11521      * </ul></li>
11522      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11523      * The callback is passed the following parameters:<ul>
11524      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11525      * <li>options {Object} The parameter to the request call.</li>
11526      * </ul></li>
11527      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11528      * The callback is passed the following parameters:<ul>
11529      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11530      * <li>options {Object} The parameter to the request call.</li>
11531      * </ul></li>
11532      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11533      * for the callback function. Defaults to the browser window.</li>
11534      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11535      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11536      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11537      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11538      * params for the post data. Any params will be appended to the URL.</li>
11539      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11540      * </ul>
11541      * @return {Number} transactionId
11542      */
11543     request : function(o){
11544         if(this.fireEvent("beforerequest", this, o) !== false){
11545             var p = o.params;
11546
11547             if(typeof p == "function"){
11548                 p = p.call(o.scope||window, o);
11549             }
11550             if(typeof p == "object"){
11551                 p = Roo.urlEncode(o.params);
11552             }
11553             if(this.extraParams){
11554                 var extras = Roo.urlEncode(this.extraParams);
11555                 p = p ? (p + '&' + extras) : extras;
11556             }
11557
11558             var url = o.url || this.url;
11559             if(typeof url == 'function'){
11560                 url = url.call(o.scope||window, o);
11561             }
11562
11563             if(o.form){
11564                 var form = Roo.getDom(o.form);
11565                 url = url || form.action;
11566
11567                 var enctype = form.getAttribute("enctype");
11568                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11569                     return this.doFormUpload(o, p, url);
11570                 }
11571                 var f = Roo.lib.Ajax.serializeForm(form);
11572                 p = p ? (p + '&' + f) : f;
11573             }
11574
11575             var hs = o.headers;
11576             if(this.defaultHeaders){
11577                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11578                 if(!o.headers){
11579                     o.headers = hs;
11580                 }
11581             }
11582
11583             var cb = {
11584                 success: this.handleResponse,
11585                 failure: this.handleFailure,
11586                 scope: this,
11587                 argument: {options: o},
11588                 timeout : o.timeout || this.timeout
11589             };
11590
11591             var method = o.method||this.method||(p ? "POST" : "GET");
11592
11593             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11594                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11595             }
11596
11597             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11598                 if(o.autoAbort){
11599                     this.abort();
11600                 }
11601             }else if(this.autoAbort !== false){
11602                 this.abort();
11603             }
11604
11605             if((method == 'GET' && p) || o.xmlData){
11606                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11607                 p = '';
11608             }
11609             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11610             return this.transId;
11611         }else{
11612             Roo.callback(o.callback, o.scope, [o, null, null]);
11613             return null;
11614         }
11615     },
11616
11617     /**
11618      * Determine whether this object has a request outstanding.
11619      * @param {Number} transactionId (Optional) defaults to the last transaction
11620      * @return {Boolean} True if there is an outstanding request.
11621      */
11622     isLoading : function(transId){
11623         if(transId){
11624             return Roo.lib.Ajax.isCallInProgress(transId);
11625         }else{
11626             return this.transId ? true : false;
11627         }
11628     },
11629
11630     /**
11631      * Aborts any outstanding request.
11632      * @param {Number} transactionId (Optional) defaults to the last transaction
11633      */
11634     abort : function(transId){
11635         if(transId || this.isLoading()){
11636             Roo.lib.Ajax.abort(transId || this.transId);
11637         }
11638     },
11639
11640     // private
11641     handleResponse : function(response){
11642         this.transId = false;
11643         var options = response.argument.options;
11644         response.argument = options ? options.argument : null;
11645         this.fireEvent("requestcomplete", this, response, options);
11646         Roo.callback(options.success, options.scope, [response, options]);
11647         Roo.callback(options.callback, options.scope, [options, true, response]);
11648     },
11649
11650     // private
11651     handleFailure : function(response, e){
11652         this.transId = false;
11653         var options = response.argument.options;
11654         response.argument = options ? options.argument : null;
11655         this.fireEvent("requestexception", this, response, options, e);
11656         Roo.callback(options.failure, options.scope, [response, options]);
11657         Roo.callback(options.callback, options.scope, [options, false, response]);
11658     },
11659
11660     // private
11661     doFormUpload : function(o, ps, url){
11662         var id = Roo.id();
11663         var frame = document.createElement('iframe');
11664         frame.id = id;
11665         frame.name = id;
11666         frame.className = 'x-hidden';
11667         if(Roo.isIE){
11668             frame.src = Roo.SSL_SECURE_URL;
11669         }
11670         document.body.appendChild(frame);
11671
11672         if(Roo.isIE){
11673            document.frames[id].name = id;
11674         }
11675
11676         var form = Roo.getDom(o.form);
11677         form.target = id;
11678         form.method = 'POST';
11679         form.enctype = form.encoding = 'multipart/form-data';
11680         if(url){
11681             form.action = url;
11682         }
11683
11684         var hiddens, hd;
11685         if(ps){ // add dynamic params
11686             hiddens = [];
11687             ps = Roo.urlDecode(ps, false);
11688             for(var k in ps){
11689                 if(ps.hasOwnProperty(k)){
11690                     hd = document.createElement('input');
11691                     hd.type = 'hidden';
11692                     hd.name = k;
11693                     hd.value = ps[k];
11694                     form.appendChild(hd);
11695                     hiddens.push(hd);
11696                 }
11697             }
11698         }
11699
11700         function cb(){
11701             var r = {  // bogus response object
11702                 responseText : '',
11703                 responseXML : null
11704             };
11705
11706             r.argument = o ? o.argument : null;
11707
11708             try { //
11709                 var doc;
11710                 if(Roo.isIE){
11711                     doc = frame.contentWindow.document;
11712                 }else {
11713                     doc = (frame.contentDocument || window.frames[id].document);
11714                 }
11715                 if(doc && doc.body){
11716                     r.responseText = doc.body.innerHTML;
11717                 }
11718                 if(doc && doc.XMLDocument){
11719                     r.responseXML = doc.XMLDocument;
11720                 }else {
11721                     r.responseXML = doc;
11722                 }
11723             }
11724             catch(e) {
11725                 // ignore
11726             }
11727
11728             Roo.EventManager.removeListener(frame, 'load', cb, this);
11729
11730             this.fireEvent("requestcomplete", this, r, o);
11731             Roo.callback(o.success, o.scope, [r, o]);
11732             Roo.callback(o.callback, o.scope, [o, true, r]);
11733
11734             setTimeout(function(){document.body.removeChild(frame);}, 100);
11735         }
11736
11737         Roo.EventManager.on(frame, 'load', cb, this);
11738         form.submit();
11739
11740         if(hiddens){ // remove dynamic params
11741             for(var i = 0, len = hiddens.length; i < len; i++){
11742                 form.removeChild(hiddens[i]);
11743             }
11744         }
11745     }
11746 });
11747 /*
11748  * Based on:
11749  * Ext JS Library 1.1.1
11750  * Copyright(c) 2006-2007, Ext JS, LLC.
11751  *
11752  * Originally Released Under LGPL - original licence link has changed is not relivant.
11753  *
11754  * Fork - LGPL
11755  * <script type="text/javascript">
11756  */
11757  
11758 /**
11759  * Global Ajax request class.
11760  * 
11761  * @class Roo.Ajax
11762  * @extends Roo.data.Connection
11763  * @static
11764  * 
11765  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11766  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11767  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11768  * @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)
11769  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11770  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11771  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11772  */
11773 Roo.Ajax = new Roo.data.Connection({
11774     // fix up the docs
11775     /**
11776      * @scope Roo.Ajax
11777      * @type {Boolear} 
11778      */
11779     autoAbort : false,
11780
11781     /**
11782      * Serialize the passed form into a url encoded string
11783      * @scope Roo.Ajax
11784      * @param {String/HTMLElement} form
11785      * @return {String}
11786      */
11787     serializeForm : function(form){
11788         return Roo.lib.Ajax.serializeForm(form);
11789     }
11790 });/*
11791  * Based on:
11792  * Ext JS Library 1.1.1
11793  * Copyright(c) 2006-2007, Ext JS, LLC.
11794  *
11795  * Originally Released Under LGPL - original licence link has changed is not relivant.
11796  *
11797  * Fork - LGPL
11798  * <script type="text/javascript">
11799  */
11800
11801  
11802 /**
11803  * @class Roo.UpdateManager
11804  * @extends Roo.util.Observable
11805  * Provides AJAX-style update for Element object.<br><br>
11806  * Usage:<br>
11807  * <pre><code>
11808  * // Get it from a Roo.Element object
11809  * var el = Roo.get("foo");
11810  * var mgr = el.getUpdateManager();
11811  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11812  * ...
11813  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11814  * <br>
11815  * // or directly (returns the same UpdateManager instance)
11816  * var mgr = new Roo.UpdateManager("myElementId");
11817  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11818  * mgr.on("update", myFcnNeedsToKnow);
11819  * <br>
11820    // short handed call directly from the element object
11821    Roo.get("foo").load({
11822         url: "bar.php",
11823         scripts:true,
11824         params: "for=bar",
11825         text: "Loading Foo..."
11826    });
11827  * </code></pre>
11828  * @constructor
11829  * Create new UpdateManager directly.
11830  * @param {String/HTMLElement/Roo.Element} el The element to update
11831  * @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).
11832  */
11833 Roo.UpdateManager = function(el, forceNew){
11834     el = Roo.get(el);
11835     if(!forceNew && el.updateManager){
11836         return el.updateManager;
11837     }
11838     /**
11839      * The Element object
11840      * @type Roo.Element
11841      */
11842     this.el = el;
11843     /**
11844      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11845      * @type String
11846      */
11847     this.defaultUrl = null;
11848
11849     this.addEvents({
11850         /**
11851          * @event beforeupdate
11852          * Fired before an update is made, return false from your handler and the update is cancelled.
11853          * @param {Roo.Element} el
11854          * @param {String/Object/Function} url
11855          * @param {String/Object} params
11856          */
11857         "beforeupdate": true,
11858         /**
11859          * @event update
11860          * Fired after successful update is made.
11861          * @param {Roo.Element} el
11862          * @param {Object} oResponseObject The response Object
11863          */
11864         "update": true,
11865         /**
11866          * @event failure
11867          * Fired on update failure.
11868          * @param {Roo.Element} el
11869          * @param {Object} oResponseObject The response Object
11870          */
11871         "failure": true
11872     });
11873     var d = Roo.UpdateManager.defaults;
11874     /**
11875      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
11876      * @type String
11877      */
11878     this.sslBlankUrl = d.sslBlankUrl;
11879     /**
11880      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
11881      * @type Boolean
11882      */
11883     this.disableCaching = d.disableCaching;
11884     /**
11885      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
11886      * @type String
11887      */
11888     this.indicatorText = d.indicatorText;
11889     /**
11890      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
11891      * @type String
11892      */
11893     this.showLoadIndicator = d.showLoadIndicator;
11894     /**
11895      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
11896      * @type Number
11897      */
11898     this.timeout = d.timeout;
11899
11900     /**
11901      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
11902      * @type Boolean
11903      */
11904     this.loadScripts = d.loadScripts;
11905
11906     /**
11907      * Transaction object of current executing transaction
11908      */
11909     this.transaction = null;
11910
11911     /**
11912      * @private
11913      */
11914     this.autoRefreshProcId = null;
11915     /**
11916      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
11917      * @type Function
11918      */
11919     this.refreshDelegate = this.refresh.createDelegate(this);
11920     /**
11921      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
11922      * @type Function
11923      */
11924     this.updateDelegate = this.update.createDelegate(this);
11925     /**
11926      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
11927      * @type Function
11928      */
11929     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
11930     /**
11931      * @private
11932      */
11933     this.successDelegate = this.processSuccess.createDelegate(this);
11934     /**
11935      * @private
11936      */
11937     this.failureDelegate = this.processFailure.createDelegate(this);
11938
11939     if(!this.renderer){
11940      /**
11941       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
11942       */
11943     this.renderer = new Roo.UpdateManager.BasicRenderer();
11944     }
11945     
11946     Roo.UpdateManager.superclass.constructor.call(this);
11947 };
11948
11949 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
11950     /**
11951      * Get the Element this UpdateManager is bound to
11952      * @return {Roo.Element} The element
11953      */
11954     getEl : function(){
11955         return this.el;
11956     },
11957     /**
11958      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
11959      * @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:
11960 <pre><code>
11961 um.update({<br/>
11962     url: "your-url.php",<br/>
11963     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
11964     callback: yourFunction,<br/>
11965     scope: yourObject, //(optional scope)  <br/>
11966     discardUrl: false, <br/>
11967     nocache: false,<br/>
11968     text: "Loading...",<br/>
11969     timeout: 30,<br/>
11970     scripts: false<br/>
11971 });
11972 </code></pre>
11973      * The only required property is url. The optional properties nocache, text and scripts
11974      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
11975      * @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}
11976      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
11977      * @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.
11978      */
11979     update : function(url, params, callback, discardUrl){
11980         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
11981             var method = this.method,
11982                 cfg;
11983             if(typeof url == "object"){ // must be config object
11984                 cfg = url;
11985                 url = cfg.url;
11986                 params = params || cfg.params;
11987                 callback = callback || cfg.callback;
11988                 discardUrl = discardUrl || cfg.discardUrl;
11989                 if(callback && cfg.scope){
11990                     callback = callback.createDelegate(cfg.scope);
11991                 }
11992                 if(typeof cfg.method != "undefined"){method = cfg.method;};
11993                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
11994                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
11995                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
11996                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
11997             }
11998             this.showLoading();
11999             if(!discardUrl){
12000                 this.defaultUrl = url;
12001             }
12002             if(typeof url == "function"){
12003                 url = url.call(this);
12004             }
12005
12006             method = method || (params ? "POST" : "GET");
12007             if(method == "GET"){
12008                 url = this.prepareUrl(url);
12009             }
12010
12011             var o = Roo.apply(cfg ||{}, {
12012                 url : url,
12013                 params: params,
12014                 success: this.successDelegate,
12015                 failure: this.failureDelegate,
12016                 callback: undefined,
12017                 timeout: (this.timeout*1000),
12018                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12019             });
12020             Roo.log("updated manager called with timeout of " + o.timeout);
12021             this.transaction = Roo.Ajax.request(o);
12022         }
12023     },
12024
12025     /**
12026      * 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.
12027      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12028      * @param {String/HTMLElement} form The form Id or form element
12029      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12030      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12031      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12032      */
12033     formUpdate : function(form, url, reset, callback){
12034         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12035             if(typeof url == "function"){
12036                 url = url.call(this);
12037             }
12038             form = Roo.getDom(form);
12039             this.transaction = Roo.Ajax.request({
12040                 form: form,
12041                 url:url,
12042                 success: this.successDelegate,
12043                 failure: this.failureDelegate,
12044                 timeout: (this.timeout*1000),
12045                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12046             });
12047             this.showLoading.defer(1, this);
12048         }
12049     },
12050
12051     /**
12052      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12053      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12054      */
12055     refresh : function(callback){
12056         if(this.defaultUrl == null){
12057             return;
12058         }
12059         this.update(this.defaultUrl, null, callback, true);
12060     },
12061
12062     /**
12063      * Set this element to auto refresh.
12064      * @param {Number} interval How often to update (in seconds).
12065      * @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)
12066      * @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}
12067      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12068      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12069      */
12070     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12071         if(refreshNow){
12072             this.update(url || this.defaultUrl, params, callback, true);
12073         }
12074         if(this.autoRefreshProcId){
12075             clearInterval(this.autoRefreshProcId);
12076         }
12077         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12078     },
12079
12080     /**
12081      * Stop auto refresh on this element.
12082      */
12083      stopAutoRefresh : function(){
12084         if(this.autoRefreshProcId){
12085             clearInterval(this.autoRefreshProcId);
12086             delete this.autoRefreshProcId;
12087         }
12088     },
12089
12090     isAutoRefreshing : function(){
12091        return this.autoRefreshProcId ? true : false;
12092     },
12093     /**
12094      * Called to update the element to "Loading" state. Override to perform custom action.
12095      */
12096     showLoading : function(){
12097         if(this.showLoadIndicator){
12098             this.el.update(this.indicatorText);
12099         }
12100     },
12101
12102     /**
12103      * Adds unique parameter to query string if disableCaching = true
12104      * @private
12105      */
12106     prepareUrl : function(url){
12107         if(this.disableCaching){
12108             var append = "_dc=" + (new Date().getTime());
12109             if(url.indexOf("?") !== -1){
12110                 url += "&" + append;
12111             }else{
12112                 url += "?" + append;
12113             }
12114         }
12115         return url;
12116     },
12117
12118     /**
12119      * @private
12120      */
12121     processSuccess : function(response){
12122         this.transaction = null;
12123         if(response.argument.form && response.argument.reset){
12124             try{ // put in try/catch since some older FF releases had problems with this
12125                 response.argument.form.reset();
12126             }catch(e){}
12127         }
12128         if(this.loadScripts){
12129             this.renderer.render(this.el, response, this,
12130                 this.updateComplete.createDelegate(this, [response]));
12131         }else{
12132             this.renderer.render(this.el, response, this);
12133             this.updateComplete(response);
12134         }
12135     },
12136
12137     updateComplete : function(response){
12138         this.fireEvent("update", this.el, response);
12139         if(typeof response.argument.callback == "function"){
12140             response.argument.callback(this.el, true, response);
12141         }
12142     },
12143
12144     /**
12145      * @private
12146      */
12147     processFailure : function(response){
12148         this.transaction = null;
12149         this.fireEvent("failure", this.el, response);
12150         if(typeof response.argument.callback == "function"){
12151             response.argument.callback(this.el, false, response);
12152         }
12153     },
12154
12155     /**
12156      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12157      * @param {Object} renderer The object implementing the render() method
12158      */
12159     setRenderer : function(renderer){
12160         this.renderer = renderer;
12161     },
12162
12163     getRenderer : function(){
12164        return this.renderer;
12165     },
12166
12167     /**
12168      * Set the defaultUrl used for updates
12169      * @param {String/Function} defaultUrl The url or a function to call to get the url
12170      */
12171     setDefaultUrl : function(defaultUrl){
12172         this.defaultUrl = defaultUrl;
12173     },
12174
12175     /**
12176      * Aborts the executing transaction
12177      */
12178     abort : function(){
12179         if(this.transaction){
12180             Roo.Ajax.abort(this.transaction);
12181         }
12182     },
12183
12184     /**
12185      * Returns true if an update is in progress
12186      * @return {Boolean}
12187      */
12188     isUpdating : function(){
12189         if(this.transaction){
12190             return Roo.Ajax.isLoading(this.transaction);
12191         }
12192         return false;
12193     }
12194 });
12195
12196 /**
12197  * @class Roo.UpdateManager.defaults
12198  * @static (not really - but it helps the doc tool)
12199  * The defaults collection enables customizing the default properties of UpdateManager
12200  */
12201    Roo.UpdateManager.defaults = {
12202        /**
12203          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12204          * @type Number
12205          */
12206          timeout : 30,
12207
12208          /**
12209          * True to process scripts by default (Defaults to false).
12210          * @type Boolean
12211          */
12212         loadScripts : false,
12213
12214         /**
12215         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12216         * @type String
12217         */
12218         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12219         /**
12220          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12221          * @type Boolean
12222          */
12223         disableCaching : false,
12224         /**
12225          * Whether to show indicatorText when loading (Defaults to true).
12226          * @type Boolean
12227          */
12228         showLoadIndicator : true,
12229         /**
12230          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12231          * @type String
12232          */
12233         indicatorText : '<div class="loading-indicator">Loading...</div>'
12234    };
12235
12236 /**
12237  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12238  *Usage:
12239  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12240  * @param {String/HTMLElement/Roo.Element} el The element to update
12241  * @param {String} url The url
12242  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12243  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12244  * @static
12245  * @deprecated
12246  * @member Roo.UpdateManager
12247  */
12248 Roo.UpdateManager.updateElement = function(el, url, params, options){
12249     var um = Roo.get(el, true).getUpdateManager();
12250     Roo.apply(um, options);
12251     um.update(url, params, options ? options.callback : null);
12252 };
12253 // alias for backwards compat
12254 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12255 /**
12256  * @class Roo.UpdateManager.BasicRenderer
12257  * Default Content renderer. Updates the elements innerHTML with the responseText.
12258  */
12259 Roo.UpdateManager.BasicRenderer = function(){};
12260
12261 Roo.UpdateManager.BasicRenderer.prototype = {
12262     /**
12263      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12264      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12265      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12266      * @param {Roo.Element} el The element being rendered
12267      * @param {Object} response The YUI Connect response object
12268      * @param {UpdateManager} updateManager The calling update manager
12269      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12270      */
12271      render : function(el, response, updateManager, callback){
12272         el.update(response.responseText, updateManager.loadScripts, callback);
12273     }
12274 };
12275 /*
12276  * Based on:
12277  * Roo JS
12278  * (c)) Alan Knowles
12279  * Licence : LGPL
12280  */
12281
12282
12283 /**
12284  * @class Roo.DomTemplate
12285  * @extends Roo.Template
12286  * An effort at a dom based template engine..
12287  *
12288  * Similar to XTemplate, except it uses dom parsing to create the template..
12289  *
12290  * Supported features:
12291  *
12292  *  Tags:
12293
12294 <pre><code>
12295       {a_variable} - output encoded.
12296       {a_variable.format:("Y-m-d")} - call a method on the variable
12297       {a_variable:raw} - unencoded output
12298       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12299       {a_variable:this.method_on_template(...)} - call a method on the template object.
12300  
12301 </code></pre>
12302  *  The tpl tag:
12303 <pre><code>
12304         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12305         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12306         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12307         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12308   
12309 </code></pre>
12310  *      
12311  */
12312 Roo.DomTemplate = function()
12313 {
12314      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12315      if (this.html) {
12316         this.compile();
12317      }
12318 };
12319
12320
12321 Roo.extend(Roo.DomTemplate, Roo.Template, {
12322     /**
12323      * id counter for sub templates.
12324      */
12325     id : 0,
12326     /**
12327      * flag to indicate if dom parser is inside a pre,
12328      * it will strip whitespace if not.
12329      */
12330     inPre : false,
12331     
12332     /**
12333      * The various sub templates
12334      */
12335     tpls : false,
12336     
12337     
12338     
12339     /**
12340      *
12341      * basic tag replacing syntax
12342      * WORD:WORD()
12343      *
12344      * // you can fake an object call by doing this
12345      *  x.t:(test,tesT) 
12346      * 
12347      */
12348     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12349     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12350     
12351     iterChild : function (node, method) {
12352         
12353         var oldPre = this.inPre;
12354         if (node.tagName == 'PRE') {
12355             this.inPre = true;
12356         }
12357         for( var i = 0; i < node.childNodes.length; i++) {
12358             method.call(this, node.childNodes[i]);
12359         }
12360         this.inPre = oldPre;
12361     },
12362     
12363     
12364     
12365     /**
12366      * compile the template
12367      *
12368      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12369      *
12370      */
12371     compile: function()
12372     {
12373         var s = this.html;
12374         
12375         // covert the html into DOM...
12376         var doc = false;
12377         var div =false;
12378         try {
12379             doc = document.implementation.createHTMLDocument("");
12380             doc.documentElement.innerHTML =   this.html  ;
12381             div = doc.documentElement;
12382         } catch (e) {
12383             // old IE... - nasty -- it causes all sorts of issues.. with
12384             // images getting pulled from server..
12385             div = document.createElement('div');
12386             div.innerHTML = this.html;
12387         }
12388         //doc.documentElement.innerHTML = htmlBody
12389          
12390         
12391         
12392         this.tpls = [];
12393         var _t = this;
12394         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12395         
12396         var tpls = this.tpls;
12397         
12398         // create a top level template from the snippet..
12399         
12400         //Roo.log(div.innerHTML);
12401         
12402         var tpl = {
12403             uid : 'master',
12404             id : this.id++,
12405             attr : false,
12406             value : false,
12407             body : div.innerHTML,
12408             
12409             forCall : false,
12410             execCall : false,
12411             dom : div,
12412             isTop : true
12413             
12414         };
12415         tpls.unshift(tpl);
12416         
12417         
12418         // compile them...
12419         this.tpls = [];
12420         Roo.each(tpls, function(tp){
12421             this.compileTpl(tp);
12422             this.tpls[tp.id] = tp;
12423         }, this);
12424         
12425         this.master = tpls[0];
12426         return this;
12427         
12428         
12429     },
12430     
12431     compileNode : function(node, istop) {
12432         // test for
12433         //Roo.log(node);
12434         
12435         
12436         // skip anything not a tag..
12437         if (node.nodeType != 1) {
12438             if (node.nodeType == 3 && !this.inPre) {
12439                 // reduce white space..
12440                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12441                 
12442             }
12443             return;
12444         }
12445         
12446         var tpl = {
12447             uid : false,
12448             id : false,
12449             attr : false,
12450             value : false,
12451             body : '',
12452             
12453             forCall : false,
12454             execCall : false,
12455             dom : false,
12456             isTop : istop
12457             
12458             
12459         };
12460         
12461         
12462         switch(true) {
12463             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12464             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12465             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12466             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12467             // no default..
12468         }
12469         
12470         
12471         if (!tpl.attr) {
12472             // just itterate children..
12473             this.iterChild(node,this.compileNode);
12474             return;
12475         }
12476         tpl.uid = this.id++;
12477         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12478         node.removeAttribute('roo-'+ tpl.attr);
12479         if (tpl.attr != 'name') {
12480             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12481             node.parentNode.replaceChild(placeholder,  node);
12482         } else {
12483             
12484             var placeholder =  document.createElement('span');
12485             placeholder.className = 'roo-tpl-' + tpl.value;
12486             node.parentNode.replaceChild(placeholder,  node);
12487         }
12488         
12489         // parent now sees '{domtplXXXX}
12490         this.iterChild(node,this.compileNode);
12491         
12492         // we should now have node body...
12493         var div = document.createElement('div');
12494         div.appendChild(node);
12495         tpl.dom = node;
12496         // this has the unfortunate side effect of converting tagged attributes
12497         // eg. href="{...}" into %7C...%7D
12498         // this has been fixed by searching for those combo's although it's a bit hacky..
12499         
12500         
12501         tpl.body = div.innerHTML;
12502         
12503         
12504          
12505         tpl.id = tpl.uid;
12506         switch(tpl.attr) {
12507             case 'for' :
12508                 switch (tpl.value) {
12509                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12510                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12511                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12512                 }
12513                 break;
12514             
12515             case 'exec':
12516                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12517                 break;
12518             
12519             case 'if':     
12520                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12521                 break;
12522             
12523             case 'name':
12524                 tpl.id  = tpl.value; // replace non characters???
12525                 break;
12526             
12527         }
12528         
12529         
12530         this.tpls.push(tpl);
12531         
12532         
12533         
12534     },
12535     
12536     
12537     
12538     
12539     /**
12540      * Compile a segment of the template into a 'sub-template'
12541      *
12542      * 
12543      * 
12544      *
12545      */
12546     compileTpl : function(tpl)
12547     {
12548         var fm = Roo.util.Format;
12549         var useF = this.disableFormats !== true;
12550         
12551         var sep = Roo.isGecko ? "+\n" : ",\n";
12552         
12553         var undef = function(str) {
12554             Roo.debug && Roo.log("Property not found :"  + str);
12555             return '';
12556         };
12557           
12558         //Roo.log(tpl.body);
12559         
12560         
12561         
12562         var fn = function(m, lbrace, name, format, args)
12563         {
12564             //Roo.log("ARGS");
12565             //Roo.log(arguments);
12566             args = args ? args.replace(/\\'/g,"'") : args;
12567             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12568             if (typeof(format) == 'undefined') {
12569                 format =  'htmlEncode'; 
12570             }
12571             if (format == 'raw' ) {
12572                 format = false;
12573             }
12574             
12575             if(name.substr(0, 6) == 'domtpl'){
12576                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12577             }
12578             
12579             // build an array of options to determine if value is undefined..
12580             
12581             // basically get 'xxxx.yyyy' then do
12582             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12583             //    (function () { Roo.log("Property not found"); return ''; })() :
12584             //    ......
12585             
12586             var udef_ar = [];
12587             var lookfor = '';
12588             Roo.each(name.split('.'), function(st) {
12589                 lookfor += (lookfor.length ? '.': '') + st;
12590                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12591             });
12592             
12593             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12594             
12595             
12596             if(format && useF){
12597                 
12598                 args = args ? ',' + args : "";
12599                  
12600                 if(format.substr(0, 5) != "this."){
12601                     format = "fm." + format + '(';
12602                 }else{
12603                     format = 'this.call("'+ format.substr(5) + '", ';
12604                     args = ", values";
12605                 }
12606                 
12607                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12608             }
12609              
12610             if (args && args.length) {
12611                 // called with xxyx.yuu:(test,test)
12612                 // change to ()
12613                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12614             }
12615             // raw.. - :raw modifier..
12616             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12617             
12618         };
12619         var body;
12620         // branched to use + in gecko and [].join() in others
12621         if(Roo.isGecko){
12622             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12623                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12624                     "';};};";
12625         }else{
12626             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12627             body.push(tpl.body.replace(/(\r\n|\n)/g,
12628                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12629             body.push("'].join('');};};");
12630             body = body.join('');
12631         }
12632         
12633         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12634        
12635         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12636         eval(body);
12637         
12638         return this;
12639     },
12640      
12641     /**
12642      * same as applyTemplate, except it's done to one of the subTemplates
12643      * when using named templates, you can do:
12644      *
12645      * var str = pl.applySubTemplate('your-name', values);
12646      *
12647      * 
12648      * @param {Number} id of the template
12649      * @param {Object} values to apply to template
12650      * @param {Object} parent (normaly the instance of this object)
12651      */
12652     applySubTemplate : function(id, values, parent)
12653     {
12654         
12655         
12656         var t = this.tpls[id];
12657         
12658         
12659         try { 
12660             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12661                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12662                 return '';
12663             }
12664         } catch(e) {
12665             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12666             Roo.log(values);
12667           
12668             return '';
12669         }
12670         try { 
12671             
12672             if(t.execCall && t.execCall.call(this, values, parent)){
12673                 return '';
12674             }
12675         } catch(e) {
12676             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12677             Roo.log(values);
12678             return '';
12679         }
12680         
12681         try {
12682             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12683             parent = t.target ? values : parent;
12684             if(t.forCall && vs instanceof Array){
12685                 var buf = [];
12686                 for(var i = 0, len = vs.length; i < len; i++){
12687                     try {
12688                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12689                     } catch (e) {
12690                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12691                         Roo.log(e.body);
12692                         //Roo.log(t.compiled);
12693                         Roo.log(vs[i]);
12694                     }   
12695                 }
12696                 return buf.join('');
12697             }
12698         } catch (e) {
12699             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12700             Roo.log(values);
12701             return '';
12702         }
12703         try {
12704             return t.compiled.call(this, vs, parent);
12705         } catch (e) {
12706             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12707             Roo.log(e.body);
12708             //Roo.log(t.compiled);
12709             Roo.log(values);
12710             return '';
12711         }
12712     },
12713
12714    
12715
12716     applyTemplate : function(values){
12717         return this.master.compiled.call(this, values, {});
12718         //var s = this.subs;
12719     },
12720
12721     apply : function(){
12722         return this.applyTemplate.apply(this, arguments);
12723     }
12724
12725  });
12726
12727 Roo.DomTemplate.from = function(el){
12728     el = Roo.getDom(el);
12729     return new Roo.Domtemplate(el.value || el.innerHTML);
12730 };/*
12731  * Based on:
12732  * Ext JS Library 1.1.1
12733  * Copyright(c) 2006-2007, Ext JS, LLC.
12734  *
12735  * Originally Released Under LGPL - original licence link has changed is not relivant.
12736  *
12737  * Fork - LGPL
12738  * <script type="text/javascript">
12739  */
12740
12741 /**
12742  * @class Roo.util.DelayedTask
12743  * Provides a convenient method of performing setTimeout where a new
12744  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12745  * You can use this class to buffer
12746  * the keypress events for a certain number of milliseconds, and perform only if they stop
12747  * for that amount of time.
12748  * @constructor The parameters to this constructor serve as defaults and are not required.
12749  * @param {Function} fn (optional) The default function to timeout
12750  * @param {Object} scope (optional) The default scope of that timeout
12751  * @param {Array} args (optional) The default Array of arguments
12752  */
12753 Roo.util.DelayedTask = function(fn, scope, args){
12754     var id = null, d, t;
12755
12756     var call = function(){
12757         var now = new Date().getTime();
12758         if(now - t >= d){
12759             clearInterval(id);
12760             id = null;
12761             fn.apply(scope, args || []);
12762         }
12763     };
12764     /**
12765      * Cancels any pending timeout and queues a new one
12766      * @param {Number} delay The milliseconds to delay
12767      * @param {Function} newFn (optional) Overrides function passed to constructor
12768      * @param {Object} newScope (optional) Overrides scope passed to constructor
12769      * @param {Array} newArgs (optional) Overrides args passed to constructor
12770      */
12771     this.delay = function(delay, newFn, newScope, newArgs){
12772         if(id && delay != d){
12773             this.cancel();
12774         }
12775         d = delay;
12776         t = new Date().getTime();
12777         fn = newFn || fn;
12778         scope = newScope || scope;
12779         args = newArgs || args;
12780         if(!id){
12781             id = setInterval(call, d);
12782         }
12783     };
12784
12785     /**
12786      * Cancel the last queued timeout
12787      */
12788     this.cancel = function(){
12789         if(id){
12790             clearInterval(id);
12791             id = null;
12792         }
12793     };
12794 };/*
12795  * Based on:
12796  * Ext JS Library 1.1.1
12797  * Copyright(c) 2006-2007, Ext JS, LLC.
12798  *
12799  * Originally Released Under LGPL - original licence link has changed is not relivant.
12800  *
12801  * Fork - LGPL
12802  * <script type="text/javascript">
12803  */
12804  
12805  
12806 Roo.util.TaskRunner = function(interval){
12807     interval = interval || 10;
12808     var tasks = [], removeQueue = [];
12809     var id = 0;
12810     var running = false;
12811
12812     var stopThread = function(){
12813         running = false;
12814         clearInterval(id);
12815         id = 0;
12816     };
12817
12818     var startThread = function(){
12819         if(!running){
12820             running = true;
12821             id = setInterval(runTasks, interval);
12822         }
12823     };
12824
12825     var removeTask = function(task){
12826         removeQueue.push(task);
12827         if(task.onStop){
12828             task.onStop();
12829         }
12830     };
12831
12832     var runTasks = function(){
12833         if(removeQueue.length > 0){
12834             for(var i = 0, len = removeQueue.length; i < len; i++){
12835                 tasks.remove(removeQueue[i]);
12836             }
12837             removeQueue = [];
12838             if(tasks.length < 1){
12839                 stopThread();
12840                 return;
12841             }
12842         }
12843         var now = new Date().getTime();
12844         for(var i = 0, len = tasks.length; i < len; ++i){
12845             var t = tasks[i];
12846             var itime = now - t.taskRunTime;
12847             if(t.interval <= itime){
12848                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
12849                 t.taskRunTime = now;
12850                 if(rt === false || t.taskRunCount === t.repeat){
12851                     removeTask(t);
12852                     return;
12853                 }
12854             }
12855             if(t.duration && t.duration <= (now - t.taskStartTime)){
12856                 removeTask(t);
12857             }
12858         }
12859     };
12860
12861     /**
12862      * Queues a new task.
12863      * @param {Object} task
12864      */
12865     this.start = function(task){
12866         tasks.push(task);
12867         task.taskStartTime = new Date().getTime();
12868         task.taskRunTime = 0;
12869         task.taskRunCount = 0;
12870         startThread();
12871         return task;
12872     };
12873
12874     this.stop = function(task){
12875         removeTask(task);
12876         return task;
12877     };
12878
12879     this.stopAll = function(){
12880         stopThread();
12881         for(var i = 0, len = tasks.length; i < len; i++){
12882             if(tasks[i].onStop){
12883                 tasks[i].onStop();
12884             }
12885         }
12886         tasks = [];
12887         removeQueue = [];
12888     };
12889 };
12890
12891 Roo.TaskMgr = new Roo.util.TaskRunner();/*
12892  * Based on:
12893  * Ext JS Library 1.1.1
12894  * Copyright(c) 2006-2007, Ext JS, LLC.
12895  *
12896  * Originally Released Under LGPL - original licence link has changed is not relivant.
12897  *
12898  * Fork - LGPL
12899  * <script type="text/javascript">
12900  */
12901
12902  
12903 /**
12904  * @class Roo.util.MixedCollection
12905  * @extends Roo.util.Observable
12906  * A Collection class that maintains both numeric indexes and keys and exposes events.
12907  * @constructor
12908  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
12909  * collection (defaults to false)
12910  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
12911  * and return the key value for that item.  This is used when available to look up the key on items that
12912  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
12913  * equivalent to providing an implementation for the {@link #getKey} method.
12914  */
12915 Roo.util.MixedCollection = function(allowFunctions, keyFn){
12916     this.items = [];
12917     this.map = {};
12918     this.keys = [];
12919     this.length = 0;
12920     this.addEvents({
12921         /**
12922          * @event clear
12923          * Fires when the collection is cleared.
12924          */
12925         "clear" : true,
12926         /**
12927          * @event add
12928          * Fires when an item is added to the collection.
12929          * @param {Number} index The index at which the item was added.
12930          * @param {Object} o The item added.
12931          * @param {String} key The key associated with the added item.
12932          */
12933         "add" : true,
12934         /**
12935          * @event replace
12936          * Fires when an item is replaced in the collection.
12937          * @param {String} key he key associated with the new added.
12938          * @param {Object} old The item being replaced.
12939          * @param {Object} new The new item.
12940          */
12941         "replace" : true,
12942         /**
12943          * @event remove
12944          * Fires when an item is removed from the collection.
12945          * @param {Object} o The item being removed.
12946          * @param {String} key (optional) The key associated with the removed item.
12947          */
12948         "remove" : true,
12949         "sort" : true
12950     });
12951     this.allowFunctions = allowFunctions === true;
12952     if(keyFn){
12953         this.getKey = keyFn;
12954     }
12955     Roo.util.MixedCollection.superclass.constructor.call(this);
12956 };
12957
12958 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
12959     allowFunctions : false,
12960     
12961 /**
12962  * Adds an item to the collection.
12963  * @param {String} key The key to associate with the item
12964  * @param {Object} o The item to add.
12965  * @return {Object} The item added.
12966  */
12967     add : function(key, o){
12968         if(arguments.length == 1){
12969             o = arguments[0];
12970             key = this.getKey(o);
12971         }
12972         if(typeof key == "undefined" || key === null){
12973             this.length++;
12974             this.items.push(o);
12975             this.keys.push(null);
12976         }else{
12977             var old = this.map[key];
12978             if(old){
12979                 return this.replace(key, o);
12980             }
12981             this.length++;
12982             this.items.push(o);
12983             this.map[key] = o;
12984             this.keys.push(key);
12985         }
12986         this.fireEvent("add", this.length-1, o, key);
12987         return o;
12988     },
12989        
12990 /**
12991   * MixedCollection has a generic way to fetch keys if you implement getKey.
12992 <pre><code>
12993 // normal way
12994 var mc = new Roo.util.MixedCollection();
12995 mc.add(someEl.dom.id, someEl);
12996 mc.add(otherEl.dom.id, otherEl);
12997 //and so on
12998
12999 // using getKey
13000 var mc = new Roo.util.MixedCollection();
13001 mc.getKey = function(el){
13002    return el.dom.id;
13003 };
13004 mc.add(someEl);
13005 mc.add(otherEl);
13006
13007 // or via the constructor
13008 var mc = new Roo.util.MixedCollection(false, function(el){
13009    return el.dom.id;
13010 });
13011 mc.add(someEl);
13012 mc.add(otherEl);
13013 </code></pre>
13014  * @param o {Object} The item for which to find the key.
13015  * @return {Object} The key for the passed item.
13016  */
13017     getKey : function(o){
13018          return o.id; 
13019     },
13020    
13021 /**
13022  * Replaces an item in the collection.
13023  * @param {String} key The key associated with the item to replace, or the item to replace.
13024  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13025  * @return {Object}  The new item.
13026  */
13027     replace : function(key, o){
13028         if(arguments.length == 1){
13029             o = arguments[0];
13030             key = this.getKey(o);
13031         }
13032         var old = this.item(key);
13033         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13034              return this.add(key, o);
13035         }
13036         var index = this.indexOfKey(key);
13037         this.items[index] = o;
13038         this.map[key] = o;
13039         this.fireEvent("replace", key, old, o);
13040         return o;
13041     },
13042    
13043 /**
13044  * Adds all elements of an Array or an Object to the collection.
13045  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13046  * an Array of values, each of which are added to the collection.
13047  */
13048     addAll : function(objs){
13049         if(arguments.length > 1 || objs instanceof Array){
13050             var args = arguments.length > 1 ? arguments : objs;
13051             for(var i = 0, len = args.length; i < len; i++){
13052                 this.add(args[i]);
13053             }
13054         }else{
13055             for(var key in objs){
13056                 if(this.allowFunctions || typeof objs[key] != "function"){
13057                     this.add(key, objs[key]);
13058                 }
13059             }
13060         }
13061     },
13062    
13063 /**
13064  * Executes the specified function once for every item in the collection, passing each
13065  * item as the first and only parameter. returning false from the function will stop the iteration.
13066  * @param {Function} fn The function to execute for each item.
13067  * @param {Object} scope (optional) The scope in which to execute the function.
13068  */
13069     each : function(fn, scope){
13070         var items = [].concat(this.items); // each safe for removal
13071         for(var i = 0, len = items.length; i < len; i++){
13072             if(fn.call(scope || items[i], items[i], i, len) === false){
13073                 break;
13074             }
13075         }
13076     },
13077    
13078 /**
13079  * Executes the specified function once for every key in the collection, passing each
13080  * key, and its associated item as the first two parameters.
13081  * @param {Function} fn The function to execute for each item.
13082  * @param {Object} scope (optional) The scope in which to execute the function.
13083  */
13084     eachKey : function(fn, scope){
13085         for(var i = 0, len = this.keys.length; i < len; i++){
13086             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13087         }
13088     },
13089    
13090 /**
13091  * Returns the first item in the collection which elicits a true return value from the
13092  * passed selection function.
13093  * @param {Function} fn The selection function to execute for each item.
13094  * @param {Object} scope (optional) The scope in which to execute the function.
13095  * @return {Object} The first item in the collection which returned true from the selection function.
13096  */
13097     find : function(fn, scope){
13098         for(var i = 0, len = this.items.length; i < len; i++){
13099             if(fn.call(scope || window, this.items[i], this.keys[i])){
13100                 return this.items[i];
13101             }
13102         }
13103         return null;
13104     },
13105    
13106 /**
13107  * Inserts an item at the specified index in the collection.
13108  * @param {Number} index The index to insert the item at.
13109  * @param {String} key The key to associate with the new item, or the item itself.
13110  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13111  * @return {Object} The item inserted.
13112  */
13113     insert : function(index, key, o){
13114         if(arguments.length == 2){
13115             o = arguments[1];
13116             key = this.getKey(o);
13117         }
13118         if(index >= this.length){
13119             return this.add(key, o);
13120         }
13121         this.length++;
13122         this.items.splice(index, 0, o);
13123         if(typeof key != "undefined" && key != null){
13124             this.map[key] = o;
13125         }
13126         this.keys.splice(index, 0, key);
13127         this.fireEvent("add", index, o, key);
13128         return o;
13129     },
13130    
13131 /**
13132  * Removed an item from the collection.
13133  * @param {Object} o The item to remove.
13134  * @return {Object} The item removed.
13135  */
13136     remove : function(o){
13137         return this.removeAt(this.indexOf(o));
13138     },
13139    
13140 /**
13141  * Remove an item from a specified index in the collection.
13142  * @param {Number} index The index within the collection of the item to remove.
13143  */
13144     removeAt : function(index){
13145         if(index < this.length && index >= 0){
13146             this.length--;
13147             var o = this.items[index];
13148             this.items.splice(index, 1);
13149             var key = this.keys[index];
13150             if(typeof key != "undefined"){
13151                 delete this.map[key];
13152             }
13153             this.keys.splice(index, 1);
13154             this.fireEvent("remove", o, key);
13155         }
13156     },
13157    
13158 /**
13159  * Removed an item associated with the passed key fom the collection.
13160  * @param {String} key The key of the item to remove.
13161  */
13162     removeKey : function(key){
13163         return this.removeAt(this.indexOfKey(key));
13164     },
13165    
13166 /**
13167  * Returns the number of items in the collection.
13168  * @return {Number} the number of items in the collection.
13169  */
13170     getCount : function(){
13171         return this.length; 
13172     },
13173    
13174 /**
13175  * Returns index within the collection of the passed Object.
13176  * @param {Object} o The item to find the index of.
13177  * @return {Number} index of the item.
13178  */
13179     indexOf : function(o){
13180         if(!this.items.indexOf){
13181             for(var i = 0, len = this.items.length; i < len; i++){
13182                 if(this.items[i] == o) {
13183                     return i;
13184                 }
13185             }
13186             return -1;
13187         }else{
13188             return this.items.indexOf(o);
13189         }
13190     },
13191    
13192 /**
13193  * Returns index within the collection of the passed key.
13194  * @param {String} key The key to find the index of.
13195  * @return {Number} index of the key.
13196  */
13197     indexOfKey : function(key){
13198         if(!this.keys.indexOf){
13199             for(var i = 0, len = this.keys.length; i < len; i++){
13200                 if(this.keys[i] == key) {
13201                     return i;
13202                 }
13203             }
13204             return -1;
13205         }else{
13206             return this.keys.indexOf(key);
13207         }
13208     },
13209    
13210 /**
13211  * Returns the item associated with the passed key OR index. Key has priority over index.
13212  * @param {String/Number} key The key or index of the item.
13213  * @return {Object} The item associated with the passed key.
13214  */
13215     item : function(key){
13216         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13217         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13218     },
13219     
13220 /**
13221  * Returns the item at the specified index.
13222  * @param {Number} index The index of the item.
13223  * @return {Object}
13224  */
13225     itemAt : function(index){
13226         return this.items[index];
13227     },
13228     
13229 /**
13230  * Returns the item associated with the passed key.
13231  * @param {String/Number} key The key of the item.
13232  * @return {Object} The item associated with the passed key.
13233  */
13234     key : function(key){
13235         return this.map[key];
13236     },
13237    
13238 /**
13239  * Returns true if the collection contains the passed Object as an item.
13240  * @param {Object} o  The Object to look for in the collection.
13241  * @return {Boolean} True if the collection contains the Object as an item.
13242  */
13243     contains : function(o){
13244         return this.indexOf(o) != -1;
13245     },
13246    
13247 /**
13248  * Returns true if the collection contains the passed Object as a key.
13249  * @param {String} key The key to look for in the collection.
13250  * @return {Boolean} True if the collection contains the Object as a key.
13251  */
13252     containsKey : function(key){
13253         return typeof this.map[key] != "undefined";
13254     },
13255    
13256 /**
13257  * Removes all items from the collection.
13258  */
13259     clear : function(){
13260         this.length = 0;
13261         this.items = [];
13262         this.keys = [];
13263         this.map = {};
13264         this.fireEvent("clear");
13265     },
13266    
13267 /**
13268  * Returns the first item in the collection.
13269  * @return {Object} the first item in the collection..
13270  */
13271     first : function(){
13272         return this.items[0]; 
13273     },
13274    
13275 /**
13276  * Returns the last item in the collection.
13277  * @return {Object} the last item in the collection..
13278  */
13279     last : function(){
13280         return this.items[this.length-1];   
13281     },
13282     
13283     _sort : function(property, dir, fn){
13284         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13285         fn = fn || function(a, b){
13286             return a-b;
13287         };
13288         var c = [], k = this.keys, items = this.items;
13289         for(var i = 0, len = items.length; i < len; i++){
13290             c[c.length] = {key: k[i], value: items[i], index: i};
13291         }
13292         c.sort(function(a, b){
13293             var v = fn(a[property], b[property]) * dsc;
13294             if(v == 0){
13295                 v = (a.index < b.index ? -1 : 1);
13296             }
13297             return v;
13298         });
13299         for(var i = 0, len = c.length; i < len; i++){
13300             items[i] = c[i].value;
13301             k[i] = c[i].key;
13302         }
13303         this.fireEvent("sort", this);
13304     },
13305     
13306     /**
13307      * Sorts this collection with the passed comparison function
13308      * @param {String} direction (optional) "ASC" or "DESC"
13309      * @param {Function} fn (optional) comparison function
13310      */
13311     sort : function(dir, fn){
13312         this._sort("value", dir, fn);
13313     },
13314     
13315     /**
13316      * Sorts this collection by keys
13317      * @param {String} direction (optional) "ASC" or "DESC"
13318      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13319      */
13320     keySort : function(dir, fn){
13321         this._sort("key", dir, fn || function(a, b){
13322             return String(a).toUpperCase()-String(b).toUpperCase();
13323         });
13324     },
13325     
13326     /**
13327      * Returns a range of items in this collection
13328      * @param {Number} startIndex (optional) defaults to 0
13329      * @param {Number} endIndex (optional) default to the last item
13330      * @return {Array} An array of items
13331      */
13332     getRange : function(start, end){
13333         var items = this.items;
13334         if(items.length < 1){
13335             return [];
13336         }
13337         start = start || 0;
13338         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13339         var r = [];
13340         if(start <= end){
13341             for(var i = start; i <= end; i++) {
13342                     r[r.length] = items[i];
13343             }
13344         }else{
13345             for(var i = start; i >= end; i--) {
13346                     r[r.length] = items[i];
13347             }
13348         }
13349         return r;
13350     },
13351         
13352     /**
13353      * Filter the <i>objects</i> in this collection by a specific property. 
13354      * Returns a new collection that has been filtered.
13355      * @param {String} property A property on your objects
13356      * @param {String/RegExp} value Either string that the property values 
13357      * should start with or a RegExp to test against the property
13358      * @return {MixedCollection} The new filtered collection
13359      */
13360     filter : function(property, value){
13361         if(!value.exec){ // not a regex
13362             value = String(value);
13363             if(value.length == 0){
13364                 return this.clone();
13365             }
13366             value = new RegExp("^" + Roo.escapeRe(value), "i");
13367         }
13368         return this.filterBy(function(o){
13369             return o && value.test(o[property]);
13370         });
13371         },
13372     
13373     /**
13374      * Filter by a function. * Returns a new collection that has been filtered.
13375      * The passed function will be called with each 
13376      * object in the collection. If the function returns true, the value is included 
13377      * otherwise it is filtered.
13378      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13379      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13380      * @return {MixedCollection} The new filtered collection
13381      */
13382     filterBy : function(fn, scope){
13383         var r = new Roo.util.MixedCollection();
13384         r.getKey = this.getKey;
13385         var k = this.keys, it = this.items;
13386         for(var i = 0, len = it.length; i < len; i++){
13387             if(fn.call(scope||this, it[i], k[i])){
13388                                 r.add(k[i], it[i]);
13389                         }
13390         }
13391         return r;
13392     },
13393     
13394     /**
13395      * Creates a duplicate of this collection
13396      * @return {MixedCollection}
13397      */
13398     clone : function(){
13399         var r = new Roo.util.MixedCollection();
13400         var k = this.keys, it = this.items;
13401         for(var i = 0, len = it.length; i < len; i++){
13402             r.add(k[i], it[i]);
13403         }
13404         r.getKey = this.getKey;
13405         return r;
13406     }
13407 });
13408 /**
13409  * Returns the item associated with the passed key or index.
13410  * @method
13411  * @param {String/Number} key The key or index of the item.
13412  * @return {Object} The item associated with the passed key.
13413  */
13414 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13415  * Based on:
13416  * Ext JS Library 1.1.1
13417  * Copyright(c) 2006-2007, Ext JS, LLC.
13418  *
13419  * Originally Released Under LGPL - original licence link has changed is not relivant.
13420  *
13421  * Fork - LGPL
13422  * <script type="text/javascript">
13423  */
13424 /**
13425  * @class Roo.util.JSON
13426  * Modified version of Douglas Crockford"s json.js that doesn"t
13427  * mess with the Object prototype 
13428  * http://www.json.org/js.html
13429  * @singleton
13430  */
13431 Roo.util.JSON = new (function(){
13432     var useHasOwn = {}.hasOwnProperty ? true : false;
13433     
13434     // crashes Safari in some instances
13435     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13436     
13437     var pad = function(n) {
13438         return n < 10 ? "0" + n : n;
13439     };
13440     
13441     var m = {
13442         "\b": '\\b',
13443         "\t": '\\t',
13444         "\n": '\\n',
13445         "\f": '\\f',
13446         "\r": '\\r',
13447         '"' : '\\"',
13448         "\\": '\\\\'
13449     };
13450
13451     var encodeString = function(s){
13452         if (/["\\\x00-\x1f]/.test(s)) {
13453             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13454                 var c = m[b];
13455                 if(c){
13456                     return c;
13457                 }
13458                 c = b.charCodeAt();
13459                 return "\\u00" +
13460                     Math.floor(c / 16).toString(16) +
13461                     (c % 16).toString(16);
13462             }) + '"';
13463         }
13464         return '"' + s + '"';
13465     };
13466     
13467     var encodeArray = function(o){
13468         var a = ["["], b, i, l = o.length, v;
13469             for (i = 0; i < l; i += 1) {
13470                 v = o[i];
13471                 switch (typeof v) {
13472                     case "undefined":
13473                     case "function":
13474                     case "unknown":
13475                         break;
13476                     default:
13477                         if (b) {
13478                             a.push(',');
13479                         }
13480                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13481                         b = true;
13482                 }
13483             }
13484             a.push("]");
13485             return a.join("");
13486     };
13487     
13488     var encodeDate = function(o){
13489         return '"' + o.getFullYear() + "-" +
13490                 pad(o.getMonth() + 1) + "-" +
13491                 pad(o.getDate()) + "T" +
13492                 pad(o.getHours()) + ":" +
13493                 pad(o.getMinutes()) + ":" +
13494                 pad(o.getSeconds()) + '"';
13495     };
13496     
13497     /**
13498      * Encodes an Object, Array or other value
13499      * @param {Mixed} o The variable to encode
13500      * @return {String} The JSON string
13501      */
13502     this.encode = function(o)
13503     {
13504         // should this be extended to fully wrap stringify..
13505         
13506         if(typeof o == "undefined" || o === null){
13507             return "null";
13508         }else if(o instanceof Array){
13509             return encodeArray(o);
13510         }else if(o instanceof Date){
13511             return encodeDate(o);
13512         }else if(typeof o == "string"){
13513             return encodeString(o);
13514         }else if(typeof o == "number"){
13515             return isFinite(o) ? String(o) : "null";
13516         }else if(typeof o == "boolean"){
13517             return String(o);
13518         }else {
13519             var a = ["{"], b, i, v;
13520             for (i in o) {
13521                 if(!useHasOwn || o.hasOwnProperty(i)) {
13522                     v = o[i];
13523                     switch (typeof v) {
13524                     case "undefined":
13525                     case "function":
13526                     case "unknown":
13527                         break;
13528                     default:
13529                         if(b){
13530                             a.push(',');
13531                         }
13532                         a.push(this.encode(i), ":",
13533                                 v === null ? "null" : this.encode(v));
13534                         b = true;
13535                     }
13536                 }
13537             }
13538             a.push("}");
13539             return a.join("");
13540         }
13541     };
13542     
13543     /**
13544      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13545      * @param {String} json The JSON string
13546      * @return {Object} The resulting object
13547      */
13548     this.decode = function(json){
13549         
13550         return  /** eval:var:json */ eval("(" + json + ')');
13551     };
13552 })();
13553 /** 
13554  * Shorthand for {@link Roo.util.JSON#encode}
13555  * @member Roo encode 
13556  * @method */
13557 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13558 /** 
13559  * Shorthand for {@link Roo.util.JSON#decode}
13560  * @member Roo decode 
13561  * @method */
13562 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13563 /*
13564  * Based on:
13565  * Ext JS Library 1.1.1
13566  * Copyright(c) 2006-2007, Ext JS, LLC.
13567  *
13568  * Originally Released Under LGPL - original licence link has changed is not relivant.
13569  *
13570  * Fork - LGPL
13571  * <script type="text/javascript">
13572  */
13573  
13574 /**
13575  * @class Roo.util.Format
13576  * Reusable data formatting functions
13577  * @singleton
13578  */
13579 Roo.util.Format = function(){
13580     var trimRe = /^\s+|\s+$/g;
13581     return {
13582         /**
13583          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13584          * @param {String} value The string to truncate
13585          * @param {Number} length The maximum length to allow before truncating
13586          * @return {String} The converted text
13587          */
13588         ellipsis : function(value, len){
13589             if(value && value.length > len){
13590                 return value.substr(0, len-3)+"...";
13591             }
13592             return value;
13593         },
13594
13595         /**
13596          * Checks a reference and converts it to empty string if it is undefined
13597          * @param {Mixed} value Reference to check
13598          * @return {Mixed} Empty string if converted, otherwise the original value
13599          */
13600         undef : function(value){
13601             return typeof value != "undefined" ? value : "";
13602         },
13603
13604         /**
13605          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13606          * @param {String} value The string to encode
13607          * @return {String} The encoded text
13608          */
13609         htmlEncode : function(value){
13610             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13611         },
13612
13613         /**
13614          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13615          * @param {String} value The string to decode
13616          * @return {String} The decoded text
13617          */
13618         htmlDecode : function(value){
13619             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13620         },
13621
13622         /**
13623          * Trims any whitespace from either side of a string
13624          * @param {String} value The text to trim
13625          * @return {String} The trimmed text
13626          */
13627         trim : function(value){
13628             return String(value).replace(trimRe, "");
13629         },
13630
13631         /**
13632          * Returns a substring from within an original string
13633          * @param {String} value The original text
13634          * @param {Number} start The start index of the substring
13635          * @param {Number} length The length of the substring
13636          * @return {String} The substring
13637          */
13638         substr : function(value, start, length){
13639             return String(value).substr(start, length);
13640         },
13641
13642         /**
13643          * Converts a string to all lower case letters
13644          * @param {String} value The text to convert
13645          * @return {String} The converted text
13646          */
13647         lowercase : function(value){
13648             return String(value).toLowerCase();
13649         },
13650
13651         /**
13652          * Converts a string to all upper case letters
13653          * @param {String} value The text to convert
13654          * @return {String} The converted text
13655          */
13656         uppercase : function(value){
13657             return String(value).toUpperCase();
13658         },
13659
13660         /**
13661          * Converts the first character only of a string to upper case
13662          * @param {String} value The text to convert
13663          * @return {String} The converted text
13664          */
13665         capitalize : function(value){
13666             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13667         },
13668
13669         // private
13670         call : function(value, fn){
13671             if(arguments.length > 2){
13672                 var args = Array.prototype.slice.call(arguments, 2);
13673                 args.unshift(value);
13674                  
13675                 return /** eval:var:value */  eval(fn).apply(window, args);
13676             }else{
13677                 /** eval:var:value */
13678                 return /** eval:var:value */ eval(fn).call(window, value);
13679             }
13680         },
13681
13682        
13683         /**
13684          * safer version of Math.toFixed..??/
13685          * @param {Number/String} value The numeric value to format
13686          * @param {Number/String} value Decimal places 
13687          * @return {String} The formatted currency string
13688          */
13689         toFixed : function(v, n)
13690         {
13691             // why not use to fixed - precision is buggered???
13692             if (!n) {
13693                 return Math.round(v-0);
13694             }
13695             var fact = Math.pow(10,n+1);
13696             v = (Math.round((v-0)*fact))/fact;
13697             var z = (''+fact).substring(2);
13698             if (v == Math.floor(v)) {
13699                 return Math.floor(v) + '.' + z;
13700             }
13701             
13702             // now just padd decimals..
13703             var ps = String(v).split('.');
13704             var fd = (ps[1] + z);
13705             var r = fd.substring(0,n); 
13706             var rm = fd.substring(n); 
13707             if (rm < 5) {
13708                 return ps[0] + '.' + r;
13709             }
13710             r*=1; // turn it into a number;
13711             r++;
13712             if (String(r).length != n) {
13713                 ps[0]*=1;
13714                 ps[0]++;
13715                 r = String(r).substring(1); // chop the end off.
13716             }
13717             
13718             return ps[0] + '.' + r;
13719              
13720         },
13721         
13722         /**
13723          * Format a number as US currency
13724          * @param {Number/String} value The numeric value to format
13725          * @return {String} The formatted currency string
13726          */
13727         usMoney : function(v){
13728             return '$' + Roo.util.Format.number(v);
13729         },
13730         
13731         /**
13732          * Format a number
13733          * eventually this should probably emulate php's number_format
13734          * @param {Number/String} value The numeric value to format
13735          * @param {Number} decimals number of decimal places
13736          * @return {String} The formatted currency string
13737          */
13738         number : function(v,decimals)
13739         {
13740             // multiply and round.
13741             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13742             var mul = Math.pow(10, decimals);
13743             var zero = String(mul).substring(1);
13744             v = (Math.round((v-0)*mul))/mul;
13745             
13746             // if it's '0' number.. then
13747             
13748             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13749             v = String(v);
13750             var ps = v.split('.');
13751             var whole = ps[0];
13752             
13753             
13754             var r = /(\d+)(\d{3})/;
13755             // add comma's
13756             while (r.test(whole)) {
13757                 whole = whole.replace(r, '$1' + ',' + '$2');
13758             }
13759             
13760             
13761             var sub = ps[1] ?
13762                     // has decimals..
13763                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13764                     // does not have decimals
13765                     (decimals ? ('.' + zero) : '');
13766             
13767             
13768             return whole + sub ;
13769         },
13770         
13771         /**
13772          * Parse a value into a formatted date using the specified format pattern.
13773          * @param {Mixed} value The value to format
13774          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13775          * @return {String} The formatted date string
13776          */
13777         date : function(v, format){
13778             if(!v){
13779                 return "";
13780             }
13781             if(!(v instanceof Date)){
13782                 v = new Date(Date.parse(v));
13783             }
13784             return v.dateFormat(format || Roo.util.Format.defaults.date);
13785         },
13786
13787         /**
13788          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13789          * @param {String} format Any valid date format string
13790          * @return {Function} The date formatting function
13791          */
13792         dateRenderer : function(format){
13793             return function(v){
13794                 return Roo.util.Format.date(v, format);  
13795             };
13796         },
13797
13798         // private
13799         stripTagsRE : /<\/?[^>]+>/gi,
13800         
13801         /**
13802          * Strips all HTML tags
13803          * @param {Mixed} value The text from which to strip tags
13804          * @return {String} The stripped text
13805          */
13806         stripTags : function(v){
13807             return !v ? v : String(v).replace(this.stripTagsRE, "");
13808         }
13809     };
13810 }();
13811 Roo.util.Format.defaults = {
13812     date : 'd/M/Y'
13813 };/*
13814  * Based on:
13815  * Ext JS Library 1.1.1
13816  * Copyright(c) 2006-2007, Ext JS, LLC.
13817  *
13818  * Originally Released Under LGPL - original licence link has changed is not relivant.
13819  *
13820  * Fork - LGPL
13821  * <script type="text/javascript">
13822  */
13823
13824
13825  
13826
13827 /**
13828  * @class Roo.MasterTemplate
13829  * @extends Roo.Template
13830  * Provides a template that can have child templates. The syntax is:
13831 <pre><code>
13832 var t = new Roo.MasterTemplate(
13833         '&lt;select name="{name}"&gt;',
13834                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13835         '&lt;/select&gt;'
13836 );
13837 t.add('options', {value: 'foo', text: 'bar'});
13838 // or you can add multiple child elements in one shot
13839 t.addAll('options', [
13840     {value: 'foo', text: 'bar'},
13841     {value: 'foo2', text: 'bar2'},
13842     {value: 'foo3', text: 'bar3'}
13843 ]);
13844 // then append, applying the master template values
13845 t.append('my-form', {name: 'my-select'});
13846 </code></pre>
13847 * A name attribute for the child template is not required if you have only one child
13848 * template or you want to refer to them by index.
13849  */
13850 Roo.MasterTemplate = function(){
13851     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
13852     this.originalHtml = this.html;
13853     var st = {};
13854     var m, re = this.subTemplateRe;
13855     re.lastIndex = 0;
13856     var subIndex = 0;
13857     while(m = re.exec(this.html)){
13858         var name = m[1], content = m[2];
13859         st[subIndex] = {
13860             name: name,
13861             index: subIndex,
13862             buffer: [],
13863             tpl : new Roo.Template(content)
13864         };
13865         if(name){
13866             st[name] = st[subIndex];
13867         }
13868         st[subIndex].tpl.compile();
13869         st[subIndex].tpl.call = this.call.createDelegate(this);
13870         subIndex++;
13871     }
13872     this.subCount = subIndex;
13873     this.subs = st;
13874 };
13875 Roo.extend(Roo.MasterTemplate, Roo.Template, {
13876     /**
13877     * The regular expression used to match sub templates
13878     * @type RegExp
13879     * @property
13880     */
13881     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
13882
13883     /**
13884      * Applies the passed values to a child template.
13885      * @param {String/Number} name (optional) The name or index of the child template
13886      * @param {Array/Object} values The values to be applied to the template
13887      * @return {MasterTemplate} this
13888      */
13889      add : function(name, values){
13890         if(arguments.length == 1){
13891             values = arguments[0];
13892             name = 0;
13893         }
13894         var s = this.subs[name];
13895         s.buffer[s.buffer.length] = s.tpl.apply(values);
13896         return this;
13897     },
13898
13899     /**
13900      * Applies all the passed values to a child template.
13901      * @param {String/Number} name (optional) The name or index of the child template
13902      * @param {Array} values The values to be applied to the template, this should be an array of objects.
13903      * @param {Boolean} reset (optional) True to reset the template first
13904      * @return {MasterTemplate} this
13905      */
13906     fill : function(name, values, reset){
13907         var a = arguments;
13908         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
13909             values = a[0];
13910             name = 0;
13911             reset = a[1];
13912         }
13913         if(reset){
13914             this.reset();
13915         }
13916         for(var i = 0, len = values.length; i < len; i++){
13917             this.add(name, values[i]);
13918         }
13919         return this;
13920     },
13921
13922     /**
13923      * Resets the template for reuse
13924      * @return {MasterTemplate} this
13925      */
13926      reset : function(){
13927         var s = this.subs;
13928         for(var i = 0; i < this.subCount; i++){
13929             s[i].buffer = [];
13930         }
13931         return this;
13932     },
13933
13934     applyTemplate : function(values){
13935         var s = this.subs;
13936         var replaceIndex = -1;
13937         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
13938             return s[++replaceIndex].buffer.join("");
13939         });
13940         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
13941     },
13942
13943     apply : function(){
13944         return this.applyTemplate.apply(this, arguments);
13945     },
13946
13947     compile : function(){return this;}
13948 });
13949
13950 /**
13951  * Alias for fill().
13952  * @method
13953  */
13954 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
13955  /**
13956  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
13957  * var tpl = Roo.MasterTemplate.from('element-id');
13958  * @param {String/HTMLElement} el
13959  * @param {Object} config
13960  * @static
13961  */
13962 Roo.MasterTemplate.from = function(el, config){
13963     el = Roo.getDom(el);
13964     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
13965 };/*
13966  * Based on:
13967  * Ext JS Library 1.1.1
13968  * Copyright(c) 2006-2007, Ext JS, LLC.
13969  *
13970  * Originally Released Under LGPL - original licence link has changed is not relivant.
13971  *
13972  * Fork - LGPL
13973  * <script type="text/javascript">
13974  */
13975
13976  
13977 /**
13978  * @class Roo.util.CSS
13979  * Utility class for manipulating CSS rules
13980  * @singleton
13981  */
13982 Roo.util.CSS = function(){
13983         var rules = null;
13984         var doc = document;
13985
13986     var camelRe = /(-[a-z])/gi;
13987     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
13988
13989    return {
13990    /**
13991     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
13992     * tag and appended to the HEAD of the document.
13993     * @param {String|Object} cssText The text containing the css rules
13994     * @param {String} id An id to add to the stylesheet for later removal
13995     * @return {StyleSheet}
13996     */
13997     createStyleSheet : function(cssText, id){
13998         var ss;
13999         var head = doc.getElementsByTagName("head")[0];
14000         var nrules = doc.createElement("style");
14001         nrules.setAttribute("type", "text/css");
14002         if(id){
14003             nrules.setAttribute("id", id);
14004         }
14005         if (typeof(cssText) != 'string') {
14006             // support object maps..
14007             // not sure if this a good idea.. 
14008             // perhaps it should be merged with the general css handling
14009             // and handle js style props.
14010             var cssTextNew = [];
14011             for(var n in cssText) {
14012                 var citems = [];
14013                 for(var k in cssText[n]) {
14014                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14015                 }
14016                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14017                 
14018             }
14019             cssText = cssTextNew.join("\n");
14020             
14021         }
14022        
14023        
14024        if(Roo.isIE){
14025            head.appendChild(nrules);
14026            ss = nrules.styleSheet;
14027            ss.cssText = cssText;
14028        }else{
14029            try{
14030                 nrules.appendChild(doc.createTextNode(cssText));
14031            }catch(e){
14032                nrules.cssText = cssText; 
14033            }
14034            head.appendChild(nrules);
14035            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14036        }
14037        this.cacheStyleSheet(ss);
14038        return ss;
14039    },
14040
14041    /**
14042     * Removes a style or link tag by id
14043     * @param {String} id The id of the tag
14044     */
14045    removeStyleSheet : function(id){
14046        var existing = doc.getElementById(id);
14047        if(existing){
14048            existing.parentNode.removeChild(existing);
14049        }
14050    },
14051
14052    /**
14053     * Dynamically swaps an existing stylesheet reference for a new one
14054     * @param {String} id The id of an existing link tag to remove
14055     * @param {String} url The href of the new stylesheet to include
14056     */
14057    swapStyleSheet : function(id, url){
14058        this.removeStyleSheet(id);
14059        var ss = doc.createElement("link");
14060        ss.setAttribute("rel", "stylesheet");
14061        ss.setAttribute("type", "text/css");
14062        ss.setAttribute("id", id);
14063        ss.setAttribute("href", url);
14064        doc.getElementsByTagName("head")[0].appendChild(ss);
14065    },
14066    
14067    /**
14068     * Refresh the rule cache if you have dynamically added stylesheets
14069     * @return {Object} An object (hash) of rules indexed by selector
14070     */
14071    refreshCache : function(){
14072        return this.getRules(true);
14073    },
14074
14075    // private
14076    cacheStyleSheet : function(stylesheet){
14077        if(!rules){
14078            rules = {};
14079        }
14080        try{// try catch for cross domain access issue
14081            var ssRules = stylesheet.cssRules || stylesheet.rules;
14082            for(var j = ssRules.length-1; j >= 0; --j){
14083                rules[ssRules[j].selectorText] = ssRules[j];
14084            }
14085        }catch(e){}
14086    },
14087    
14088    /**
14089     * Gets all css rules for the document
14090     * @param {Boolean} refreshCache true to refresh the internal cache
14091     * @return {Object} An object (hash) of rules indexed by selector
14092     */
14093    getRules : function(refreshCache){
14094                 if(rules == null || refreshCache){
14095                         rules = {};
14096                         var ds = doc.styleSheets;
14097                         for(var i =0, len = ds.length; i < len; i++){
14098                             try{
14099                         this.cacheStyleSheet(ds[i]);
14100                     }catch(e){} 
14101                 }
14102                 }
14103                 return rules;
14104         },
14105         
14106         /**
14107     * Gets an an individual CSS rule by selector(s)
14108     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14109     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14110     * @return {CSSRule} The CSS rule or null if one is not found
14111     */
14112    getRule : function(selector, refreshCache){
14113                 var rs = this.getRules(refreshCache);
14114                 if(!(selector instanceof Array)){
14115                     return rs[selector];
14116                 }
14117                 for(var i = 0; i < selector.length; i++){
14118                         if(rs[selector[i]]){
14119                                 return rs[selector[i]];
14120                         }
14121                 }
14122                 return null;
14123         },
14124         
14125         
14126         /**
14127     * Updates a rule property
14128     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14129     * @param {String} property The css property
14130     * @param {String} value The new value for the property
14131     * @return {Boolean} true If a rule was found and updated
14132     */
14133    updateRule : function(selector, property, value){
14134                 if(!(selector instanceof Array)){
14135                         var rule = this.getRule(selector);
14136                         if(rule){
14137                                 rule.style[property.replace(camelRe, camelFn)] = value;
14138                                 return true;
14139                         }
14140                 }else{
14141                         for(var i = 0; i < selector.length; i++){
14142                                 if(this.updateRule(selector[i], property, value)){
14143                                         return true;
14144                                 }
14145                         }
14146                 }
14147                 return false;
14148         }
14149    };   
14150 }();/*
14151  * Based on:
14152  * Ext JS Library 1.1.1
14153  * Copyright(c) 2006-2007, Ext JS, LLC.
14154  *
14155  * Originally Released Under LGPL - original licence link has changed is not relivant.
14156  *
14157  * Fork - LGPL
14158  * <script type="text/javascript">
14159  */
14160
14161  
14162
14163 /**
14164  * @class Roo.util.ClickRepeater
14165  * @extends Roo.util.Observable
14166  * 
14167  * A wrapper class which can be applied to any element. Fires a "click" event while the
14168  * mouse is pressed. The interval between firings may be specified in the config but
14169  * defaults to 10 milliseconds.
14170  * 
14171  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14172  * 
14173  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14174  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14175  * Similar to an autorepeat key delay.
14176  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14177  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14178  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14179  *           "interval" and "delay" are ignored. "immediate" is honored.
14180  * @cfg {Boolean} preventDefault True to prevent the default click event
14181  * @cfg {Boolean} stopDefault True to stop the default click event
14182  * 
14183  * @history
14184  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14185  *     2007-02-02 jvs Renamed to ClickRepeater
14186  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14187  *
14188  *  @constructor
14189  * @param {String/HTMLElement/Element} el The element to listen on
14190  * @param {Object} config
14191  **/
14192 Roo.util.ClickRepeater = function(el, config)
14193 {
14194     this.el = Roo.get(el);
14195     this.el.unselectable();
14196
14197     Roo.apply(this, config);
14198
14199     this.addEvents({
14200     /**
14201      * @event mousedown
14202      * Fires when the mouse button is depressed.
14203      * @param {Roo.util.ClickRepeater} this
14204      */
14205         "mousedown" : true,
14206     /**
14207      * @event click
14208      * Fires on a specified interval during the time the element is pressed.
14209      * @param {Roo.util.ClickRepeater} this
14210      */
14211         "click" : true,
14212     /**
14213      * @event mouseup
14214      * Fires when the mouse key is released.
14215      * @param {Roo.util.ClickRepeater} this
14216      */
14217         "mouseup" : true
14218     });
14219
14220     this.el.on("mousedown", this.handleMouseDown, this);
14221     if(this.preventDefault || this.stopDefault){
14222         this.el.on("click", function(e){
14223             if(this.preventDefault){
14224                 e.preventDefault();
14225             }
14226             if(this.stopDefault){
14227                 e.stopEvent();
14228             }
14229         }, this);
14230     }
14231
14232     // allow inline handler
14233     if(this.handler){
14234         this.on("click", this.handler,  this.scope || this);
14235     }
14236
14237     Roo.util.ClickRepeater.superclass.constructor.call(this);
14238 };
14239
14240 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14241     interval : 20,
14242     delay: 250,
14243     preventDefault : true,
14244     stopDefault : false,
14245     timer : 0,
14246
14247     // private
14248     handleMouseDown : function(){
14249         clearTimeout(this.timer);
14250         this.el.blur();
14251         if(this.pressClass){
14252             this.el.addClass(this.pressClass);
14253         }
14254         this.mousedownTime = new Date();
14255
14256         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14257         this.el.on("mouseout", this.handleMouseOut, this);
14258
14259         this.fireEvent("mousedown", this);
14260         this.fireEvent("click", this);
14261         
14262         this.timer = this.click.defer(this.delay || this.interval, this);
14263     },
14264
14265     // private
14266     click : function(){
14267         this.fireEvent("click", this);
14268         this.timer = this.click.defer(this.getInterval(), this);
14269     },
14270
14271     // private
14272     getInterval: function(){
14273         if(!this.accelerate){
14274             return this.interval;
14275         }
14276         var pressTime = this.mousedownTime.getElapsed();
14277         if(pressTime < 500){
14278             return 400;
14279         }else if(pressTime < 1700){
14280             return 320;
14281         }else if(pressTime < 2600){
14282             return 250;
14283         }else if(pressTime < 3500){
14284             return 180;
14285         }else if(pressTime < 4400){
14286             return 140;
14287         }else if(pressTime < 5300){
14288             return 80;
14289         }else if(pressTime < 6200){
14290             return 50;
14291         }else{
14292             return 10;
14293         }
14294     },
14295
14296     // private
14297     handleMouseOut : function(){
14298         clearTimeout(this.timer);
14299         if(this.pressClass){
14300             this.el.removeClass(this.pressClass);
14301         }
14302         this.el.on("mouseover", this.handleMouseReturn, this);
14303     },
14304
14305     // private
14306     handleMouseReturn : function(){
14307         this.el.un("mouseover", this.handleMouseReturn);
14308         if(this.pressClass){
14309             this.el.addClass(this.pressClass);
14310         }
14311         this.click();
14312     },
14313
14314     // private
14315     handleMouseUp : function(){
14316         clearTimeout(this.timer);
14317         this.el.un("mouseover", this.handleMouseReturn);
14318         this.el.un("mouseout", this.handleMouseOut);
14319         Roo.get(document).un("mouseup", this.handleMouseUp);
14320         this.el.removeClass(this.pressClass);
14321         this.fireEvent("mouseup", this);
14322     }
14323 });/*
14324  * Based on:
14325  * Ext JS Library 1.1.1
14326  * Copyright(c) 2006-2007, Ext JS, LLC.
14327  *
14328  * Originally Released Under LGPL - original licence link has changed is not relivant.
14329  *
14330  * Fork - LGPL
14331  * <script type="text/javascript">
14332  */
14333
14334  
14335 /**
14336  * @class Roo.KeyNav
14337  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14338  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14339  * way to implement custom navigation schemes for any UI component.</p>
14340  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14341  * pageUp, pageDown, del, home, end.  Usage:</p>
14342  <pre><code>
14343 var nav = new Roo.KeyNav("my-element", {
14344     "left" : function(e){
14345         this.moveLeft(e.ctrlKey);
14346     },
14347     "right" : function(e){
14348         this.moveRight(e.ctrlKey);
14349     },
14350     "enter" : function(e){
14351         this.save();
14352     },
14353     scope : this
14354 });
14355 </code></pre>
14356  * @constructor
14357  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14358  * @param {Object} config The config
14359  */
14360 Roo.KeyNav = function(el, config){
14361     this.el = Roo.get(el);
14362     Roo.apply(this, config);
14363     if(!this.disabled){
14364         this.disabled = true;
14365         this.enable();
14366     }
14367 };
14368
14369 Roo.KeyNav.prototype = {
14370     /**
14371      * @cfg {Boolean} disabled
14372      * True to disable this KeyNav instance (defaults to false)
14373      */
14374     disabled : false,
14375     /**
14376      * @cfg {String} defaultEventAction
14377      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14378      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14379      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14380      */
14381     defaultEventAction: "stopEvent",
14382     /**
14383      * @cfg {Boolean} forceKeyDown
14384      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14385      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14386      * handle keydown instead of keypress.
14387      */
14388     forceKeyDown : false,
14389
14390     // private
14391     prepareEvent : function(e){
14392         var k = e.getKey();
14393         var h = this.keyToHandler[k];
14394         //if(h && this[h]){
14395         //    e.stopPropagation();
14396         //}
14397         if(Roo.isSafari && h && k >= 37 && k <= 40){
14398             e.stopEvent();
14399         }
14400     },
14401
14402     // private
14403     relay : function(e){
14404         var k = e.getKey();
14405         var h = this.keyToHandler[k];
14406         if(h && this[h]){
14407             if(this.doRelay(e, this[h], h) !== true){
14408                 e[this.defaultEventAction]();
14409             }
14410         }
14411     },
14412
14413     // private
14414     doRelay : function(e, h, hname){
14415         return h.call(this.scope || this, e);
14416     },
14417
14418     // possible handlers
14419     enter : false,
14420     left : false,
14421     right : false,
14422     up : false,
14423     down : false,
14424     tab : false,
14425     esc : false,
14426     pageUp : false,
14427     pageDown : false,
14428     del : false,
14429     home : false,
14430     end : false,
14431
14432     // quick lookup hash
14433     keyToHandler : {
14434         37 : "left",
14435         39 : "right",
14436         38 : "up",
14437         40 : "down",
14438         33 : "pageUp",
14439         34 : "pageDown",
14440         46 : "del",
14441         36 : "home",
14442         35 : "end",
14443         13 : "enter",
14444         27 : "esc",
14445         9  : "tab"
14446     },
14447
14448         /**
14449          * Enable this KeyNav
14450          */
14451         enable: function(){
14452                 if(this.disabled){
14453             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14454             // the EventObject will normalize Safari automatically
14455             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14456                 this.el.on("keydown", this.relay,  this);
14457             }else{
14458                 this.el.on("keydown", this.prepareEvent,  this);
14459                 this.el.on("keypress", this.relay,  this);
14460             }
14461                     this.disabled = false;
14462                 }
14463         },
14464
14465         /**
14466          * Disable this KeyNav
14467          */
14468         disable: function(){
14469                 if(!this.disabled){
14470                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14471                 this.el.un("keydown", this.relay);
14472             }else{
14473                 this.el.un("keydown", this.prepareEvent);
14474                 this.el.un("keypress", this.relay);
14475             }
14476                     this.disabled = true;
14477                 }
14478         }
14479 };/*
14480  * Based on:
14481  * Ext JS Library 1.1.1
14482  * Copyright(c) 2006-2007, Ext JS, LLC.
14483  *
14484  * Originally Released Under LGPL - original licence link has changed is not relivant.
14485  *
14486  * Fork - LGPL
14487  * <script type="text/javascript">
14488  */
14489
14490  
14491 /**
14492  * @class Roo.KeyMap
14493  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14494  * The constructor accepts the same config object as defined by {@link #addBinding}.
14495  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14496  * combination it will call the function with this signature (if the match is a multi-key
14497  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14498  * A KeyMap can also handle a string representation of keys.<br />
14499  * Usage:
14500  <pre><code>
14501 // map one key by key code
14502 var map = new Roo.KeyMap("my-element", {
14503     key: 13, // or Roo.EventObject.ENTER
14504     fn: myHandler,
14505     scope: myObject
14506 });
14507
14508 // map multiple keys to one action by string
14509 var map = new Roo.KeyMap("my-element", {
14510     key: "a\r\n\t",
14511     fn: myHandler,
14512     scope: myObject
14513 });
14514
14515 // map multiple keys to multiple actions by strings and array of codes
14516 var map = new Roo.KeyMap("my-element", [
14517     {
14518         key: [10,13],
14519         fn: function(){ alert("Return was pressed"); }
14520     }, {
14521         key: "abc",
14522         fn: function(){ alert('a, b or c was pressed'); }
14523     }, {
14524         key: "\t",
14525         ctrl:true,
14526         shift:true,
14527         fn: function(){ alert('Control + shift + tab was pressed.'); }
14528     }
14529 ]);
14530 </code></pre>
14531  * <b>Note: A KeyMap starts enabled</b>
14532  * @constructor
14533  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14534  * @param {Object} config The config (see {@link #addBinding})
14535  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14536  */
14537 Roo.KeyMap = function(el, config, eventName){
14538     this.el  = Roo.get(el);
14539     this.eventName = eventName || "keydown";
14540     this.bindings = [];
14541     if(config){
14542         this.addBinding(config);
14543     }
14544     this.enable();
14545 };
14546
14547 Roo.KeyMap.prototype = {
14548     /**
14549      * True to stop the event from bubbling and prevent the default browser action if the
14550      * key was handled by the KeyMap (defaults to false)
14551      * @type Boolean
14552      */
14553     stopEvent : false,
14554
14555     /**
14556      * Add a new binding to this KeyMap. The following config object properties are supported:
14557      * <pre>
14558 Property    Type             Description
14559 ----------  ---------------  ----------------------------------------------------------------------
14560 key         String/Array     A single keycode or an array of keycodes to handle
14561 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14562 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14563 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14564 fn          Function         The function to call when KeyMap finds the expected key combination
14565 scope       Object           The scope of the callback function
14566 </pre>
14567      *
14568      * Usage:
14569      * <pre><code>
14570 // Create a KeyMap
14571 var map = new Roo.KeyMap(document, {
14572     key: Roo.EventObject.ENTER,
14573     fn: handleKey,
14574     scope: this
14575 });
14576
14577 //Add a new binding to the existing KeyMap later
14578 map.addBinding({
14579     key: 'abc',
14580     shift: true,
14581     fn: handleKey,
14582     scope: this
14583 });
14584 </code></pre>
14585      * @param {Object/Array} config A single KeyMap config or an array of configs
14586      */
14587         addBinding : function(config){
14588         if(config instanceof Array){
14589             for(var i = 0, len = config.length; i < len; i++){
14590                 this.addBinding(config[i]);
14591             }
14592             return;
14593         }
14594         var keyCode = config.key,
14595             shift = config.shift, 
14596             ctrl = config.ctrl, 
14597             alt = config.alt,
14598             fn = config.fn,
14599             scope = config.scope;
14600         if(typeof keyCode == "string"){
14601             var ks = [];
14602             var keyString = keyCode.toUpperCase();
14603             for(var j = 0, len = keyString.length; j < len; j++){
14604                 ks.push(keyString.charCodeAt(j));
14605             }
14606             keyCode = ks;
14607         }
14608         var keyArray = keyCode instanceof Array;
14609         var handler = function(e){
14610             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14611                 var k = e.getKey();
14612                 if(keyArray){
14613                     for(var i = 0, len = keyCode.length; i < len; i++){
14614                         if(keyCode[i] == k){
14615                           if(this.stopEvent){
14616                               e.stopEvent();
14617                           }
14618                           fn.call(scope || window, k, e);
14619                           return;
14620                         }
14621                     }
14622                 }else{
14623                     if(k == keyCode){
14624                         if(this.stopEvent){
14625                            e.stopEvent();
14626                         }
14627                         fn.call(scope || window, k, e);
14628                     }
14629                 }
14630             }
14631         };
14632         this.bindings.push(handler);  
14633         },
14634
14635     /**
14636      * Shorthand for adding a single key listener
14637      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14638      * following options:
14639      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14640      * @param {Function} fn The function to call
14641      * @param {Object} scope (optional) The scope of the function
14642      */
14643     on : function(key, fn, scope){
14644         var keyCode, shift, ctrl, alt;
14645         if(typeof key == "object" && !(key instanceof Array)){
14646             keyCode = key.key;
14647             shift = key.shift;
14648             ctrl = key.ctrl;
14649             alt = key.alt;
14650         }else{
14651             keyCode = key;
14652         }
14653         this.addBinding({
14654             key: keyCode,
14655             shift: shift,
14656             ctrl: ctrl,
14657             alt: alt,
14658             fn: fn,
14659             scope: scope
14660         })
14661     },
14662
14663     // private
14664     handleKeyDown : function(e){
14665             if(this.enabled){ //just in case
14666             var b = this.bindings;
14667             for(var i = 0, len = b.length; i < len; i++){
14668                 b[i].call(this, e);
14669             }
14670             }
14671         },
14672         
14673         /**
14674          * Returns true if this KeyMap is enabled
14675          * @return {Boolean} 
14676          */
14677         isEnabled : function(){
14678             return this.enabled;  
14679         },
14680         
14681         /**
14682          * Enables this KeyMap
14683          */
14684         enable: function(){
14685                 if(!this.enabled){
14686                     this.el.on(this.eventName, this.handleKeyDown, this);
14687                     this.enabled = true;
14688                 }
14689         },
14690
14691         /**
14692          * Disable this KeyMap
14693          */
14694         disable: function(){
14695                 if(this.enabled){
14696                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14697                     this.enabled = false;
14698                 }
14699         }
14700 };/*
14701  * Based on:
14702  * Ext JS Library 1.1.1
14703  * Copyright(c) 2006-2007, Ext JS, LLC.
14704  *
14705  * Originally Released Under LGPL - original licence link has changed is not relivant.
14706  *
14707  * Fork - LGPL
14708  * <script type="text/javascript">
14709  */
14710
14711  
14712 /**
14713  * @class Roo.util.TextMetrics
14714  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14715  * wide, in pixels, a given block of text will be.
14716  * @singleton
14717  */
14718 Roo.util.TextMetrics = function(){
14719     var shared;
14720     return {
14721         /**
14722          * Measures the size of the specified text
14723          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14724          * that can affect the size of the rendered text
14725          * @param {String} text The text to measure
14726          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14727          * in order to accurately measure the text height
14728          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14729          */
14730         measure : function(el, text, fixedWidth){
14731             if(!shared){
14732                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14733             }
14734             shared.bind(el);
14735             shared.setFixedWidth(fixedWidth || 'auto');
14736             return shared.getSize(text);
14737         },
14738
14739         /**
14740          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14741          * the overhead of multiple calls to initialize the style properties on each measurement.
14742          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14743          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14744          * in order to accurately measure the text height
14745          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14746          */
14747         createInstance : function(el, fixedWidth){
14748             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14749         }
14750     };
14751 }();
14752
14753  
14754
14755 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14756     var ml = new Roo.Element(document.createElement('div'));
14757     document.body.appendChild(ml.dom);
14758     ml.position('absolute');
14759     ml.setLeftTop(-1000, -1000);
14760     ml.hide();
14761
14762     if(fixedWidth){
14763         ml.setWidth(fixedWidth);
14764     }
14765      
14766     var instance = {
14767         /**
14768          * Returns the size of the specified text based on the internal element's style and width properties
14769          * @memberOf Roo.util.TextMetrics.Instance#
14770          * @param {String} text The text to measure
14771          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14772          */
14773         getSize : function(text){
14774             ml.update(text);
14775             var s = ml.getSize();
14776             ml.update('');
14777             return s;
14778         },
14779
14780         /**
14781          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14782          * that can affect the size of the rendered text
14783          * @memberOf Roo.util.TextMetrics.Instance#
14784          * @param {String/HTMLElement} el The element, dom node or id
14785          */
14786         bind : function(el){
14787             ml.setStyle(
14788                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14789             );
14790         },
14791
14792         /**
14793          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14794          * to set a fixed width in order to accurately measure the text height.
14795          * @memberOf Roo.util.TextMetrics.Instance#
14796          * @param {Number} width The width to set on the element
14797          */
14798         setFixedWidth : function(width){
14799             ml.setWidth(width);
14800         },
14801
14802         /**
14803          * Returns the measured width of the specified text
14804          * @memberOf Roo.util.TextMetrics.Instance#
14805          * @param {String} text The text to measure
14806          * @return {Number} width The width in pixels
14807          */
14808         getWidth : function(text){
14809             ml.dom.style.width = 'auto';
14810             return this.getSize(text).width;
14811         },
14812
14813         /**
14814          * Returns the measured height of the specified text.  For multiline text, be sure to call
14815          * {@link #setFixedWidth} if necessary.
14816          * @memberOf Roo.util.TextMetrics.Instance#
14817          * @param {String} text The text to measure
14818          * @return {Number} height The height in pixels
14819          */
14820         getHeight : function(text){
14821             return this.getSize(text).height;
14822         }
14823     };
14824
14825     instance.bind(bindTo);
14826
14827     return instance;
14828 };
14829
14830 // backwards compat
14831 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14832  * Based on:
14833  * Ext JS Library 1.1.1
14834  * Copyright(c) 2006-2007, Ext JS, LLC.
14835  *
14836  * Originally Released Under LGPL - original licence link has changed is not relivant.
14837  *
14838  * Fork - LGPL
14839  * <script type="text/javascript">
14840  */
14841
14842 /**
14843  * @class Roo.state.Provider
14844  * Abstract base class for state provider implementations. This class provides methods
14845  * for encoding and decoding <b>typed</b> variables including dates and defines the 
14846  * Provider interface.
14847  */
14848 Roo.state.Provider = function(){
14849     /**
14850      * @event statechange
14851      * Fires when a state change occurs.
14852      * @param {Provider} this This state provider
14853      * @param {String} key The state key which was changed
14854      * @param {String} value The encoded value for the state
14855      */
14856     this.addEvents({
14857         "statechange": true
14858     });
14859     this.state = {};
14860     Roo.state.Provider.superclass.constructor.call(this);
14861 };
14862 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
14863     /**
14864      * Returns the current value for a key
14865      * @param {String} name The key name
14866      * @param {Mixed} defaultValue A default value to return if the key's value is not found
14867      * @return {Mixed} The state data
14868      */
14869     get : function(name, defaultValue){
14870         return typeof this.state[name] == "undefined" ?
14871             defaultValue : this.state[name];
14872     },
14873     
14874     /**
14875      * Clears a value from the state
14876      * @param {String} name The key name
14877      */
14878     clear : function(name){
14879         delete this.state[name];
14880         this.fireEvent("statechange", this, name, null);
14881     },
14882     
14883     /**
14884      * Sets the value for a key
14885      * @param {String} name The key name
14886      * @param {Mixed} value The value to set
14887      */
14888     set : function(name, value){
14889         this.state[name] = value;
14890         this.fireEvent("statechange", this, name, value);
14891     },
14892     
14893     /**
14894      * Decodes a string previously encoded with {@link #encodeValue}.
14895      * @param {String} value The value to decode
14896      * @return {Mixed} The decoded value
14897      */
14898     decodeValue : function(cookie){
14899         var re = /^(a|n|d|b|s|o)\:(.*)$/;
14900         var matches = re.exec(unescape(cookie));
14901         if(!matches || !matches[1]) {
14902             return; // non state cookie
14903         }
14904         var type = matches[1];
14905         var v = matches[2];
14906         switch(type){
14907             case "n":
14908                 return parseFloat(v);
14909             case "d":
14910                 return new Date(Date.parse(v));
14911             case "b":
14912                 return (v == "1");
14913             case "a":
14914                 var all = [];
14915                 var values = v.split("^");
14916                 for(var i = 0, len = values.length; i < len; i++){
14917                     all.push(this.decodeValue(values[i]));
14918                 }
14919                 return all;
14920            case "o":
14921                 var all = {};
14922                 var values = v.split("^");
14923                 for(var i = 0, len = values.length; i < len; i++){
14924                     var kv = values[i].split("=");
14925                     all[kv[0]] = this.decodeValue(kv[1]);
14926                 }
14927                 return all;
14928            default:
14929                 return v;
14930         }
14931     },
14932     
14933     /**
14934      * Encodes a value including type information.  Decode with {@link #decodeValue}.
14935      * @param {Mixed} value The value to encode
14936      * @return {String} The encoded value
14937      */
14938     encodeValue : function(v){
14939         var enc;
14940         if(typeof v == "number"){
14941             enc = "n:" + v;
14942         }else if(typeof v == "boolean"){
14943             enc = "b:" + (v ? "1" : "0");
14944         }else if(v instanceof Date){
14945             enc = "d:" + v.toGMTString();
14946         }else if(v instanceof Array){
14947             var flat = "";
14948             for(var i = 0, len = v.length; i < len; i++){
14949                 flat += this.encodeValue(v[i]);
14950                 if(i != len-1) {
14951                     flat += "^";
14952                 }
14953             }
14954             enc = "a:" + flat;
14955         }else if(typeof v == "object"){
14956             var flat = "";
14957             for(var key in v){
14958                 if(typeof v[key] != "function"){
14959                     flat += key + "=" + this.encodeValue(v[key]) + "^";
14960                 }
14961             }
14962             enc = "o:" + flat.substring(0, flat.length-1);
14963         }else{
14964             enc = "s:" + v;
14965         }
14966         return escape(enc);        
14967     }
14968 });
14969
14970 /*
14971  * Based on:
14972  * Ext JS Library 1.1.1
14973  * Copyright(c) 2006-2007, Ext JS, LLC.
14974  *
14975  * Originally Released Under LGPL - original licence link has changed is not relivant.
14976  *
14977  * Fork - LGPL
14978  * <script type="text/javascript">
14979  */
14980 /**
14981  * @class Roo.state.Manager
14982  * This is the global state manager. By default all components that are "state aware" check this class
14983  * for state information if you don't pass them a custom state provider. In order for this class
14984  * to be useful, it must be initialized with a provider when your application initializes.
14985  <pre><code>
14986 // in your initialization function
14987 init : function(){
14988    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
14989    ...
14990    // supposed you have a {@link Roo.BorderLayout}
14991    var layout = new Roo.BorderLayout(...);
14992    layout.restoreState();
14993    // or a {Roo.BasicDialog}
14994    var dialog = new Roo.BasicDialog(...);
14995    dialog.restoreState();
14996  </code></pre>
14997  * @singleton
14998  */
14999 Roo.state.Manager = function(){
15000     var provider = new Roo.state.Provider();
15001     
15002     return {
15003         /**
15004          * Configures the default state provider for your application
15005          * @param {Provider} stateProvider The state provider to set
15006          */
15007         setProvider : function(stateProvider){
15008             provider = stateProvider;
15009         },
15010         
15011         /**
15012          * Returns the current value for a key
15013          * @param {String} name The key name
15014          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15015          * @return {Mixed} The state data
15016          */
15017         get : function(key, defaultValue){
15018             return provider.get(key, defaultValue);
15019         },
15020         
15021         /**
15022          * Sets the value for a key
15023          * @param {String} name The key name
15024          * @param {Mixed} value The state data
15025          */
15026          set : function(key, value){
15027             provider.set(key, value);
15028         },
15029         
15030         /**
15031          * Clears a value from the state
15032          * @param {String} name The key name
15033          */
15034         clear : function(key){
15035             provider.clear(key);
15036         },
15037         
15038         /**
15039          * Gets the currently configured state provider
15040          * @return {Provider} The state provider
15041          */
15042         getProvider : function(){
15043             return provider;
15044         }
15045     };
15046 }();
15047 /*
15048  * Based on:
15049  * Ext JS Library 1.1.1
15050  * Copyright(c) 2006-2007, Ext JS, LLC.
15051  *
15052  * Originally Released Under LGPL - original licence link has changed is not relivant.
15053  *
15054  * Fork - LGPL
15055  * <script type="text/javascript">
15056  */
15057 /**
15058  * @class Roo.state.CookieProvider
15059  * @extends Roo.state.Provider
15060  * The default Provider implementation which saves state via cookies.
15061  * <br />Usage:
15062  <pre><code>
15063    var cp = new Roo.state.CookieProvider({
15064        path: "/cgi-bin/",
15065        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15066        domain: "roojs.com"
15067    })
15068    Roo.state.Manager.setProvider(cp);
15069  </code></pre>
15070  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15071  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15072  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15073  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15074  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15075  * domain the page is running on including the 'www' like 'www.roojs.com')
15076  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15077  * @constructor
15078  * Create a new CookieProvider
15079  * @param {Object} config The configuration object
15080  */
15081 Roo.state.CookieProvider = function(config){
15082     Roo.state.CookieProvider.superclass.constructor.call(this);
15083     this.path = "/";
15084     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15085     this.domain = null;
15086     this.secure = false;
15087     Roo.apply(this, config);
15088     this.state = this.readCookies();
15089 };
15090
15091 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15092     // private
15093     set : function(name, value){
15094         if(typeof value == "undefined" || value === null){
15095             this.clear(name);
15096             return;
15097         }
15098         this.setCookie(name, value);
15099         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15100     },
15101
15102     // private
15103     clear : function(name){
15104         this.clearCookie(name);
15105         Roo.state.CookieProvider.superclass.clear.call(this, name);
15106     },
15107
15108     // private
15109     readCookies : function(){
15110         var cookies = {};
15111         var c = document.cookie + ";";
15112         var re = /\s?(.*?)=(.*?);/g;
15113         var matches;
15114         while((matches = re.exec(c)) != null){
15115             var name = matches[1];
15116             var value = matches[2];
15117             if(name && name.substring(0,3) == "ys-"){
15118                 cookies[name.substr(3)] = this.decodeValue(value);
15119             }
15120         }
15121         return cookies;
15122     },
15123
15124     // private
15125     setCookie : function(name, value){
15126         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15127            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15128            ((this.path == null) ? "" : ("; path=" + this.path)) +
15129            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15130            ((this.secure == true) ? "; secure" : "");
15131     },
15132
15133     // private
15134     clearCookie : function(name){
15135         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15136            ((this.path == null) ? "" : ("; path=" + this.path)) +
15137            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15138            ((this.secure == true) ? "; secure" : "");
15139     }
15140 });/*
15141  * Based on:
15142  * Ext JS Library 1.1.1
15143  * Copyright(c) 2006-2007, Ext JS, LLC.
15144  *
15145  * Originally Released Under LGPL - original licence link has changed is not relivant.
15146  *
15147  * Fork - LGPL
15148  * <script type="text/javascript">
15149  */
15150  
15151
15152 /**
15153  * @class Roo.ComponentMgr
15154  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15155  * @singleton
15156  */
15157 Roo.ComponentMgr = function(){
15158     var all = new Roo.util.MixedCollection();
15159
15160     return {
15161         /**
15162          * Registers a component.
15163          * @param {Roo.Component} c The component
15164          */
15165         register : function(c){
15166             all.add(c);
15167         },
15168
15169         /**
15170          * Unregisters a component.
15171          * @param {Roo.Component} c The component
15172          */
15173         unregister : function(c){
15174             all.remove(c);
15175         },
15176
15177         /**
15178          * Returns a component by id
15179          * @param {String} id The component id
15180          */
15181         get : function(id){
15182             return all.get(id);
15183         },
15184
15185         /**
15186          * Registers a function that will be called when a specified component is added to ComponentMgr
15187          * @param {String} id The component id
15188          * @param {Funtction} fn The callback function
15189          * @param {Object} scope The scope of the callback
15190          */
15191         onAvailable : function(id, fn, scope){
15192             all.on("add", function(index, o){
15193                 if(o.id == id){
15194                     fn.call(scope || o, o);
15195                     all.un("add", fn, scope);
15196                 }
15197             });
15198         }
15199     };
15200 }();/*
15201  * Based on:
15202  * Ext JS Library 1.1.1
15203  * Copyright(c) 2006-2007, Ext JS, LLC.
15204  *
15205  * Originally Released Under LGPL - original licence link has changed is not relivant.
15206  *
15207  * Fork - LGPL
15208  * <script type="text/javascript">
15209  */
15210  
15211 /**
15212  * @class Roo.Component
15213  * @extends Roo.util.Observable
15214  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15215  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15216  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15217  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15218  * All visual components (widgets) that require rendering into a layout should subclass Component.
15219  * @constructor
15220  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15221  * 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
15222  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15223  */
15224 Roo.Component = function(config){
15225     config = config || {};
15226     if(config.tagName || config.dom || typeof config == "string"){ // element object
15227         config = {el: config, id: config.id || config};
15228     }
15229     this.initialConfig = config;
15230
15231     Roo.apply(this, config);
15232     this.addEvents({
15233         /**
15234          * @event disable
15235          * Fires after the component is disabled.
15236              * @param {Roo.Component} this
15237              */
15238         disable : true,
15239         /**
15240          * @event enable
15241          * Fires after the component is enabled.
15242              * @param {Roo.Component} this
15243              */
15244         enable : true,
15245         /**
15246          * @event beforeshow
15247          * Fires before the component is shown.  Return false to stop the show.
15248              * @param {Roo.Component} this
15249              */
15250         beforeshow : true,
15251         /**
15252          * @event show
15253          * Fires after the component is shown.
15254              * @param {Roo.Component} this
15255              */
15256         show : true,
15257         /**
15258          * @event beforehide
15259          * Fires before the component is hidden. Return false to stop the hide.
15260              * @param {Roo.Component} this
15261              */
15262         beforehide : true,
15263         /**
15264          * @event hide
15265          * Fires after the component is hidden.
15266              * @param {Roo.Component} this
15267              */
15268         hide : true,
15269         /**
15270          * @event beforerender
15271          * Fires before the component is rendered. Return false to stop the render.
15272              * @param {Roo.Component} this
15273              */
15274         beforerender : true,
15275         /**
15276          * @event render
15277          * Fires after the component is rendered.
15278              * @param {Roo.Component} this
15279              */
15280         render : true,
15281         /**
15282          * @event beforedestroy
15283          * Fires before the component is destroyed. Return false to stop the destroy.
15284              * @param {Roo.Component} this
15285              */
15286         beforedestroy : true,
15287         /**
15288          * @event destroy
15289          * Fires after the component is destroyed.
15290              * @param {Roo.Component} this
15291              */
15292         destroy : true
15293     });
15294     if(!this.id){
15295         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15296     }
15297     Roo.ComponentMgr.register(this);
15298     Roo.Component.superclass.constructor.call(this);
15299     this.initComponent();
15300     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15301         this.render(this.renderTo);
15302         delete this.renderTo;
15303     }
15304 };
15305
15306 /** @private */
15307 Roo.Component.AUTO_ID = 1000;
15308
15309 Roo.extend(Roo.Component, Roo.util.Observable, {
15310     /**
15311      * @scope Roo.Component.prototype
15312      * @type {Boolean}
15313      * true if this component is hidden. Read-only.
15314      */
15315     hidden : false,
15316     /**
15317      * @type {Boolean}
15318      * true if this component is disabled. Read-only.
15319      */
15320     disabled : false,
15321     /**
15322      * @type {Boolean}
15323      * true if this component has been rendered. Read-only.
15324      */
15325     rendered : false,
15326     
15327     /** @cfg {String} disableClass
15328      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15329      */
15330     disabledClass : "x-item-disabled",
15331         /** @cfg {Boolean} allowDomMove
15332          * Whether the component can move the Dom node when rendering (defaults to true).
15333          */
15334     allowDomMove : true,
15335     /** @cfg {String} hideMode (display|visibility)
15336      * How this component should hidden. Supported values are
15337      * "visibility" (css visibility), "offsets" (negative offset position) and
15338      * "display" (css display) - defaults to "display".
15339      */
15340     hideMode: 'display',
15341
15342     /** @private */
15343     ctype : "Roo.Component",
15344
15345     /**
15346      * @cfg {String} actionMode 
15347      * which property holds the element that used for  hide() / show() / disable() / enable()
15348      * default is 'el' 
15349      */
15350     actionMode : "el",
15351
15352     /** @private */
15353     getActionEl : function(){
15354         return this[this.actionMode];
15355     },
15356
15357     initComponent : Roo.emptyFn,
15358     /**
15359      * If this is a lazy rendering component, render it to its container element.
15360      * @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.
15361      */
15362     render : function(container, position){
15363         if(!this.rendered && this.fireEvent("beforerender", this) !== false){
15364             if(!container && this.el){
15365                 this.el = Roo.get(this.el);
15366                 container = this.el.dom.parentNode;
15367                 this.allowDomMove = false;
15368             }
15369             this.container = Roo.get(container);
15370             this.rendered = true;
15371             if(position !== undefined){
15372                 if(typeof position == 'number'){
15373                     position = this.container.dom.childNodes[position];
15374                 }else{
15375                     position = Roo.getDom(position);
15376                 }
15377             }
15378             this.onRender(this.container, position || null);
15379             if(this.cls){
15380                 this.el.addClass(this.cls);
15381                 delete this.cls;
15382             }
15383             if(this.style){
15384                 this.el.applyStyles(this.style);
15385                 delete this.style;
15386             }
15387             this.fireEvent("render", this);
15388             this.afterRender(this.container);
15389             if(this.hidden){
15390                 this.hide();
15391             }
15392             if(this.disabled){
15393                 this.disable();
15394             }
15395         }
15396         return this;
15397     },
15398
15399     /** @private */
15400     // default function is not really useful
15401     onRender : function(ct, position){
15402         if(this.el){
15403             this.el = Roo.get(this.el);
15404             if(this.allowDomMove !== false){
15405                 ct.dom.insertBefore(this.el.dom, position);
15406             }
15407         }
15408     },
15409
15410     /** @private */
15411     getAutoCreate : function(){
15412         var cfg = typeof this.autoCreate == "object" ?
15413                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15414         if(this.id && !cfg.id){
15415             cfg.id = this.id;
15416         }
15417         return cfg;
15418     },
15419
15420     /** @private */
15421     afterRender : Roo.emptyFn,
15422
15423     /**
15424      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15425      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15426      */
15427     destroy : function(){
15428         if(this.fireEvent("beforedestroy", this) !== false){
15429             this.purgeListeners();
15430             this.beforeDestroy();
15431             if(this.rendered){
15432                 this.el.removeAllListeners();
15433                 this.el.remove();
15434                 if(this.actionMode == "container"){
15435                     this.container.remove();
15436                 }
15437             }
15438             this.onDestroy();
15439             Roo.ComponentMgr.unregister(this);
15440             this.fireEvent("destroy", this);
15441         }
15442     },
15443
15444         /** @private */
15445     beforeDestroy : function(){
15446
15447     },
15448
15449         /** @private */
15450         onDestroy : function(){
15451
15452     },
15453
15454     /**
15455      * Returns the underlying {@link Roo.Element}.
15456      * @return {Roo.Element} The element
15457      */
15458     getEl : function(){
15459         return this.el;
15460     },
15461
15462     /**
15463      * Returns the id of this component.
15464      * @return {String}
15465      */
15466     getId : function(){
15467         return this.id;
15468     },
15469
15470     /**
15471      * Try to focus this component.
15472      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15473      * @return {Roo.Component} this
15474      */
15475     focus : function(selectText){
15476         if(this.rendered){
15477             this.el.focus();
15478             if(selectText === true){
15479                 this.el.dom.select();
15480             }
15481         }
15482         return this;
15483     },
15484
15485     /** @private */
15486     blur : function(){
15487         if(this.rendered){
15488             this.el.blur();
15489         }
15490         return this;
15491     },
15492
15493     /**
15494      * Disable this component.
15495      * @return {Roo.Component} this
15496      */
15497     disable : function(){
15498         if(this.rendered){
15499             this.onDisable();
15500         }
15501         this.disabled = true;
15502         this.fireEvent("disable", this);
15503         return this;
15504     },
15505
15506         // private
15507     onDisable : function(){
15508         this.getActionEl().addClass(this.disabledClass);
15509         this.el.dom.disabled = true;
15510     },
15511
15512     /**
15513      * Enable this component.
15514      * @return {Roo.Component} this
15515      */
15516     enable : function(){
15517         if(this.rendered){
15518             this.onEnable();
15519         }
15520         this.disabled = false;
15521         this.fireEvent("enable", this);
15522         return this;
15523     },
15524
15525         // private
15526     onEnable : function(){
15527         this.getActionEl().removeClass(this.disabledClass);
15528         this.el.dom.disabled = false;
15529     },
15530
15531     /**
15532      * Convenience function for setting disabled/enabled by boolean.
15533      * @param {Boolean} disabled
15534      */
15535     setDisabled : function(disabled){
15536         this[disabled ? "disable" : "enable"]();
15537     },
15538
15539     /**
15540      * Show this component.
15541      * @return {Roo.Component} this
15542      */
15543     show: function(){
15544         if(this.fireEvent("beforeshow", this) !== false){
15545             this.hidden = false;
15546             if(this.rendered){
15547                 this.onShow();
15548             }
15549             this.fireEvent("show", this);
15550         }
15551         return this;
15552     },
15553
15554     // private
15555     onShow : function(){
15556         var ae = this.getActionEl();
15557         if(this.hideMode == 'visibility'){
15558             ae.dom.style.visibility = "visible";
15559         }else if(this.hideMode == 'offsets'){
15560             ae.removeClass('x-hidden');
15561         }else{
15562             ae.dom.style.display = "";
15563         }
15564     },
15565
15566     /**
15567      * Hide this component.
15568      * @return {Roo.Component} this
15569      */
15570     hide: function(){
15571         if(this.fireEvent("beforehide", this) !== false){
15572             this.hidden = true;
15573             if(this.rendered){
15574                 this.onHide();
15575             }
15576             this.fireEvent("hide", this);
15577         }
15578         return this;
15579     },
15580
15581     // private
15582     onHide : function(){
15583         var ae = this.getActionEl();
15584         if(this.hideMode == 'visibility'){
15585             ae.dom.style.visibility = "hidden";
15586         }else if(this.hideMode == 'offsets'){
15587             ae.addClass('x-hidden');
15588         }else{
15589             ae.dom.style.display = "none";
15590         }
15591     },
15592
15593     /**
15594      * Convenience function to hide or show this component by boolean.
15595      * @param {Boolean} visible True to show, false to hide
15596      * @return {Roo.Component} this
15597      */
15598     setVisible: function(visible){
15599         if(visible) {
15600             this.show();
15601         }else{
15602             this.hide();
15603         }
15604         return this;
15605     },
15606
15607     /**
15608      * Returns true if this component is visible.
15609      */
15610     isVisible : function(){
15611         return this.getActionEl().isVisible();
15612     },
15613
15614     cloneConfig : function(overrides){
15615         overrides = overrides || {};
15616         var id = overrides.id || Roo.id();
15617         var cfg = Roo.applyIf(overrides, this.initialConfig);
15618         cfg.id = id; // prevent dup id
15619         return new this.constructor(cfg);
15620     }
15621 });/*
15622  * Based on:
15623  * Ext JS Library 1.1.1
15624  * Copyright(c) 2006-2007, Ext JS, LLC.
15625  *
15626  * Originally Released Under LGPL - original licence link has changed is not relivant.
15627  *
15628  * Fork - LGPL
15629  * <script type="text/javascript">
15630  */
15631
15632 /**
15633  * @class Roo.BoxComponent
15634  * @extends Roo.Component
15635  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15636  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15637  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15638  * layout containers.
15639  * @constructor
15640  * @param {Roo.Element/String/Object} config The configuration options.
15641  */
15642 Roo.BoxComponent = function(config){
15643     Roo.Component.call(this, config);
15644     this.addEvents({
15645         /**
15646          * @event resize
15647          * Fires after the component is resized.
15648              * @param {Roo.Component} this
15649              * @param {Number} adjWidth The box-adjusted width that was set
15650              * @param {Number} adjHeight The box-adjusted height that was set
15651              * @param {Number} rawWidth The width that was originally specified
15652              * @param {Number} rawHeight The height that was originally specified
15653              */
15654         resize : true,
15655         /**
15656          * @event move
15657          * Fires after the component is moved.
15658              * @param {Roo.Component} this
15659              * @param {Number} x The new x position
15660              * @param {Number} y The new y position
15661              */
15662         move : true
15663     });
15664 };
15665
15666 Roo.extend(Roo.BoxComponent, Roo.Component, {
15667     // private, set in afterRender to signify that the component has been rendered
15668     boxReady : false,
15669     // private, used to defer height settings to subclasses
15670     deferHeight: false,
15671     /** @cfg {Number} width
15672      * width (optional) size of component
15673      */
15674      /** @cfg {Number} height
15675      * height (optional) size of component
15676      */
15677      
15678     /**
15679      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15680      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15681      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15682      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15683      * @return {Roo.BoxComponent} this
15684      */
15685     setSize : function(w, h){
15686         // support for standard size objects
15687         if(typeof w == 'object'){
15688             h = w.height;
15689             w = w.width;
15690         }
15691         // not rendered
15692         if(!this.boxReady){
15693             this.width = w;
15694             this.height = h;
15695             return this;
15696         }
15697
15698         // prevent recalcs when not needed
15699         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15700             return this;
15701         }
15702         this.lastSize = {width: w, height: h};
15703
15704         var adj = this.adjustSize(w, h);
15705         var aw = adj.width, ah = adj.height;
15706         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15707             var rz = this.getResizeEl();
15708             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15709                 rz.setSize(aw, ah);
15710             }else if(!this.deferHeight && ah !== undefined){
15711                 rz.setHeight(ah);
15712             }else if(aw !== undefined){
15713                 rz.setWidth(aw);
15714             }
15715             this.onResize(aw, ah, w, h);
15716             this.fireEvent('resize', this, aw, ah, w, h);
15717         }
15718         return this;
15719     },
15720
15721     /**
15722      * Gets the current size of the component's underlying element.
15723      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15724      */
15725     getSize : function(){
15726         return this.el.getSize();
15727     },
15728
15729     /**
15730      * Gets the current XY position of the component's underlying element.
15731      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15732      * @return {Array} The XY position of the element (e.g., [100, 200])
15733      */
15734     getPosition : function(local){
15735         if(local === true){
15736             return [this.el.getLeft(true), this.el.getTop(true)];
15737         }
15738         return this.xy || this.el.getXY();
15739     },
15740
15741     /**
15742      * Gets the current box measurements of the component's underlying element.
15743      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15744      * @returns {Object} box An object in the format {x, y, width, height}
15745      */
15746     getBox : function(local){
15747         var s = this.el.getSize();
15748         if(local){
15749             s.x = this.el.getLeft(true);
15750             s.y = this.el.getTop(true);
15751         }else{
15752             var xy = this.xy || this.el.getXY();
15753             s.x = xy[0];
15754             s.y = xy[1];
15755         }
15756         return s;
15757     },
15758
15759     /**
15760      * Sets the current box measurements of the component's underlying element.
15761      * @param {Object} box An object in the format {x, y, width, height}
15762      * @returns {Roo.BoxComponent} this
15763      */
15764     updateBox : function(box){
15765         this.setSize(box.width, box.height);
15766         this.setPagePosition(box.x, box.y);
15767         return this;
15768     },
15769
15770     // protected
15771     getResizeEl : function(){
15772         return this.resizeEl || this.el;
15773     },
15774
15775     // protected
15776     getPositionEl : function(){
15777         return this.positionEl || this.el;
15778     },
15779
15780     /**
15781      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15782      * This method fires the move event.
15783      * @param {Number} left The new left
15784      * @param {Number} top The new top
15785      * @returns {Roo.BoxComponent} this
15786      */
15787     setPosition : function(x, y){
15788         this.x = x;
15789         this.y = y;
15790         if(!this.boxReady){
15791             return this;
15792         }
15793         var adj = this.adjustPosition(x, y);
15794         var ax = adj.x, ay = adj.y;
15795
15796         var el = this.getPositionEl();
15797         if(ax !== undefined || ay !== undefined){
15798             if(ax !== undefined && ay !== undefined){
15799                 el.setLeftTop(ax, ay);
15800             }else if(ax !== undefined){
15801                 el.setLeft(ax);
15802             }else if(ay !== undefined){
15803                 el.setTop(ay);
15804             }
15805             this.onPosition(ax, ay);
15806             this.fireEvent('move', this, ax, ay);
15807         }
15808         return this;
15809     },
15810
15811     /**
15812      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15813      * This method fires the move event.
15814      * @param {Number} x The new x position
15815      * @param {Number} y The new y position
15816      * @returns {Roo.BoxComponent} this
15817      */
15818     setPagePosition : function(x, y){
15819         this.pageX = x;
15820         this.pageY = y;
15821         if(!this.boxReady){
15822             return;
15823         }
15824         if(x === undefined || y === undefined){ // cannot translate undefined points
15825             return;
15826         }
15827         var p = this.el.translatePoints(x, y);
15828         this.setPosition(p.left, p.top);
15829         return this;
15830     },
15831
15832     // private
15833     onRender : function(ct, position){
15834         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
15835         if(this.resizeEl){
15836             this.resizeEl = Roo.get(this.resizeEl);
15837         }
15838         if(this.positionEl){
15839             this.positionEl = Roo.get(this.positionEl);
15840         }
15841     },
15842
15843     // private
15844     afterRender : function(){
15845         Roo.BoxComponent.superclass.afterRender.call(this);
15846         this.boxReady = true;
15847         this.setSize(this.width, this.height);
15848         if(this.x || this.y){
15849             this.setPosition(this.x, this.y);
15850         }
15851         if(this.pageX || this.pageY){
15852             this.setPagePosition(this.pageX, this.pageY);
15853         }
15854     },
15855
15856     /**
15857      * Force the component's size to recalculate based on the underlying element's current height and width.
15858      * @returns {Roo.BoxComponent} this
15859      */
15860     syncSize : function(){
15861         delete this.lastSize;
15862         this.setSize(this.el.getWidth(), this.el.getHeight());
15863         return this;
15864     },
15865
15866     /**
15867      * Called after the component is resized, this method is empty by default but can be implemented by any
15868      * subclass that needs to perform custom logic after a resize occurs.
15869      * @param {Number} adjWidth The box-adjusted width that was set
15870      * @param {Number} adjHeight The box-adjusted height that was set
15871      * @param {Number} rawWidth The width that was originally specified
15872      * @param {Number} rawHeight The height that was originally specified
15873      */
15874     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
15875
15876     },
15877
15878     /**
15879      * Called after the component is moved, this method is empty by default but can be implemented by any
15880      * subclass that needs to perform custom logic after a move occurs.
15881      * @param {Number} x The new x position
15882      * @param {Number} y The new y position
15883      */
15884     onPosition : function(x, y){
15885
15886     },
15887
15888     // private
15889     adjustSize : function(w, h){
15890         if(this.autoWidth){
15891             w = 'auto';
15892         }
15893         if(this.autoHeight){
15894             h = 'auto';
15895         }
15896         return {width : w, height: h};
15897     },
15898
15899     // private
15900     adjustPosition : function(x, y){
15901         return {x : x, y: y};
15902     }
15903 });/*
15904  * Original code for Roojs - LGPL
15905  * <script type="text/javascript">
15906  */
15907  
15908 /**
15909  * @class Roo.XComponent
15910  * A delayed Element creator...
15911  * Or a way to group chunks of interface together.
15912  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
15913  *  used in conjunction with XComponent.build() it will create an instance of each element,
15914  *  then call addxtype() to build the User interface.
15915  * 
15916  * Mypart.xyx = new Roo.XComponent({
15917
15918     parent : 'Mypart.xyz', // empty == document.element.!!
15919     order : '001',
15920     name : 'xxxx'
15921     region : 'xxxx'
15922     disabled : function() {} 
15923      
15924     tree : function() { // return an tree of xtype declared components
15925         var MODULE = this;
15926         return 
15927         {
15928             xtype : 'NestedLayoutPanel',
15929             // technicall
15930         }
15931      ]
15932  *})
15933  *
15934  *
15935  * It can be used to build a big heiracy, with parent etc.
15936  * or you can just use this to render a single compoent to a dom element
15937  * MYPART.render(Roo.Element | String(id) | dom_element )
15938  *
15939  *
15940  * Usage patterns.
15941  *
15942  * Classic Roo
15943  *
15944  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
15945  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
15946  *
15947  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
15948  *
15949  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
15950  * - if mulitple topModules exist, the last one is defined as the top module.
15951  *
15952  * Embeded Roo
15953  * 
15954  * When the top level or multiple modules are to embedded into a existing HTML page,
15955  * the parent element can container '#id' of the element where the module will be drawn.
15956  *
15957  * Bootstrap Roo
15958  *
15959  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
15960  * it relies more on a include mechanism, where sub modules are included into an outer page.
15961  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
15962  * 
15963  * Bootstrap Roo Included elements
15964  *
15965  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
15966  * hence confusing the component builder as it thinks there are multiple top level elements. 
15967  *
15968  * 
15969  * 
15970  * @extends Roo.util.Observable
15971  * @constructor
15972  * @param cfg {Object} configuration of component
15973  * 
15974  */
15975 Roo.XComponent = function(cfg) {
15976     Roo.apply(this, cfg);
15977     this.addEvents({ 
15978         /**
15979              * @event built
15980              * Fires when this the componnt is built
15981              * @param {Roo.XComponent} c the component
15982              */
15983         'built' : true
15984         
15985     });
15986     this.region = this.region || 'center'; // default..
15987     Roo.XComponent.register(this);
15988     this.modules = false;
15989     this.el = false; // where the layout goes..
15990     
15991     
15992 }
15993 Roo.extend(Roo.XComponent, Roo.util.Observable, {
15994     /**
15995      * @property el
15996      * The created element (with Roo.factory())
15997      * @type {Roo.Layout}
15998      */
15999     el  : false,
16000     
16001     /**
16002      * @property el
16003      * for BC  - use el in new code
16004      * @type {Roo.Layout}
16005      */
16006     panel : false,
16007     
16008     /**
16009      * @property layout
16010      * for BC  - use el in new code
16011      * @type {Roo.Layout}
16012      */
16013     layout : false,
16014     
16015      /**
16016      * @cfg {Function|boolean} disabled
16017      * If this module is disabled by some rule, return true from the funtion
16018      */
16019     disabled : false,
16020     
16021     /**
16022      * @cfg {String} parent 
16023      * Name of parent element which it get xtype added to..
16024      */
16025     parent: false,
16026     
16027     /**
16028      * @cfg {String} order
16029      * Used to set the order in which elements are created (usefull for multiple tabs)
16030      */
16031     
16032     order : false,
16033     /**
16034      * @cfg {String} name
16035      * String to display while loading.
16036      */
16037     name : false,
16038     /**
16039      * @cfg {String} region
16040      * Region to render component to (defaults to center)
16041      */
16042     region : 'center',
16043     
16044     /**
16045      * @cfg {Array} items
16046      * A single item array - the first element is the root of the tree..
16047      * It's done this way to stay compatible with the Xtype system...
16048      */
16049     items : false,
16050     
16051     /**
16052      * @property _tree
16053      * The method that retuns the tree of parts that make up this compoennt 
16054      * @type {function}
16055      */
16056     _tree  : false,
16057     
16058      /**
16059      * render
16060      * render element to dom or tree
16061      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16062      */
16063     
16064     render : function(el)
16065     {
16066         
16067         el = el || false;
16068         var hp = this.parent ? 1 : 0;
16069         Roo.debug &&  Roo.log(this);
16070         
16071         var tree = this._tree ? this._tree() : this.tree();
16072
16073         
16074         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16075             // if parent is a '#.....' string, then let's use that..
16076             var ename = this.parent.substr(1);
16077             this.parent = false;
16078             Roo.debug && Roo.log(ename);
16079             switch (ename) {
16080                 case 'bootstrap-body':
16081                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16082                         // this is the BorderLayout standard?
16083                        this.parent = { el : true };
16084                        break;
16085                     }
16086                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16087                         // need to insert stuff...
16088                         this.parent =  {
16089                              el : new Roo.bootstrap.layout.Border({
16090                                  el : document.body, 
16091                      
16092                                  center: {
16093                                     titlebar: false,
16094                                     autoScroll:false,
16095                                     closeOnTab: true,
16096                                     tabPosition: 'top',
16097                                       //resizeTabs: true,
16098                                     alwaysShowTabs: true,
16099                                     hideTabs: false
16100                                      //minTabWidth: 140
16101                                  }
16102                              })
16103                         
16104                          };
16105                          break;
16106                     }
16107                          
16108                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16109                         this.parent = { el :  new  Roo.bootstrap.Body() };
16110                         Roo.debug && Roo.log("setting el to doc body");
16111                          
16112                     } else {
16113                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16114                     }
16115                     break;
16116                 case 'bootstrap':
16117                     this.parent = { el : true};
16118                     // fall through
16119                 default:
16120                     el = Roo.get(ename);
16121                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16122                         this.parent = { el : true};
16123                     }
16124                     
16125                     break;
16126             }
16127                 
16128             
16129             if (!el && !this.parent) {
16130                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16131                 return;
16132             }
16133         }
16134         
16135         Roo.debug && Roo.log("EL:");
16136         Roo.debug && Roo.log(el);
16137         Roo.debug && Roo.log("this.parent.el:");
16138         Roo.debug && Roo.log(this.parent.el);
16139         
16140
16141         // altertive root elements ??? - we need a better way to indicate these.
16142         var is_alt = Roo.XComponent.is_alt ||
16143                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16144                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16145                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16146         
16147         
16148         
16149         if (!this.parent && is_alt) {
16150             //el = Roo.get(document.body);
16151             this.parent = { el : true };
16152         }
16153             
16154             
16155         
16156         if (!this.parent) {
16157             
16158             Roo.debug && Roo.log("no parent - creating one");
16159             
16160             el = el ? Roo.get(el) : false;      
16161             
16162             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16163                 
16164                 this.parent =  {
16165                     el : new Roo.bootstrap.layout.Border({
16166                         el: el || document.body,
16167                     
16168                         center: {
16169                             titlebar: false,
16170                             autoScroll:false,
16171                             closeOnTab: true,
16172                             tabPosition: 'top',
16173                              //resizeTabs: true,
16174                             alwaysShowTabs: false,
16175                             hideTabs: true,
16176                             minTabWidth: 140,
16177                             overflow: 'visible'
16178                          }
16179                      })
16180                 };
16181             } else {
16182             
16183                 // it's a top level one..
16184                 this.parent =  {
16185                     el : new Roo.BorderLayout(el || document.body, {
16186                         center: {
16187                             titlebar: false,
16188                             autoScroll:false,
16189                             closeOnTab: true,
16190                             tabPosition: 'top',
16191                              //resizeTabs: true,
16192                             alwaysShowTabs: el && hp? false :  true,
16193                             hideTabs: el || !hp ? true :  false,
16194                             minTabWidth: 140
16195                          }
16196                     })
16197                 };
16198             }
16199         }
16200         
16201         if (!this.parent.el) {
16202                 // probably an old style ctor, which has been disabled.
16203                 return;
16204
16205         }
16206                 // The 'tree' method is  '_tree now' 
16207             
16208         tree.region = tree.region || this.region;
16209         var is_body = false;
16210         if (this.parent.el === true) {
16211             // bootstrap... - body..
16212             if (el) {
16213                 tree.el = el;
16214             }
16215             this.parent.el = Roo.factory(tree);
16216             is_body = true;
16217         }
16218         
16219         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16220         this.fireEvent('built', this);
16221         
16222         this.panel = this.el;
16223         this.layout = this.panel.layout;
16224         this.parentLayout = this.parent.layout  || false;  
16225          
16226     }
16227     
16228 });
16229
16230 Roo.apply(Roo.XComponent, {
16231     /**
16232      * @property  hideProgress
16233      * true to disable the building progress bar.. usefull on single page renders.
16234      * @type Boolean
16235      */
16236     hideProgress : false,
16237     /**
16238      * @property  buildCompleted
16239      * True when the builder has completed building the interface.
16240      * @type Boolean
16241      */
16242     buildCompleted : false,
16243      
16244     /**
16245      * @property  topModule
16246      * the upper most module - uses document.element as it's constructor.
16247      * @type Object
16248      */
16249      
16250     topModule  : false,
16251       
16252     /**
16253      * @property  modules
16254      * array of modules to be created by registration system.
16255      * @type {Array} of Roo.XComponent
16256      */
16257     
16258     modules : [],
16259     /**
16260      * @property  elmodules
16261      * array of modules to be created by which use #ID 
16262      * @type {Array} of Roo.XComponent
16263      */
16264      
16265     elmodules : [],
16266
16267      /**
16268      * @property  is_alt
16269      * Is an alternative Root - normally used by bootstrap or other systems,
16270      *    where the top element in the tree can wrap 'body' 
16271      * @type {boolean}  (default false)
16272      */
16273      
16274     is_alt : false,
16275     /**
16276      * @property  build_from_html
16277      * Build elements from html - used by bootstrap HTML stuff 
16278      *    - this is cleared after build is completed
16279      * @type {boolean}    (default false)
16280      */
16281      
16282     build_from_html : false,
16283     /**
16284      * Register components to be built later.
16285      *
16286      * This solves the following issues
16287      * - Building is not done on page load, but after an authentication process has occured.
16288      * - Interface elements are registered on page load
16289      * - Parent Interface elements may not be loaded before child, so this handles that..
16290      * 
16291      *
16292      * example:
16293      * 
16294      * MyApp.register({
16295           order : '000001',
16296           module : 'Pman.Tab.projectMgr',
16297           region : 'center',
16298           parent : 'Pman.layout',
16299           disabled : false,  // or use a function..
16300         })
16301      
16302      * * @param {Object} details about module
16303      */
16304     register : function(obj) {
16305                 
16306         Roo.XComponent.event.fireEvent('register', obj);
16307         switch(typeof(obj.disabled) ) {
16308                 
16309             case 'undefined':
16310                 break;
16311             
16312             case 'function':
16313                 if ( obj.disabled() ) {
16314                         return;
16315                 }
16316                 break;
16317             
16318             default:
16319                 if (obj.disabled) {
16320                         return;
16321                 }
16322                 break;
16323         }
16324                 
16325         this.modules.push(obj);
16326          
16327     },
16328     /**
16329      * convert a string to an object..
16330      * eg. 'AAA.BBB' -> finds AAA.BBB
16331
16332      */
16333     
16334     toObject : function(str)
16335     {
16336         if (!str || typeof(str) == 'object') {
16337             return str;
16338         }
16339         if (str.substring(0,1) == '#') {
16340             return str;
16341         }
16342
16343         var ar = str.split('.');
16344         var rt, o;
16345         rt = ar.shift();
16346             /** eval:var:o */
16347         try {
16348             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16349         } catch (e) {
16350             throw "Module not found : " + str;
16351         }
16352         
16353         if (o === false) {
16354             throw "Module not found : " + str;
16355         }
16356         Roo.each(ar, function(e) {
16357             if (typeof(o[e]) == 'undefined') {
16358                 throw "Module not found : " + str;
16359             }
16360             o = o[e];
16361         });
16362         
16363         return o;
16364         
16365     },
16366     
16367     
16368     /**
16369      * move modules into their correct place in the tree..
16370      * 
16371      */
16372     preBuild : function ()
16373     {
16374         var _t = this;
16375         Roo.each(this.modules , function (obj)
16376         {
16377             Roo.XComponent.event.fireEvent('beforebuild', obj);
16378             
16379             var opar = obj.parent;
16380             try { 
16381                 obj.parent = this.toObject(opar);
16382             } catch(e) {
16383                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
16384                 return;
16385             }
16386             
16387             if (!obj.parent) {
16388                 Roo.debug && Roo.log("GOT top level module");
16389                 Roo.debug && Roo.log(obj);
16390                 obj.modules = new Roo.util.MixedCollection(false, 
16391                     function(o) { return o.order + '' }
16392                 );
16393                 this.topModule = obj;
16394                 return;
16395             }
16396                         // parent is a string (usually a dom element name..)
16397             if (typeof(obj.parent) == 'string') {
16398                 this.elmodules.push(obj);
16399                 return;
16400             }
16401             if (obj.parent.constructor != Roo.XComponent) {
16402                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
16403             }
16404             if (!obj.parent.modules) {
16405                 obj.parent.modules = new Roo.util.MixedCollection(false, 
16406                     function(o) { return o.order + '' }
16407                 );
16408             }
16409             if (obj.parent.disabled) {
16410                 obj.disabled = true;
16411             }
16412             obj.parent.modules.add(obj);
16413         }, this);
16414     },
16415     
16416      /**
16417      * make a list of modules to build.
16418      * @return {Array} list of modules. 
16419      */ 
16420     
16421     buildOrder : function()
16422     {
16423         var _this = this;
16424         var cmp = function(a,b) {   
16425             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
16426         };
16427         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
16428             throw "No top level modules to build";
16429         }
16430         
16431         // make a flat list in order of modules to build.
16432         var mods = this.topModule ? [ this.topModule ] : [];
16433                 
16434         
16435         // elmodules (is a list of DOM based modules )
16436         Roo.each(this.elmodules, function(e) {
16437             mods.push(e);
16438             if (!this.topModule &&
16439                 typeof(e.parent) == 'string' &&
16440                 e.parent.substring(0,1) == '#' &&
16441                 Roo.get(e.parent.substr(1))
16442                ) {
16443                 
16444                 _this.topModule = e;
16445             }
16446             
16447         });
16448
16449         
16450         // add modules to their parents..
16451         var addMod = function(m) {
16452             Roo.debug && Roo.log("build Order: add: " + m.name);
16453                 
16454             mods.push(m);
16455             if (m.modules && !m.disabled) {
16456                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
16457                 m.modules.keySort('ASC',  cmp );
16458                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
16459     
16460                 m.modules.each(addMod);
16461             } else {
16462                 Roo.debug && Roo.log("build Order: no child modules");
16463             }
16464             // not sure if this is used any more..
16465             if (m.finalize) {
16466                 m.finalize.name = m.name + " (clean up) ";
16467                 mods.push(m.finalize);
16468             }
16469             
16470         }
16471         if (this.topModule && this.topModule.modules) { 
16472             this.topModule.modules.keySort('ASC',  cmp );
16473             this.topModule.modules.each(addMod);
16474         } 
16475         return mods;
16476     },
16477     
16478      /**
16479      * Build the registered modules.
16480      * @param {Object} parent element.
16481      * @param {Function} optional method to call after module has been added.
16482      * 
16483      */ 
16484    
16485     build : function(opts) 
16486     {
16487         
16488         if (typeof(opts) != 'undefined') {
16489             Roo.apply(this,opts);
16490         }
16491         
16492         this.preBuild();
16493         var mods = this.buildOrder();
16494       
16495         //this.allmods = mods;
16496         //Roo.debug && Roo.log(mods);
16497         //return;
16498         if (!mods.length) { // should not happen
16499             throw "NO modules!!!";
16500         }
16501         
16502         
16503         var msg = "Building Interface...";
16504         // flash it up as modal - so we store the mask!?
16505         if (!this.hideProgress && Roo.MessageBox) {
16506             Roo.MessageBox.show({ title: 'loading' });
16507             Roo.MessageBox.show({
16508                title: "Please wait...",
16509                msg: msg,
16510                width:450,
16511                progress:true,
16512                closable:false,
16513                modal: false
16514               
16515             });
16516         }
16517         var total = mods.length;
16518         
16519         var _this = this;
16520         var progressRun = function() {
16521             if (!mods.length) {
16522                 Roo.debug && Roo.log('hide?');
16523                 if (!this.hideProgress && Roo.MessageBox) {
16524                     Roo.MessageBox.hide();
16525                 }
16526                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
16527                 
16528                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
16529                 
16530                 // THE END...
16531                 return false;   
16532             }
16533             
16534             var m = mods.shift();
16535             
16536             
16537             Roo.debug && Roo.log(m);
16538             // not sure if this is supported any more.. - modules that are are just function
16539             if (typeof(m) == 'function') { 
16540                 m.call(this);
16541                 return progressRun.defer(10, _this);
16542             } 
16543             
16544             
16545             msg = "Building Interface " + (total  - mods.length) + 
16546                     " of " + total + 
16547                     (m.name ? (' - ' + m.name) : '');
16548                         Roo.debug && Roo.log(msg);
16549             if (!_this.hideProgress &&  Roo.MessageBox) { 
16550                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
16551             }
16552             
16553          
16554             // is the module disabled?
16555             var disabled = (typeof(m.disabled) == 'function') ?
16556                 m.disabled.call(m.module.disabled) : m.disabled;    
16557             
16558             
16559             if (disabled) {
16560                 return progressRun(); // we do not update the display!
16561             }
16562             
16563             // now build 
16564             
16565                         
16566                         
16567             m.render();
16568             // it's 10 on top level, and 1 on others??? why...
16569             return progressRun.defer(10, _this);
16570              
16571         }
16572         progressRun.defer(1, _this);
16573      
16574         
16575         
16576     },
16577         
16578         
16579         /**
16580          * Event Object.
16581          *
16582          *
16583          */
16584         event: false, 
16585     /**
16586          * wrapper for event.on - aliased later..  
16587          * Typically use to register a event handler for register:
16588          *
16589          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
16590          *
16591          */
16592     on : false
16593    
16594     
16595     
16596 });
16597
16598 Roo.XComponent.event = new Roo.util.Observable({
16599                 events : { 
16600                         /**
16601                          * @event register
16602                          * Fires when an Component is registered,
16603                          * set the disable property on the Component to stop registration.
16604                          * @param {Roo.XComponent} c the component being registerd.
16605                          * 
16606                          */
16607                         'register' : true,
16608             /**
16609                          * @event beforebuild
16610                          * Fires before each Component is built
16611                          * can be used to apply permissions.
16612                          * @param {Roo.XComponent} c the component being registerd.
16613                          * 
16614                          */
16615                         'beforebuild' : true,
16616                         /**
16617                          * @event buildcomplete
16618                          * Fires on the top level element when all elements have been built
16619                          * @param {Roo.XComponent} the top level component.
16620                          */
16621                         'buildcomplete' : true
16622                         
16623                 }
16624 });
16625
16626 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
16627  //
16628  /**
16629  * marked - a markdown parser
16630  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
16631  * https://github.com/chjj/marked
16632  */
16633
16634
16635 /**
16636  *
16637  * Roo.Markdown - is a very crude wrapper around marked..
16638  *
16639  * usage:
16640  * 
16641  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
16642  * 
16643  * Note: move the sample code to the bottom of this
16644  * file before uncommenting it.
16645  *
16646  */
16647
16648 Roo.Markdown = {};
16649 Roo.Markdown.toHtml = function(text) {
16650     
16651     var c = new Roo.Markdown.marked.setOptions({
16652             renderer: new Roo.Markdown.marked.Renderer(),
16653             gfm: true,
16654             tables: true,
16655             breaks: false,
16656             pedantic: false,
16657             sanitize: false,
16658             smartLists: true,
16659             smartypants: false
16660           });
16661     // A FEW HACKS!!?
16662     
16663     text = text.replace(/\\\n/g,' ');
16664     return Roo.Markdown.marked(text);
16665 };
16666 //
16667 // converter
16668 //
16669 // Wraps all "globals" so that the only thing
16670 // exposed is makeHtml().
16671 //
16672 (function() {
16673     
16674     /**
16675      * Block-Level Grammar
16676      */
16677     
16678     var block = {
16679       newline: /^\n+/,
16680       code: /^( {4}[^\n]+\n*)+/,
16681       fences: noop,
16682       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
16683       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
16684       nptable: noop,
16685       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
16686       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
16687       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
16688       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
16689       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
16690       table: noop,
16691       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
16692       text: /^[^\n]+/
16693     };
16694     
16695     block.bullet = /(?:[*+-]|\d+\.)/;
16696     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
16697     block.item = replace(block.item, 'gm')
16698       (/bull/g, block.bullet)
16699       ();
16700     
16701     block.list = replace(block.list)
16702       (/bull/g, block.bullet)
16703       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
16704       ('def', '\\n+(?=' + block.def.source + ')')
16705       ();
16706     
16707     block.blockquote = replace(block.blockquote)
16708       ('def', block.def)
16709       ();
16710     
16711     block._tag = '(?!(?:'
16712       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
16713       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
16714       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
16715     
16716     block.html = replace(block.html)
16717       ('comment', /<!--[\s\S]*?-->/)
16718       ('closed', /<(tag)[\s\S]+?<\/\1>/)
16719       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
16720       (/tag/g, block._tag)
16721       ();
16722     
16723     block.paragraph = replace(block.paragraph)
16724       ('hr', block.hr)
16725       ('heading', block.heading)
16726       ('lheading', block.lheading)
16727       ('blockquote', block.blockquote)
16728       ('tag', '<' + block._tag)
16729       ('def', block.def)
16730       ();
16731     
16732     /**
16733      * Normal Block Grammar
16734      */
16735     
16736     block.normal = merge({}, block);
16737     
16738     /**
16739      * GFM Block Grammar
16740      */
16741     
16742     block.gfm = merge({}, block.normal, {
16743       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
16744       paragraph: /^/,
16745       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
16746     });
16747     
16748     block.gfm.paragraph = replace(block.paragraph)
16749       ('(?!', '(?!'
16750         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
16751         + block.list.source.replace('\\1', '\\3') + '|')
16752       ();
16753     
16754     /**
16755      * GFM + Tables Block Grammar
16756      */
16757     
16758     block.tables = merge({}, block.gfm, {
16759       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
16760       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
16761     });
16762     
16763     /**
16764      * Block Lexer
16765      */
16766     
16767     function Lexer(options) {
16768       this.tokens = [];
16769       this.tokens.links = {};
16770       this.options = options || marked.defaults;
16771       this.rules = block.normal;
16772     
16773       if (this.options.gfm) {
16774         if (this.options.tables) {
16775           this.rules = block.tables;
16776         } else {
16777           this.rules = block.gfm;
16778         }
16779       }
16780     }
16781     
16782     /**
16783      * Expose Block Rules
16784      */
16785     
16786     Lexer.rules = block;
16787     
16788     /**
16789      * Static Lex Method
16790      */
16791     
16792     Lexer.lex = function(src, options) {
16793       var lexer = new Lexer(options);
16794       return lexer.lex(src);
16795     };
16796     
16797     /**
16798      * Preprocessing
16799      */
16800     
16801     Lexer.prototype.lex = function(src) {
16802       src = src
16803         .replace(/\r\n|\r/g, '\n')
16804         .replace(/\t/g, '    ')
16805         .replace(/\u00a0/g, ' ')
16806         .replace(/\u2424/g, '\n');
16807     
16808       return this.token(src, true);
16809     };
16810     
16811     /**
16812      * Lexing
16813      */
16814     
16815     Lexer.prototype.token = function(src, top, bq) {
16816       var src = src.replace(/^ +$/gm, '')
16817         , next
16818         , loose
16819         , cap
16820         , bull
16821         , b
16822         , item
16823         , space
16824         , i
16825         , l;
16826     
16827       while (src) {
16828         // newline
16829         if (cap = this.rules.newline.exec(src)) {
16830           src = src.substring(cap[0].length);
16831           if (cap[0].length > 1) {
16832             this.tokens.push({
16833               type: 'space'
16834             });
16835           }
16836         }
16837     
16838         // code
16839         if (cap = this.rules.code.exec(src)) {
16840           src = src.substring(cap[0].length);
16841           cap = cap[0].replace(/^ {4}/gm, '');
16842           this.tokens.push({
16843             type: 'code',
16844             text: !this.options.pedantic
16845               ? cap.replace(/\n+$/, '')
16846               : cap
16847           });
16848           continue;
16849         }
16850     
16851         // fences (gfm)
16852         if (cap = this.rules.fences.exec(src)) {
16853           src = src.substring(cap[0].length);
16854           this.tokens.push({
16855             type: 'code',
16856             lang: cap[2],
16857             text: cap[3] || ''
16858           });
16859           continue;
16860         }
16861     
16862         // heading
16863         if (cap = this.rules.heading.exec(src)) {
16864           src = src.substring(cap[0].length);
16865           this.tokens.push({
16866             type: 'heading',
16867             depth: cap[1].length,
16868             text: cap[2]
16869           });
16870           continue;
16871         }
16872     
16873         // table no leading pipe (gfm)
16874         if (top && (cap = this.rules.nptable.exec(src))) {
16875           src = src.substring(cap[0].length);
16876     
16877           item = {
16878             type: 'table',
16879             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
16880             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
16881             cells: cap[3].replace(/\n$/, '').split('\n')
16882           };
16883     
16884           for (i = 0; i < item.align.length; i++) {
16885             if (/^ *-+: *$/.test(item.align[i])) {
16886               item.align[i] = 'right';
16887             } else if (/^ *:-+: *$/.test(item.align[i])) {
16888               item.align[i] = 'center';
16889             } else if (/^ *:-+ *$/.test(item.align[i])) {
16890               item.align[i] = 'left';
16891             } else {
16892               item.align[i] = null;
16893             }
16894           }
16895     
16896           for (i = 0; i < item.cells.length; i++) {
16897             item.cells[i] = item.cells[i].split(/ *\| */);
16898           }
16899     
16900           this.tokens.push(item);
16901     
16902           continue;
16903         }
16904     
16905         // lheading
16906         if (cap = this.rules.lheading.exec(src)) {
16907           src = src.substring(cap[0].length);
16908           this.tokens.push({
16909             type: 'heading',
16910             depth: cap[2] === '=' ? 1 : 2,
16911             text: cap[1]
16912           });
16913           continue;
16914         }
16915     
16916         // hr
16917         if (cap = this.rules.hr.exec(src)) {
16918           src = src.substring(cap[0].length);
16919           this.tokens.push({
16920             type: 'hr'
16921           });
16922           continue;
16923         }
16924     
16925         // blockquote
16926         if (cap = this.rules.blockquote.exec(src)) {
16927           src = src.substring(cap[0].length);
16928     
16929           this.tokens.push({
16930             type: 'blockquote_start'
16931           });
16932     
16933           cap = cap[0].replace(/^ *> ?/gm, '');
16934     
16935           // Pass `top` to keep the current
16936           // "toplevel" state. This is exactly
16937           // how markdown.pl works.
16938           this.token(cap, top, true);
16939     
16940           this.tokens.push({
16941             type: 'blockquote_end'
16942           });
16943     
16944           continue;
16945         }
16946     
16947         // list
16948         if (cap = this.rules.list.exec(src)) {
16949           src = src.substring(cap[0].length);
16950           bull = cap[2];
16951     
16952           this.tokens.push({
16953             type: 'list_start',
16954             ordered: bull.length > 1
16955           });
16956     
16957           // Get each top-level item.
16958           cap = cap[0].match(this.rules.item);
16959     
16960           next = false;
16961           l = cap.length;
16962           i = 0;
16963     
16964           for (; i < l; i++) {
16965             item = cap[i];
16966     
16967             // Remove the list item's bullet
16968             // so it is seen as the next token.
16969             space = item.length;
16970             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
16971     
16972             // Outdent whatever the
16973             // list item contains. Hacky.
16974             if (~item.indexOf('\n ')) {
16975               space -= item.length;
16976               item = !this.options.pedantic
16977                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
16978                 : item.replace(/^ {1,4}/gm, '');
16979             }
16980     
16981             // Determine whether the next list item belongs here.
16982             // Backpedal if it does not belong in this list.
16983             if (this.options.smartLists && i !== l - 1) {
16984               b = block.bullet.exec(cap[i + 1])[0];
16985               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
16986                 src = cap.slice(i + 1).join('\n') + src;
16987                 i = l - 1;
16988               }
16989             }
16990     
16991             // Determine whether item is loose or not.
16992             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
16993             // for discount behavior.
16994             loose = next || /\n\n(?!\s*$)/.test(item);
16995             if (i !== l - 1) {
16996               next = item.charAt(item.length - 1) === '\n';
16997               if (!loose) { loose = next; }
16998             }
16999     
17000             this.tokens.push({
17001               type: loose
17002                 ? 'loose_item_start'
17003                 : 'list_item_start'
17004             });
17005     
17006             // Recurse.
17007             this.token(item, false, bq);
17008     
17009             this.tokens.push({
17010               type: 'list_item_end'
17011             });
17012           }
17013     
17014           this.tokens.push({
17015             type: 'list_end'
17016           });
17017     
17018           continue;
17019         }
17020     
17021         // html
17022         if (cap = this.rules.html.exec(src)) {
17023           src = src.substring(cap[0].length);
17024           this.tokens.push({
17025             type: this.options.sanitize
17026               ? 'paragraph'
17027               : 'html',
17028             pre: !this.options.sanitizer
17029               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17030             text: cap[0]
17031           });
17032           continue;
17033         }
17034     
17035         // def
17036         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17037           src = src.substring(cap[0].length);
17038           this.tokens.links[cap[1].toLowerCase()] = {
17039             href: cap[2],
17040             title: cap[3]
17041           };
17042           continue;
17043         }
17044     
17045         // table (gfm)
17046         if (top && (cap = this.rules.table.exec(src))) {
17047           src = src.substring(cap[0].length);
17048     
17049           item = {
17050             type: 'table',
17051             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17052             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17053             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17054           };
17055     
17056           for (i = 0; i < item.align.length; i++) {
17057             if (/^ *-+: *$/.test(item.align[i])) {
17058               item.align[i] = 'right';
17059             } else if (/^ *:-+: *$/.test(item.align[i])) {
17060               item.align[i] = 'center';
17061             } else if (/^ *:-+ *$/.test(item.align[i])) {
17062               item.align[i] = 'left';
17063             } else {
17064               item.align[i] = null;
17065             }
17066           }
17067     
17068           for (i = 0; i < item.cells.length; i++) {
17069             item.cells[i] = item.cells[i]
17070               .replace(/^ *\| *| *\| *$/g, '')
17071               .split(/ *\| */);
17072           }
17073     
17074           this.tokens.push(item);
17075     
17076           continue;
17077         }
17078     
17079         // top-level paragraph
17080         if (top && (cap = this.rules.paragraph.exec(src))) {
17081           src = src.substring(cap[0].length);
17082           this.tokens.push({
17083             type: 'paragraph',
17084             text: cap[1].charAt(cap[1].length - 1) === '\n'
17085               ? cap[1].slice(0, -1)
17086               : cap[1]
17087           });
17088           continue;
17089         }
17090     
17091         // text
17092         if (cap = this.rules.text.exec(src)) {
17093           // Top-level should never reach here.
17094           src = src.substring(cap[0].length);
17095           this.tokens.push({
17096             type: 'text',
17097             text: cap[0]
17098           });
17099           continue;
17100         }
17101     
17102         if (src) {
17103           throw new
17104             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17105         }
17106       }
17107     
17108       return this.tokens;
17109     };
17110     
17111     /**
17112      * Inline-Level Grammar
17113      */
17114     
17115     var inline = {
17116       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17117       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17118       url: noop,
17119       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17120       link: /^!?\[(inside)\]\(href\)/,
17121       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17122       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17123       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17124       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17125       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17126       br: /^ {2,}\n(?!\s*$)/,
17127       del: noop,
17128       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17129     };
17130     
17131     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17132     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17133     
17134     inline.link = replace(inline.link)
17135       ('inside', inline._inside)
17136       ('href', inline._href)
17137       ();
17138     
17139     inline.reflink = replace(inline.reflink)
17140       ('inside', inline._inside)
17141       ();
17142     
17143     /**
17144      * Normal Inline Grammar
17145      */
17146     
17147     inline.normal = merge({}, inline);
17148     
17149     /**
17150      * Pedantic Inline Grammar
17151      */
17152     
17153     inline.pedantic = merge({}, inline.normal, {
17154       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17155       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17156     });
17157     
17158     /**
17159      * GFM Inline Grammar
17160      */
17161     
17162     inline.gfm = merge({}, inline.normal, {
17163       escape: replace(inline.escape)('])', '~|])')(),
17164       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17165       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17166       text: replace(inline.text)
17167         (']|', '~]|')
17168         ('|', '|https?://|')
17169         ()
17170     });
17171     
17172     /**
17173      * GFM + Line Breaks Inline Grammar
17174      */
17175     
17176     inline.breaks = merge({}, inline.gfm, {
17177       br: replace(inline.br)('{2,}', '*')(),
17178       text: replace(inline.gfm.text)('{2,}', '*')()
17179     });
17180     
17181     /**
17182      * Inline Lexer & Compiler
17183      */
17184     
17185     function InlineLexer(links, options) {
17186       this.options = options || marked.defaults;
17187       this.links = links;
17188       this.rules = inline.normal;
17189       this.renderer = this.options.renderer || new Renderer;
17190       this.renderer.options = this.options;
17191     
17192       if (!this.links) {
17193         throw new
17194           Error('Tokens array requires a `links` property.');
17195       }
17196     
17197       if (this.options.gfm) {
17198         if (this.options.breaks) {
17199           this.rules = inline.breaks;
17200         } else {
17201           this.rules = inline.gfm;
17202         }
17203       } else if (this.options.pedantic) {
17204         this.rules = inline.pedantic;
17205       }
17206     }
17207     
17208     /**
17209      * Expose Inline Rules
17210      */
17211     
17212     InlineLexer.rules = inline;
17213     
17214     /**
17215      * Static Lexing/Compiling Method
17216      */
17217     
17218     InlineLexer.output = function(src, links, options) {
17219       var inline = new InlineLexer(links, options);
17220       return inline.output(src);
17221     };
17222     
17223     /**
17224      * Lexing/Compiling
17225      */
17226     
17227     InlineLexer.prototype.output = function(src) {
17228       var out = ''
17229         , link
17230         , text
17231         , href
17232         , cap;
17233     
17234       while (src) {
17235         // escape
17236         if (cap = this.rules.escape.exec(src)) {
17237           src = src.substring(cap[0].length);
17238           out += cap[1];
17239           continue;
17240         }
17241     
17242         // autolink
17243         if (cap = this.rules.autolink.exec(src)) {
17244           src = src.substring(cap[0].length);
17245           if (cap[2] === '@') {
17246             text = cap[1].charAt(6) === ':'
17247               ? this.mangle(cap[1].substring(7))
17248               : this.mangle(cap[1]);
17249             href = this.mangle('mailto:') + text;
17250           } else {
17251             text = escape(cap[1]);
17252             href = text;
17253           }
17254           out += this.renderer.link(href, null, text);
17255           continue;
17256         }
17257     
17258         // url (gfm)
17259         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17260           src = src.substring(cap[0].length);
17261           text = escape(cap[1]);
17262           href = text;
17263           out += this.renderer.link(href, null, text);
17264           continue;
17265         }
17266     
17267         // tag
17268         if (cap = this.rules.tag.exec(src)) {
17269           if (!this.inLink && /^<a /i.test(cap[0])) {
17270             this.inLink = true;
17271           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
17272             this.inLink = false;
17273           }
17274           src = src.substring(cap[0].length);
17275           out += this.options.sanitize
17276             ? this.options.sanitizer
17277               ? this.options.sanitizer(cap[0])
17278               : escape(cap[0])
17279             : cap[0];
17280           continue;
17281         }
17282     
17283         // link
17284         if (cap = this.rules.link.exec(src)) {
17285           src = src.substring(cap[0].length);
17286           this.inLink = true;
17287           out += this.outputLink(cap, {
17288             href: cap[2],
17289             title: cap[3]
17290           });
17291           this.inLink = false;
17292           continue;
17293         }
17294     
17295         // reflink, nolink
17296         if ((cap = this.rules.reflink.exec(src))
17297             || (cap = this.rules.nolink.exec(src))) {
17298           src = src.substring(cap[0].length);
17299           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
17300           link = this.links[link.toLowerCase()];
17301           if (!link || !link.href) {
17302             out += cap[0].charAt(0);
17303             src = cap[0].substring(1) + src;
17304             continue;
17305           }
17306           this.inLink = true;
17307           out += this.outputLink(cap, link);
17308           this.inLink = false;
17309           continue;
17310         }
17311     
17312         // strong
17313         if (cap = this.rules.strong.exec(src)) {
17314           src = src.substring(cap[0].length);
17315           out += this.renderer.strong(this.output(cap[2] || cap[1]));
17316           continue;
17317         }
17318     
17319         // em
17320         if (cap = this.rules.em.exec(src)) {
17321           src = src.substring(cap[0].length);
17322           out += this.renderer.em(this.output(cap[2] || cap[1]));
17323           continue;
17324         }
17325     
17326         // code
17327         if (cap = this.rules.code.exec(src)) {
17328           src = src.substring(cap[0].length);
17329           out += this.renderer.codespan(escape(cap[2], true));
17330           continue;
17331         }
17332     
17333         // br
17334         if (cap = this.rules.br.exec(src)) {
17335           src = src.substring(cap[0].length);
17336           out += this.renderer.br();
17337           continue;
17338         }
17339     
17340         // del (gfm)
17341         if (cap = this.rules.del.exec(src)) {
17342           src = src.substring(cap[0].length);
17343           out += this.renderer.del(this.output(cap[1]));
17344           continue;
17345         }
17346     
17347         // text
17348         if (cap = this.rules.text.exec(src)) {
17349           src = src.substring(cap[0].length);
17350           out += this.renderer.text(escape(this.smartypants(cap[0])));
17351           continue;
17352         }
17353     
17354         if (src) {
17355           throw new
17356             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17357         }
17358       }
17359     
17360       return out;
17361     };
17362     
17363     /**
17364      * Compile Link
17365      */
17366     
17367     InlineLexer.prototype.outputLink = function(cap, link) {
17368       var href = escape(link.href)
17369         , title = link.title ? escape(link.title) : null;
17370     
17371       return cap[0].charAt(0) !== '!'
17372         ? this.renderer.link(href, title, this.output(cap[1]))
17373         : this.renderer.image(href, title, escape(cap[1]));
17374     };
17375     
17376     /**
17377      * Smartypants Transformations
17378      */
17379     
17380     InlineLexer.prototype.smartypants = function(text) {
17381       if (!this.options.smartypants)  { return text; }
17382       return text
17383         // em-dashes
17384         .replace(/---/g, '\u2014')
17385         // en-dashes
17386         .replace(/--/g, '\u2013')
17387         // opening singles
17388         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
17389         // closing singles & apostrophes
17390         .replace(/'/g, '\u2019')
17391         // opening doubles
17392         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
17393         // closing doubles
17394         .replace(/"/g, '\u201d')
17395         // ellipses
17396         .replace(/\.{3}/g, '\u2026');
17397     };
17398     
17399     /**
17400      * Mangle Links
17401      */
17402     
17403     InlineLexer.prototype.mangle = function(text) {
17404       if (!this.options.mangle) { return text; }
17405       var out = ''
17406         , l = text.length
17407         , i = 0
17408         , ch;
17409     
17410       for (; i < l; i++) {
17411         ch = text.charCodeAt(i);
17412         if (Math.random() > 0.5) {
17413           ch = 'x' + ch.toString(16);
17414         }
17415         out += '&#' + ch + ';';
17416       }
17417     
17418       return out;
17419     };
17420     
17421     /**
17422      * Renderer
17423      */
17424     
17425     function Renderer(options) {
17426       this.options = options || {};
17427     }
17428     
17429     Renderer.prototype.code = function(code, lang, escaped) {
17430       if (this.options.highlight) {
17431         var out = this.options.highlight(code, lang);
17432         if (out != null && out !== code) {
17433           escaped = true;
17434           code = out;
17435         }
17436       } else {
17437             // hack!!! - it's already escapeD?
17438             escaped = true;
17439       }
17440     
17441       if (!lang) {
17442         return '<pre><code>'
17443           + (escaped ? code : escape(code, true))
17444           + '\n</code></pre>';
17445       }
17446     
17447       return '<pre><code class="'
17448         + this.options.langPrefix
17449         + escape(lang, true)
17450         + '">'
17451         + (escaped ? code : escape(code, true))
17452         + '\n</code></pre>\n';
17453     };
17454     
17455     Renderer.prototype.blockquote = function(quote) {
17456       return '<blockquote>\n' + quote + '</blockquote>\n';
17457     };
17458     
17459     Renderer.prototype.html = function(html) {
17460       return html;
17461     };
17462     
17463     Renderer.prototype.heading = function(text, level, raw) {
17464       return '<h'
17465         + level
17466         + ' id="'
17467         + this.options.headerPrefix
17468         + raw.toLowerCase().replace(/[^\w]+/g, '-')
17469         + '">'
17470         + text
17471         + '</h'
17472         + level
17473         + '>\n';
17474     };
17475     
17476     Renderer.prototype.hr = function() {
17477       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
17478     };
17479     
17480     Renderer.prototype.list = function(body, ordered) {
17481       var type = ordered ? 'ol' : 'ul';
17482       return '<' + type + '>\n' + body + '</' + type + '>\n';
17483     };
17484     
17485     Renderer.prototype.listitem = function(text) {
17486       return '<li>' + text + '</li>\n';
17487     };
17488     
17489     Renderer.prototype.paragraph = function(text) {
17490       return '<p>' + text + '</p>\n';
17491     };
17492     
17493     Renderer.prototype.table = function(header, body) {
17494       return '<table class="table table-striped">\n'
17495         + '<thead>\n'
17496         + header
17497         + '</thead>\n'
17498         + '<tbody>\n'
17499         + body
17500         + '</tbody>\n'
17501         + '</table>\n';
17502     };
17503     
17504     Renderer.prototype.tablerow = function(content) {
17505       return '<tr>\n' + content + '</tr>\n';
17506     };
17507     
17508     Renderer.prototype.tablecell = function(content, flags) {
17509       var type = flags.header ? 'th' : 'td';
17510       var tag = flags.align
17511         ? '<' + type + ' style="text-align:' + flags.align + '">'
17512         : '<' + type + '>';
17513       return tag + content + '</' + type + '>\n';
17514     };
17515     
17516     // span level renderer
17517     Renderer.prototype.strong = function(text) {
17518       return '<strong>' + text + '</strong>';
17519     };
17520     
17521     Renderer.prototype.em = function(text) {
17522       return '<em>' + text + '</em>';
17523     };
17524     
17525     Renderer.prototype.codespan = function(text) {
17526       return '<code>' + text + '</code>';
17527     };
17528     
17529     Renderer.prototype.br = function() {
17530       return this.options.xhtml ? '<br/>' : '<br>';
17531     };
17532     
17533     Renderer.prototype.del = function(text) {
17534       return '<del>' + text + '</del>';
17535     };
17536     
17537     Renderer.prototype.link = function(href, title, text) {
17538       if (this.options.sanitize) {
17539         try {
17540           var prot = decodeURIComponent(unescape(href))
17541             .replace(/[^\w:]/g, '')
17542             .toLowerCase();
17543         } catch (e) {
17544           return '';
17545         }
17546         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
17547           return '';
17548         }
17549       }
17550       var out = '<a href="' + href + '"';
17551       if (title) {
17552         out += ' title="' + title + '"';
17553       }
17554       out += '>' + text + '</a>';
17555       return out;
17556     };
17557     
17558     Renderer.prototype.image = function(href, title, text) {
17559       var out = '<img src="' + href + '" alt="' + text + '"';
17560       if (title) {
17561         out += ' title="' + title + '"';
17562       }
17563       out += this.options.xhtml ? '/>' : '>';
17564       return out;
17565     };
17566     
17567     Renderer.prototype.text = function(text) {
17568       return text;
17569     };
17570     
17571     /**
17572      * Parsing & Compiling
17573      */
17574     
17575     function Parser(options) {
17576       this.tokens = [];
17577       this.token = null;
17578       this.options = options || marked.defaults;
17579       this.options.renderer = this.options.renderer || new Renderer;
17580       this.renderer = this.options.renderer;
17581       this.renderer.options = this.options;
17582     }
17583     
17584     /**
17585      * Static Parse Method
17586      */
17587     
17588     Parser.parse = function(src, options, renderer) {
17589       var parser = new Parser(options, renderer);
17590       return parser.parse(src);
17591     };
17592     
17593     /**
17594      * Parse Loop
17595      */
17596     
17597     Parser.prototype.parse = function(src) {
17598       this.inline = new InlineLexer(src.links, this.options, this.renderer);
17599       this.tokens = src.reverse();
17600     
17601       var out = '';
17602       while (this.next()) {
17603         out += this.tok();
17604       }
17605     
17606       return out;
17607     };
17608     
17609     /**
17610      * Next Token
17611      */
17612     
17613     Parser.prototype.next = function() {
17614       return this.token = this.tokens.pop();
17615     };
17616     
17617     /**
17618      * Preview Next Token
17619      */
17620     
17621     Parser.prototype.peek = function() {
17622       return this.tokens[this.tokens.length - 1] || 0;
17623     };
17624     
17625     /**
17626      * Parse Text Tokens
17627      */
17628     
17629     Parser.prototype.parseText = function() {
17630       var body = this.token.text;
17631     
17632       while (this.peek().type === 'text') {
17633         body += '\n' + this.next().text;
17634       }
17635     
17636       return this.inline.output(body);
17637     };
17638     
17639     /**
17640      * Parse Current Token
17641      */
17642     
17643     Parser.prototype.tok = function() {
17644       switch (this.token.type) {
17645         case 'space': {
17646           return '';
17647         }
17648         case 'hr': {
17649           return this.renderer.hr();
17650         }
17651         case 'heading': {
17652           return this.renderer.heading(
17653             this.inline.output(this.token.text),
17654             this.token.depth,
17655             this.token.text);
17656         }
17657         case 'code': {
17658           return this.renderer.code(this.token.text,
17659             this.token.lang,
17660             this.token.escaped);
17661         }
17662         case 'table': {
17663           var header = ''
17664             , body = ''
17665             , i
17666             , row
17667             , cell
17668             , flags
17669             , j;
17670     
17671           // header
17672           cell = '';
17673           for (i = 0; i < this.token.header.length; i++) {
17674             flags = { header: true, align: this.token.align[i] };
17675             cell += this.renderer.tablecell(
17676               this.inline.output(this.token.header[i]),
17677               { header: true, align: this.token.align[i] }
17678             );
17679           }
17680           header += this.renderer.tablerow(cell);
17681     
17682           for (i = 0; i < this.token.cells.length; i++) {
17683             row = this.token.cells[i];
17684     
17685             cell = '';
17686             for (j = 0; j < row.length; j++) {
17687               cell += this.renderer.tablecell(
17688                 this.inline.output(row[j]),
17689                 { header: false, align: this.token.align[j] }
17690               );
17691             }
17692     
17693             body += this.renderer.tablerow(cell);
17694           }
17695           return this.renderer.table(header, body);
17696         }
17697         case 'blockquote_start': {
17698           var body = '';
17699     
17700           while (this.next().type !== 'blockquote_end') {
17701             body += this.tok();
17702           }
17703     
17704           return this.renderer.blockquote(body);
17705         }
17706         case 'list_start': {
17707           var body = ''
17708             , ordered = this.token.ordered;
17709     
17710           while (this.next().type !== 'list_end') {
17711             body += this.tok();
17712           }
17713     
17714           return this.renderer.list(body, ordered);
17715         }
17716         case 'list_item_start': {
17717           var body = '';
17718     
17719           while (this.next().type !== 'list_item_end') {
17720             body += this.token.type === 'text'
17721               ? this.parseText()
17722               : this.tok();
17723           }
17724     
17725           return this.renderer.listitem(body);
17726         }
17727         case 'loose_item_start': {
17728           var body = '';
17729     
17730           while (this.next().type !== 'list_item_end') {
17731             body += this.tok();
17732           }
17733     
17734           return this.renderer.listitem(body);
17735         }
17736         case 'html': {
17737           var html = !this.token.pre && !this.options.pedantic
17738             ? this.inline.output(this.token.text)
17739             : this.token.text;
17740           return this.renderer.html(html);
17741         }
17742         case 'paragraph': {
17743           return this.renderer.paragraph(this.inline.output(this.token.text));
17744         }
17745         case 'text': {
17746           return this.renderer.paragraph(this.parseText());
17747         }
17748       }
17749     };
17750     
17751     /**
17752      * Helpers
17753      */
17754     
17755     function escape(html, encode) {
17756       return html
17757         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17758         .replace(/</g, '&lt;')
17759         .replace(/>/g, '&gt;')
17760         .replace(/"/g, '&quot;')
17761         .replace(/'/g, '&#39;');
17762     }
17763     
17764     function unescape(html) {
17765         // explicitly match decimal, hex, and named HTML entities 
17766       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17767         n = n.toLowerCase();
17768         if (n === 'colon') { return ':'; }
17769         if (n.charAt(0) === '#') {
17770           return n.charAt(1) === 'x'
17771             ? String.fromCharCode(parseInt(n.substring(2), 16))
17772             : String.fromCharCode(+n.substring(1));
17773         }
17774         return '';
17775       });
17776     }
17777     
17778     function replace(regex, opt) {
17779       regex = regex.source;
17780       opt = opt || '';
17781       return function self(name, val) {
17782         if (!name) { return new RegExp(regex, opt); }
17783         val = val.source || val;
17784         val = val.replace(/(^|[^\[])\^/g, '$1');
17785         regex = regex.replace(name, val);
17786         return self;
17787       };
17788     }
17789     
17790     function noop() {}
17791     noop.exec = noop;
17792     
17793     function merge(obj) {
17794       var i = 1
17795         , target
17796         , key;
17797     
17798       for (; i < arguments.length; i++) {
17799         target = arguments[i];
17800         for (key in target) {
17801           if (Object.prototype.hasOwnProperty.call(target, key)) {
17802             obj[key] = target[key];
17803           }
17804         }
17805       }
17806     
17807       return obj;
17808     }
17809     
17810     
17811     /**
17812      * Marked
17813      */
17814     
17815     function marked(src, opt, callback) {
17816       if (callback || typeof opt === 'function') {
17817         if (!callback) {
17818           callback = opt;
17819           opt = null;
17820         }
17821     
17822         opt = merge({}, marked.defaults, opt || {});
17823     
17824         var highlight = opt.highlight
17825           , tokens
17826           , pending
17827           , i = 0;
17828     
17829         try {
17830           tokens = Lexer.lex(src, opt)
17831         } catch (e) {
17832           return callback(e);
17833         }
17834     
17835         pending = tokens.length;
17836     
17837         var done = function(err) {
17838           if (err) {
17839             opt.highlight = highlight;
17840             return callback(err);
17841           }
17842     
17843           var out;
17844     
17845           try {
17846             out = Parser.parse(tokens, opt);
17847           } catch (e) {
17848             err = e;
17849           }
17850     
17851           opt.highlight = highlight;
17852     
17853           return err
17854             ? callback(err)
17855             : callback(null, out);
17856         };
17857     
17858         if (!highlight || highlight.length < 3) {
17859           return done();
17860         }
17861     
17862         delete opt.highlight;
17863     
17864         if (!pending) { return done(); }
17865     
17866         for (; i < tokens.length; i++) {
17867           (function(token) {
17868             if (token.type !== 'code') {
17869               return --pending || done();
17870             }
17871             return highlight(token.text, token.lang, function(err, code) {
17872               if (err) { return done(err); }
17873               if (code == null || code === token.text) {
17874                 return --pending || done();
17875               }
17876               token.text = code;
17877               token.escaped = true;
17878               --pending || done();
17879             });
17880           })(tokens[i]);
17881         }
17882     
17883         return;
17884       }
17885       try {
17886         if (opt) { opt = merge({}, marked.defaults, opt); }
17887         return Parser.parse(Lexer.lex(src, opt), opt);
17888       } catch (e) {
17889         e.message += '\nPlease report this to https://github.com/chjj/marked.';
17890         if ((opt || marked.defaults).silent) {
17891           return '<p>An error occured:</p><pre>'
17892             + escape(e.message + '', true)
17893             + '</pre>';
17894         }
17895         throw e;
17896       }
17897     }
17898     
17899     /**
17900      * Options
17901      */
17902     
17903     marked.options =
17904     marked.setOptions = function(opt) {
17905       merge(marked.defaults, opt);
17906       return marked;
17907     };
17908     
17909     marked.defaults = {
17910       gfm: true,
17911       tables: true,
17912       breaks: false,
17913       pedantic: false,
17914       sanitize: false,
17915       sanitizer: null,
17916       mangle: true,
17917       smartLists: false,
17918       silent: false,
17919       highlight: null,
17920       langPrefix: 'lang-',
17921       smartypants: false,
17922       headerPrefix: '',
17923       renderer: new Renderer,
17924       xhtml: false
17925     };
17926     
17927     /**
17928      * Expose
17929      */
17930     
17931     marked.Parser = Parser;
17932     marked.parser = Parser.parse;
17933     
17934     marked.Renderer = Renderer;
17935     
17936     marked.Lexer = Lexer;
17937     marked.lexer = Lexer.lex;
17938     
17939     marked.InlineLexer = InlineLexer;
17940     marked.inlineLexer = InlineLexer.output;
17941     
17942     marked.parse = marked;
17943     
17944     Roo.Markdown.marked = marked;
17945
17946 })();/*
17947  * Based on:
17948  * Ext JS Library 1.1.1
17949  * Copyright(c) 2006-2007, Ext JS, LLC.
17950  *
17951  * Originally Released Under LGPL - original licence link has changed is not relivant.
17952  *
17953  * Fork - LGPL
17954  * <script type="text/javascript">
17955  */
17956
17957
17958
17959 /*
17960  * These classes are derivatives of the similarly named classes in the YUI Library.
17961  * The original license:
17962  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
17963  * Code licensed under the BSD License:
17964  * http://developer.yahoo.net/yui/license.txt
17965  */
17966
17967 (function() {
17968
17969 var Event=Roo.EventManager;
17970 var Dom=Roo.lib.Dom;
17971
17972 /**
17973  * @class Roo.dd.DragDrop
17974  * @extends Roo.util.Observable
17975  * Defines the interface and base operation of items that that can be
17976  * dragged or can be drop targets.  It was designed to be extended, overriding
17977  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
17978  * Up to three html elements can be associated with a DragDrop instance:
17979  * <ul>
17980  * <li>linked element: the element that is passed into the constructor.
17981  * This is the element which defines the boundaries for interaction with
17982  * other DragDrop objects.</li>
17983  * <li>handle element(s): The drag operation only occurs if the element that
17984  * was clicked matches a handle element.  By default this is the linked
17985  * element, but there are times that you will want only a portion of the
17986  * linked element to initiate the drag operation, and the setHandleElId()
17987  * method provides a way to define this.</li>
17988  * <li>drag element: this represents the element that would be moved along
17989  * with the cursor during a drag operation.  By default, this is the linked
17990  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
17991  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
17992  * </li>
17993  * </ul>
17994  * This class should not be instantiated until the onload event to ensure that
17995  * the associated elements are available.
17996  * The following would define a DragDrop obj that would interact with any
17997  * other DragDrop obj in the "group1" group:
17998  * <pre>
17999  *  dd = new Roo.dd.DragDrop("div1", "group1");
18000  * </pre>
18001  * Since none of the event handlers have been implemented, nothing would
18002  * actually happen if you were to run the code above.  Normally you would
18003  * override this class or one of the default implementations, but you can
18004  * also override the methods you want on an instance of the class...
18005  * <pre>
18006  *  dd.onDragDrop = function(e, id) {
18007  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18008  *  }
18009  * </pre>
18010  * @constructor
18011  * @param {String} id of the element that is linked to this instance
18012  * @param {String} sGroup the group of related DragDrop objects
18013  * @param {object} config an object containing configurable attributes
18014  *                Valid properties for DragDrop:
18015  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18016  */
18017 Roo.dd.DragDrop = function(id, sGroup, config) {
18018     if (id) {
18019         this.init(id, sGroup, config);
18020     }
18021     
18022 };
18023
18024 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18025
18026     /**
18027      * The id of the element associated with this object.  This is what we
18028      * refer to as the "linked element" because the size and position of
18029      * this element is used to determine when the drag and drop objects have
18030      * interacted.
18031      * @property id
18032      * @type String
18033      */
18034     id: null,
18035
18036     /**
18037      * Configuration attributes passed into the constructor
18038      * @property config
18039      * @type object
18040      */
18041     config: null,
18042
18043     /**
18044      * The id of the element that will be dragged.  By default this is same
18045      * as the linked element , but could be changed to another element. Ex:
18046      * Roo.dd.DDProxy
18047      * @property dragElId
18048      * @type String
18049      * @private
18050      */
18051     dragElId: null,
18052
18053     /**
18054      * the id of the element that initiates the drag operation.  By default
18055      * this is the linked element, but could be changed to be a child of this
18056      * element.  This lets us do things like only starting the drag when the
18057      * header element within the linked html element is clicked.
18058      * @property handleElId
18059      * @type String
18060      * @private
18061      */
18062     handleElId: null,
18063
18064     /**
18065      * An associative array of HTML tags that will be ignored if clicked.
18066      * @property invalidHandleTypes
18067      * @type {string: string}
18068      */
18069     invalidHandleTypes: null,
18070
18071     /**
18072      * An associative array of ids for elements that will be ignored if clicked
18073      * @property invalidHandleIds
18074      * @type {string: string}
18075      */
18076     invalidHandleIds: null,
18077
18078     /**
18079      * An indexted array of css class names for elements that will be ignored
18080      * if clicked.
18081      * @property invalidHandleClasses
18082      * @type string[]
18083      */
18084     invalidHandleClasses: null,
18085
18086     /**
18087      * The linked element's absolute X position at the time the drag was
18088      * started
18089      * @property startPageX
18090      * @type int
18091      * @private
18092      */
18093     startPageX: 0,
18094
18095     /**
18096      * The linked element's absolute X position at the time the drag was
18097      * started
18098      * @property startPageY
18099      * @type int
18100      * @private
18101      */
18102     startPageY: 0,
18103
18104     /**
18105      * The group defines a logical collection of DragDrop objects that are
18106      * related.  Instances only get events when interacting with other
18107      * DragDrop object in the same group.  This lets us define multiple
18108      * groups using a single DragDrop subclass if we want.
18109      * @property groups
18110      * @type {string: string}
18111      */
18112     groups: null,
18113
18114     /**
18115      * Individual drag/drop instances can be locked.  This will prevent
18116      * onmousedown start drag.
18117      * @property locked
18118      * @type boolean
18119      * @private
18120      */
18121     locked: false,
18122
18123     /**
18124      * Lock this instance
18125      * @method lock
18126      */
18127     lock: function() { this.locked = true; },
18128
18129     /**
18130      * Unlock this instace
18131      * @method unlock
18132      */
18133     unlock: function() { this.locked = false; },
18134
18135     /**
18136      * By default, all insances can be a drop target.  This can be disabled by
18137      * setting isTarget to false.
18138      * @method isTarget
18139      * @type boolean
18140      */
18141     isTarget: true,
18142
18143     /**
18144      * The padding configured for this drag and drop object for calculating
18145      * the drop zone intersection with this object.
18146      * @method padding
18147      * @type int[]
18148      */
18149     padding: null,
18150
18151     /**
18152      * Cached reference to the linked element
18153      * @property _domRef
18154      * @private
18155      */
18156     _domRef: null,
18157
18158     /**
18159      * Internal typeof flag
18160      * @property __ygDragDrop
18161      * @private
18162      */
18163     __ygDragDrop: true,
18164
18165     /**
18166      * Set to true when horizontal contraints are applied
18167      * @property constrainX
18168      * @type boolean
18169      * @private
18170      */
18171     constrainX: false,
18172
18173     /**
18174      * Set to true when vertical contraints are applied
18175      * @property constrainY
18176      * @type boolean
18177      * @private
18178      */
18179     constrainY: false,
18180
18181     /**
18182      * The left constraint
18183      * @property minX
18184      * @type int
18185      * @private
18186      */
18187     minX: 0,
18188
18189     /**
18190      * The right constraint
18191      * @property maxX
18192      * @type int
18193      * @private
18194      */
18195     maxX: 0,
18196
18197     /**
18198      * The up constraint
18199      * @property minY
18200      * @type int
18201      * @type int
18202      * @private
18203      */
18204     minY: 0,
18205
18206     /**
18207      * The down constraint
18208      * @property maxY
18209      * @type int
18210      * @private
18211      */
18212     maxY: 0,
18213
18214     /**
18215      * Maintain offsets when we resetconstraints.  Set to true when you want
18216      * the position of the element relative to its parent to stay the same
18217      * when the page changes
18218      *
18219      * @property maintainOffset
18220      * @type boolean
18221      */
18222     maintainOffset: false,
18223
18224     /**
18225      * Array of pixel locations the element will snap to if we specified a
18226      * horizontal graduation/interval.  This array is generated automatically
18227      * when you define a tick interval.
18228      * @property xTicks
18229      * @type int[]
18230      */
18231     xTicks: null,
18232
18233     /**
18234      * Array of pixel locations the element will snap to if we specified a
18235      * vertical graduation/interval.  This array is generated automatically
18236      * when you define a tick interval.
18237      * @property yTicks
18238      * @type int[]
18239      */
18240     yTicks: null,
18241
18242     /**
18243      * By default the drag and drop instance will only respond to the primary
18244      * button click (left button for a right-handed mouse).  Set to true to
18245      * allow drag and drop to start with any mouse click that is propogated
18246      * by the browser
18247      * @property primaryButtonOnly
18248      * @type boolean
18249      */
18250     primaryButtonOnly: true,
18251
18252     /**
18253      * The availabe property is false until the linked dom element is accessible.
18254      * @property available
18255      * @type boolean
18256      */
18257     available: false,
18258
18259     /**
18260      * By default, drags can only be initiated if the mousedown occurs in the
18261      * region the linked element is.  This is done in part to work around a
18262      * bug in some browsers that mis-report the mousedown if the previous
18263      * mouseup happened outside of the window.  This property is set to true
18264      * if outer handles are defined.
18265      *
18266      * @property hasOuterHandles
18267      * @type boolean
18268      * @default false
18269      */
18270     hasOuterHandles: false,
18271
18272     /**
18273      * Code that executes immediately before the startDrag event
18274      * @method b4StartDrag
18275      * @private
18276      */
18277     b4StartDrag: function(x, y) { },
18278
18279     /**
18280      * Abstract method called after a drag/drop object is clicked
18281      * and the drag or mousedown time thresholds have beeen met.
18282      * @method startDrag
18283      * @param {int} X click location
18284      * @param {int} Y click location
18285      */
18286     startDrag: function(x, y) { /* override this */ },
18287
18288     /**
18289      * Code that executes immediately before the onDrag event
18290      * @method b4Drag
18291      * @private
18292      */
18293     b4Drag: function(e) { },
18294
18295     /**
18296      * Abstract method called during the onMouseMove event while dragging an
18297      * object.
18298      * @method onDrag
18299      * @param {Event} e the mousemove event
18300      */
18301     onDrag: function(e) { /* override this */ },
18302
18303     /**
18304      * Abstract method called when this element fist begins hovering over
18305      * another DragDrop obj
18306      * @method onDragEnter
18307      * @param {Event} e the mousemove event
18308      * @param {String|DragDrop[]} id In POINT mode, the element
18309      * id this is hovering over.  In INTERSECT mode, an array of one or more
18310      * dragdrop items being hovered over.
18311      */
18312     onDragEnter: function(e, id) { /* override this */ },
18313
18314     /**
18315      * Code that executes immediately before the onDragOver event
18316      * @method b4DragOver
18317      * @private
18318      */
18319     b4DragOver: function(e) { },
18320
18321     /**
18322      * Abstract method called when this element is hovering over another
18323      * DragDrop obj
18324      * @method onDragOver
18325      * @param {Event} e the mousemove event
18326      * @param {String|DragDrop[]} id In POINT mode, the element
18327      * id this is hovering over.  In INTERSECT mode, an array of dd items
18328      * being hovered over.
18329      */
18330     onDragOver: function(e, id) { /* override this */ },
18331
18332     /**
18333      * Code that executes immediately before the onDragOut event
18334      * @method b4DragOut
18335      * @private
18336      */
18337     b4DragOut: function(e) { },
18338
18339     /**
18340      * Abstract method called when we are no longer hovering over an element
18341      * @method onDragOut
18342      * @param {Event} e the mousemove event
18343      * @param {String|DragDrop[]} id In POINT mode, the element
18344      * id this was hovering over.  In INTERSECT mode, an array of dd items
18345      * that the mouse is no longer over.
18346      */
18347     onDragOut: function(e, id) { /* override this */ },
18348
18349     /**
18350      * Code that executes immediately before the onDragDrop event
18351      * @method b4DragDrop
18352      * @private
18353      */
18354     b4DragDrop: function(e) { },
18355
18356     /**
18357      * Abstract method called when this item is dropped on another DragDrop
18358      * obj
18359      * @method onDragDrop
18360      * @param {Event} e the mouseup event
18361      * @param {String|DragDrop[]} id In POINT mode, the element
18362      * id this was dropped on.  In INTERSECT mode, an array of dd items this
18363      * was dropped on.
18364      */
18365     onDragDrop: function(e, id) { /* override this */ },
18366
18367     /**
18368      * Abstract method called when this item is dropped on an area with no
18369      * drop target
18370      * @method onInvalidDrop
18371      * @param {Event} e the mouseup event
18372      */
18373     onInvalidDrop: function(e) { /* override this */ },
18374
18375     /**
18376      * Code that executes immediately before the endDrag event
18377      * @method b4EndDrag
18378      * @private
18379      */
18380     b4EndDrag: function(e) { },
18381
18382     /**
18383      * Fired when we are done dragging the object
18384      * @method endDrag
18385      * @param {Event} e the mouseup event
18386      */
18387     endDrag: function(e) { /* override this */ },
18388
18389     /**
18390      * Code executed immediately before the onMouseDown event
18391      * @method b4MouseDown
18392      * @param {Event} e the mousedown event
18393      * @private
18394      */
18395     b4MouseDown: function(e) {  },
18396
18397     /**
18398      * Event handler that fires when a drag/drop obj gets a mousedown
18399      * @method onMouseDown
18400      * @param {Event} e the mousedown event
18401      */
18402     onMouseDown: function(e) { /* override this */ },
18403
18404     /**
18405      * Event handler that fires when a drag/drop obj gets a mouseup
18406      * @method onMouseUp
18407      * @param {Event} e the mouseup event
18408      */
18409     onMouseUp: function(e) { /* override this */ },
18410
18411     /**
18412      * Override the onAvailable method to do what is needed after the initial
18413      * position was determined.
18414      * @method onAvailable
18415      */
18416     onAvailable: function () {
18417     },
18418
18419     /*
18420      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
18421      * @type Object
18422      */
18423     defaultPadding : {left:0, right:0, top:0, bottom:0},
18424
18425     /*
18426      * Initializes the drag drop object's constraints to restrict movement to a certain element.
18427  *
18428  * Usage:
18429  <pre><code>
18430  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
18431                 { dragElId: "existingProxyDiv" });
18432  dd.startDrag = function(){
18433      this.constrainTo("parent-id");
18434  };
18435  </code></pre>
18436  * Or you can initalize it using the {@link Roo.Element} object:
18437  <pre><code>
18438  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
18439      startDrag : function(){
18440          this.constrainTo("parent-id");
18441      }
18442  });
18443  </code></pre>
18444      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
18445      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
18446      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
18447      * an object containing the sides to pad. For example: {right:10, bottom:10}
18448      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
18449      */
18450     constrainTo : function(constrainTo, pad, inContent){
18451         if(typeof pad == "number"){
18452             pad = {left: pad, right:pad, top:pad, bottom:pad};
18453         }
18454         pad = pad || this.defaultPadding;
18455         var b = Roo.get(this.getEl()).getBox();
18456         var ce = Roo.get(constrainTo);
18457         var s = ce.getScroll();
18458         var c, cd = ce.dom;
18459         if(cd == document.body){
18460             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
18461         }else{
18462             xy = ce.getXY();
18463             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
18464         }
18465
18466
18467         var topSpace = b.y - c.y;
18468         var leftSpace = b.x - c.x;
18469
18470         this.resetConstraints();
18471         this.setXConstraint(leftSpace - (pad.left||0), // left
18472                 c.width - leftSpace - b.width - (pad.right||0) //right
18473         );
18474         this.setYConstraint(topSpace - (pad.top||0), //top
18475                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
18476         );
18477     },
18478
18479     /**
18480      * Returns a reference to the linked element
18481      * @method getEl
18482      * @return {HTMLElement} the html element
18483      */
18484     getEl: function() {
18485         if (!this._domRef) {
18486             this._domRef = Roo.getDom(this.id);
18487         }
18488
18489         return this._domRef;
18490     },
18491
18492     /**
18493      * Returns a reference to the actual element to drag.  By default this is
18494      * the same as the html element, but it can be assigned to another
18495      * element. An example of this can be found in Roo.dd.DDProxy
18496      * @method getDragEl
18497      * @return {HTMLElement} the html element
18498      */
18499     getDragEl: function() {
18500         return Roo.getDom(this.dragElId);
18501     },
18502
18503     /**
18504      * Sets up the DragDrop object.  Must be called in the constructor of any
18505      * Roo.dd.DragDrop subclass
18506      * @method init
18507      * @param id the id of the linked element
18508      * @param {String} sGroup the group of related items
18509      * @param {object} config configuration attributes
18510      */
18511     init: function(id, sGroup, config) {
18512         this.initTarget(id, sGroup, config);
18513         if (!Roo.isTouch) {
18514             Event.on(this.id, "mousedown", this.handleMouseDown, this);
18515         }
18516         Event.on(this.id, "touchstart", this.handleMouseDown, this);
18517         // Event.on(this.id, "selectstart", Event.preventDefault);
18518     },
18519
18520     /**
18521      * Initializes Targeting functionality only... the object does not
18522      * get a mousedown handler.
18523      * @method initTarget
18524      * @param id the id of the linked element
18525      * @param {String} sGroup the group of related items
18526      * @param {object} config configuration attributes
18527      */
18528     initTarget: function(id, sGroup, config) {
18529
18530         // configuration attributes
18531         this.config = config || {};
18532
18533         // create a local reference to the drag and drop manager
18534         this.DDM = Roo.dd.DDM;
18535         // initialize the groups array
18536         this.groups = {};
18537
18538         // assume that we have an element reference instead of an id if the
18539         // parameter is not a string
18540         if (typeof id !== "string") {
18541             id = Roo.id(id);
18542         }
18543
18544         // set the id
18545         this.id = id;
18546
18547         // add to an interaction group
18548         this.addToGroup((sGroup) ? sGroup : "default");
18549
18550         // We don't want to register this as the handle with the manager
18551         // so we just set the id rather than calling the setter.
18552         this.handleElId = id;
18553
18554         // the linked element is the element that gets dragged by default
18555         this.setDragElId(id);
18556
18557         // by default, clicked anchors will not start drag operations.
18558         this.invalidHandleTypes = { A: "A" };
18559         this.invalidHandleIds = {};
18560         this.invalidHandleClasses = [];
18561
18562         this.applyConfig();
18563
18564         this.handleOnAvailable();
18565     },
18566
18567     /**
18568      * Applies the configuration parameters that were passed into the constructor.
18569      * This is supposed to happen at each level through the inheritance chain.  So
18570      * a DDProxy implentation will execute apply config on DDProxy, DD, and
18571      * DragDrop in order to get all of the parameters that are available in
18572      * each object.
18573      * @method applyConfig
18574      */
18575     applyConfig: function() {
18576
18577         // configurable properties:
18578         //    padding, isTarget, maintainOffset, primaryButtonOnly
18579         this.padding           = this.config.padding || [0, 0, 0, 0];
18580         this.isTarget          = (this.config.isTarget !== false);
18581         this.maintainOffset    = (this.config.maintainOffset);
18582         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
18583
18584     },
18585
18586     /**
18587      * Executed when the linked element is available
18588      * @method handleOnAvailable
18589      * @private
18590      */
18591     handleOnAvailable: function() {
18592         this.available = true;
18593         this.resetConstraints();
18594         this.onAvailable();
18595     },
18596
18597      /**
18598      * Configures the padding for the target zone in px.  Effectively expands
18599      * (or reduces) the virtual object size for targeting calculations.
18600      * Supports css-style shorthand; if only one parameter is passed, all sides
18601      * will have that padding, and if only two are passed, the top and bottom
18602      * will have the first param, the left and right the second.
18603      * @method setPadding
18604      * @param {int} iTop    Top pad
18605      * @param {int} iRight  Right pad
18606      * @param {int} iBot    Bot pad
18607      * @param {int} iLeft   Left pad
18608      */
18609     setPadding: function(iTop, iRight, iBot, iLeft) {
18610         // this.padding = [iLeft, iRight, iTop, iBot];
18611         if (!iRight && 0 !== iRight) {
18612             this.padding = [iTop, iTop, iTop, iTop];
18613         } else if (!iBot && 0 !== iBot) {
18614             this.padding = [iTop, iRight, iTop, iRight];
18615         } else {
18616             this.padding = [iTop, iRight, iBot, iLeft];
18617         }
18618     },
18619
18620     /**
18621      * Stores the initial placement of the linked element.
18622      * @method setInitialPosition
18623      * @param {int} diffX   the X offset, default 0
18624      * @param {int} diffY   the Y offset, default 0
18625      */
18626     setInitPosition: function(diffX, diffY) {
18627         var el = this.getEl();
18628
18629         if (!this.DDM.verifyEl(el)) {
18630             return;
18631         }
18632
18633         var dx = diffX || 0;
18634         var dy = diffY || 0;
18635
18636         var p = Dom.getXY( el );
18637
18638         this.initPageX = p[0] - dx;
18639         this.initPageY = p[1] - dy;
18640
18641         this.lastPageX = p[0];
18642         this.lastPageY = p[1];
18643
18644
18645         this.setStartPosition(p);
18646     },
18647
18648     /**
18649      * Sets the start position of the element.  This is set when the obj
18650      * is initialized, the reset when a drag is started.
18651      * @method setStartPosition
18652      * @param pos current position (from previous lookup)
18653      * @private
18654      */
18655     setStartPosition: function(pos) {
18656         var p = pos || Dom.getXY( this.getEl() );
18657         this.deltaSetXY = null;
18658
18659         this.startPageX = p[0];
18660         this.startPageY = p[1];
18661     },
18662
18663     /**
18664      * Add this instance to a group of related drag/drop objects.  All
18665      * instances belong to at least one group, and can belong to as many
18666      * groups as needed.
18667      * @method addToGroup
18668      * @param sGroup {string} the name of the group
18669      */
18670     addToGroup: function(sGroup) {
18671         this.groups[sGroup] = true;
18672         this.DDM.regDragDrop(this, sGroup);
18673     },
18674
18675     /**
18676      * Remove's this instance from the supplied interaction group
18677      * @method removeFromGroup
18678      * @param {string}  sGroup  The group to drop
18679      */
18680     removeFromGroup: function(sGroup) {
18681         if (this.groups[sGroup]) {
18682             delete this.groups[sGroup];
18683         }
18684
18685         this.DDM.removeDDFromGroup(this, sGroup);
18686     },
18687
18688     /**
18689      * Allows you to specify that an element other than the linked element
18690      * will be moved with the cursor during a drag
18691      * @method setDragElId
18692      * @param id {string} the id of the element that will be used to initiate the drag
18693      */
18694     setDragElId: function(id) {
18695         this.dragElId = id;
18696     },
18697
18698     /**
18699      * Allows you to specify a child of the linked element that should be
18700      * used to initiate the drag operation.  An example of this would be if
18701      * you have a content div with text and links.  Clicking anywhere in the
18702      * content area would normally start the drag operation.  Use this method
18703      * to specify that an element inside of the content div is the element
18704      * that starts the drag operation.
18705      * @method setHandleElId
18706      * @param id {string} the id of the element that will be used to
18707      * initiate the drag.
18708      */
18709     setHandleElId: function(id) {
18710         if (typeof id !== "string") {
18711             id = Roo.id(id);
18712         }
18713         this.handleElId = id;
18714         this.DDM.regHandle(this.id, id);
18715     },
18716
18717     /**
18718      * Allows you to set an element outside of the linked element as a drag
18719      * handle
18720      * @method setOuterHandleElId
18721      * @param id the id of the element that will be used to initiate the drag
18722      */
18723     setOuterHandleElId: function(id) {
18724         if (typeof id !== "string") {
18725             id = Roo.id(id);
18726         }
18727         Event.on(id, "mousedown",
18728                 this.handleMouseDown, this);
18729         this.setHandleElId(id);
18730
18731         this.hasOuterHandles = true;
18732     },
18733
18734     /**
18735      * Remove all drag and drop hooks for this element
18736      * @method unreg
18737      */
18738     unreg: function() {
18739         Event.un(this.id, "mousedown",
18740                 this.handleMouseDown);
18741         Event.un(this.id, "touchstart",
18742                 this.handleMouseDown);
18743         this._domRef = null;
18744         this.DDM._remove(this);
18745     },
18746
18747     destroy : function(){
18748         this.unreg();
18749     },
18750
18751     /**
18752      * Returns true if this instance is locked, or the drag drop mgr is locked
18753      * (meaning that all drag/drop is disabled on the page.)
18754      * @method isLocked
18755      * @return {boolean} true if this obj or all drag/drop is locked, else
18756      * false
18757      */
18758     isLocked: function() {
18759         return (this.DDM.isLocked() || this.locked);
18760     },
18761
18762     /**
18763      * Fired when this object is clicked
18764      * @method handleMouseDown
18765      * @param {Event} e
18766      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
18767      * @private
18768      */
18769     handleMouseDown: function(e, oDD){
18770      
18771         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
18772             //Roo.log('not touch/ button !=0');
18773             return;
18774         }
18775         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
18776             return; // double touch..
18777         }
18778         
18779
18780         if (this.isLocked()) {
18781             //Roo.log('locked');
18782             return;
18783         }
18784
18785         this.DDM.refreshCache(this.groups);
18786 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
18787         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
18788         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
18789             //Roo.log('no outer handes or not over target');
18790                 // do nothing.
18791         } else {
18792 //            Roo.log('check validator');
18793             if (this.clickValidator(e)) {
18794 //                Roo.log('validate success');
18795                 // set the initial element position
18796                 this.setStartPosition();
18797
18798
18799                 this.b4MouseDown(e);
18800                 this.onMouseDown(e);
18801
18802                 this.DDM.handleMouseDown(e, this);
18803
18804                 this.DDM.stopEvent(e);
18805             } else {
18806
18807
18808             }
18809         }
18810     },
18811
18812     clickValidator: function(e) {
18813         var target = e.getTarget();
18814         return ( this.isValidHandleChild(target) &&
18815                     (this.id == this.handleElId ||
18816                         this.DDM.handleWasClicked(target, this.id)) );
18817     },
18818
18819     /**
18820      * Allows you to specify a tag name that should not start a drag operation
18821      * when clicked.  This is designed to facilitate embedding links within a
18822      * drag handle that do something other than start the drag.
18823      * @method addInvalidHandleType
18824      * @param {string} tagName the type of element to exclude
18825      */
18826     addInvalidHandleType: function(tagName) {
18827         var type = tagName.toUpperCase();
18828         this.invalidHandleTypes[type] = type;
18829     },
18830
18831     /**
18832      * Lets you to specify an element id for a child of a drag handle
18833      * that should not initiate a drag
18834      * @method addInvalidHandleId
18835      * @param {string} id the element id of the element you wish to ignore
18836      */
18837     addInvalidHandleId: function(id) {
18838         if (typeof id !== "string") {
18839             id = Roo.id(id);
18840         }
18841         this.invalidHandleIds[id] = id;
18842     },
18843
18844     /**
18845      * Lets you specify a css class of elements that will not initiate a drag
18846      * @method addInvalidHandleClass
18847      * @param {string} cssClass the class of the elements you wish to ignore
18848      */
18849     addInvalidHandleClass: function(cssClass) {
18850         this.invalidHandleClasses.push(cssClass);
18851     },
18852
18853     /**
18854      * Unsets an excluded tag name set by addInvalidHandleType
18855      * @method removeInvalidHandleType
18856      * @param {string} tagName the type of element to unexclude
18857      */
18858     removeInvalidHandleType: function(tagName) {
18859         var type = tagName.toUpperCase();
18860         // this.invalidHandleTypes[type] = null;
18861         delete this.invalidHandleTypes[type];
18862     },
18863
18864     /**
18865      * Unsets an invalid handle id
18866      * @method removeInvalidHandleId
18867      * @param {string} id the id of the element to re-enable
18868      */
18869     removeInvalidHandleId: function(id) {
18870         if (typeof id !== "string") {
18871             id = Roo.id(id);
18872         }
18873         delete this.invalidHandleIds[id];
18874     },
18875
18876     /**
18877      * Unsets an invalid css class
18878      * @method removeInvalidHandleClass
18879      * @param {string} cssClass the class of the element(s) you wish to
18880      * re-enable
18881      */
18882     removeInvalidHandleClass: function(cssClass) {
18883         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
18884             if (this.invalidHandleClasses[i] == cssClass) {
18885                 delete this.invalidHandleClasses[i];
18886             }
18887         }
18888     },
18889
18890     /**
18891      * Checks the tag exclusion list to see if this click should be ignored
18892      * @method isValidHandleChild
18893      * @param {HTMLElement} node the HTMLElement to evaluate
18894      * @return {boolean} true if this is a valid tag type, false if not
18895      */
18896     isValidHandleChild: function(node) {
18897
18898         var valid = true;
18899         // var n = (node.nodeName == "#text") ? node.parentNode : node;
18900         var nodeName;
18901         try {
18902             nodeName = node.nodeName.toUpperCase();
18903         } catch(e) {
18904             nodeName = node.nodeName;
18905         }
18906         valid = valid && !this.invalidHandleTypes[nodeName];
18907         valid = valid && !this.invalidHandleIds[node.id];
18908
18909         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
18910             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
18911         }
18912
18913
18914         return valid;
18915
18916     },
18917
18918     /**
18919      * Create the array of horizontal tick marks if an interval was specified
18920      * in setXConstraint().
18921      * @method setXTicks
18922      * @private
18923      */
18924     setXTicks: function(iStartX, iTickSize) {
18925         this.xTicks = [];
18926         this.xTickSize = iTickSize;
18927
18928         var tickMap = {};
18929
18930         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
18931             if (!tickMap[i]) {
18932                 this.xTicks[this.xTicks.length] = i;
18933                 tickMap[i] = true;
18934             }
18935         }
18936
18937         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
18938             if (!tickMap[i]) {
18939                 this.xTicks[this.xTicks.length] = i;
18940                 tickMap[i] = true;
18941             }
18942         }
18943
18944         this.xTicks.sort(this.DDM.numericSort) ;
18945     },
18946
18947     /**
18948      * Create the array of vertical tick marks if an interval was specified in
18949      * setYConstraint().
18950      * @method setYTicks
18951      * @private
18952      */
18953     setYTicks: function(iStartY, iTickSize) {
18954         this.yTicks = [];
18955         this.yTickSize = iTickSize;
18956
18957         var tickMap = {};
18958
18959         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
18960             if (!tickMap[i]) {
18961                 this.yTicks[this.yTicks.length] = i;
18962                 tickMap[i] = true;
18963             }
18964         }
18965
18966         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
18967             if (!tickMap[i]) {
18968                 this.yTicks[this.yTicks.length] = i;
18969                 tickMap[i] = true;
18970             }
18971         }
18972
18973         this.yTicks.sort(this.DDM.numericSort) ;
18974     },
18975
18976     /**
18977      * By default, the element can be dragged any place on the screen.  Use
18978      * this method to limit the horizontal travel of the element.  Pass in
18979      * 0,0 for the parameters if you want to lock the drag to the y axis.
18980      * @method setXConstraint
18981      * @param {int} iLeft the number of pixels the element can move to the left
18982      * @param {int} iRight the number of pixels the element can move to the
18983      * right
18984      * @param {int} iTickSize optional parameter for specifying that the
18985      * element
18986      * should move iTickSize pixels at a time.
18987      */
18988     setXConstraint: function(iLeft, iRight, iTickSize) {
18989         this.leftConstraint = iLeft;
18990         this.rightConstraint = iRight;
18991
18992         this.minX = this.initPageX - iLeft;
18993         this.maxX = this.initPageX + iRight;
18994         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
18995
18996         this.constrainX = true;
18997     },
18998
18999     /**
19000      * Clears any constraints applied to this instance.  Also clears ticks
19001      * since they can't exist independent of a constraint at this time.
19002      * @method clearConstraints
19003      */
19004     clearConstraints: function() {
19005         this.constrainX = false;
19006         this.constrainY = false;
19007         this.clearTicks();
19008     },
19009
19010     /**
19011      * Clears any tick interval defined for this instance
19012      * @method clearTicks
19013      */
19014     clearTicks: function() {
19015         this.xTicks = null;
19016         this.yTicks = null;
19017         this.xTickSize = 0;
19018         this.yTickSize = 0;
19019     },
19020
19021     /**
19022      * By default, the element can be dragged any place on the screen.  Set
19023      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19024      * parameters if you want to lock the drag to the x axis.
19025      * @method setYConstraint
19026      * @param {int} iUp the number of pixels the element can move up
19027      * @param {int} iDown the number of pixels the element can move down
19028      * @param {int} iTickSize optional parameter for specifying that the
19029      * element should move iTickSize pixels at a time.
19030      */
19031     setYConstraint: function(iUp, iDown, iTickSize) {
19032         this.topConstraint = iUp;
19033         this.bottomConstraint = iDown;
19034
19035         this.minY = this.initPageY - iUp;
19036         this.maxY = this.initPageY + iDown;
19037         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19038
19039         this.constrainY = true;
19040
19041     },
19042
19043     /**
19044      * resetConstraints must be called if you manually reposition a dd element.
19045      * @method resetConstraints
19046      * @param {boolean} maintainOffset
19047      */
19048     resetConstraints: function() {
19049
19050
19051         // Maintain offsets if necessary
19052         if (this.initPageX || this.initPageX === 0) {
19053             // figure out how much this thing has moved
19054             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19055             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19056
19057             this.setInitPosition(dx, dy);
19058
19059         // This is the first time we have detected the element's position
19060         } else {
19061             this.setInitPosition();
19062         }
19063
19064         if (this.constrainX) {
19065             this.setXConstraint( this.leftConstraint,
19066                                  this.rightConstraint,
19067                                  this.xTickSize        );
19068         }
19069
19070         if (this.constrainY) {
19071             this.setYConstraint( this.topConstraint,
19072                                  this.bottomConstraint,
19073                                  this.yTickSize         );
19074         }
19075     },
19076
19077     /**
19078      * Normally the drag element is moved pixel by pixel, but we can specify
19079      * that it move a number of pixels at a time.  This method resolves the
19080      * location when we have it set up like this.
19081      * @method getTick
19082      * @param {int} val where we want to place the object
19083      * @param {int[]} tickArray sorted array of valid points
19084      * @return {int} the closest tick
19085      * @private
19086      */
19087     getTick: function(val, tickArray) {
19088
19089         if (!tickArray) {
19090             // If tick interval is not defined, it is effectively 1 pixel,
19091             // so we return the value passed to us.
19092             return val;
19093         } else if (tickArray[0] >= val) {
19094             // The value is lower than the first tick, so we return the first
19095             // tick.
19096             return tickArray[0];
19097         } else {
19098             for (var i=0, len=tickArray.length; i<len; ++i) {
19099                 var next = i + 1;
19100                 if (tickArray[next] && tickArray[next] >= val) {
19101                     var diff1 = val - tickArray[i];
19102                     var diff2 = tickArray[next] - val;
19103                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19104                 }
19105             }
19106
19107             // The value is larger than the last tick, so we return the last
19108             // tick.
19109             return tickArray[tickArray.length - 1];
19110         }
19111     },
19112
19113     /**
19114      * toString method
19115      * @method toString
19116      * @return {string} string representation of the dd obj
19117      */
19118     toString: function() {
19119         return ("DragDrop " + this.id);
19120     }
19121
19122 });
19123
19124 })();
19125 /*
19126  * Based on:
19127  * Ext JS Library 1.1.1
19128  * Copyright(c) 2006-2007, Ext JS, LLC.
19129  *
19130  * Originally Released Under LGPL - original licence link has changed is not relivant.
19131  *
19132  * Fork - LGPL
19133  * <script type="text/javascript">
19134  */
19135
19136
19137 /**
19138  * The drag and drop utility provides a framework for building drag and drop
19139  * applications.  In addition to enabling drag and drop for specific elements,
19140  * the drag and drop elements are tracked by the manager class, and the
19141  * interactions between the various elements are tracked during the drag and
19142  * the implementing code is notified about these important moments.
19143  */
19144
19145 // Only load the library once.  Rewriting the manager class would orphan
19146 // existing drag and drop instances.
19147 if (!Roo.dd.DragDropMgr) {
19148
19149 /**
19150  * @class Roo.dd.DragDropMgr
19151  * DragDropMgr is a singleton that tracks the element interaction for
19152  * all DragDrop items in the window.  Generally, you will not call
19153  * this class directly, but it does have helper methods that could
19154  * be useful in your DragDrop implementations.
19155  * @singleton
19156  */
19157 Roo.dd.DragDropMgr = function() {
19158
19159     var Event = Roo.EventManager;
19160
19161     return {
19162
19163         /**
19164          * Two dimensional Array of registered DragDrop objects.  The first
19165          * dimension is the DragDrop item group, the second the DragDrop
19166          * object.
19167          * @property ids
19168          * @type {string: string}
19169          * @private
19170          * @static
19171          */
19172         ids: {},
19173
19174         /**
19175          * Array of element ids defined as drag handles.  Used to determine
19176          * if the element that generated the mousedown event is actually the
19177          * handle and not the html element itself.
19178          * @property handleIds
19179          * @type {string: string}
19180          * @private
19181          * @static
19182          */
19183         handleIds: {},
19184
19185         /**
19186          * the DragDrop object that is currently being dragged
19187          * @property dragCurrent
19188          * @type DragDrop
19189          * @private
19190          * @static
19191          **/
19192         dragCurrent: null,
19193
19194         /**
19195          * the DragDrop object(s) that are being hovered over
19196          * @property dragOvers
19197          * @type Array
19198          * @private
19199          * @static
19200          */
19201         dragOvers: {},
19202
19203         /**
19204          * the X distance between the cursor and the object being dragged
19205          * @property deltaX
19206          * @type int
19207          * @private
19208          * @static
19209          */
19210         deltaX: 0,
19211
19212         /**
19213          * the Y distance between the cursor and the object being dragged
19214          * @property deltaY
19215          * @type int
19216          * @private
19217          * @static
19218          */
19219         deltaY: 0,
19220
19221         /**
19222          * Flag to determine if we should prevent the default behavior of the
19223          * events we define. By default this is true, but this can be set to
19224          * false if you need the default behavior (not recommended)
19225          * @property preventDefault
19226          * @type boolean
19227          * @static
19228          */
19229         preventDefault: true,
19230
19231         /**
19232          * Flag to determine if we should stop the propagation of the events
19233          * we generate. This is true by default but you may want to set it to
19234          * false if the html element contains other features that require the
19235          * mouse click.
19236          * @property stopPropagation
19237          * @type boolean
19238          * @static
19239          */
19240         stopPropagation: true,
19241
19242         /**
19243          * Internal flag that is set to true when drag and drop has been
19244          * intialized
19245          * @property initialized
19246          * @private
19247          * @static
19248          */
19249         initalized: false,
19250
19251         /**
19252          * All drag and drop can be disabled.
19253          * @property locked
19254          * @private
19255          * @static
19256          */
19257         locked: false,
19258
19259         /**
19260          * Called the first time an element is registered.
19261          * @method init
19262          * @private
19263          * @static
19264          */
19265         init: function() {
19266             this.initialized = true;
19267         },
19268
19269         /**
19270          * In point mode, drag and drop interaction is defined by the
19271          * location of the cursor during the drag/drop
19272          * @property POINT
19273          * @type int
19274          * @static
19275          */
19276         POINT: 0,
19277
19278         /**
19279          * In intersect mode, drag and drop interactio nis defined by the
19280          * overlap of two or more drag and drop objects.
19281          * @property INTERSECT
19282          * @type int
19283          * @static
19284          */
19285         INTERSECT: 1,
19286
19287         /**
19288          * The current drag and drop mode.  Default: POINT
19289          * @property mode
19290          * @type int
19291          * @static
19292          */
19293         mode: 0,
19294
19295         /**
19296          * Runs method on all drag and drop objects
19297          * @method _execOnAll
19298          * @private
19299          * @static
19300          */
19301         _execOnAll: function(sMethod, args) {
19302             for (var i in this.ids) {
19303                 for (var j in this.ids[i]) {
19304                     var oDD = this.ids[i][j];
19305                     if (! this.isTypeOfDD(oDD)) {
19306                         continue;
19307                     }
19308                     oDD[sMethod].apply(oDD, args);
19309                 }
19310             }
19311         },
19312
19313         /**
19314          * Drag and drop initialization.  Sets up the global event handlers
19315          * @method _onLoad
19316          * @private
19317          * @static
19318          */
19319         _onLoad: function() {
19320
19321             this.init();
19322
19323             if (!Roo.isTouch) {
19324                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
19325                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
19326             }
19327             Event.on(document, "touchend",   this.handleMouseUp, this, true);
19328             Event.on(document, "touchmove", this.handleMouseMove, this, true);
19329             
19330             Event.on(window,   "unload",    this._onUnload, this, true);
19331             Event.on(window,   "resize",    this._onResize, this, true);
19332             // Event.on(window,   "mouseout",    this._test);
19333
19334         },
19335
19336         /**
19337          * Reset constraints on all drag and drop objs
19338          * @method _onResize
19339          * @private
19340          * @static
19341          */
19342         _onResize: function(e) {
19343             this._execOnAll("resetConstraints", []);
19344         },
19345
19346         /**
19347          * Lock all drag and drop functionality
19348          * @method lock
19349          * @static
19350          */
19351         lock: function() { this.locked = true; },
19352
19353         /**
19354          * Unlock all drag and drop functionality
19355          * @method unlock
19356          * @static
19357          */
19358         unlock: function() { this.locked = false; },
19359
19360         /**
19361          * Is drag and drop locked?
19362          * @method isLocked
19363          * @return {boolean} True if drag and drop is locked, false otherwise.
19364          * @static
19365          */
19366         isLocked: function() { return this.locked; },
19367
19368         /**
19369          * Location cache that is set for all drag drop objects when a drag is
19370          * initiated, cleared when the drag is finished.
19371          * @property locationCache
19372          * @private
19373          * @static
19374          */
19375         locationCache: {},
19376
19377         /**
19378          * Set useCache to false if you want to force object the lookup of each
19379          * drag and drop linked element constantly during a drag.
19380          * @property useCache
19381          * @type boolean
19382          * @static
19383          */
19384         useCache: true,
19385
19386         /**
19387          * The number of pixels that the mouse needs to move after the
19388          * mousedown before the drag is initiated.  Default=3;
19389          * @property clickPixelThresh
19390          * @type int
19391          * @static
19392          */
19393         clickPixelThresh: 3,
19394
19395         /**
19396          * The number of milliseconds after the mousedown event to initiate the
19397          * drag if we don't get a mouseup event. Default=1000
19398          * @property clickTimeThresh
19399          * @type int
19400          * @static
19401          */
19402         clickTimeThresh: 350,
19403
19404         /**
19405          * Flag that indicates that either the drag pixel threshold or the
19406          * mousdown time threshold has been met
19407          * @property dragThreshMet
19408          * @type boolean
19409          * @private
19410          * @static
19411          */
19412         dragThreshMet: false,
19413
19414         /**
19415          * Timeout used for the click time threshold
19416          * @property clickTimeout
19417          * @type Object
19418          * @private
19419          * @static
19420          */
19421         clickTimeout: null,
19422
19423         /**
19424          * The X position of the mousedown event stored for later use when a
19425          * drag threshold is met.
19426          * @property startX
19427          * @type int
19428          * @private
19429          * @static
19430          */
19431         startX: 0,
19432
19433         /**
19434          * The Y position of the mousedown event stored for later use when a
19435          * drag threshold is met.
19436          * @property startY
19437          * @type int
19438          * @private
19439          * @static
19440          */
19441         startY: 0,
19442
19443         /**
19444          * Each DragDrop instance must be registered with the DragDropMgr.
19445          * This is executed in DragDrop.init()
19446          * @method regDragDrop
19447          * @param {DragDrop} oDD the DragDrop object to register
19448          * @param {String} sGroup the name of the group this element belongs to
19449          * @static
19450          */
19451         regDragDrop: function(oDD, sGroup) {
19452             if (!this.initialized) { this.init(); }
19453
19454             if (!this.ids[sGroup]) {
19455                 this.ids[sGroup] = {};
19456             }
19457             this.ids[sGroup][oDD.id] = oDD;
19458         },
19459
19460         /**
19461          * Removes the supplied dd instance from the supplied group. Executed
19462          * by DragDrop.removeFromGroup, so don't call this function directly.
19463          * @method removeDDFromGroup
19464          * @private
19465          * @static
19466          */
19467         removeDDFromGroup: function(oDD, sGroup) {
19468             if (!this.ids[sGroup]) {
19469                 this.ids[sGroup] = {};
19470             }
19471
19472             var obj = this.ids[sGroup];
19473             if (obj && obj[oDD.id]) {
19474                 delete obj[oDD.id];
19475             }
19476         },
19477
19478         /**
19479          * Unregisters a drag and drop item.  This is executed in
19480          * DragDrop.unreg, use that method instead of calling this directly.
19481          * @method _remove
19482          * @private
19483          * @static
19484          */
19485         _remove: function(oDD) {
19486             for (var g in oDD.groups) {
19487                 if (g && this.ids[g][oDD.id]) {
19488                     delete this.ids[g][oDD.id];
19489                 }
19490             }
19491             delete this.handleIds[oDD.id];
19492         },
19493
19494         /**
19495          * Each DragDrop handle element must be registered.  This is done
19496          * automatically when executing DragDrop.setHandleElId()
19497          * @method regHandle
19498          * @param {String} sDDId the DragDrop id this element is a handle for
19499          * @param {String} sHandleId the id of the element that is the drag
19500          * handle
19501          * @static
19502          */
19503         regHandle: function(sDDId, sHandleId) {
19504             if (!this.handleIds[sDDId]) {
19505                 this.handleIds[sDDId] = {};
19506             }
19507             this.handleIds[sDDId][sHandleId] = sHandleId;
19508         },
19509
19510         /**
19511          * Utility function to determine if a given element has been
19512          * registered as a drag drop item.
19513          * @method isDragDrop
19514          * @param {String} id the element id to check
19515          * @return {boolean} true if this element is a DragDrop item,
19516          * false otherwise
19517          * @static
19518          */
19519         isDragDrop: function(id) {
19520             return ( this.getDDById(id) ) ? true : false;
19521         },
19522
19523         /**
19524          * Returns the drag and drop instances that are in all groups the
19525          * passed in instance belongs to.
19526          * @method getRelated
19527          * @param {DragDrop} p_oDD the obj to get related data for
19528          * @param {boolean} bTargetsOnly if true, only return targetable objs
19529          * @return {DragDrop[]} the related instances
19530          * @static
19531          */
19532         getRelated: function(p_oDD, bTargetsOnly) {
19533             var oDDs = [];
19534             for (var i in p_oDD.groups) {
19535                 for (j in this.ids[i]) {
19536                     var dd = this.ids[i][j];
19537                     if (! this.isTypeOfDD(dd)) {
19538                         continue;
19539                     }
19540                     if (!bTargetsOnly || dd.isTarget) {
19541                         oDDs[oDDs.length] = dd;
19542                     }
19543                 }
19544             }
19545
19546             return oDDs;
19547         },
19548
19549         /**
19550          * Returns true if the specified dd target is a legal target for
19551          * the specifice drag obj
19552          * @method isLegalTarget
19553          * @param {DragDrop} the drag obj
19554          * @param {DragDrop} the target
19555          * @return {boolean} true if the target is a legal target for the
19556          * dd obj
19557          * @static
19558          */
19559         isLegalTarget: function (oDD, oTargetDD) {
19560             var targets = this.getRelated(oDD, true);
19561             for (var i=0, len=targets.length;i<len;++i) {
19562                 if (targets[i].id == oTargetDD.id) {
19563                     return true;
19564                 }
19565             }
19566
19567             return false;
19568         },
19569
19570         /**
19571          * My goal is to be able to transparently determine if an object is
19572          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
19573          * returns "object", oDD.constructor.toString() always returns
19574          * "DragDrop" and not the name of the subclass.  So for now it just
19575          * evaluates a well-known variable in DragDrop.
19576          * @method isTypeOfDD
19577          * @param {Object} the object to evaluate
19578          * @return {boolean} true if typeof oDD = DragDrop
19579          * @static
19580          */
19581         isTypeOfDD: function (oDD) {
19582             return (oDD && oDD.__ygDragDrop);
19583         },
19584
19585         /**
19586          * Utility function to determine if a given element has been
19587          * registered as a drag drop handle for the given Drag Drop object.
19588          * @method isHandle
19589          * @param {String} id the element id to check
19590          * @return {boolean} true if this element is a DragDrop handle, false
19591          * otherwise
19592          * @static
19593          */
19594         isHandle: function(sDDId, sHandleId) {
19595             return ( this.handleIds[sDDId] &&
19596                             this.handleIds[sDDId][sHandleId] );
19597         },
19598
19599         /**
19600          * Returns the DragDrop instance for a given id
19601          * @method getDDById
19602          * @param {String} id the id of the DragDrop object
19603          * @return {DragDrop} the drag drop object, null if it is not found
19604          * @static
19605          */
19606         getDDById: function(id) {
19607             for (var i in this.ids) {
19608                 if (this.ids[i][id]) {
19609                     return this.ids[i][id];
19610                 }
19611             }
19612             return null;
19613         },
19614
19615         /**
19616          * Fired after a registered DragDrop object gets the mousedown event.
19617          * Sets up the events required to track the object being dragged
19618          * @method handleMouseDown
19619          * @param {Event} e the event
19620          * @param oDD the DragDrop object being dragged
19621          * @private
19622          * @static
19623          */
19624         handleMouseDown: function(e, oDD) {
19625             if(Roo.QuickTips){
19626                 Roo.QuickTips.disable();
19627             }
19628             this.currentTarget = e.getTarget();
19629
19630             this.dragCurrent = oDD;
19631
19632             var el = oDD.getEl();
19633
19634             // track start position
19635             this.startX = e.getPageX();
19636             this.startY = e.getPageY();
19637
19638             this.deltaX = this.startX - el.offsetLeft;
19639             this.deltaY = this.startY - el.offsetTop;
19640
19641             this.dragThreshMet = false;
19642
19643             this.clickTimeout = setTimeout(
19644                     function() {
19645                         var DDM = Roo.dd.DDM;
19646                         DDM.startDrag(DDM.startX, DDM.startY);
19647                     },
19648                     this.clickTimeThresh );
19649         },
19650
19651         /**
19652          * Fired when either the drag pixel threshol or the mousedown hold
19653          * time threshold has been met.
19654          * @method startDrag
19655          * @param x {int} the X position of the original mousedown
19656          * @param y {int} the Y position of the original mousedown
19657          * @static
19658          */
19659         startDrag: function(x, y) {
19660             clearTimeout(this.clickTimeout);
19661             if (this.dragCurrent) {
19662                 this.dragCurrent.b4StartDrag(x, y);
19663                 this.dragCurrent.startDrag(x, y);
19664             }
19665             this.dragThreshMet = true;
19666         },
19667
19668         /**
19669          * Internal function to handle the mouseup event.  Will be invoked
19670          * from the context of the document.
19671          * @method handleMouseUp
19672          * @param {Event} e the event
19673          * @private
19674          * @static
19675          */
19676         handleMouseUp: function(e) {
19677
19678             if(Roo.QuickTips){
19679                 Roo.QuickTips.enable();
19680             }
19681             if (! this.dragCurrent) {
19682                 return;
19683             }
19684
19685             clearTimeout(this.clickTimeout);
19686
19687             if (this.dragThreshMet) {
19688                 this.fireEvents(e, true);
19689             } else {
19690             }
19691
19692             this.stopDrag(e);
19693
19694             this.stopEvent(e);
19695         },
19696
19697         /**
19698          * Utility to stop event propagation and event default, if these
19699          * features are turned on.
19700          * @method stopEvent
19701          * @param {Event} e the event as returned by this.getEvent()
19702          * @static
19703          */
19704         stopEvent: function(e){
19705             if(this.stopPropagation) {
19706                 e.stopPropagation();
19707             }
19708
19709             if (this.preventDefault) {
19710                 e.preventDefault();
19711             }
19712         },
19713
19714         /**
19715          * Internal function to clean up event handlers after the drag
19716          * operation is complete
19717          * @method stopDrag
19718          * @param {Event} e the event
19719          * @private
19720          * @static
19721          */
19722         stopDrag: function(e) {
19723             // Fire the drag end event for the item that was dragged
19724             if (this.dragCurrent) {
19725                 if (this.dragThreshMet) {
19726                     this.dragCurrent.b4EndDrag(e);
19727                     this.dragCurrent.endDrag(e);
19728                 }
19729
19730                 this.dragCurrent.onMouseUp(e);
19731             }
19732
19733             this.dragCurrent = null;
19734             this.dragOvers = {};
19735         },
19736
19737         /**
19738          * Internal function to handle the mousemove event.  Will be invoked
19739          * from the context of the html element.
19740          *
19741          * @TODO figure out what we can do about mouse events lost when the
19742          * user drags objects beyond the window boundary.  Currently we can
19743          * detect this in internet explorer by verifying that the mouse is
19744          * down during the mousemove event.  Firefox doesn't give us the
19745          * button state on the mousemove event.
19746          * @method handleMouseMove
19747          * @param {Event} e the event
19748          * @private
19749          * @static
19750          */
19751         handleMouseMove: function(e) {
19752             if (! this.dragCurrent) {
19753                 return true;
19754             }
19755
19756             // var button = e.which || e.button;
19757
19758             // check for IE mouseup outside of page boundary
19759             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
19760                 this.stopEvent(e);
19761                 return this.handleMouseUp(e);
19762             }
19763
19764             if (!this.dragThreshMet) {
19765                 var diffX = Math.abs(this.startX - e.getPageX());
19766                 var diffY = Math.abs(this.startY - e.getPageY());
19767                 if (diffX > this.clickPixelThresh ||
19768                             diffY > this.clickPixelThresh) {
19769                     this.startDrag(this.startX, this.startY);
19770                 }
19771             }
19772
19773             if (this.dragThreshMet) {
19774                 this.dragCurrent.b4Drag(e);
19775                 this.dragCurrent.onDrag(e);
19776                 if(!this.dragCurrent.moveOnly){
19777                     this.fireEvents(e, false);
19778                 }
19779             }
19780
19781             this.stopEvent(e);
19782
19783             return true;
19784         },
19785
19786         /**
19787          * Iterates over all of the DragDrop elements to find ones we are
19788          * hovering over or dropping on
19789          * @method fireEvents
19790          * @param {Event} e the event
19791          * @param {boolean} isDrop is this a drop op or a mouseover op?
19792          * @private
19793          * @static
19794          */
19795         fireEvents: function(e, isDrop) {
19796             var dc = this.dragCurrent;
19797
19798             // If the user did the mouse up outside of the window, we could
19799             // get here even though we have ended the drag.
19800             if (!dc || dc.isLocked()) {
19801                 return;
19802             }
19803
19804             var pt = e.getPoint();
19805
19806             // cache the previous dragOver array
19807             var oldOvers = [];
19808
19809             var outEvts   = [];
19810             var overEvts  = [];
19811             var dropEvts  = [];
19812             var enterEvts = [];
19813
19814             // Check to see if the object(s) we were hovering over is no longer
19815             // being hovered over so we can fire the onDragOut event
19816             for (var i in this.dragOvers) {
19817
19818                 var ddo = this.dragOvers[i];
19819
19820                 if (! this.isTypeOfDD(ddo)) {
19821                     continue;
19822                 }
19823
19824                 if (! this.isOverTarget(pt, ddo, this.mode)) {
19825                     outEvts.push( ddo );
19826                 }
19827
19828                 oldOvers[i] = true;
19829                 delete this.dragOvers[i];
19830             }
19831
19832             for (var sGroup in dc.groups) {
19833
19834                 if ("string" != typeof sGroup) {
19835                     continue;
19836                 }
19837
19838                 for (i in this.ids[sGroup]) {
19839                     var oDD = this.ids[sGroup][i];
19840                     if (! this.isTypeOfDD(oDD)) {
19841                         continue;
19842                     }
19843
19844                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
19845                         if (this.isOverTarget(pt, oDD, this.mode)) {
19846                             // look for drop interactions
19847                             if (isDrop) {
19848                                 dropEvts.push( oDD );
19849                             // look for drag enter and drag over interactions
19850                             } else {
19851
19852                                 // initial drag over: dragEnter fires
19853                                 if (!oldOvers[oDD.id]) {
19854                                     enterEvts.push( oDD );
19855                                 // subsequent drag overs: dragOver fires
19856                                 } else {
19857                                     overEvts.push( oDD );
19858                                 }
19859
19860                                 this.dragOvers[oDD.id] = oDD;
19861                             }
19862                         }
19863                     }
19864                 }
19865             }
19866
19867             if (this.mode) {
19868                 if (outEvts.length) {
19869                     dc.b4DragOut(e, outEvts);
19870                     dc.onDragOut(e, outEvts);
19871                 }
19872
19873                 if (enterEvts.length) {
19874                     dc.onDragEnter(e, enterEvts);
19875                 }
19876
19877                 if (overEvts.length) {
19878                     dc.b4DragOver(e, overEvts);
19879                     dc.onDragOver(e, overEvts);
19880                 }
19881
19882                 if (dropEvts.length) {
19883                     dc.b4DragDrop(e, dropEvts);
19884                     dc.onDragDrop(e, dropEvts);
19885                 }
19886
19887             } else {
19888                 // fire dragout events
19889                 var len = 0;
19890                 for (i=0, len=outEvts.length; i<len; ++i) {
19891                     dc.b4DragOut(e, outEvts[i].id);
19892                     dc.onDragOut(e, outEvts[i].id);
19893                 }
19894
19895                 // fire enter events
19896                 for (i=0,len=enterEvts.length; i<len; ++i) {
19897                     // dc.b4DragEnter(e, oDD.id);
19898                     dc.onDragEnter(e, enterEvts[i].id);
19899                 }
19900
19901                 // fire over events
19902                 for (i=0,len=overEvts.length; i<len; ++i) {
19903                     dc.b4DragOver(e, overEvts[i].id);
19904                     dc.onDragOver(e, overEvts[i].id);
19905                 }
19906
19907                 // fire drop events
19908                 for (i=0, len=dropEvts.length; i<len; ++i) {
19909                     dc.b4DragDrop(e, dropEvts[i].id);
19910                     dc.onDragDrop(e, dropEvts[i].id);
19911                 }
19912
19913             }
19914
19915             // notify about a drop that did not find a target
19916             if (isDrop && !dropEvts.length) {
19917                 dc.onInvalidDrop(e);
19918             }
19919
19920         },
19921
19922         /**
19923          * Helper function for getting the best match from the list of drag
19924          * and drop objects returned by the drag and drop events when we are
19925          * in INTERSECT mode.  It returns either the first object that the
19926          * cursor is over, or the object that has the greatest overlap with
19927          * the dragged element.
19928          * @method getBestMatch
19929          * @param  {DragDrop[]} dds The array of drag and drop objects
19930          * targeted
19931          * @return {DragDrop}       The best single match
19932          * @static
19933          */
19934         getBestMatch: function(dds) {
19935             var winner = null;
19936             // Return null if the input is not what we expect
19937             //if (!dds || !dds.length || dds.length == 0) {
19938                // winner = null;
19939             // If there is only one item, it wins
19940             //} else if (dds.length == 1) {
19941
19942             var len = dds.length;
19943
19944             if (len == 1) {
19945                 winner = dds[0];
19946             } else {
19947                 // Loop through the targeted items
19948                 for (var i=0; i<len; ++i) {
19949                     var dd = dds[i];
19950                     // If the cursor is over the object, it wins.  If the
19951                     // cursor is over multiple matches, the first one we come
19952                     // to wins.
19953                     if (dd.cursorIsOver) {
19954                         winner = dd;
19955                         break;
19956                     // Otherwise the object with the most overlap wins
19957                     } else {
19958                         if (!winner ||
19959                             winner.overlap.getArea() < dd.overlap.getArea()) {
19960                             winner = dd;
19961                         }
19962                     }
19963                 }
19964             }
19965
19966             return winner;
19967         },
19968
19969         /**
19970          * Refreshes the cache of the top-left and bottom-right points of the
19971          * drag and drop objects in the specified group(s).  This is in the
19972          * format that is stored in the drag and drop instance, so typical
19973          * usage is:
19974          * <code>
19975          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
19976          * </code>
19977          * Alternatively:
19978          * <code>
19979          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
19980          * </code>
19981          * @TODO this really should be an indexed array.  Alternatively this
19982          * method could accept both.
19983          * @method refreshCache
19984          * @param {Object} groups an associative array of groups to refresh
19985          * @static
19986          */
19987         refreshCache: function(groups) {
19988             for (var sGroup in groups) {
19989                 if ("string" != typeof sGroup) {
19990                     continue;
19991                 }
19992                 for (var i in this.ids[sGroup]) {
19993                     var oDD = this.ids[sGroup][i];
19994
19995                     if (this.isTypeOfDD(oDD)) {
19996                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
19997                         var loc = this.getLocation(oDD);
19998                         if (loc) {
19999                             this.locationCache[oDD.id] = loc;
20000                         } else {
20001                             delete this.locationCache[oDD.id];
20002                             // this will unregister the drag and drop object if
20003                             // the element is not in a usable state
20004                             // oDD.unreg();
20005                         }
20006                     }
20007                 }
20008             }
20009         },
20010
20011         /**
20012          * This checks to make sure an element exists and is in the DOM.  The
20013          * main purpose is to handle cases where innerHTML is used to remove
20014          * drag and drop objects from the DOM.  IE provides an 'unspecified
20015          * error' when trying to access the offsetParent of such an element
20016          * @method verifyEl
20017          * @param {HTMLElement} el the element to check
20018          * @return {boolean} true if the element looks usable
20019          * @static
20020          */
20021         verifyEl: function(el) {
20022             if (el) {
20023                 var parent;
20024                 if(Roo.isIE){
20025                     try{
20026                         parent = el.offsetParent;
20027                     }catch(e){}
20028                 }else{
20029                     parent = el.offsetParent;
20030                 }
20031                 if (parent) {
20032                     return true;
20033                 }
20034             }
20035
20036             return false;
20037         },
20038
20039         /**
20040          * Returns a Region object containing the drag and drop element's position
20041          * and size, including the padding configured for it
20042          * @method getLocation
20043          * @param {DragDrop} oDD the drag and drop object to get the
20044          *                       location for
20045          * @return {Roo.lib.Region} a Region object representing the total area
20046          *                             the element occupies, including any padding
20047          *                             the instance is configured for.
20048          * @static
20049          */
20050         getLocation: function(oDD) {
20051             if (! this.isTypeOfDD(oDD)) {
20052                 return null;
20053             }
20054
20055             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20056
20057             try {
20058                 pos= Roo.lib.Dom.getXY(el);
20059             } catch (e) { }
20060
20061             if (!pos) {
20062                 return null;
20063             }
20064
20065             x1 = pos[0];
20066             x2 = x1 + el.offsetWidth;
20067             y1 = pos[1];
20068             y2 = y1 + el.offsetHeight;
20069
20070             t = y1 - oDD.padding[0];
20071             r = x2 + oDD.padding[1];
20072             b = y2 + oDD.padding[2];
20073             l = x1 - oDD.padding[3];
20074
20075             return new Roo.lib.Region( t, r, b, l );
20076         },
20077
20078         /**
20079          * Checks the cursor location to see if it over the target
20080          * @method isOverTarget
20081          * @param {Roo.lib.Point} pt The point to evaluate
20082          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20083          * @return {boolean} true if the mouse is over the target
20084          * @private
20085          * @static
20086          */
20087         isOverTarget: function(pt, oTarget, intersect) {
20088             // use cache if available
20089             var loc = this.locationCache[oTarget.id];
20090             if (!loc || !this.useCache) {
20091                 loc = this.getLocation(oTarget);
20092                 this.locationCache[oTarget.id] = loc;
20093
20094             }
20095
20096             if (!loc) {
20097                 return false;
20098             }
20099
20100             oTarget.cursorIsOver = loc.contains( pt );
20101
20102             // DragDrop is using this as a sanity check for the initial mousedown
20103             // in this case we are done.  In POINT mode, if the drag obj has no
20104             // contraints, we are also done. Otherwise we need to evaluate the
20105             // location of the target as related to the actual location of the
20106             // dragged element.
20107             var dc = this.dragCurrent;
20108             if (!dc || !dc.getTargetCoord ||
20109                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20110                 return oTarget.cursorIsOver;
20111             }
20112
20113             oTarget.overlap = null;
20114
20115             // Get the current location of the drag element, this is the
20116             // location of the mouse event less the delta that represents
20117             // where the original mousedown happened on the element.  We
20118             // need to consider constraints and ticks as well.
20119             var pos = dc.getTargetCoord(pt.x, pt.y);
20120
20121             var el = dc.getDragEl();
20122             var curRegion = new Roo.lib.Region( pos.y,
20123                                                    pos.x + el.offsetWidth,
20124                                                    pos.y + el.offsetHeight,
20125                                                    pos.x );
20126
20127             var overlap = curRegion.intersect(loc);
20128
20129             if (overlap) {
20130                 oTarget.overlap = overlap;
20131                 return (intersect) ? true : oTarget.cursorIsOver;
20132             } else {
20133                 return false;
20134             }
20135         },
20136
20137         /**
20138          * unload event handler
20139          * @method _onUnload
20140          * @private
20141          * @static
20142          */
20143         _onUnload: function(e, me) {
20144             Roo.dd.DragDropMgr.unregAll();
20145         },
20146
20147         /**
20148          * Cleans up the drag and drop events and objects.
20149          * @method unregAll
20150          * @private
20151          * @static
20152          */
20153         unregAll: function() {
20154
20155             if (this.dragCurrent) {
20156                 this.stopDrag();
20157                 this.dragCurrent = null;
20158             }
20159
20160             this._execOnAll("unreg", []);
20161
20162             for (i in this.elementCache) {
20163                 delete this.elementCache[i];
20164             }
20165
20166             this.elementCache = {};
20167             this.ids = {};
20168         },
20169
20170         /**
20171          * A cache of DOM elements
20172          * @property elementCache
20173          * @private
20174          * @static
20175          */
20176         elementCache: {},
20177
20178         /**
20179          * Get the wrapper for the DOM element specified
20180          * @method getElWrapper
20181          * @param {String} id the id of the element to get
20182          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20183          * @private
20184          * @deprecated This wrapper isn't that useful
20185          * @static
20186          */
20187         getElWrapper: function(id) {
20188             var oWrapper = this.elementCache[id];
20189             if (!oWrapper || !oWrapper.el) {
20190                 oWrapper = this.elementCache[id] =
20191                     new this.ElementWrapper(Roo.getDom(id));
20192             }
20193             return oWrapper;
20194         },
20195
20196         /**
20197          * Returns the actual DOM element
20198          * @method getElement
20199          * @param {String} id the id of the elment to get
20200          * @return {Object} The element
20201          * @deprecated use Roo.getDom instead
20202          * @static
20203          */
20204         getElement: function(id) {
20205             return Roo.getDom(id);
20206         },
20207
20208         /**
20209          * Returns the style property for the DOM element (i.e.,
20210          * document.getElById(id).style)
20211          * @method getCss
20212          * @param {String} id the id of the elment to get
20213          * @return {Object} The style property of the element
20214          * @deprecated use Roo.getDom instead
20215          * @static
20216          */
20217         getCss: function(id) {
20218             var el = Roo.getDom(id);
20219             return (el) ? el.style : null;
20220         },
20221
20222         /**
20223          * Inner class for cached elements
20224          * @class DragDropMgr.ElementWrapper
20225          * @for DragDropMgr
20226          * @private
20227          * @deprecated
20228          */
20229         ElementWrapper: function(el) {
20230                 /**
20231                  * The element
20232                  * @property el
20233                  */
20234                 this.el = el || null;
20235                 /**
20236                  * The element id
20237                  * @property id
20238                  */
20239                 this.id = this.el && el.id;
20240                 /**
20241                  * A reference to the style property
20242                  * @property css
20243                  */
20244                 this.css = this.el && el.style;
20245             },
20246
20247         /**
20248          * Returns the X position of an html element
20249          * @method getPosX
20250          * @param el the element for which to get the position
20251          * @return {int} the X coordinate
20252          * @for DragDropMgr
20253          * @deprecated use Roo.lib.Dom.getX instead
20254          * @static
20255          */
20256         getPosX: function(el) {
20257             return Roo.lib.Dom.getX(el);
20258         },
20259
20260         /**
20261          * Returns the Y position of an html element
20262          * @method getPosY
20263          * @param el the element for which to get the position
20264          * @return {int} the Y coordinate
20265          * @deprecated use Roo.lib.Dom.getY instead
20266          * @static
20267          */
20268         getPosY: function(el) {
20269             return Roo.lib.Dom.getY(el);
20270         },
20271
20272         /**
20273          * Swap two nodes.  In IE, we use the native method, for others we
20274          * emulate the IE behavior
20275          * @method swapNode
20276          * @param n1 the first node to swap
20277          * @param n2 the other node to swap
20278          * @static
20279          */
20280         swapNode: function(n1, n2) {
20281             if (n1.swapNode) {
20282                 n1.swapNode(n2);
20283             } else {
20284                 var p = n2.parentNode;
20285                 var s = n2.nextSibling;
20286
20287                 if (s == n1) {
20288                     p.insertBefore(n1, n2);
20289                 } else if (n2 == n1.nextSibling) {
20290                     p.insertBefore(n2, n1);
20291                 } else {
20292                     n1.parentNode.replaceChild(n2, n1);
20293                     p.insertBefore(n1, s);
20294                 }
20295             }
20296         },
20297
20298         /**
20299          * Returns the current scroll position
20300          * @method getScroll
20301          * @private
20302          * @static
20303          */
20304         getScroll: function () {
20305             var t, l, dde=document.documentElement, db=document.body;
20306             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20307                 t = dde.scrollTop;
20308                 l = dde.scrollLeft;
20309             } else if (db) {
20310                 t = db.scrollTop;
20311                 l = db.scrollLeft;
20312             } else {
20313
20314             }
20315             return { top: t, left: l };
20316         },
20317
20318         /**
20319          * Returns the specified element style property
20320          * @method getStyle
20321          * @param {HTMLElement} el          the element
20322          * @param {string}      styleProp   the style property
20323          * @return {string} The value of the style property
20324          * @deprecated use Roo.lib.Dom.getStyle
20325          * @static
20326          */
20327         getStyle: function(el, styleProp) {
20328             return Roo.fly(el).getStyle(styleProp);
20329         },
20330
20331         /**
20332          * Gets the scrollTop
20333          * @method getScrollTop
20334          * @return {int} the document's scrollTop
20335          * @static
20336          */
20337         getScrollTop: function () { return this.getScroll().top; },
20338
20339         /**
20340          * Gets the scrollLeft
20341          * @method getScrollLeft
20342          * @return {int} the document's scrollTop
20343          * @static
20344          */
20345         getScrollLeft: function () { return this.getScroll().left; },
20346
20347         /**
20348          * Sets the x/y position of an element to the location of the
20349          * target element.
20350          * @method moveToEl
20351          * @param {HTMLElement} moveEl      The element to move
20352          * @param {HTMLElement} targetEl    The position reference element
20353          * @static
20354          */
20355         moveToEl: function (moveEl, targetEl) {
20356             var aCoord = Roo.lib.Dom.getXY(targetEl);
20357             Roo.lib.Dom.setXY(moveEl, aCoord);
20358         },
20359
20360         /**
20361          * Numeric array sort function
20362          * @method numericSort
20363          * @static
20364          */
20365         numericSort: function(a, b) { return (a - b); },
20366
20367         /**
20368          * Internal counter
20369          * @property _timeoutCount
20370          * @private
20371          * @static
20372          */
20373         _timeoutCount: 0,
20374
20375         /**
20376          * Trying to make the load order less important.  Without this we get
20377          * an error if this file is loaded before the Event Utility.
20378          * @method _addListeners
20379          * @private
20380          * @static
20381          */
20382         _addListeners: function() {
20383             var DDM = Roo.dd.DDM;
20384             if ( Roo.lib.Event && document ) {
20385                 DDM._onLoad();
20386             } else {
20387                 if (DDM._timeoutCount > 2000) {
20388                 } else {
20389                     setTimeout(DDM._addListeners, 10);
20390                     if (document && document.body) {
20391                         DDM._timeoutCount += 1;
20392                     }
20393                 }
20394             }
20395         },
20396
20397         /**
20398          * Recursively searches the immediate parent and all child nodes for
20399          * the handle element in order to determine wheter or not it was
20400          * clicked.
20401          * @method handleWasClicked
20402          * @param node the html element to inspect
20403          * @static
20404          */
20405         handleWasClicked: function(node, id) {
20406             if (this.isHandle(id, node.id)) {
20407                 return true;
20408             } else {
20409                 // check to see if this is a text node child of the one we want
20410                 var p = node.parentNode;
20411
20412                 while (p) {
20413                     if (this.isHandle(id, p.id)) {
20414                         return true;
20415                     } else {
20416                         p = p.parentNode;
20417                     }
20418                 }
20419             }
20420
20421             return false;
20422         }
20423
20424     };
20425
20426 }();
20427
20428 // shorter alias, save a few bytes
20429 Roo.dd.DDM = Roo.dd.DragDropMgr;
20430 Roo.dd.DDM._addListeners();
20431
20432 }/*
20433  * Based on:
20434  * Ext JS Library 1.1.1
20435  * Copyright(c) 2006-2007, Ext JS, LLC.
20436  *
20437  * Originally Released Under LGPL - original licence link has changed is not relivant.
20438  *
20439  * Fork - LGPL
20440  * <script type="text/javascript">
20441  */
20442
20443 /**
20444  * @class Roo.dd.DD
20445  * A DragDrop implementation where the linked element follows the
20446  * mouse cursor during a drag.
20447  * @extends Roo.dd.DragDrop
20448  * @constructor
20449  * @param {String} id the id of the linked element
20450  * @param {String} sGroup the group of related DragDrop items
20451  * @param {object} config an object containing configurable attributes
20452  *                Valid properties for DD:
20453  *                    scroll
20454  */
20455 Roo.dd.DD = function(id, sGroup, config) {
20456     if (id) {
20457         this.init(id, sGroup, config);
20458     }
20459 };
20460
20461 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
20462
20463     /**
20464      * When set to true, the utility automatically tries to scroll the browser
20465      * window wehn a drag and drop element is dragged near the viewport boundary.
20466      * Defaults to true.
20467      * @property scroll
20468      * @type boolean
20469      */
20470     scroll: true,
20471
20472     /**
20473      * Sets the pointer offset to the distance between the linked element's top
20474      * left corner and the location the element was clicked
20475      * @method autoOffset
20476      * @param {int} iPageX the X coordinate of the click
20477      * @param {int} iPageY the Y coordinate of the click
20478      */
20479     autoOffset: function(iPageX, iPageY) {
20480         var x = iPageX - this.startPageX;
20481         var y = iPageY - this.startPageY;
20482         this.setDelta(x, y);
20483     },
20484
20485     /**
20486      * Sets the pointer offset.  You can call this directly to force the
20487      * offset to be in a particular location (e.g., pass in 0,0 to set it
20488      * to the center of the object)
20489      * @method setDelta
20490      * @param {int} iDeltaX the distance from the left
20491      * @param {int} iDeltaY the distance from the top
20492      */
20493     setDelta: function(iDeltaX, iDeltaY) {
20494         this.deltaX = iDeltaX;
20495         this.deltaY = iDeltaY;
20496     },
20497
20498     /**
20499      * Sets the drag element to the location of the mousedown or click event,
20500      * maintaining the cursor location relative to the location on the element
20501      * that was clicked.  Override this if you want to place the element in a
20502      * location other than where the cursor is.
20503      * @method setDragElPos
20504      * @param {int} iPageX the X coordinate of the mousedown or drag event
20505      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20506      */
20507     setDragElPos: function(iPageX, iPageY) {
20508         // the first time we do this, we are going to check to make sure
20509         // the element has css positioning
20510
20511         var el = this.getDragEl();
20512         this.alignElWithMouse(el, iPageX, iPageY);
20513     },
20514
20515     /**
20516      * Sets the element to the location of the mousedown or click event,
20517      * maintaining the cursor location relative to the location on the element
20518      * that was clicked.  Override this if you want to place the element in a
20519      * location other than where the cursor is.
20520      * @method alignElWithMouse
20521      * @param {HTMLElement} el the element to move
20522      * @param {int} iPageX the X coordinate of the mousedown or drag event
20523      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20524      */
20525     alignElWithMouse: function(el, iPageX, iPageY) {
20526         var oCoord = this.getTargetCoord(iPageX, iPageY);
20527         var fly = el.dom ? el : Roo.fly(el);
20528         if (!this.deltaSetXY) {
20529             var aCoord = [oCoord.x, oCoord.y];
20530             fly.setXY(aCoord);
20531             var newLeft = fly.getLeft(true);
20532             var newTop  = fly.getTop(true);
20533             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
20534         } else {
20535             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
20536         }
20537
20538         this.cachePosition(oCoord.x, oCoord.y);
20539         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
20540         return oCoord;
20541     },
20542
20543     /**
20544      * Saves the most recent position so that we can reset the constraints and
20545      * tick marks on-demand.  We need to know this so that we can calculate the
20546      * number of pixels the element is offset from its original position.
20547      * @method cachePosition
20548      * @param iPageX the current x position (optional, this just makes it so we
20549      * don't have to look it up again)
20550      * @param iPageY the current y position (optional, this just makes it so we
20551      * don't have to look it up again)
20552      */
20553     cachePosition: function(iPageX, iPageY) {
20554         if (iPageX) {
20555             this.lastPageX = iPageX;
20556             this.lastPageY = iPageY;
20557         } else {
20558             var aCoord = Roo.lib.Dom.getXY(this.getEl());
20559             this.lastPageX = aCoord[0];
20560             this.lastPageY = aCoord[1];
20561         }
20562     },
20563
20564     /**
20565      * Auto-scroll the window if the dragged object has been moved beyond the
20566      * visible window boundary.
20567      * @method autoScroll
20568      * @param {int} x the drag element's x position
20569      * @param {int} y the drag element's y position
20570      * @param {int} h the height of the drag element
20571      * @param {int} w the width of the drag element
20572      * @private
20573      */
20574     autoScroll: function(x, y, h, w) {
20575
20576         if (this.scroll) {
20577             // The client height
20578             var clientH = Roo.lib.Dom.getViewWidth();
20579
20580             // The client width
20581             var clientW = Roo.lib.Dom.getViewHeight();
20582
20583             // The amt scrolled down
20584             var st = this.DDM.getScrollTop();
20585
20586             // The amt scrolled right
20587             var sl = this.DDM.getScrollLeft();
20588
20589             // Location of the bottom of the element
20590             var bot = h + y;
20591
20592             // Location of the right of the element
20593             var right = w + x;
20594
20595             // The distance from the cursor to the bottom of the visible area,
20596             // adjusted so that we don't scroll if the cursor is beyond the
20597             // element drag constraints
20598             var toBot = (clientH + st - y - this.deltaY);
20599
20600             // The distance from the cursor to the right of the visible area
20601             var toRight = (clientW + sl - x - this.deltaX);
20602
20603
20604             // How close to the edge the cursor must be before we scroll
20605             // var thresh = (document.all) ? 100 : 40;
20606             var thresh = 40;
20607
20608             // How many pixels to scroll per autoscroll op.  This helps to reduce
20609             // clunky scrolling. IE is more sensitive about this ... it needs this
20610             // value to be higher.
20611             var scrAmt = (document.all) ? 80 : 30;
20612
20613             // Scroll down if we are near the bottom of the visible page and the
20614             // obj extends below the crease
20615             if ( bot > clientH && toBot < thresh ) {
20616                 window.scrollTo(sl, st + scrAmt);
20617             }
20618
20619             // Scroll up if the window is scrolled down and the top of the object
20620             // goes above the top border
20621             if ( y < st && st > 0 && y - st < thresh ) {
20622                 window.scrollTo(sl, st - scrAmt);
20623             }
20624
20625             // Scroll right if the obj is beyond the right border and the cursor is
20626             // near the border.
20627             if ( right > clientW && toRight < thresh ) {
20628                 window.scrollTo(sl + scrAmt, st);
20629             }
20630
20631             // Scroll left if the window has been scrolled to the right and the obj
20632             // extends past the left border
20633             if ( x < sl && sl > 0 && x - sl < thresh ) {
20634                 window.scrollTo(sl - scrAmt, st);
20635             }
20636         }
20637     },
20638
20639     /**
20640      * Finds the location the element should be placed if we want to move
20641      * it to where the mouse location less the click offset would place us.
20642      * @method getTargetCoord
20643      * @param {int} iPageX the X coordinate of the click
20644      * @param {int} iPageY the Y coordinate of the click
20645      * @return an object that contains the coordinates (Object.x and Object.y)
20646      * @private
20647      */
20648     getTargetCoord: function(iPageX, iPageY) {
20649
20650
20651         var x = iPageX - this.deltaX;
20652         var y = iPageY - this.deltaY;
20653
20654         if (this.constrainX) {
20655             if (x < this.minX) { x = this.minX; }
20656             if (x > this.maxX) { x = this.maxX; }
20657         }
20658
20659         if (this.constrainY) {
20660             if (y < this.minY) { y = this.minY; }
20661             if (y > this.maxY) { y = this.maxY; }
20662         }
20663
20664         x = this.getTick(x, this.xTicks);
20665         y = this.getTick(y, this.yTicks);
20666
20667
20668         return {x:x, y:y};
20669     },
20670
20671     /*
20672      * Sets up config options specific to this class. Overrides
20673      * Roo.dd.DragDrop, but all versions of this method through the
20674      * inheritance chain are called
20675      */
20676     applyConfig: function() {
20677         Roo.dd.DD.superclass.applyConfig.call(this);
20678         this.scroll = (this.config.scroll !== false);
20679     },
20680
20681     /*
20682      * Event that fires prior to the onMouseDown event.  Overrides
20683      * Roo.dd.DragDrop.
20684      */
20685     b4MouseDown: function(e) {
20686         // this.resetConstraints();
20687         this.autoOffset(e.getPageX(),
20688                             e.getPageY());
20689     },
20690
20691     /*
20692      * Event that fires prior to the onDrag event.  Overrides
20693      * Roo.dd.DragDrop.
20694      */
20695     b4Drag: function(e) {
20696         this.setDragElPos(e.getPageX(),
20697                             e.getPageY());
20698     },
20699
20700     toString: function() {
20701         return ("DD " + this.id);
20702     }
20703
20704     //////////////////////////////////////////////////////////////////////////
20705     // Debugging ygDragDrop events that can be overridden
20706     //////////////////////////////////////////////////////////////////////////
20707     /*
20708     startDrag: function(x, y) {
20709     },
20710
20711     onDrag: function(e) {
20712     },
20713
20714     onDragEnter: function(e, id) {
20715     },
20716
20717     onDragOver: function(e, id) {
20718     },
20719
20720     onDragOut: function(e, id) {
20721     },
20722
20723     onDragDrop: function(e, id) {
20724     },
20725
20726     endDrag: function(e) {
20727     }
20728
20729     */
20730
20731 });/*
20732  * Based on:
20733  * Ext JS Library 1.1.1
20734  * Copyright(c) 2006-2007, Ext JS, LLC.
20735  *
20736  * Originally Released Under LGPL - original licence link has changed is not relivant.
20737  *
20738  * Fork - LGPL
20739  * <script type="text/javascript">
20740  */
20741
20742 /**
20743  * @class Roo.dd.DDProxy
20744  * A DragDrop implementation that inserts an empty, bordered div into
20745  * the document that follows the cursor during drag operations.  At the time of
20746  * the click, the frame div is resized to the dimensions of the linked html
20747  * element, and moved to the exact location of the linked element.
20748  *
20749  * References to the "frame" element refer to the single proxy element that
20750  * was created to be dragged in place of all DDProxy elements on the
20751  * page.
20752  *
20753  * @extends Roo.dd.DD
20754  * @constructor
20755  * @param {String} id the id of the linked html element
20756  * @param {String} sGroup the group of related DragDrop objects
20757  * @param {object} config an object containing configurable attributes
20758  *                Valid properties for DDProxy in addition to those in DragDrop:
20759  *                   resizeFrame, centerFrame, dragElId
20760  */
20761 Roo.dd.DDProxy = function(id, sGroup, config) {
20762     if (id) {
20763         this.init(id, sGroup, config);
20764         this.initFrame();
20765     }
20766 };
20767
20768 /**
20769  * The default drag frame div id
20770  * @property Roo.dd.DDProxy.dragElId
20771  * @type String
20772  * @static
20773  */
20774 Roo.dd.DDProxy.dragElId = "ygddfdiv";
20775
20776 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
20777
20778     /**
20779      * By default we resize the drag frame to be the same size as the element
20780      * we want to drag (this is to get the frame effect).  We can turn it off
20781      * if we want a different behavior.
20782      * @property resizeFrame
20783      * @type boolean
20784      */
20785     resizeFrame: true,
20786
20787     /**
20788      * By default the frame is positioned exactly where the drag element is, so
20789      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
20790      * you do not have constraints on the obj is to have the drag frame centered
20791      * around the cursor.  Set centerFrame to true for this effect.
20792      * @property centerFrame
20793      * @type boolean
20794      */
20795     centerFrame: false,
20796
20797     /**
20798      * Creates the proxy element if it does not yet exist
20799      * @method createFrame
20800      */
20801     createFrame: function() {
20802         var self = this;
20803         var body = document.body;
20804
20805         if (!body || !body.firstChild) {
20806             setTimeout( function() { self.createFrame(); }, 50 );
20807             return;
20808         }
20809
20810         var div = this.getDragEl();
20811
20812         if (!div) {
20813             div    = document.createElement("div");
20814             div.id = this.dragElId;
20815             var s  = div.style;
20816
20817             s.position   = "absolute";
20818             s.visibility = "hidden";
20819             s.cursor     = "move";
20820             s.border     = "2px solid #aaa";
20821             s.zIndex     = 999;
20822
20823             // appendChild can blow up IE if invoked prior to the window load event
20824             // while rendering a table.  It is possible there are other scenarios
20825             // that would cause this to happen as well.
20826             body.insertBefore(div, body.firstChild);
20827         }
20828     },
20829
20830     /**
20831      * Initialization for the drag frame element.  Must be called in the
20832      * constructor of all subclasses
20833      * @method initFrame
20834      */
20835     initFrame: function() {
20836         this.createFrame();
20837     },
20838
20839     applyConfig: function() {
20840         Roo.dd.DDProxy.superclass.applyConfig.call(this);
20841
20842         this.resizeFrame = (this.config.resizeFrame !== false);
20843         this.centerFrame = (this.config.centerFrame);
20844         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
20845     },
20846
20847     /**
20848      * Resizes the drag frame to the dimensions of the clicked object, positions
20849      * it over the object, and finally displays it
20850      * @method showFrame
20851      * @param {int} iPageX X click position
20852      * @param {int} iPageY Y click position
20853      * @private
20854      */
20855     showFrame: function(iPageX, iPageY) {
20856         var el = this.getEl();
20857         var dragEl = this.getDragEl();
20858         var s = dragEl.style;
20859
20860         this._resizeProxy();
20861
20862         if (this.centerFrame) {
20863             this.setDelta( Math.round(parseInt(s.width,  10)/2),
20864                            Math.round(parseInt(s.height, 10)/2) );
20865         }
20866
20867         this.setDragElPos(iPageX, iPageY);
20868
20869         Roo.fly(dragEl).show();
20870     },
20871
20872     /**
20873      * The proxy is automatically resized to the dimensions of the linked
20874      * element when a drag is initiated, unless resizeFrame is set to false
20875      * @method _resizeProxy
20876      * @private
20877      */
20878     _resizeProxy: function() {
20879         if (this.resizeFrame) {
20880             var el = this.getEl();
20881             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
20882         }
20883     },
20884
20885     // overrides Roo.dd.DragDrop
20886     b4MouseDown: function(e) {
20887         var x = e.getPageX();
20888         var y = e.getPageY();
20889         this.autoOffset(x, y);
20890         this.setDragElPos(x, y);
20891     },
20892
20893     // overrides Roo.dd.DragDrop
20894     b4StartDrag: function(x, y) {
20895         // show the drag frame
20896         this.showFrame(x, y);
20897     },
20898
20899     // overrides Roo.dd.DragDrop
20900     b4EndDrag: function(e) {
20901         Roo.fly(this.getDragEl()).hide();
20902     },
20903
20904     // overrides Roo.dd.DragDrop
20905     // By default we try to move the element to the last location of the frame.
20906     // This is so that the default behavior mirrors that of Roo.dd.DD.
20907     endDrag: function(e) {
20908
20909         var lel = this.getEl();
20910         var del = this.getDragEl();
20911
20912         // Show the drag frame briefly so we can get its position
20913         del.style.visibility = "";
20914
20915         this.beforeMove();
20916         // Hide the linked element before the move to get around a Safari
20917         // rendering bug.
20918         lel.style.visibility = "hidden";
20919         Roo.dd.DDM.moveToEl(lel, del);
20920         del.style.visibility = "hidden";
20921         lel.style.visibility = "";
20922
20923         this.afterDrag();
20924     },
20925
20926     beforeMove : function(){
20927
20928     },
20929
20930     afterDrag : function(){
20931
20932     },
20933
20934     toString: function() {
20935         return ("DDProxy " + this.id);
20936     }
20937
20938 });
20939 /*
20940  * Based on:
20941  * Ext JS Library 1.1.1
20942  * Copyright(c) 2006-2007, Ext JS, LLC.
20943  *
20944  * Originally Released Under LGPL - original licence link has changed is not relivant.
20945  *
20946  * Fork - LGPL
20947  * <script type="text/javascript">
20948  */
20949
20950  /**
20951  * @class Roo.dd.DDTarget
20952  * A DragDrop implementation that does not move, but can be a drop
20953  * target.  You would get the same result by simply omitting implementation
20954  * for the event callbacks, but this way we reduce the processing cost of the
20955  * event listener and the callbacks.
20956  * @extends Roo.dd.DragDrop
20957  * @constructor
20958  * @param {String} id the id of the element that is a drop target
20959  * @param {String} sGroup the group of related DragDrop objects
20960  * @param {object} config an object containing configurable attributes
20961  *                 Valid properties for DDTarget in addition to those in
20962  *                 DragDrop:
20963  *                    none
20964  */
20965 Roo.dd.DDTarget = function(id, sGroup, config) {
20966     if (id) {
20967         this.initTarget(id, sGroup, config);
20968     }
20969     if (config.listeners || config.events) { 
20970        Roo.dd.DragDrop.superclass.constructor.call(this,  { 
20971             listeners : config.listeners || {}, 
20972             events : config.events || {} 
20973         });    
20974     }
20975 };
20976
20977 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
20978 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
20979     toString: function() {
20980         return ("DDTarget " + this.id);
20981     }
20982 });
20983 /*
20984  * Based on:
20985  * Ext JS Library 1.1.1
20986  * Copyright(c) 2006-2007, Ext JS, LLC.
20987  *
20988  * Originally Released Under LGPL - original licence link has changed is not relivant.
20989  *
20990  * Fork - LGPL
20991  * <script type="text/javascript">
20992  */
20993  
20994
20995 /**
20996  * @class Roo.dd.ScrollManager
20997  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
20998  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
20999  * @singleton
21000  */
21001 Roo.dd.ScrollManager = function(){
21002     var ddm = Roo.dd.DragDropMgr;
21003     var els = {};
21004     var dragEl = null;
21005     var proc = {};
21006     
21007     
21008     
21009     var onStop = function(e){
21010         dragEl = null;
21011         clearProc();
21012     };
21013     
21014     var triggerRefresh = function(){
21015         if(ddm.dragCurrent){
21016              ddm.refreshCache(ddm.dragCurrent.groups);
21017         }
21018     };
21019     
21020     var doScroll = function(){
21021         if(ddm.dragCurrent){
21022             var dds = Roo.dd.ScrollManager;
21023             if(!dds.animate){
21024                 if(proc.el.scroll(proc.dir, dds.increment)){
21025                     triggerRefresh();
21026                 }
21027             }else{
21028                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21029             }
21030         }
21031     };
21032     
21033     var clearProc = function(){
21034         if(proc.id){
21035             clearInterval(proc.id);
21036         }
21037         proc.id = 0;
21038         proc.el = null;
21039         proc.dir = "";
21040     };
21041     
21042     var startProc = function(el, dir){
21043          Roo.log('scroll startproc');
21044         clearProc();
21045         proc.el = el;
21046         proc.dir = dir;
21047         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21048     };
21049     
21050     var onFire = function(e, isDrop){
21051        
21052         if(isDrop || !ddm.dragCurrent){ return; }
21053         var dds = Roo.dd.ScrollManager;
21054         if(!dragEl || dragEl != ddm.dragCurrent){
21055             dragEl = ddm.dragCurrent;
21056             // refresh regions on drag start
21057             dds.refreshCache();
21058         }
21059         
21060         var xy = Roo.lib.Event.getXY(e);
21061         var pt = new Roo.lib.Point(xy[0], xy[1]);
21062         for(var id in els){
21063             var el = els[id], r = el._region;
21064             if(r && r.contains(pt) && el.isScrollable()){
21065                 if(r.bottom - pt.y <= dds.thresh){
21066                     if(proc.el != el){
21067                         startProc(el, "down");
21068                     }
21069                     return;
21070                 }else if(r.right - pt.x <= dds.thresh){
21071                     if(proc.el != el){
21072                         startProc(el, "left");
21073                     }
21074                     return;
21075                 }else if(pt.y - r.top <= dds.thresh){
21076                     if(proc.el != el){
21077                         startProc(el, "up");
21078                     }
21079                     return;
21080                 }else if(pt.x - r.left <= dds.thresh){
21081                     if(proc.el != el){
21082                         startProc(el, "right");
21083                     }
21084                     return;
21085                 }
21086             }
21087         }
21088         clearProc();
21089     };
21090     
21091     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21092     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21093     
21094     return {
21095         /**
21096          * Registers new overflow element(s) to auto scroll
21097          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21098          */
21099         register : function(el){
21100             if(el instanceof Array){
21101                 for(var i = 0, len = el.length; i < len; i++) {
21102                         this.register(el[i]);
21103                 }
21104             }else{
21105                 el = Roo.get(el);
21106                 els[el.id] = el;
21107             }
21108             Roo.dd.ScrollManager.els = els;
21109         },
21110         
21111         /**
21112          * Unregisters overflow element(s) so they are no longer scrolled
21113          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21114          */
21115         unregister : function(el){
21116             if(el instanceof Array){
21117                 for(var i = 0, len = el.length; i < len; i++) {
21118                         this.unregister(el[i]);
21119                 }
21120             }else{
21121                 el = Roo.get(el);
21122                 delete els[el.id];
21123             }
21124         },
21125         
21126         /**
21127          * The number of pixels from the edge of a container the pointer needs to be to 
21128          * trigger scrolling (defaults to 25)
21129          * @type Number
21130          */
21131         thresh : 25,
21132         
21133         /**
21134          * The number of pixels to scroll in each scroll increment (defaults to 50)
21135          * @type Number
21136          */
21137         increment : 100,
21138         
21139         /**
21140          * The frequency of scrolls in milliseconds (defaults to 500)
21141          * @type Number
21142          */
21143         frequency : 500,
21144         
21145         /**
21146          * True to animate the scroll (defaults to true)
21147          * @type Boolean
21148          */
21149         animate: true,
21150         
21151         /**
21152          * The animation duration in seconds - 
21153          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21154          * @type Number
21155          */
21156         animDuration: .4,
21157         
21158         /**
21159          * Manually trigger a cache refresh.
21160          */
21161         refreshCache : function(){
21162             for(var id in els){
21163                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21164                     els[id]._region = els[id].getRegion();
21165                 }
21166             }
21167         }
21168     };
21169 }();/*
21170  * Based on:
21171  * Ext JS Library 1.1.1
21172  * Copyright(c) 2006-2007, Ext JS, LLC.
21173  *
21174  * Originally Released Under LGPL - original licence link has changed is not relivant.
21175  *
21176  * Fork - LGPL
21177  * <script type="text/javascript">
21178  */
21179  
21180
21181 /**
21182  * @class Roo.dd.Registry
21183  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21184  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21185  * @singleton
21186  */
21187 Roo.dd.Registry = function(){
21188     var elements = {}; 
21189     var handles = {}; 
21190     var autoIdSeed = 0;
21191
21192     var getId = function(el, autogen){
21193         if(typeof el == "string"){
21194             return el;
21195         }
21196         var id = el.id;
21197         if(!id && autogen !== false){
21198             id = "roodd-" + (++autoIdSeed);
21199             el.id = id;
21200         }
21201         return id;
21202     };
21203     
21204     return {
21205     /**
21206      * Register a drag drop element
21207      * @param {String|HTMLElement} element The id or DOM node to register
21208      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21209      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21210      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21211      * populated in the data object (if applicable):
21212      * <pre>
21213 Value      Description<br />
21214 ---------  ------------------------------------------<br />
21215 handles    Array of DOM nodes that trigger dragging<br />
21216            for the element being registered<br />
21217 isHandle   True if the element passed in triggers<br />
21218            dragging itself, else false
21219 </pre>
21220      */
21221         register : function(el, data){
21222             data = data || {};
21223             if(typeof el == "string"){
21224                 el = document.getElementById(el);
21225             }
21226             data.ddel = el;
21227             elements[getId(el)] = data;
21228             if(data.isHandle !== false){
21229                 handles[data.ddel.id] = data;
21230             }
21231             if(data.handles){
21232                 var hs = data.handles;
21233                 for(var i = 0, len = hs.length; i < len; i++){
21234                         handles[getId(hs[i])] = data;
21235                 }
21236             }
21237         },
21238
21239     /**
21240      * Unregister a drag drop element
21241      * @param {String|HTMLElement}  element The id or DOM node to unregister
21242      */
21243         unregister : function(el){
21244             var id = getId(el, false);
21245             var data = elements[id];
21246             if(data){
21247                 delete elements[id];
21248                 if(data.handles){
21249                     var hs = data.handles;
21250                     for(var i = 0, len = hs.length; i < len; i++){
21251                         delete handles[getId(hs[i], false)];
21252                     }
21253                 }
21254             }
21255         },
21256
21257     /**
21258      * Returns the handle registered for a DOM Node by id
21259      * @param {String|HTMLElement} id The DOM node or id to look up
21260      * @return {Object} handle The custom handle data
21261      */
21262         getHandle : function(id){
21263             if(typeof id != "string"){ // must be element?
21264                 id = id.id;
21265             }
21266             return handles[id];
21267         },
21268
21269     /**
21270      * Returns the handle that is registered for the DOM node that is the target of the event
21271      * @param {Event} e The event
21272      * @return {Object} handle The custom handle data
21273      */
21274         getHandleFromEvent : function(e){
21275             var t = Roo.lib.Event.getTarget(e);
21276             return t ? handles[t.id] : null;
21277         },
21278
21279     /**
21280      * Returns a custom data object that is registered for a DOM node by id
21281      * @param {String|HTMLElement} id The DOM node or id to look up
21282      * @return {Object} data The custom data
21283      */
21284         getTarget : function(id){
21285             if(typeof id != "string"){ // must be element?
21286                 id = id.id;
21287             }
21288             return elements[id];
21289         },
21290
21291     /**
21292      * Returns a custom data object that is registered for the DOM node that is the target of the event
21293      * @param {Event} e The event
21294      * @return {Object} data The custom data
21295      */
21296         getTargetFromEvent : function(e){
21297             var t = Roo.lib.Event.getTarget(e);
21298             return t ? elements[t.id] || handles[t.id] : null;
21299         }
21300     };
21301 }();/*
21302  * Based on:
21303  * Ext JS Library 1.1.1
21304  * Copyright(c) 2006-2007, Ext JS, LLC.
21305  *
21306  * Originally Released Under LGPL - original licence link has changed is not relivant.
21307  *
21308  * Fork - LGPL
21309  * <script type="text/javascript">
21310  */
21311  
21312
21313 /**
21314  * @class Roo.dd.StatusProxy
21315  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
21316  * default drag proxy used by all Roo.dd components.
21317  * @constructor
21318  * @param {Object} config
21319  */
21320 Roo.dd.StatusProxy = function(config){
21321     Roo.apply(this, config);
21322     this.id = this.id || Roo.id();
21323     this.el = new Roo.Layer({
21324         dh: {
21325             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
21326                 {tag: "div", cls: "x-dd-drop-icon"},
21327                 {tag: "div", cls: "x-dd-drag-ghost"}
21328             ]
21329         }, 
21330         shadow: !config || config.shadow !== false
21331     });
21332     this.ghost = Roo.get(this.el.dom.childNodes[1]);
21333     this.dropStatus = this.dropNotAllowed;
21334 };
21335
21336 Roo.dd.StatusProxy.prototype = {
21337     /**
21338      * @cfg {String} dropAllowed
21339      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
21340      */
21341     dropAllowed : "x-dd-drop-ok",
21342     /**
21343      * @cfg {String} dropNotAllowed
21344      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
21345      */
21346     dropNotAllowed : "x-dd-drop-nodrop",
21347
21348     /**
21349      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
21350      * over the current target element.
21351      * @param {String} cssClass The css class for the new drop status indicator image
21352      */
21353     setStatus : function(cssClass){
21354         cssClass = cssClass || this.dropNotAllowed;
21355         if(this.dropStatus != cssClass){
21356             this.el.replaceClass(this.dropStatus, cssClass);
21357             this.dropStatus = cssClass;
21358         }
21359     },
21360
21361     /**
21362      * Resets the status indicator to the default dropNotAllowed value
21363      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
21364      */
21365     reset : function(clearGhost){
21366         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
21367         this.dropStatus = this.dropNotAllowed;
21368         if(clearGhost){
21369             this.ghost.update("");
21370         }
21371     },
21372
21373     /**
21374      * Updates the contents of the ghost element
21375      * @param {String} html The html that will replace the current innerHTML of the ghost element
21376      */
21377     update : function(html){
21378         if(typeof html == "string"){
21379             this.ghost.update(html);
21380         }else{
21381             this.ghost.update("");
21382             html.style.margin = "0";
21383             this.ghost.dom.appendChild(html);
21384         }
21385         // ensure float = none set?? cant remember why though.
21386         var el = this.ghost.dom.firstChild;
21387                 if(el){
21388                         Roo.fly(el).setStyle('float', 'none');
21389                 }
21390     },
21391     
21392     /**
21393      * Returns the underlying proxy {@link Roo.Layer}
21394      * @return {Roo.Layer} el
21395     */
21396     getEl : function(){
21397         return this.el;
21398     },
21399
21400     /**
21401      * Returns the ghost element
21402      * @return {Roo.Element} el
21403      */
21404     getGhost : function(){
21405         return this.ghost;
21406     },
21407
21408     /**
21409      * Hides the proxy
21410      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
21411      */
21412     hide : function(clear){
21413         this.el.hide();
21414         if(clear){
21415             this.reset(true);
21416         }
21417     },
21418
21419     /**
21420      * Stops the repair animation if it's currently running
21421      */
21422     stop : function(){
21423         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
21424             this.anim.stop();
21425         }
21426     },
21427
21428     /**
21429      * Displays this proxy
21430      */
21431     show : function(){
21432         this.el.show();
21433     },
21434
21435     /**
21436      * Force the Layer to sync its shadow and shim positions to the element
21437      */
21438     sync : function(){
21439         this.el.sync();
21440     },
21441
21442     /**
21443      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
21444      * invalid drop operation by the item being dragged.
21445      * @param {Array} xy The XY position of the element ([x, y])
21446      * @param {Function} callback The function to call after the repair is complete
21447      * @param {Object} scope The scope in which to execute the callback
21448      */
21449     repair : function(xy, callback, scope){
21450         this.callback = callback;
21451         this.scope = scope;
21452         if(xy && this.animRepair !== false){
21453             this.el.addClass("x-dd-drag-repair");
21454             this.el.hideUnders(true);
21455             this.anim = this.el.shift({
21456                 duration: this.repairDuration || .5,
21457                 easing: 'easeOut',
21458                 xy: xy,
21459                 stopFx: true,
21460                 callback: this.afterRepair,
21461                 scope: this
21462             });
21463         }else{
21464             this.afterRepair();
21465         }
21466     },
21467
21468     // private
21469     afterRepair : function(){
21470         this.hide(true);
21471         if(typeof this.callback == "function"){
21472             this.callback.call(this.scope || this);
21473         }
21474         this.callback = null;
21475         this.scope = null;
21476     }
21477 };/*
21478  * Based on:
21479  * Ext JS Library 1.1.1
21480  * Copyright(c) 2006-2007, Ext JS, LLC.
21481  *
21482  * Originally Released Under LGPL - original licence link has changed is not relivant.
21483  *
21484  * Fork - LGPL
21485  * <script type="text/javascript">
21486  */
21487
21488 /**
21489  * @class Roo.dd.DragSource
21490  * @extends Roo.dd.DDProxy
21491  * A simple class that provides the basic implementation needed to make any element draggable.
21492  * @constructor
21493  * @param {String/HTMLElement/Element} el The container element
21494  * @param {Object} config
21495  */
21496 Roo.dd.DragSource = function(el, config){
21497     this.el = Roo.get(el);
21498     this.dragData = {};
21499     
21500     Roo.apply(this, config);
21501     
21502     if(!this.proxy){
21503         this.proxy = new Roo.dd.StatusProxy();
21504     }
21505
21506     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
21507           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
21508     
21509     this.dragging = false;
21510 };
21511
21512 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
21513     /**
21514      * @cfg {String} dropAllowed
21515      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21516      */
21517     dropAllowed : "x-dd-drop-ok",
21518     /**
21519      * @cfg {String} dropNotAllowed
21520      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21521      */
21522     dropNotAllowed : "x-dd-drop-nodrop",
21523
21524     /**
21525      * Returns the data object associated with this drag source
21526      * @return {Object} data An object containing arbitrary data
21527      */
21528     getDragData : function(e){
21529         return this.dragData;
21530     },
21531
21532     // private
21533     onDragEnter : function(e, id){
21534         var target = Roo.dd.DragDropMgr.getDDById(id);
21535         this.cachedTarget = target;
21536         if(this.beforeDragEnter(target, e, id) !== false){
21537             if(target.isNotifyTarget){
21538                 var status = target.notifyEnter(this, e, this.dragData);
21539                 this.proxy.setStatus(status);
21540             }else{
21541                 this.proxy.setStatus(this.dropAllowed);
21542             }
21543             
21544             if(this.afterDragEnter){
21545                 /**
21546                  * An empty function by default, but provided so that you can perform a custom action
21547                  * when the dragged item enters the drop target by providing an implementation.
21548                  * @param {Roo.dd.DragDrop} target The drop target
21549                  * @param {Event} e The event object
21550                  * @param {String} id The id of the dragged element
21551                  * @method afterDragEnter
21552                  */
21553                 this.afterDragEnter(target, e, id);
21554             }
21555         }
21556     },
21557
21558     /**
21559      * An empty function by default, but provided so that you can perform a custom action
21560      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
21561      * @param {Roo.dd.DragDrop} target The drop target
21562      * @param {Event} e The event object
21563      * @param {String} id The id of the dragged element
21564      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21565      */
21566     beforeDragEnter : function(target, e, id){
21567         return true;
21568     },
21569
21570     // private
21571     alignElWithMouse: function() {
21572         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
21573         this.proxy.sync();
21574     },
21575
21576     // private
21577     onDragOver : function(e, id){
21578         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21579         if(this.beforeDragOver(target, e, id) !== false){
21580             if(target.isNotifyTarget){
21581                 var status = target.notifyOver(this, e, this.dragData);
21582                 this.proxy.setStatus(status);
21583             }
21584
21585             if(this.afterDragOver){
21586                 /**
21587                  * An empty function by default, but provided so that you can perform a custom action
21588                  * while the dragged item is over the drop target by providing an implementation.
21589                  * @param {Roo.dd.DragDrop} target The drop target
21590                  * @param {Event} e The event object
21591                  * @param {String} id The id of the dragged element
21592                  * @method afterDragOver
21593                  */
21594                 this.afterDragOver(target, e, id);
21595             }
21596         }
21597     },
21598
21599     /**
21600      * An empty function by default, but provided so that you can perform a custom action
21601      * while the dragged item is over the drop target and optionally cancel the onDragOver.
21602      * @param {Roo.dd.DragDrop} target The drop target
21603      * @param {Event} e The event object
21604      * @param {String} id The id of the dragged element
21605      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21606      */
21607     beforeDragOver : function(target, e, id){
21608         return true;
21609     },
21610
21611     // private
21612     onDragOut : function(e, id){
21613         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21614         if(this.beforeDragOut(target, e, id) !== false){
21615             if(target.isNotifyTarget){
21616                 target.notifyOut(this, e, this.dragData);
21617             }
21618             this.proxy.reset();
21619             if(this.afterDragOut){
21620                 /**
21621                  * An empty function by default, but provided so that you can perform a custom action
21622                  * after the dragged item is dragged out of the target without dropping.
21623                  * @param {Roo.dd.DragDrop} target The drop target
21624                  * @param {Event} e The event object
21625                  * @param {String} id The id of the dragged element
21626                  * @method afterDragOut
21627                  */
21628                 this.afterDragOut(target, e, id);
21629             }
21630         }
21631         this.cachedTarget = null;
21632     },
21633
21634     /**
21635      * An empty function by default, but provided so that you can perform a custom action before the dragged
21636      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
21637      * @param {Roo.dd.DragDrop} target The drop target
21638      * @param {Event} e The event object
21639      * @param {String} id The id of the dragged element
21640      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21641      */
21642     beforeDragOut : function(target, e, id){
21643         return true;
21644     },
21645     
21646     // private
21647     onDragDrop : function(e, id){
21648         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21649         if(this.beforeDragDrop(target, e, id) !== false){
21650             if(target.isNotifyTarget){
21651                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
21652                     this.onValidDrop(target, e, id);
21653                 }else{
21654                     this.onInvalidDrop(target, e, id);
21655                 }
21656             }else{
21657                 this.onValidDrop(target, e, id);
21658             }
21659             
21660             if(this.afterDragDrop){
21661                 /**
21662                  * An empty function by default, but provided so that you can perform a custom action
21663                  * after a valid drag drop has occurred by providing an implementation.
21664                  * @param {Roo.dd.DragDrop} target The drop target
21665                  * @param {Event} e The event object
21666                  * @param {String} id The id of the dropped element
21667                  * @method afterDragDrop
21668                  */
21669                 this.afterDragDrop(target, e, id);
21670             }
21671         }
21672         delete this.cachedTarget;
21673     },
21674
21675     /**
21676      * An empty function by default, but provided so that you can perform a custom action before the dragged
21677      * item is dropped onto the target and optionally cancel the onDragDrop.
21678      * @param {Roo.dd.DragDrop} target The drop target
21679      * @param {Event} e The event object
21680      * @param {String} id The id of the dragged element
21681      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
21682      */
21683     beforeDragDrop : function(target, e, id){
21684         return true;
21685     },
21686
21687     // private
21688     onValidDrop : function(target, e, id){
21689         this.hideProxy();
21690         if(this.afterValidDrop){
21691             /**
21692              * An empty function by default, but provided so that you can perform a custom action
21693              * after a valid drop has occurred by providing an implementation.
21694              * @param {Object} target The target DD 
21695              * @param {Event} e The event object
21696              * @param {String} id The id of the dropped element
21697              * @method afterInvalidDrop
21698              */
21699             this.afterValidDrop(target, e, id);
21700         }
21701     },
21702
21703     // private
21704     getRepairXY : function(e, data){
21705         return this.el.getXY();  
21706     },
21707
21708     // private
21709     onInvalidDrop : function(target, e, id){
21710         this.beforeInvalidDrop(target, e, id);
21711         if(this.cachedTarget){
21712             if(this.cachedTarget.isNotifyTarget){
21713                 this.cachedTarget.notifyOut(this, e, this.dragData);
21714             }
21715             this.cacheTarget = null;
21716         }
21717         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
21718
21719         if(this.afterInvalidDrop){
21720             /**
21721              * An empty function by default, but provided so that you can perform a custom action
21722              * after an invalid drop has occurred by providing an implementation.
21723              * @param {Event} e The event object
21724              * @param {String} id The id of the dropped element
21725              * @method afterInvalidDrop
21726              */
21727             this.afterInvalidDrop(e, id);
21728         }
21729     },
21730
21731     // private
21732     afterRepair : function(){
21733         if(Roo.enableFx){
21734             this.el.highlight(this.hlColor || "c3daf9");
21735         }
21736         this.dragging = false;
21737     },
21738
21739     /**
21740      * An empty function by default, but provided so that you can perform a custom action after an invalid
21741      * drop has occurred.
21742      * @param {Roo.dd.DragDrop} target The drop target
21743      * @param {Event} e The event object
21744      * @param {String} id The id of the dragged element
21745      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
21746      */
21747     beforeInvalidDrop : function(target, e, id){
21748         return true;
21749     },
21750
21751     // private
21752     handleMouseDown : function(e){
21753         if(this.dragging) {
21754             return;
21755         }
21756         var data = this.getDragData(e);
21757         if(data && this.onBeforeDrag(data, e) !== false){
21758             this.dragData = data;
21759             this.proxy.stop();
21760             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
21761         } 
21762     },
21763
21764     /**
21765      * An empty function by default, but provided so that you can perform a custom action before the initial
21766      * drag event begins and optionally cancel it.
21767      * @param {Object} data An object containing arbitrary data to be shared with drop targets
21768      * @param {Event} e The event object
21769      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21770      */
21771     onBeforeDrag : function(data, e){
21772         return true;
21773     },
21774
21775     /**
21776      * An empty function by default, but provided so that you can perform a custom action once the initial
21777      * drag event has begun.  The drag cannot be canceled from this function.
21778      * @param {Number} x The x position of the click on the dragged object
21779      * @param {Number} y The y position of the click on the dragged object
21780      */
21781     onStartDrag : Roo.emptyFn,
21782
21783     // private - YUI override
21784     startDrag : function(x, y){
21785         this.proxy.reset();
21786         this.dragging = true;
21787         this.proxy.update("");
21788         this.onInitDrag(x, y);
21789         this.proxy.show();
21790     },
21791
21792     // private
21793     onInitDrag : function(x, y){
21794         var clone = this.el.dom.cloneNode(true);
21795         clone.id = Roo.id(); // prevent duplicate ids
21796         this.proxy.update(clone);
21797         this.onStartDrag(x, y);
21798         return true;
21799     },
21800
21801     /**
21802      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
21803      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
21804      */
21805     getProxy : function(){
21806         return this.proxy;  
21807     },
21808
21809     /**
21810      * Hides the drag source's {@link Roo.dd.StatusProxy}
21811      */
21812     hideProxy : function(){
21813         this.proxy.hide();  
21814         this.proxy.reset(true);
21815         this.dragging = false;
21816     },
21817
21818     // private
21819     triggerCacheRefresh : function(){
21820         Roo.dd.DDM.refreshCache(this.groups);
21821     },
21822
21823     // private - override to prevent hiding
21824     b4EndDrag: function(e) {
21825     },
21826
21827     // private - override to prevent moving
21828     endDrag : function(e){
21829         this.onEndDrag(this.dragData, e);
21830     },
21831
21832     // private
21833     onEndDrag : function(data, e){
21834     },
21835     
21836     // private - pin to cursor
21837     autoOffset : function(x, y) {
21838         this.setDelta(-12, -20);
21839     }    
21840 });/*
21841  * Based on:
21842  * Ext JS Library 1.1.1
21843  * Copyright(c) 2006-2007, Ext JS, LLC.
21844  *
21845  * Originally Released Under LGPL - original licence link has changed is not relivant.
21846  *
21847  * Fork - LGPL
21848  * <script type="text/javascript">
21849  */
21850
21851
21852 /**
21853  * @class Roo.dd.DropTarget
21854  * @extends Roo.dd.DDTarget
21855  * A simple class that provides the basic implementation needed to make any element a drop target that can have
21856  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
21857  * @constructor
21858  * @param {String/HTMLElement/Element} el The container element
21859  * @param {Object} config
21860  */
21861 Roo.dd.DropTarget = function(el, config){
21862     this.el = Roo.get(el);
21863     
21864     var listeners = false; ;
21865     if (config && config.listeners) {
21866         listeners= config.listeners;
21867         delete config.listeners;
21868     }
21869     Roo.apply(this, config);
21870     
21871     if(this.containerScroll){
21872         Roo.dd.ScrollManager.register(this.el);
21873     }
21874     this.addEvents( {
21875          /**
21876          * @scope Roo.dd.DropTarget
21877          */
21878          
21879          /**
21880          * @event enter
21881          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
21882          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
21883          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
21884          * 
21885          * IMPORTANT : it should set this.overClass and this.dropAllowed
21886          * 
21887          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21888          * @param {Event} e The event
21889          * @param {Object} data An object containing arbitrary data supplied by the drag source
21890          */
21891         "enter" : true,
21892         
21893          /**
21894          * @event over
21895          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
21896          * This method will be called on every mouse movement while the drag source is over the drop target.
21897          * This default implementation simply returns the dropAllowed config value.
21898          * 
21899          * IMPORTANT : it should set this.dropAllowed
21900          * 
21901          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21902          * @param {Event} e The event
21903          * @param {Object} data An object containing arbitrary data supplied by the drag source
21904          
21905          */
21906         "over" : true,
21907         /**
21908          * @event out
21909          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
21910          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
21911          * overClass (if any) from the drop element.
21912          * 
21913          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21914          * @param {Event} e The event
21915          * @param {Object} data An object containing arbitrary data supplied by the drag source
21916          */
21917          "out" : true,
21918          
21919         /**
21920          * @event drop
21921          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
21922          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
21923          * implementation that does something to process the drop event and returns true so that the drag source's
21924          * repair action does not run.
21925          * 
21926          * IMPORTANT : it should set this.success
21927          * 
21928          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21929          * @param {Event} e The event
21930          * @param {Object} data An object containing arbitrary data supplied by the drag source
21931         */
21932          "drop" : true
21933     });
21934             
21935      
21936     Roo.dd.DropTarget.superclass.constructor.call(  this, 
21937         this.el.dom, 
21938         this.ddGroup || this.group,
21939         {
21940             isTarget: true,
21941             listeners : listeners || {} 
21942            
21943         
21944         }
21945     );
21946
21947 };
21948
21949 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
21950     /**
21951      * @cfg {String} overClass
21952      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
21953      */
21954      /**
21955      * @cfg {String} ddGroup
21956      * The drag drop group to handle drop events for
21957      */
21958      
21959     /**
21960      * @cfg {String} dropAllowed
21961      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21962      */
21963     dropAllowed : "x-dd-drop-ok",
21964     /**
21965      * @cfg {String} dropNotAllowed
21966      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21967      */
21968     dropNotAllowed : "x-dd-drop-nodrop",
21969     /**
21970      * @cfg {boolean} success
21971      * set this after drop listener.. 
21972      */
21973     success : false,
21974     /**
21975      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
21976      * if the drop point is valid for over/enter..
21977      */
21978     valid : false,
21979     // private
21980     isTarget : true,
21981
21982     // private
21983     isNotifyTarget : true,
21984     
21985     /**
21986      * @hide
21987      */
21988     notifyEnter : function(dd, e, data)
21989     {
21990         this.valid = true;
21991         this.fireEvent('enter', dd, e, data);
21992         if(this.overClass){
21993             this.el.addClass(this.overClass);
21994         }
21995         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
21996             this.valid ? this.dropAllowed : this.dropNotAllowed
21997         );
21998     },
21999
22000     /**
22001      * @hide
22002      */
22003     notifyOver : function(dd, e, data)
22004     {
22005         this.valid = true;
22006         this.fireEvent('over', dd, e, data);
22007         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22008             this.valid ? this.dropAllowed : this.dropNotAllowed
22009         );
22010     },
22011
22012     /**
22013      * @hide
22014      */
22015     notifyOut : function(dd, e, data)
22016     {
22017         this.fireEvent('out', dd, e, data);
22018         if(this.overClass){
22019             this.el.removeClass(this.overClass);
22020         }
22021     },
22022
22023     /**
22024      * @hide
22025      */
22026     notifyDrop : function(dd, e, data)
22027     {
22028         this.success = false;
22029         this.fireEvent('drop', dd, e, data);
22030         return this.success;
22031     }
22032 });/*
22033  * Based on:
22034  * Ext JS Library 1.1.1
22035  * Copyright(c) 2006-2007, Ext JS, LLC.
22036  *
22037  * Originally Released Under LGPL - original licence link has changed is not relivant.
22038  *
22039  * Fork - LGPL
22040  * <script type="text/javascript">
22041  */
22042
22043
22044 /**
22045  * @class Roo.dd.DragZone
22046  * @extends Roo.dd.DragSource
22047  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22048  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22049  * @constructor
22050  * @param {String/HTMLElement/Element} el The container element
22051  * @param {Object} config
22052  */
22053 Roo.dd.DragZone = function(el, config){
22054     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22055     if(this.containerScroll){
22056         Roo.dd.ScrollManager.register(this.el);
22057     }
22058 };
22059
22060 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22061     /**
22062      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22063      * for auto scrolling during drag operations.
22064      */
22065     /**
22066      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22067      * method after a failed drop (defaults to "c3daf9" - light blue)
22068      */
22069
22070     /**
22071      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22072      * for a valid target to drag based on the mouse down. Override this method
22073      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22074      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22075      * @param {EventObject} e The mouse down event
22076      * @return {Object} The dragData
22077      */
22078     getDragData : function(e){
22079         return Roo.dd.Registry.getHandleFromEvent(e);
22080     },
22081     
22082     /**
22083      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22084      * this.dragData.ddel
22085      * @param {Number} x The x position of the click on the dragged object
22086      * @param {Number} y The y position of the click on the dragged object
22087      * @return {Boolean} true to continue the drag, false to cancel
22088      */
22089     onInitDrag : function(x, y){
22090         this.proxy.update(this.dragData.ddel.cloneNode(true));
22091         this.onStartDrag(x, y);
22092         return true;
22093     },
22094     
22095     /**
22096      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22097      */
22098     afterRepair : function(){
22099         if(Roo.enableFx){
22100             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22101         }
22102         this.dragging = false;
22103     },
22104
22105     /**
22106      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22107      * the XY of this.dragData.ddel
22108      * @param {EventObject} e The mouse up event
22109      * @return {Array} The xy location (e.g. [100, 200])
22110      */
22111     getRepairXY : function(e){
22112         return Roo.Element.fly(this.dragData.ddel).getXY();  
22113     }
22114 });/*
22115  * Based on:
22116  * Ext JS Library 1.1.1
22117  * Copyright(c) 2006-2007, Ext JS, LLC.
22118  *
22119  * Originally Released Under LGPL - original licence link has changed is not relivant.
22120  *
22121  * Fork - LGPL
22122  * <script type="text/javascript">
22123  */
22124 /**
22125  * @class Roo.dd.DropZone
22126  * @extends Roo.dd.DropTarget
22127  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22128  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22129  * @constructor
22130  * @param {String/HTMLElement/Element} el The container element
22131  * @param {Object} config
22132  */
22133 Roo.dd.DropZone = function(el, config){
22134     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22135 };
22136
22137 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22138     /**
22139      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22140      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22141      * provide your own custom lookup.
22142      * @param {Event} e The event
22143      * @return {Object} data The custom data
22144      */
22145     getTargetFromEvent : function(e){
22146         return Roo.dd.Registry.getTargetFromEvent(e);
22147     },
22148
22149     /**
22150      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22151      * that it has registered.  This method has no default implementation and should be overridden to provide
22152      * node-specific processing if necessary.
22153      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22154      * {@link #getTargetFromEvent} for this node)
22155      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22156      * @param {Event} e The event
22157      * @param {Object} data An object containing arbitrary data supplied by the drag source
22158      */
22159     onNodeEnter : function(n, dd, e, data){
22160         
22161     },
22162
22163     /**
22164      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22165      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22166      * overridden to provide the proper feedback.
22167      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22168      * {@link #getTargetFromEvent} for this node)
22169      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22170      * @param {Event} e The event
22171      * @param {Object} data An object containing arbitrary data supplied by the drag source
22172      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22173      * underlying {@link Roo.dd.StatusProxy} can be updated
22174      */
22175     onNodeOver : function(n, dd, e, data){
22176         return this.dropAllowed;
22177     },
22178
22179     /**
22180      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22181      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22182      * node-specific processing if necessary.
22183      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22184      * {@link #getTargetFromEvent} for this node)
22185      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22186      * @param {Event} e The event
22187      * @param {Object} data An object containing arbitrary data supplied by the drag source
22188      */
22189     onNodeOut : function(n, dd, e, data){
22190         
22191     },
22192
22193     /**
22194      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22195      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22196      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22197      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22198      * {@link #getTargetFromEvent} for this node)
22199      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22200      * @param {Event} e The event
22201      * @param {Object} data An object containing arbitrary data supplied by the drag source
22202      * @return {Boolean} True if the drop was valid, else false
22203      */
22204     onNodeDrop : function(n, dd, e, data){
22205         return false;
22206     },
22207
22208     /**
22209      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22210      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22211      * it should be overridden to provide the proper feedback if necessary.
22212      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22213      * @param {Event} e The event
22214      * @param {Object} data An object containing arbitrary data supplied by the drag source
22215      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22216      * underlying {@link Roo.dd.StatusProxy} can be updated
22217      */
22218     onContainerOver : function(dd, e, data){
22219         return this.dropNotAllowed;
22220     },
22221
22222     /**
22223      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22224      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22225      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22226      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22227      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22228      * @param {Event} e The event
22229      * @param {Object} data An object containing arbitrary data supplied by the drag source
22230      * @return {Boolean} True if the drop was valid, else false
22231      */
22232     onContainerDrop : function(dd, e, data){
22233         return false;
22234     },
22235
22236     /**
22237      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22238      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22239      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22240      * you should override this method and provide a custom implementation.
22241      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22242      * @param {Event} e The event
22243      * @param {Object} data An object containing arbitrary data supplied by the drag source
22244      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22245      * underlying {@link Roo.dd.StatusProxy} can be updated
22246      */
22247     notifyEnter : function(dd, e, data){
22248         return this.dropNotAllowed;
22249     },
22250
22251     /**
22252      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22253      * This method will be called on every mouse movement while the drag source is over the drop zone.
22254      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22255      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22256      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22257      * registered node, it will call {@link #onContainerOver}.
22258      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22259      * @param {Event} e The event
22260      * @param {Object} data An object containing arbitrary data supplied by the drag source
22261      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22262      * underlying {@link Roo.dd.StatusProxy} can be updated
22263      */
22264     notifyOver : function(dd, e, data){
22265         var n = this.getTargetFromEvent(e);
22266         if(!n){ // not over valid drop target
22267             if(this.lastOverNode){
22268                 this.onNodeOut(this.lastOverNode, dd, e, data);
22269                 this.lastOverNode = null;
22270             }
22271             return this.onContainerOver(dd, e, data);
22272         }
22273         if(this.lastOverNode != n){
22274             if(this.lastOverNode){
22275                 this.onNodeOut(this.lastOverNode, dd, e, data);
22276             }
22277             this.onNodeEnter(n, dd, e, data);
22278             this.lastOverNode = n;
22279         }
22280         return this.onNodeOver(n, dd, e, data);
22281     },
22282
22283     /**
22284      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22285      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22286      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22287      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22288      * @param {Event} e The event
22289      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22290      */
22291     notifyOut : function(dd, e, data){
22292         if(this.lastOverNode){
22293             this.onNodeOut(this.lastOverNode, dd, e, data);
22294             this.lastOverNode = null;
22295         }
22296     },
22297
22298     /**
22299      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22300      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22301      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22302      * otherwise it will call {@link #onContainerDrop}.
22303      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22304      * @param {Event} e The event
22305      * @param {Object} data An object containing arbitrary data supplied by the drag source
22306      * @return {Boolean} True if the drop was valid, else false
22307      */
22308     notifyDrop : function(dd, e, data){
22309         if(this.lastOverNode){
22310             this.onNodeOut(this.lastOverNode, dd, e, data);
22311             this.lastOverNode = null;
22312         }
22313         var n = this.getTargetFromEvent(e);
22314         return n ?
22315             this.onNodeDrop(n, dd, e, data) :
22316             this.onContainerDrop(dd, e, data);
22317     },
22318
22319     // private
22320     triggerCacheRefresh : function(){
22321         Roo.dd.DDM.refreshCache(this.groups);
22322     }  
22323 });/*
22324  * Based on:
22325  * Ext JS Library 1.1.1
22326  * Copyright(c) 2006-2007, Ext JS, LLC.
22327  *
22328  * Originally Released Under LGPL - original licence link has changed is not relivant.
22329  *
22330  * Fork - LGPL
22331  * <script type="text/javascript">
22332  */
22333
22334
22335 /**
22336  * @class Roo.data.SortTypes
22337  * @singleton
22338  * Defines the default sorting (casting?) comparison functions used when sorting data.
22339  */
22340 Roo.data.SortTypes = {
22341     /**
22342      * Default sort that does nothing
22343      * @param {Mixed} s The value being converted
22344      * @return {Mixed} The comparison value
22345      */
22346     none : function(s){
22347         return s;
22348     },
22349     
22350     /**
22351      * The regular expression used to strip tags
22352      * @type {RegExp}
22353      * @property
22354      */
22355     stripTagsRE : /<\/?[^>]+>/gi,
22356     
22357     /**
22358      * Strips all HTML tags to sort on text only
22359      * @param {Mixed} s The value being converted
22360      * @return {String} The comparison value
22361      */
22362     asText : function(s){
22363         return String(s).replace(this.stripTagsRE, "");
22364     },
22365     
22366     /**
22367      * Strips all HTML tags to sort on text only - Case insensitive
22368      * @param {Mixed} s The value being converted
22369      * @return {String} The comparison value
22370      */
22371     asUCText : function(s){
22372         return String(s).toUpperCase().replace(this.stripTagsRE, "");
22373     },
22374     
22375     /**
22376      * Case insensitive string
22377      * @param {Mixed} s The value being converted
22378      * @return {String} The comparison value
22379      */
22380     asUCString : function(s) {
22381         return String(s).toUpperCase();
22382     },
22383     
22384     /**
22385      * Date sorting
22386      * @param {Mixed} s The value being converted
22387      * @return {Number} The comparison value
22388      */
22389     asDate : function(s) {
22390         if(!s){
22391             return 0;
22392         }
22393         if(s instanceof Date){
22394             return s.getTime();
22395         }
22396         return Date.parse(String(s));
22397     },
22398     
22399     /**
22400      * Float sorting
22401      * @param {Mixed} s The value being converted
22402      * @return {Float} The comparison value
22403      */
22404     asFloat : function(s) {
22405         var val = parseFloat(String(s).replace(/,/g, ""));
22406         if(isNaN(val)) {
22407             val = 0;
22408         }
22409         return val;
22410     },
22411     
22412     /**
22413      * Integer sorting
22414      * @param {Mixed} s The value being converted
22415      * @return {Number} The comparison value
22416      */
22417     asInt : function(s) {
22418         var val = parseInt(String(s).replace(/,/g, ""));
22419         if(isNaN(val)) {
22420             val = 0;
22421         }
22422         return val;
22423     }
22424 };/*
22425  * Based on:
22426  * Ext JS Library 1.1.1
22427  * Copyright(c) 2006-2007, Ext JS, LLC.
22428  *
22429  * Originally Released Under LGPL - original licence link has changed is not relivant.
22430  *
22431  * Fork - LGPL
22432  * <script type="text/javascript">
22433  */
22434
22435 /**
22436 * @class Roo.data.Record
22437  * Instances of this class encapsulate both record <em>definition</em> information, and record
22438  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
22439  * to access Records cached in an {@link Roo.data.Store} object.<br>
22440  * <p>
22441  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
22442  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
22443  * objects.<br>
22444  * <p>
22445  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
22446  * @constructor
22447  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
22448  * {@link #create}. The parameters are the same.
22449  * @param {Array} data An associative Array of data values keyed by the field name.
22450  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
22451  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
22452  * not specified an integer id is generated.
22453  */
22454 Roo.data.Record = function(data, id){
22455     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
22456     this.data = data;
22457 };
22458
22459 /**
22460  * Generate a constructor for a specific record layout.
22461  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
22462  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
22463  * Each field definition object may contain the following properties: <ul>
22464  * <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,
22465  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
22466  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
22467  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
22468  * is being used, then this is a string containing the javascript expression to reference the data relative to 
22469  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
22470  * to the data item relative to the record element. If the mapping expression is the same as the field name,
22471  * this may be omitted.</p></li>
22472  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
22473  * <ul><li>auto (Default, implies no conversion)</li>
22474  * <li>string</li>
22475  * <li>int</li>
22476  * <li>float</li>
22477  * <li>boolean</li>
22478  * <li>date</li></ul></p></li>
22479  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
22480  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
22481  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
22482  * by the Reader into an object that will be stored in the Record. It is passed the
22483  * following parameters:<ul>
22484  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
22485  * </ul></p></li>
22486  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
22487  * </ul>
22488  * <br>usage:<br><pre><code>
22489 var TopicRecord = Roo.data.Record.create(
22490     {name: 'title', mapping: 'topic_title'},
22491     {name: 'author', mapping: 'username'},
22492     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
22493     {name: 'lastPost', mapping: 'post_time', type: 'date'},
22494     {name: 'lastPoster', mapping: 'user2'},
22495     {name: 'excerpt', mapping: 'post_text'}
22496 );
22497
22498 var myNewRecord = new TopicRecord({
22499     title: 'Do my job please',
22500     author: 'noobie',
22501     totalPosts: 1,
22502     lastPost: new Date(),
22503     lastPoster: 'Animal',
22504     excerpt: 'No way dude!'
22505 });
22506 myStore.add(myNewRecord);
22507 </code></pre>
22508  * @method create
22509  * @static
22510  */
22511 Roo.data.Record.create = function(o){
22512     var f = function(){
22513         f.superclass.constructor.apply(this, arguments);
22514     };
22515     Roo.extend(f, Roo.data.Record);
22516     var p = f.prototype;
22517     p.fields = new Roo.util.MixedCollection(false, function(field){
22518         return field.name;
22519     });
22520     for(var i = 0, len = o.length; i < len; i++){
22521         p.fields.add(new Roo.data.Field(o[i]));
22522     }
22523     f.getField = function(name){
22524         return p.fields.get(name);  
22525     };
22526     return f;
22527 };
22528
22529 Roo.data.Record.AUTO_ID = 1000;
22530 Roo.data.Record.EDIT = 'edit';
22531 Roo.data.Record.REJECT = 'reject';
22532 Roo.data.Record.COMMIT = 'commit';
22533
22534 Roo.data.Record.prototype = {
22535     /**
22536      * Readonly flag - true if this record has been modified.
22537      * @type Boolean
22538      */
22539     dirty : false,
22540     editing : false,
22541     error: null,
22542     modified: null,
22543
22544     // private
22545     join : function(store){
22546         this.store = store;
22547     },
22548
22549     /**
22550      * Set the named field to the specified value.
22551      * @param {String} name The name of the field to set.
22552      * @param {Object} value The value to set the field to.
22553      */
22554     set : function(name, value){
22555         if(this.data[name] == value){
22556             return;
22557         }
22558         this.dirty = true;
22559         if(!this.modified){
22560             this.modified = {};
22561         }
22562         if(typeof this.modified[name] == 'undefined'){
22563             this.modified[name] = this.data[name];
22564         }
22565         this.data[name] = value;
22566         if(!this.editing && this.store){
22567             this.store.afterEdit(this);
22568         }       
22569     },
22570
22571     /**
22572      * Get the value of the named field.
22573      * @param {String} name The name of the field to get the value of.
22574      * @return {Object} The value of the field.
22575      */
22576     get : function(name){
22577         return this.data[name]; 
22578     },
22579
22580     // private
22581     beginEdit : function(){
22582         this.editing = true;
22583         this.modified = {}; 
22584     },
22585
22586     // private
22587     cancelEdit : function(){
22588         this.editing = false;
22589         delete this.modified;
22590     },
22591
22592     // private
22593     endEdit : function(){
22594         this.editing = false;
22595         if(this.dirty && this.store){
22596             this.store.afterEdit(this);
22597         }
22598     },
22599
22600     /**
22601      * Usually called by the {@link Roo.data.Store} which owns the Record.
22602      * Rejects all changes made to the Record since either creation, or the last commit operation.
22603      * Modified fields are reverted to their original values.
22604      * <p>
22605      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
22606      * of reject operations.
22607      */
22608     reject : function(){
22609         var m = this.modified;
22610         for(var n in m){
22611             if(typeof m[n] != "function"){
22612                 this.data[n] = m[n];
22613             }
22614         }
22615         this.dirty = false;
22616         delete this.modified;
22617         this.editing = false;
22618         if(this.store){
22619             this.store.afterReject(this);
22620         }
22621     },
22622
22623     /**
22624      * Usually called by the {@link Roo.data.Store} which owns the Record.
22625      * Commits all changes made to the Record since either creation, or the last commit operation.
22626      * <p>
22627      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
22628      * of commit operations.
22629      */
22630     commit : function(){
22631         this.dirty = false;
22632         delete this.modified;
22633         this.editing = false;
22634         if(this.store){
22635             this.store.afterCommit(this);
22636         }
22637     },
22638
22639     // private
22640     hasError : function(){
22641         return this.error != null;
22642     },
22643
22644     // private
22645     clearError : function(){
22646         this.error = null;
22647     },
22648
22649     /**
22650      * Creates a copy of this record.
22651      * @param {String} id (optional) A new record id if you don't want to use this record's id
22652      * @return {Record}
22653      */
22654     copy : function(newId) {
22655         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
22656     }
22657 };/*
22658  * Based on:
22659  * Ext JS Library 1.1.1
22660  * Copyright(c) 2006-2007, Ext JS, LLC.
22661  *
22662  * Originally Released Under LGPL - original licence link has changed is not relivant.
22663  *
22664  * Fork - LGPL
22665  * <script type="text/javascript">
22666  */
22667
22668
22669
22670 /**
22671  * @class Roo.data.Store
22672  * @extends Roo.util.Observable
22673  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
22674  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
22675  * <p>
22676  * 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
22677  * has no knowledge of the format of the data returned by the Proxy.<br>
22678  * <p>
22679  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
22680  * instances from the data object. These records are cached and made available through accessor functions.
22681  * @constructor
22682  * Creates a new Store.
22683  * @param {Object} config A config object containing the objects needed for the Store to access data,
22684  * and read the data into Records.
22685  */
22686 Roo.data.Store = function(config){
22687     this.data = new Roo.util.MixedCollection(false);
22688     this.data.getKey = function(o){
22689         return o.id;
22690     };
22691     this.baseParams = {};
22692     // private
22693     this.paramNames = {
22694         "start" : "start",
22695         "limit" : "limit",
22696         "sort" : "sort",
22697         "dir" : "dir",
22698         "multisort" : "_multisort"
22699     };
22700
22701     if(config && config.data){
22702         this.inlineData = config.data;
22703         delete config.data;
22704     }
22705
22706     Roo.apply(this, config);
22707     
22708     if(this.reader){ // reader passed
22709         this.reader = Roo.factory(this.reader, Roo.data);
22710         this.reader.xmodule = this.xmodule || false;
22711         if(!this.recordType){
22712             this.recordType = this.reader.recordType;
22713         }
22714         if(this.reader.onMetaChange){
22715             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
22716         }
22717     }
22718
22719     if(this.recordType){
22720         this.fields = this.recordType.prototype.fields;
22721     }
22722     this.modified = [];
22723
22724     this.addEvents({
22725         /**
22726          * @event datachanged
22727          * Fires when the data cache has changed, and a widget which is using this Store
22728          * as a Record cache should refresh its view.
22729          * @param {Store} this
22730          */
22731         datachanged : true,
22732         /**
22733          * @event metachange
22734          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
22735          * @param {Store} this
22736          * @param {Object} meta The JSON metadata
22737          */
22738         metachange : true,
22739         /**
22740          * @event add
22741          * Fires when Records have been added to the Store
22742          * @param {Store} this
22743          * @param {Roo.data.Record[]} records The array of Records added
22744          * @param {Number} index The index at which the record(s) were added
22745          */
22746         add : true,
22747         /**
22748          * @event remove
22749          * Fires when a Record has been removed from the Store
22750          * @param {Store} this
22751          * @param {Roo.data.Record} record The Record that was removed
22752          * @param {Number} index The index at which the record was removed
22753          */
22754         remove : true,
22755         /**
22756          * @event update
22757          * Fires when a Record has been updated
22758          * @param {Store} this
22759          * @param {Roo.data.Record} record The Record that was updated
22760          * @param {String} operation The update operation being performed.  Value may be one of:
22761          * <pre><code>
22762  Roo.data.Record.EDIT
22763  Roo.data.Record.REJECT
22764  Roo.data.Record.COMMIT
22765          * </code></pre>
22766          */
22767         update : true,
22768         /**
22769          * @event clear
22770          * Fires when the data cache has been cleared.
22771          * @param {Store} this
22772          */
22773         clear : true,
22774         /**
22775          * @event beforeload
22776          * Fires before a request is made for a new data object.  If the beforeload handler returns false
22777          * the load action will be canceled.
22778          * @param {Store} this
22779          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22780          */
22781         beforeload : true,
22782         /**
22783          * @event beforeloadadd
22784          * Fires after a new set of Records has been loaded.
22785          * @param {Store} this
22786          * @param {Roo.data.Record[]} records The Records that were loaded
22787          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22788          */
22789         beforeloadadd : true,
22790         /**
22791          * @event load
22792          * Fires after a new set of Records has been loaded, before they are added to the store.
22793          * @param {Store} this
22794          * @param {Roo.data.Record[]} records The Records that were loaded
22795          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22796          * @params {Object} return from reader
22797          */
22798         load : true,
22799         /**
22800          * @event loadexception
22801          * Fires if an exception occurs in the Proxy during loading.
22802          * Called with the signature of the Proxy's "loadexception" event.
22803          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
22804          * 
22805          * @param {Proxy} 
22806          * @param {Object} return from JsonData.reader() - success, totalRecords, records
22807          * @param {Object} load options 
22808          * @param {Object} jsonData from your request (normally this contains the Exception)
22809          */
22810         loadexception : true
22811     });
22812     
22813     if(this.proxy){
22814         this.proxy = Roo.factory(this.proxy, Roo.data);
22815         this.proxy.xmodule = this.xmodule || false;
22816         this.relayEvents(this.proxy,  ["loadexception"]);
22817     }
22818     this.sortToggle = {};
22819     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
22820
22821     Roo.data.Store.superclass.constructor.call(this);
22822
22823     if(this.inlineData){
22824         this.loadData(this.inlineData);
22825         delete this.inlineData;
22826     }
22827 };
22828
22829 Roo.extend(Roo.data.Store, Roo.util.Observable, {
22830      /**
22831     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
22832     * without a remote query - used by combo/forms at present.
22833     */
22834     
22835     /**
22836     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
22837     */
22838     /**
22839     * @cfg {Array} data Inline data to be loaded when the store is initialized.
22840     */
22841     /**
22842     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
22843     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
22844     */
22845     /**
22846     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
22847     * on any HTTP request
22848     */
22849     /**
22850     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
22851     */
22852     /**
22853     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
22854     */
22855     multiSort: false,
22856     /**
22857     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
22858     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
22859     */
22860     remoteSort : false,
22861
22862     /**
22863     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
22864      * loaded or when a record is removed. (defaults to false).
22865     */
22866     pruneModifiedRecords : false,
22867
22868     // private
22869     lastOptions : null,
22870
22871     /**
22872      * Add Records to the Store and fires the add event.
22873      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
22874      */
22875     add : function(records){
22876         records = [].concat(records);
22877         for(var i = 0, len = records.length; i < len; i++){
22878             records[i].join(this);
22879         }
22880         var index = this.data.length;
22881         this.data.addAll(records);
22882         this.fireEvent("add", this, records, index);
22883     },
22884
22885     /**
22886      * Remove a Record from the Store and fires the remove event.
22887      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
22888      */
22889     remove : function(record){
22890         var index = this.data.indexOf(record);
22891         this.data.removeAt(index);
22892         if(this.pruneModifiedRecords){
22893             this.modified.remove(record);
22894         }
22895         this.fireEvent("remove", this, record, index);
22896     },
22897
22898     /**
22899      * Remove all Records from the Store and fires the clear event.
22900      */
22901     removeAll : function(){
22902         this.data.clear();
22903         if(this.pruneModifiedRecords){
22904             this.modified = [];
22905         }
22906         this.fireEvent("clear", this);
22907     },
22908
22909     /**
22910      * Inserts Records to the Store at the given index and fires the add event.
22911      * @param {Number} index The start index at which to insert the passed Records.
22912      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
22913      */
22914     insert : function(index, records){
22915         records = [].concat(records);
22916         for(var i = 0, len = records.length; i < len; i++){
22917             this.data.insert(index, records[i]);
22918             records[i].join(this);
22919         }
22920         this.fireEvent("add", this, records, index);
22921     },
22922
22923     /**
22924      * Get the index within the cache of the passed Record.
22925      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
22926      * @return {Number} The index of the passed Record. Returns -1 if not found.
22927      */
22928     indexOf : function(record){
22929         return this.data.indexOf(record);
22930     },
22931
22932     /**
22933      * Get the index within the cache of the Record with the passed id.
22934      * @param {String} id The id of the Record to find.
22935      * @return {Number} The index of the Record. Returns -1 if not found.
22936      */
22937     indexOfId : function(id){
22938         return this.data.indexOfKey(id);
22939     },
22940
22941     /**
22942      * Get the Record with the specified id.
22943      * @param {String} id The id of the Record to find.
22944      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
22945      */
22946     getById : function(id){
22947         return this.data.key(id);
22948     },
22949
22950     /**
22951      * Get the Record at the specified index.
22952      * @param {Number} index The index of the Record to find.
22953      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
22954      */
22955     getAt : function(index){
22956         return this.data.itemAt(index);
22957     },
22958
22959     /**
22960      * Returns a range of Records between specified indices.
22961      * @param {Number} startIndex (optional) The starting index (defaults to 0)
22962      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
22963      * @return {Roo.data.Record[]} An array of Records
22964      */
22965     getRange : function(start, end){
22966         return this.data.getRange(start, end);
22967     },
22968
22969     // private
22970     storeOptions : function(o){
22971         o = Roo.apply({}, o);
22972         delete o.callback;
22973         delete o.scope;
22974         this.lastOptions = o;
22975     },
22976
22977     /**
22978      * Loads the Record cache from the configured Proxy using the configured Reader.
22979      * <p>
22980      * If using remote paging, then the first load call must specify the <em>start</em>
22981      * and <em>limit</em> properties in the options.params property to establish the initial
22982      * position within the dataset, and the number of Records to cache on each read from the Proxy.
22983      * <p>
22984      * <strong>It is important to note that for remote data sources, loading is asynchronous,
22985      * and this call will return before the new data has been loaded. Perform any post-processing
22986      * in a callback function, or in a "load" event handler.</strong>
22987      * <p>
22988      * @param {Object} options An object containing properties which control loading options:<ul>
22989      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
22990      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
22991      * passed the following arguments:<ul>
22992      * <li>r : Roo.data.Record[]</li>
22993      * <li>options: Options object from the load call</li>
22994      * <li>success: Boolean success indicator</li></ul></li>
22995      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
22996      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
22997      * </ul>
22998      */
22999     load : function(options){
23000         options = options || {};
23001         if(this.fireEvent("beforeload", this, options) !== false){
23002             this.storeOptions(options);
23003             var p = Roo.apply(options.params || {}, this.baseParams);
23004             // if meta was not loaded from remote source.. try requesting it.
23005             if (!this.reader.metaFromRemote) {
23006                 p._requestMeta = 1;
23007             }
23008             if(this.sortInfo && this.remoteSort){
23009                 var pn = this.paramNames;
23010                 p[pn["sort"]] = this.sortInfo.field;
23011                 p[pn["dir"]] = this.sortInfo.direction;
23012             }
23013             if (this.multiSort) {
23014                 var pn = this.paramNames;
23015                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23016             }
23017             
23018             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23019         }
23020     },
23021
23022     /**
23023      * Reloads the Record cache from the configured Proxy using the configured Reader and
23024      * the options from the last load operation performed.
23025      * @param {Object} options (optional) An object containing properties which may override the options
23026      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23027      * the most recently used options are reused).
23028      */
23029     reload : function(options){
23030         this.load(Roo.applyIf(options||{}, this.lastOptions));
23031     },
23032
23033     // private
23034     // Called as a callback by the Reader during a load operation.
23035     loadRecords : function(o, options, success){
23036         if(!o || success === false){
23037             if(success !== false){
23038                 this.fireEvent("load", this, [], options, o);
23039             }
23040             if(options.callback){
23041                 options.callback.call(options.scope || this, [], options, false);
23042             }
23043             return;
23044         }
23045         // if data returned failure - throw an exception.
23046         if (o.success === false) {
23047             // show a message if no listener is registered.
23048             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23049                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23050             }
23051             // loadmask wil be hooked into this..
23052             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23053             return;
23054         }
23055         var r = o.records, t = o.totalRecords || r.length;
23056         
23057         this.fireEvent("beforeloadadd", this, r, options, o);
23058         
23059         if(!options || options.add !== true){
23060             if(this.pruneModifiedRecords){
23061                 this.modified = [];
23062             }
23063             for(var i = 0, len = r.length; i < len; i++){
23064                 r[i].join(this);
23065             }
23066             if(this.snapshot){
23067                 this.data = this.snapshot;
23068                 delete this.snapshot;
23069             }
23070             this.data.clear();
23071             this.data.addAll(r);
23072             this.totalLength = t;
23073             this.applySort();
23074             this.fireEvent("datachanged", this);
23075         }else{
23076             this.totalLength = Math.max(t, this.data.length+r.length);
23077             this.add(r);
23078         }
23079         this.fireEvent("load", this, r, options, o);
23080         if(options.callback){
23081             options.callback.call(options.scope || this, r, options, true);
23082         }
23083     },
23084
23085
23086     /**
23087      * Loads data from a passed data block. A Reader which understands the format of the data
23088      * must have been configured in the constructor.
23089      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23090      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23091      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23092      */
23093     loadData : function(o, append){
23094         var r = this.reader.readRecords(o);
23095         this.loadRecords(r, {add: append}, true);
23096     },
23097
23098     /**
23099      * Gets the number of cached records.
23100      * <p>
23101      * <em>If using paging, this may not be the total size of the dataset. If the data object
23102      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23103      * the data set size</em>
23104      */
23105     getCount : function(){
23106         return this.data.length || 0;
23107     },
23108
23109     /**
23110      * Gets the total number of records in the dataset as returned by the server.
23111      * <p>
23112      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23113      * the dataset size</em>
23114      */
23115     getTotalCount : function(){
23116         return this.totalLength || 0;
23117     },
23118
23119     /**
23120      * Returns the sort state of the Store as an object with two properties:
23121      * <pre><code>
23122  field {String} The name of the field by which the Records are sorted
23123  direction {String} The sort order, "ASC" or "DESC"
23124      * </code></pre>
23125      */
23126     getSortState : function(){
23127         return this.sortInfo;
23128     },
23129
23130     // private
23131     applySort : function(){
23132         if(this.sortInfo && !this.remoteSort){
23133             var s = this.sortInfo, f = s.field;
23134             var st = this.fields.get(f).sortType;
23135             var fn = function(r1, r2){
23136                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23137                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23138             };
23139             this.data.sort(s.direction, fn);
23140             if(this.snapshot && this.snapshot != this.data){
23141                 this.snapshot.sort(s.direction, fn);
23142             }
23143         }
23144     },
23145
23146     /**
23147      * Sets the default sort column and order to be used by the next load operation.
23148      * @param {String} fieldName The name of the field to sort by.
23149      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23150      */
23151     setDefaultSort : function(field, dir){
23152         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23153     },
23154
23155     /**
23156      * Sort the Records.
23157      * If remote sorting is used, the sort is performed on the server, and the cache is
23158      * reloaded. If local sorting is used, the cache is sorted internally.
23159      * @param {String} fieldName The name of the field to sort by.
23160      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23161      */
23162     sort : function(fieldName, dir){
23163         var f = this.fields.get(fieldName);
23164         if(!dir){
23165             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23166             
23167             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23168                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23169             }else{
23170                 dir = f.sortDir;
23171             }
23172         }
23173         this.sortToggle[f.name] = dir;
23174         this.sortInfo = {field: f.name, direction: dir};
23175         if(!this.remoteSort){
23176             this.applySort();
23177             this.fireEvent("datachanged", this);
23178         }else{
23179             this.load(this.lastOptions);
23180         }
23181     },
23182
23183     /**
23184      * Calls the specified function for each of the Records in the cache.
23185      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23186      * Returning <em>false</em> aborts and exits the iteration.
23187      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23188      */
23189     each : function(fn, scope){
23190         this.data.each(fn, scope);
23191     },
23192
23193     /**
23194      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23195      * (e.g., during paging).
23196      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23197      */
23198     getModifiedRecords : function(){
23199         return this.modified;
23200     },
23201
23202     // private
23203     createFilterFn : function(property, value, anyMatch){
23204         if(!value.exec){ // not a regex
23205             value = String(value);
23206             if(value.length == 0){
23207                 return false;
23208             }
23209             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
23210         }
23211         return function(r){
23212             return value.test(r.data[property]);
23213         };
23214     },
23215
23216     /**
23217      * Sums the value of <i>property</i> for each record between start and end and returns the result.
23218      * @param {String} property A field on your records
23219      * @param {Number} start The record index to start at (defaults to 0)
23220      * @param {Number} end The last record index to include (defaults to length - 1)
23221      * @return {Number} The sum
23222      */
23223     sum : function(property, start, end){
23224         var rs = this.data.items, v = 0;
23225         start = start || 0;
23226         end = (end || end === 0) ? end : rs.length-1;
23227
23228         for(var i = start; i <= end; i++){
23229             v += (rs[i].data[property] || 0);
23230         }
23231         return v;
23232     },
23233
23234     /**
23235      * Filter the records by a specified property.
23236      * @param {String} field A field on your records
23237      * @param {String/RegExp} value Either a string that the field
23238      * should start with or a RegExp to test against the field
23239      * @param {Boolean} anyMatch True to match any part not just the beginning
23240      */
23241     filter : function(property, value, anyMatch){
23242         var fn = this.createFilterFn(property, value, anyMatch);
23243         return fn ? this.filterBy(fn) : this.clearFilter();
23244     },
23245
23246     /**
23247      * Filter by a function. The specified function will be called with each
23248      * record in this data source. If the function returns true the record is included,
23249      * otherwise it is filtered.
23250      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23251      * @param {Object} scope (optional) The scope of the function (defaults to this)
23252      */
23253     filterBy : function(fn, scope){
23254         this.snapshot = this.snapshot || this.data;
23255         this.data = this.queryBy(fn, scope||this);
23256         this.fireEvent("datachanged", this);
23257     },
23258
23259     /**
23260      * Query the records by a specified property.
23261      * @param {String} field A field on your records
23262      * @param {String/RegExp} value Either a string that the field
23263      * should start with or a RegExp to test against the field
23264      * @param {Boolean} anyMatch True to match any part not just the beginning
23265      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23266      */
23267     query : function(property, value, anyMatch){
23268         var fn = this.createFilterFn(property, value, anyMatch);
23269         return fn ? this.queryBy(fn) : this.data.clone();
23270     },
23271
23272     /**
23273      * Query by a function. The specified function will be called with each
23274      * record in this data source. If the function returns true the record is included
23275      * in the results.
23276      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23277      * @param {Object} scope (optional) The scope of the function (defaults to this)
23278       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23279      **/
23280     queryBy : function(fn, scope){
23281         var data = this.snapshot || this.data;
23282         return data.filterBy(fn, scope||this);
23283     },
23284
23285     /**
23286      * Collects unique values for a particular dataIndex from this store.
23287      * @param {String} dataIndex The property to collect
23288      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
23289      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
23290      * @return {Array} An array of the unique values
23291      **/
23292     collect : function(dataIndex, allowNull, bypassFilter){
23293         var d = (bypassFilter === true && this.snapshot) ?
23294                 this.snapshot.items : this.data.items;
23295         var v, sv, r = [], l = {};
23296         for(var i = 0, len = d.length; i < len; i++){
23297             v = d[i].data[dataIndex];
23298             sv = String(v);
23299             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
23300                 l[sv] = true;
23301                 r[r.length] = v;
23302             }
23303         }
23304         return r;
23305     },
23306
23307     /**
23308      * Revert to a view of the Record cache with no filtering applied.
23309      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
23310      */
23311     clearFilter : function(suppressEvent){
23312         if(this.snapshot && this.snapshot != this.data){
23313             this.data = this.snapshot;
23314             delete this.snapshot;
23315             if(suppressEvent !== true){
23316                 this.fireEvent("datachanged", this);
23317             }
23318         }
23319     },
23320
23321     // private
23322     afterEdit : function(record){
23323         if(this.modified.indexOf(record) == -1){
23324             this.modified.push(record);
23325         }
23326         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
23327     },
23328     
23329     // private
23330     afterReject : function(record){
23331         this.modified.remove(record);
23332         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
23333     },
23334
23335     // private
23336     afterCommit : function(record){
23337         this.modified.remove(record);
23338         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
23339     },
23340
23341     /**
23342      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
23343      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
23344      */
23345     commitChanges : function(){
23346         var m = this.modified.slice(0);
23347         this.modified = [];
23348         for(var i = 0, len = m.length; i < len; i++){
23349             m[i].commit();
23350         }
23351     },
23352
23353     /**
23354      * Cancel outstanding changes on all changed records.
23355      */
23356     rejectChanges : function(){
23357         var m = this.modified.slice(0);
23358         this.modified = [];
23359         for(var i = 0, len = m.length; i < len; i++){
23360             m[i].reject();
23361         }
23362     },
23363
23364     onMetaChange : function(meta, rtype, o){
23365         this.recordType = rtype;
23366         this.fields = rtype.prototype.fields;
23367         delete this.snapshot;
23368         this.sortInfo = meta.sortInfo || this.sortInfo;
23369         this.modified = [];
23370         this.fireEvent('metachange', this, this.reader.meta);
23371     },
23372     
23373     moveIndex : function(data, type)
23374     {
23375         var index = this.indexOf(data);
23376         
23377         var newIndex = index + type;
23378         
23379         this.remove(data);
23380         
23381         this.insert(newIndex, data);
23382         
23383     }
23384 });/*
23385  * Based on:
23386  * Ext JS Library 1.1.1
23387  * Copyright(c) 2006-2007, Ext JS, LLC.
23388  *
23389  * Originally Released Under LGPL - original licence link has changed is not relivant.
23390  *
23391  * Fork - LGPL
23392  * <script type="text/javascript">
23393  */
23394
23395 /**
23396  * @class Roo.data.SimpleStore
23397  * @extends Roo.data.Store
23398  * Small helper class to make creating Stores from Array data easier.
23399  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
23400  * @cfg {Array} fields An array of field definition objects, or field name strings.
23401  * @cfg {Array} data The multi-dimensional array of data
23402  * @constructor
23403  * @param {Object} config
23404  */
23405 Roo.data.SimpleStore = function(config){
23406     Roo.data.SimpleStore.superclass.constructor.call(this, {
23407         isLocal : true,
23408         reader: new Roo.data.ArrayReader({
23409                 id: config.id
23410             },
23411             Roo.data.Record.create(config.fields)
23412         ),
23413         proxy : new Roo.data.MemoryProxy(config.data)
23414     });
23415     this.load();
23416 };
23417 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
23418  * Based on:
23419  * Ext JS Library 1.1.1
23420  * Copyright(c) 2006-2007, Ext JS, LLC.
23421  *
23422  * Originally Released Under LGPL - original licence link has changed is not relivant.
23423  *
23424  * Fork - LGPL
23425  * <script type="text/javascript">
23426  */
23427
23428 /**
23429 /**
23430  * @extends Roo.data.Store
23431  * @class Roo.data.JsonStore
23432  * Small helper class to make creating Stores for JSON data easier. <br/>
23433 <pre><code>
23434 var store = new Roo.data.JsonStore({
23435     url: 'get-images.php',
23436     root: 'images',
23437     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
23438 });
23439 </code></pre>
23440  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
23441  * JsonReader and HttpProxy (unless inline data is provided).</b>
23442  * @cfg {Array} fields An array of field definition objects, or field name strings.
23443  * @constructor
23444  * @param {Object} config
23445  */
23446 Roo.data.JsonStore = function(c){
23447     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
23448         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
23449         reader: new Roo.data.JsonReader(c, c.fields)
23450     }));
23451 };
23452 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
23453  * Based on:
23454  * Ext JS Library 1.1.1
23455  * Copyright(c) 2006-2007, Ext JS, LLC.
23456  *
23457  * Originally Released Under LGPL - original licence link has changed is not relivant.
23458  *
23459  * Fork - LGPL
23460  * <script type="text/javascript">
23461  */
23462
23463  
23464 Roo.data.Field = function(config){
23465     if(typeof config == "string"){
23466         config = {name: config};
23467     }
23468     Roo.apply(this, config);
23469     
23470     if(!this.type){
23471         this.type = "auto";
23472     }
23473     
23474     var st = Roo.data.SortTypes;
23475     // named sortTypes are supported, here we look them up
23476     if(typeof this.sortType == "string"){
23477         this.sortType = st[this.sortType];
23478     }
23479     
23480     // set default sortType for strings and dates
23481     if(!this.sortType){
23482         switch(this.type){
23483             case "string":
23484                 this.sortType = st.asUCString;
23485                 break;
23486             case "date":
23487                 this.sortType = st.asDate;
23488                 break;
23489             default:
23490                 this.sortType = st.none;
23491         }
23492     }
23493
23494     // define once
23495     var stripRe = /[\$,%]/g;
23496
23497     // prebuilt conversion function for this field, instead of
23498     // switching every time we're reading a value
23499     if(!this.convert){
23500         var cv, dateFormat = this.dateFormat;
23501         switch(this.type){
23502             case "":
23503             case "auto":
23504             case undefined:
23505                 cv = function(v){ return v; };
23506                 break;
23507             case "string":
23508                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
23509                 break;
23510             case "int":
23511                 cv = function(v){
23512                     return v !== undefined && v !== null && v !== '' ?
23513                            parseInt(String(v).replace(stripRe, ""), 10) : '';
23514                     };
23515                 break;
23516             case "float":
23517                 cv = function(v){
23518                     return v !== undefined && v !== null && v !== '' ?
23519                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
23520                     };
23521                 break;
23522             case "bool":
23523             case "boolean":
23524                 cv = function(v){ return v === true || v === "true" || v == 1; };
23525                 break;
23526             case "date":
23527                 cv = function(v){
23528                     if(!v){
23529                         return '';
23530                     }
23531                     if(v instanceof Date){
23532                         return v;
23533                     }
23534                     if(dateFormat){
23535                         if(dateFormat == "timestamp"){
23536                             return new Date(v*1000);
23537                         }
23538                         return Date.parseDate(v, dateFormat);
23539                     }
23540                     var parsed = Date.parse(v);
23541                     return parsed ? new Date(parsed) : null;
23542                 };
23543              break;
23544             
23545         }
23546         this.convert = cv;
23547     }
23548 };
23549
23550 Roo.data.Field.prototype = {
23551     dateFormat: null,
23552     defaultValue: "",
23553     mapping: null,
23554     sortType : null,
23555     sortDir : "ASC"
23556 };/*
23557  * Based on:
23558  * Ext JS Library 1.1.1
23559  * Copyright(c) 2006-2007, Ext JS, LLC.
23560  *
23561  * Originally Released Under LGPL - original licence link has changed is not relivant.
23562  *
23563  * Fork - LGPL
23564  * <script type="text/javascript">
23565  */
23566  
23567 // Base class for reading structured data from a data source.  This class is intended to be
23568 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
23569
23570 /**
23571  * @class Roo.data.DataReader
23572  * Base class for reading structured data from a data source.  This class is intended to be
23573  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
23574  */
23575
23576 Roo.data.DataReader = function(meta, recordType){
23577     
23578     this.meta = meta;
23579     
23580     this.recordType = recordType instanceof Array ? 
23581         Roo.data.Record.create(recordType) : recordType;
23582 };
23583
23584 Roo.data.DataReader.prototype = {
23585      /**
23586      * Create an empty record
23587      * @param {Object} data (optional) - overlay some values
23588      * @return {Roo.data.Record} record created.
23589      */
23590     newRow :  function(d) {
23591         var da =  {};
23592         this.recordType.prototype.fields.each(function(c) {
23593             switch( c.type) {
23594                 case 'int' : da[c.name] = 0; break;
23595                 case 'date' : da[c.name] = new Date(); break;
23596                 case 'float' : da[c.name] = 0.0; break;
23597                 case 'boolean' : da[c.name] = false; break;
23598                 default : da[c.name] = ""; break;
23599             }
23600             
23601         });
23602         return new this.recordType(Roo.apply(da, d));
23603     }
23604     
23605 };/*
23606  * Based on:
23607  * Ext JS Library 1.1.1
23608  * Copyright(c) 2006-2007, Ext JS, LLC.
23609  *
23610  * Originally Released Under LGPL - original licence link has changed is not relivant.
23611  *
23612  * Fork - LGPL
23613  * <script type="text/javascript">
23614  */
23615
23616 /**
23617  * @class Roo.data.DataProxy
23618  * @extends Roo.data.Observable
23619  * This class is an abstract base class for implementations which provide retrieval of
23620  * unformatted data objects.<br>
23621  * <p>
23622  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
23623  * (of the appropriate type which knows how to parse the data object) to provide a block of
23624  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
23625  * <p>
23626  * Custom implementations must implement the load method as described in
23627  * {@link Roo.data.HttpProxy#load}.
23628  */
23629 Roo.data.DataProxy = function(){
23630     this.addEvents({
23631         /**
23632          * @event beforeload
23633          * Fires before a network request is made to retrieve a data object.
23634          * @param {Object} This DataProxy object.
23635          * @param {Object} params The params parameter to the load function.
23636          */
23637         beforeload : true,
23638         /**
23639          * @event load
23640          * Fires before the load method's callback is called.
23641          * @param {Object} This DataProxy object.
23642          * @param {Object} o The data object.
23643          * @param {Object} arg The callback argument object passed to the load function.
23644          */
23645         load : true,
23646         /**
23647          * @event loadexception
23648          * Fires if an Exception occurs during data retrieval.
23649          * @param {Object} This DataProxy object.
23650          * @param {Object} o The data object.
23651          * @param {Object} arg The callback argument object passed to the load function.
23652          * @param {Object} e The Exception.
23653          */
23654         loadexception : true
23655     });
23656     Roo.data.DataProxy.superclass.constructor.call(this);
23657 };
23658
23659 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
23660
23661     /**
23662      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
23663      */
23664 /*
23665  * Based on:
23666  * Ext JS Library 1.1.1
23667  * Copyright(c) 2006-2007, Ext JS, LLC.
23668  *
23669  * Originally Released Under LGPL - original licence link has changed is not relivant.
23670  *
23671  * Fork - LGPL
23672  * <script type="text/javascript">
23673  */
23674 /**
23675  * @class Roo.data.MemoryProxy
23676  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
23677  * to the Reader when its load method is called.
23678  * @constructor
23679  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
23680  */
23681 Roo.data.MemoryProxy = function(data){
23682     if (data.data) {
23683         data = data.data;
23684     }
23685     Roo.data.MemoryProxy.superclass.constructor.call(this);
23686     this.data = data;
23687 };
23688
23689 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
23690     
23691     /**
23692      * Load data from the requested source (in this case an in-memory
23693      * data object passed to the constructor), read the data object into
23694      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
23695      * process that block using the passed callback.
23696      * @param {Object} params This parameter is not used by the MemoryProxy class.
23697      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23698      * object into a block of Roo.data.Records.
23699      * @param {Function} callback The function into which to pass the block of Roo.data.records.
23700      * The function must be passed <ul>
23701      * <li>The Record block object</li>
23702      * <li>The "arg" argument from the load function</li>
23703      * <li>A boolean success indicator</li>
23704      * </ul>
23705      * @param {Object} scope The scope in which to call the callback
23706      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
23707      */
23708     load : function(params, reader, callback, scope, arg){
23709         params = params || {};
23710         var result;
23711         try {
23712             result = reader.readRecords(this.data);
23713         }catch(e){
23714             this.fireEvent("loadexception", this, arg, null, e);
23715             callback.call(scope, null, arg, false);
23716             return;
23717         }
23718         callback.call(scope, result, arg, true);
23719     },
23720     
23721     // private
23722     update : function(params, records){
23723         
23724     }
23725 });/*
23726  * Based on:
23727  * Ext JS Library 1.1.1
23728  * Copyright(c) 2006-2007, Ext JS, LLC.
23729  *
23730  * Originally Released Under LGPL - original licence link has changed is not relivant.
23731  *
23732  * Fork - LGPL
23733  * <script type="text/javascript">
23734  */
23735 /**
23736  * @class Roo.data.HttpProxy
23737  * @extends Roo.data.DataProxy
23738  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
23739  * configured to reference a certain URL.<br><br>
23740  * <p>
23741  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
23742  * from which the running page was served.<br><br>
23743  * <p>
23744  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
23745  * <p>
23746  * Be aware that to enable the browser to parse an XML document, the server must set
23747  * the Content-Type header in the HTTP response to "text/xml".
23748  * @constructor
23749  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
23750  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
23751  * will be used to make the request.
23752  */
23753 Roo.data.HttpProxy = function(conn){
23754     Roo.data.HttpProxy.superclass.constructor.call(this);
23755     // is conn a conn config or a real conn?
23756     this.conn = conn;
23757     this.useAjax = !conn || !conn.events;
23758   
23759 };
23760
23761 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
23762     // thse are take from connection...
23763     
23764     /**
23765      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
23766      */
23767     /**
23768      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
23769      * extra parameters to each request made by this object. (defaults to undefined)
23770      */
23771     /**
23772      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
23773      *  to each request made by this object. (defaults to undefined)
23774      */
23775     /**
23776      * @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)
23777      */
23778     /**
23779      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
23780      */
23781      /**
23782      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
23783      * @type Boolean
23784      */
23785   
23786
23787     /**
23788      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
23789      * @type Boolean
23790      */
23791     /**
23792      * Return the {@link Roo.data.Connection} object being used by this Proxy.
23793      * @return {Connection} The Connection object. This object may be used to subscribe to events on
23794      * a finer-grained basis than the DataProxy events.
23795      */
23796     getConnection : function(){
23797         return this.useAjax ? Roo.Ajax : this.conn;
23798     },
23799
23800     /**
23801      * Load data from the configured {@link Roo.data.Connection}, read the data object into
23802      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
23803      * process that block using the passed callback.
23804      * @param {Object} params An object containing properties which are to be used as HTTP parameters
23805      * for the request to the remote server.
23806      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23807      * object into a block of Roo.data.Records.
23808      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
23809      * The function must be passed <ul>
23810      * <li>The Record block object</li>
23811      * <li>The "arg" argument from the load function</li>
23812      * <li>A boolean success indicator</li>
23813      * </ul>
23814      * @param {Object} scope The scope in which to call the callback
23815      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
23816      */
23817     load : function(params, reader, callback, scope, arg){
23818         if(this.fireEvent("beforeload", this, params) !== false){
23819             var  o = {
23820                 params : params || {},
23821                 request: {
23822                     callback : callback,
23823                     scope : scope,
23824                     arg : arg
23825                 },
23826                 reader: reader,
23827                 callback : this.loadResponse,
23828                 scope: this
23829             };
23830             if(this.useAjax){
23831                 Roo.applyIf(o, this.conn);
23832                 if(this.activeRequest){
23833                     Roo.Ajax.abort(this.activeRequest);
23834                 }
23835                 this.activeRequest = Roo.Ajax.request(o);
23836             }else{
23837                 this.conn.request(o);
23838             }
23839         }else{
23840             callback.call(scope||this, null, arg, false);
23841         }
23842     },
23843
23844     // private
23845     loadResponse : function(o, success, response){
23846         delete this.activeRequest;
23847         if(!success){
23848             this.fireEvent("loadexception", this, o, response);
23849             o.request.callback.call(o.request.scope, null, o.request.arg, false);
23850             return;
23851         }
23852         var result;
23853         try {
23854             result = o.reader.read(response);
23855         }catch(e){
23856             this.fireEvent("loadexception", this, o, response, e);
23857             o.request.callback.call(o.request.scope, null, o.request.arg, false);
23858             return;
23859         }
23860         
23861         this.fireEvent("load", this, o, o.request.arg);
23862         o.request.callback.call(o.request.scope, result, o.request.arg, true);
23863     },
23864
23865     // private
23866     update : function(dataSet){
23867
23868     },
23869
23870     // private
23871     updateResponse : function(dataSet){
23872
23873     }
23874 });/*
23875  * Based on:
23876  * Ext JS Library 1.1.1
23877  * Copyright(c) 2006-2007, Ext JS, LLC.
23878  *
23879  * Originally Released Under LGPL - original licence link has changed is not relivant.
23880  *
23881  * Fork - LGPL
23882  * <script type="text/javascript">
23883  */
23884
23885 /**
23886  * @class Roo.data.ScriptTagProxy
23887  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
23888  * other than the originating domain of the running page.<br><br>
23889  * <p>
23890  * <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
23891  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
23892  * <p>
23893  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
23894  * source code that is used as the source inside a &lt;script> tag.<br><br>
23895  * <p>
23896  * In order for the browser to process the returned data, the server must wrap the data object
23897  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
23898  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
23899  * depending on whether the callback name was passed:
23900  * <p>
23901  * <pre><code>
23902 boolean scriptTag = false;
23903 String cb = request.getParameter("callback");
23904 if (cb != null) {
23905     scriptTag = true;
23906     response.setContentType("text/javascript");
23907 } else {
23908     response.setContentType("application/x-json");
23909 }
23910 Writer out = response.getWriter();
23911 if (scriptTag) {
23912     out.write(cb + "(");
23913 }
23914 out.print(dataBlock.toJsonString());
23915 if (scriptTag) {
23916     out.write(");");
23917 }
23918 </pre></code>
23919  *
23920  * @constructor
23921  * @param {Object} config A configuration object.
23922  */
23923 Roo.data.ScriptTagProxy = function(config){
23924     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
23925     Roo.apply(this, config);
23926     this.head = document.getElementsByTagName("head")[0];
23927 };
23928
23929 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
23930
23931 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
23932     /**
23933      * @cfg {String} url The URL from which to request the data object.
23934      */
23935     /**
23936      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
23937      */
23938     timeout : 30000,
23939     /**
23940      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
23941      * the server the name of the callback function set up by the load call to process the returned data object.
23942      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
23943      * javascript output which calls this named function passing the data object as its only parameter.
23944      */
23945     callbackParam : "callback",
23946     /**
23947      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
23948      * name to the request.
23949      */
23950     nocache : true,
23951
23952     /**
23953      * Load data from the configured URL, read the data object into
23954      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
23955      * process that block using the passed callback.
23956      * @param {Object} params An object containing properties which are to be used as HTTP parameters
23957      * for the request to the remote server.
23958      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23959      * object into a block of Roo.data.Records.
23960      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
23961      * The function must be passed <ul>
23962      * <li>The Record block object</li>
23963      * <li>The "arg" argument from the load function</li>
23964      * <li>A boolean success indicator</li>
23965      * </ul>
23966      * @param {Object} scope The scope in which to call the callback
23967      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
23968      */
23969     load : function(params, reader, callback, scope, arg){
23970         if(this.fireEvent("beforeload", this, params) !== false){
23971
23972             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
23973
23974             var url = this.url;
23975             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
23976             if(this.nocache){
23977                 url += "&_dc=" + (new Date().getTime());
23978             }
23979             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
23980             var trans = {
23981                 id : transId,
23982                 cb : "stcCallback"+transId,
23983                 scriptId : "stcScript"+transId,
23984                 params : params,
23985                 arg : arg,
23986                 url : url,
23987                 callback : callback,
23988                 scope : scope,
23989                 reader : reader
23990             };
23991             var conn = this;
23992
23993             window[trans.cb] = function(o){
23994                 conn.handleResponse(o, trans);
23995             };
23996
23997             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
23998
23999             if(this.autoAbort !== false){
24000                 this.abort();
24001             }
24002
24003             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24004
24005             var script = document.createElement("script");
24006             script.setAttribute("src", url);
24007             script.setAttribute("type", "text/javascript");
24008             script.setAttribute("id", trans.scriptId);
24009             this.head.appendChild(script);
24010
24011             this.trans = trans;
24012         }else{
24013             callback.call(scope||this, null, arg, false);
24014         }
24015     },
24016
24017     // private
24018     isLoading : function(){
24019         return this.trans ? true : false;
24020     },
24021
24022     /**
24023      * Abort the current server request.
24024      */
24025     abort : function(){
24026         if(this.isLoading()){
24027             this.destroyTrans(this.trans);
24028         }
24029     },
24030
24031     // private
24032     destroyTrans : function(trans, isLoaded){
24033         this.head.removeChild(document.getElementById(trans.scriptId));
24034         clearTimeout(trans.timeoutId);
24035         if(isLoaded){
24036             window[trans.cb] = undefined;
24037             try{
24038                 delete window[trans.cb];
24039             }catch(e){}
24040         }else{
24041             // if hasn't been loaded, wait for load to remove it to prevent script error
24042             window[trans.cb] = function(){
24043                 window[trans.cb] = undefined;
24044                 try{
24045                     delete window[trans.cb];
24046                 }catch(e){}
24047             };
24048         }
24049     },
24050
24051     // private
24052     handleResponse : function(o, trans){
24053         this.trans = false;
24054         this.destroyTrans(trans, true);
24055         var result;
24056         try {
24057             result = trans.reader.readRecords(o);
24058         }catch(e){
24059             this.fireEvent("loadexception", this, o, trans.arg, e);
24060             trans.callback.call(trans.scope||window, null, trans.arg, false);
24061             return;
24062         }
24063         this.fireEvent("load", this, o, trans.arg);
24064         trans.callback.call(trans.scope||window, result, trans.arg, true);
24065     },
24066
24067     // private
24068     handleFailure : function(trans){
24069         this.trans = false;
24070         this.destroyTrans(trans, false);
24071         this.fireEvent("loadexception", this, null, trans.arg);
24072         trans.callback.call(trans.scope||window, null, trans.arg, false);
24073     }
24074 });/*
24075  * Based on:
24076  * Ext JS Library 1.1.1
24077  * Copyright(c) 2006-2007, Ext JS, LLC.
24078  *
24079  * Originally Released Under LGPL - original licence link has changed is not relivant.
24080  *
24081  * Fork - LGPL
24082  * <script type="text/javascript">
24083  */
24084
24085 /**
24086  * @class Roo.data.JsonReader
24087  * @extends Roo.data.DataReader
24088  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24089  * based on mappings in a provided Roo.data.Record constructor.
24090  * 
24091  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24092  * in the reply previously. 
24093  * 
24094  * <p>
24095  * Example code:
24096  * <pre><code>
24097 var RecordDef = Roo.data.Record.create([
24098     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24099     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24100 ]);
24101 var myReader = new Roo.data.JsonReader({
24102     totalProperty: "results",    // The property which contains the total dataset size (optional)
24103     root: "rows",                // The property which contains an Array of row objects
24104     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24105 }, RecordDef);
24106 </code></pre>
24107  * <p>
24108  * This would consume a JSON file like this:
24109  * <pre><code>
24110 { 'results': 2, 'rows': [
24111     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24112     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24113 }
24114 </code></pre>
24115  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24116  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24117  * paged from the remote server.
24118  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24119  * @cfg {String} root name of the property which contains the Array of row objects.
24120  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24121  * @cfg {Array} fields Array of field definition objects
24122  * @constructor
24123  * Create a new JsonReader
24124  * @param {Object} meta Metadata configuration options
24125  * @param {Object} recordType Either an Array of field definition objects,
24126  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24127  */
24128 Roo.data.JsonReader = function(meta, recordType){
24129     
24130     meta = meta || {};
24131     // set some defaults:
24132     Roo.applyIf(meta, {
24133         totalProperty: 'total',
24134         successProperty : 'success',
24135         root : 'data',
24136         id : 'id'
24137     });
24138     
24139     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24140 };
24141 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24142     
24143     /**
24144      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24145      * Used by Store query builder to append _requestMeta to params.
24146      * 
24147      */
24148     metaFromRemote : false,
24149     /**
24150      * This method is only used by a DataProxy which has retrieved data from a remote server.
24151      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24152      * @return {Object} data A data block which is used by an Roo.data.Store object as
24153      * a cache of Roo.data.Records.
24154      */
24155     read : function(response){
24156         var json = response.responseText;
24157        
24158         var o = /* eval:var:o */ eval("("+json+")");
24159         if(!o) {
24160             throw {message: "JsonReader.read: Json object not found"};
24161         }
24162         
24163         if(o.metaData){
24164             
24165             delete this.ef;
24166             this.metaFromRemote = true;
24167             this.meta = o.metaData;
24168             this.recordType = Roo.data.Record.create(o.metaData.fields);
24169             this.onMetaChange(this.meta, this.recordType, o);
24170         }
24171         return this.readRecords(o);
24172     },
24173
24174     // private function a store will implement
24175     onMetaChange : function(meta, recordType, o){
24176
24177     },
24178
24179     /**
24180          * @ignore
24181          */
24182     simpleAccess: function(obj, subsc) {
24183         return obj[subsc];
24184     },
24185
24186         /**
24187          * @ignore
24188          */
24189     getJsonAccessor: function(){
24190         var re = /[\[\.]/;
24191         return function(expr) {
24192             try {
24193                 return(re.test(expr))
24194                     ? new Function("obj", "return obj." + expr)
24195                     : function(obj){
24196                         return obj[expr];
24197                     };
24198             } catch(e){}
24199             return Roo.emptyFn;
24200         };
24201     }(),
24202
24203     /**
24204      * Create a data block containing Roo.data.Records from an XML document.
24205      * @param {Object} o An object which contains an Array of row objects in the property specified
24206      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
24207      * which contains the total size of the dataset.
24208      * @return {Object} data A data block which is used by an Roo.data.Store object as
24209      * a cache of Roo.data.Records.
24210      */
24211     readRecords : function(o){
24212         /**
24213          * After any data loads, the raw JSON data is available for further custom processing.
24214          * @type Object
24215          */
24216         this.o = o;
24217         var s = this.meta, Record = this.recordType,
24218             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
24219
24220 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
24221         if (!this.ef) {
24222             if(s.totalProperty) {
24223                     this.getTotal = this.getJsonAccessor(s.totalProperty);
24224                 }
24225                 if(s.successProperty) {
24226                     this.getSuccess = this.getJsonAccessor(s.successProperty);
24227                 }
24228                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
24229                 if (s.id) {
24230                         var g = this.getJsonAccessor(s.id);
24231                         this.getId = function(rec) {
24232                                 var r = g(rec);  
24233                                 return (r === undefined || r === "") ? null : r;
24234                         };
24235                 } else {
24236                         this.getId = function(){return null;};
24237                 }
24238             this.ef = [];
24239             for(var jj = 0; jj < fl; jj++){
24240                 f = fi[jj];
24241                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
24242                 this.ef[jj] = this.getJsonAccessor(map);
24243             }
24244         }
24245
24246         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
24247         if(s.totalProperty){
24248             var vt = parseInt(this.getTotal(o), 10);
24249             if(!isNaN(vt)){
24250                 totalRecords = vt;
24251             }
24252         }
24253         if(s.successProperty){
24254             var vs = this.getSuccess(o);
24255             if(vs === false || vs === 'false'){
24256                 success = false;
24257             }
24258         }
24259         var records = [];
24260         for(var i = 0; i < c; i++){
24261                 var n = root[i];
24262             var values = {};
24263             var id = this.getId(n);
24264             for(var j = 0; j < fl; j++){
24265                 f = fi[j];
24266             var v = this.ef[j](n);
24267             if (!f.convert) {
24268                 Roo.log('missing convert for ' + f.name);
24269                 Roo.log(f);
24270                 continue;
24271             }
24272             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
24273             }
24274             var record = new Record(values, id);
24275             record.json = n;
24276             records[i] = record;
24277         }
24278         return {
24279             raw : o,
24280             success : success,
24281             records : records,
24282             totalRecords : totalRecords
24283         };
24284     }
24285 });/*
24286  * Based on:
24287  * Ext JS Library 1.1.1
24288  * Copyright(c) 2006-2007, Ext JS, LLC.
24289  *
24290  * Originally Released Under LGPL - original licence link has changed is not relivant.
24291  *
24292  * Fork - LGPL
24293  * <script type="text/javascript">
24294  */
24295
24296 /**
24297  * @class Roo.data.XmlReader
24298  * @extends Roo.data.DataReader
24299  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
24300  * based on mappings in a provided Roo.data.Record constructor.<br><br>
24301  * <p>
24302  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
24303  * header in the HTTP response must be set to "text/xml".</em>
24304  * <p>
24305  * Example code:
24306  * <pre><code>
24307 var RecordDef = Roo.data.Record.create([
24308    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24309    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24310 ]);
24311 var myReader = new Roo.data.XmlReader({
24312    totalRecords: "results", // The element which contains the total dataset size (optional)
24313    record: "row",           // The repeated element which contains row information
24314    id: "id"                 // The element within the row that provides an ID for the record (optional)
24315 }, RecordDef);
24316 </code></pre>
24317  * <p>
24318  * This would consume an XML file like this:
24319  * <pre><code>
24320 &lt;?xml?>
24321 &lt;dataset>
24322  &lt;results>2&lt;/results>
24323  &lt;row>
24324    &lt;id>1&lt;/id>
24325    &lt;name>Bill&lt;/name>
24326    &lt;occupation>Gardener&lt;/occupation>
24327  &lt;/row>
24328  &lt;row>
24329    &lt;id>2&lt;/id>
24330    &lt;name>Ben&lt;/name>
24331    &lt;occupation>Horticulturalist&lt;/occupation>
24332  &lt;/row>
24333 &lt;/dataset>
24334 </code></pre>
24335  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
24336  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24337  * paged from the remote server.
24338  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
24339  * @cfg {String} success The DomQuery path to the success attribute used by forms.
24340  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
24341  * a record identifier value.
24342  * @constructor
24343  * Create a new XmlReader
24344  * @param {Object} meta Metadata configuration options
24345  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
24346  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
24347  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
24348  */
24349 Roo.data.XmlReader = function(meta, recordType){
24350     meta = meta || {};
24351     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24352 };
24353 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
24354     /**
24355      * This method is only used by a DataProxy which has retrieved data from a remote server.
24356          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
24357          * to contain a method called 'responseXML' that returns an XML document object.
24358      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
24359      * a cache of Roo.data.Records.
24360      */
24361     read : function(response){
24362         var doc = response.responseXML;
24363         if(!doc) {
24364             throw {message: "XmlReader.read: XML Document not available"};
24365         }
24366         return this.readRecords(doc);
24367     },
24368
24369     /**
24370      * Create a data block containing Roo.data.Records from an XML document.
24371          * @param {Object} doc A parsed XML document.
24372      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
24373      * a cache of Roo.data.Records.
24374      */
24375     readRecords : function(doc){
24376         /**
24377          * After any data loads/reads, the raw XML Document is available for further custom processing.
24378          * @type XMLDocument
24379          */
24380         this.xmlData = doc;
24381         var root = doc.documentElement || doc;
24382         var q = Roo.DomQuery;
24383         var recordType = this.recordType, fields = recordType.prototype.fields;
24384         var sid = this.meta.id;
24385         var totalRecords = 0, success = true;
24386         if(this.meta.totalRecords){
24387             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
24388         }
24389         
24390         if(this.meta.success){
24391             var sv = q.selectValue(this.meta.success, root, true);
24392             success = sv !== false && sv !== 'false';
24393         }
24394         var records = [];
24395         var ns = q.select(this.meta.record, root);
24396         for(var i = 0, len = ns.length; i < len; i++) {
24397                 var n = ns[i];
24398                 var values = {};
24399                 var id = sid ? q.selectValue(sid, n) : undefined;
24400                 for(var j = 0, jlen = fields.length; j < jlen; j++){
24401                     var f = fields.items[j];
24402                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
24403                     v = f.convert(v);
24404                     values[f.name] = v;
24405                 }
24406                 var record = new recordType(values, id);
24407                 record.node = n;
24408                 records[records.length] = record;
24409             }
24410
24411             return {
24412                 success : success,
24413                 records : records,
24414                 totalRecords : totalRecords || records.length
24415             };
24416     }
24417 });/*
24418  * Based on:
24419  * Ext JS Library 1.1.1
24420  * Copyright(c) 2006-2007, Ext JS, LLC.
24421  *
24422  * Originally Released Under LGPL - original licence link has changed is not relivant.
24423  *
24424  * Fork - LGPL
24425  * <script type="text/javascript">
24426  */
24427
24428 /**
24429  * @class Roo.data.ArrayReader
24430  * @extends Roo.data.DataReader
24431  * Data reader class to create an Array of Roo.data.Record objects from an Array.
24432  * Each element of that Array represents a row of data fields. The
24433  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
24434  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
24435  * <p>
24436  * Example code:.
24437  * <pre><code>
24438 var RecordDef = Roo.data.Record.create([
24439     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
24440     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
24441 ]);
24442 var myReader = new Roo.data.ArrayReader({
24443     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
24444 }, RecordDef);
24445 </code></pre>
24446  * <p>
24447  * This would consume an Array like this:
24448  * <pre><code>
24449 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
24450   </code></pre>
24451  * @cfg {String} id (optional) The subscript within row Array that provides an ID for the Record
24452  * @constructor
24453  * Create a new JsonReader
24454  * @param {Object} meta Metadata configuration options.
24455  * @param {Object} recordType Either an Array of field definition objects
24456  * as specified to {@link Roo.data.Record#create},
24457  * or an {@link Roo.data.Record} object
24458  * created using {@link Roo.data.Record#create}.
24459  */
24460 Roo.data.ArrayReader = function(meta, recordType){
24461     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType);
24462 };
24463
24464 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
24465     /**
24466      * Create a data block containing Roo.data.Records from an XML document.
24467      * @param {Object} o An Array of row objects which represents the dataset.
24468      * @return {Object} data A data block which is used by an Roo.data.Store object as
24469      * a cache of Roo.data.Records.
24470      */
24471     readRecords : function(o){
24472         var sid = this.meta ? this.meta.id : null;
24473         var recordType = this.recordType, fields = recordType.prototype.fields;
24474         var records = [];
24475         var root = o;
24476             for(var i = 0; i < root.length; i++){
24477                     var n = root[i];
24478                 var values = {};
24479                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
24480                 for(var j = 0, jlen = fields.length; j < jlen; j++){
24481                 var f = fields.items[j];
24482                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
24483                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
24484                 v = f.convert(v);
24485                 values[f.name] = v;
24486             }
24487                 var record = new recordType(values, id);
24488                 record.json = n;
24489                 records[records.length] = record;
24490             }
24491             return {
24492                 records : records,
24493                 totalRecords : records.length
24494             };
24495     }
24496 });/*
24497  * Based on:
24498  * Ext JS Library 1.1.1
24499  * Copyright(c) 2006-2007, Ext JS, LLC.
24500  *
24501  * Originally Released Under LGPL - original licence link has changed is not relivant.
24502  *
24503  * Fork - LGPL
24504  * <script type="text/javascript">
24505  */
24506
24507
24508 /**
24509  * @class Roo.data.Tree
24510  * @extends Roo.util.Observable
24511  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
24512  * in the tree have most standard DOM functionality.
24513  * @constructor
24514  * @param {Node} root (optional) The root node
24515  */
24516 Roo.data.Tree = function(root){
24517    this.nodeHash = {};
24518    /**
24519     * The root node for this tree
24520     * @type Node
24521     */
24522    this.root = null;
24523    if(root){
24524        this.setRootNode(root);
24525    }
24526    this.addEvents({
24527        /**
24528         * @event append
24529         * Fires when a new child node is appended to a node in this tree.
24530         * @param {Tree} tree The owner tree
24531         * @param {Node} parent The parent node
24532         * @param {Node} node The newly appended node
24533         * @param {Number} index The index of the newly appended node
24534         */
24535        "append" : true,
24536        /**
24537         * @event remove
24538         * Fires when a child node is removed from a node in this tree.
24539         * @param {Tree} tree The owner tree
24540         * @param {Node} parent The parent node
24541         * @param {Node} node The child node removed
24542         */
24543        "remove" : true,
24544        /**
24545         * @event move
24546         * Fires when a node is moved to a new location in the tree
24547         * @param {Tree} tree The owner tree
24548         * @param {Node} node The node moved
24549         * @param {Node} oldParent The old parent of this node
24550         * @param {Node} newParent The new parent of this node
24551         * @param {Number} index The index it was moved to
24552         */
24553        "move" : true,
24554        /**
24555         * @event insert
24556         * Fires when a new child node is inserted in a node in this tree.
24557         * @param {Tree} tree The owner tree
24558         * @param {Node} parent The parent node
24559         * @param {Node} node The child node inserted
24560         * @param {Node} refNode The child node the node was inserted before
24561         */
24562        "insert" : true,
24563        /**
24564         * @event beforeappend
24565         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
24566         * @param {Tree} tree The owner tree
24567         * @param {Node} parent The parent node
24568         * @param {Node} node The child node to be appended
24569         */
24570        "beforeappend" : true,
24571        /**
24572         * @event beforeremove
24573         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
24574         * @param {Tree} tree The owner tree
24575         * @param {Node} parent The parent node
24576         * @param {Node} node The child node to be removed
24577         */
24578        "beforeremove" : true,
24579        /**
24580         * @event beforemove
24581         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
24582         * @param {Tree} tree The owner tree
24583         * @param {Node} node The node being moved
24584         * @param {Node} oldParent The parent of the node
24585         * @param {Node} newParent The new parent the node is moving to
24586         * @param {Number} index The index it is being moved to
24587         */
24588        "beforemove" : true,
24589        /**
24590         * @event beforeinsert
24591         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
24592         * @param {Tree} tree The owner tree
24593         * @param {Node} parent The parent node
24594         * @param {Node} node The child node to be inserted
24595         * @param {Node} refNode The child node the node is being inserted before
24596         */
24597        "beforeinsert" : true
24598    });
24599
24600     Roo.data.Tree.superclass.constructor.call(this);
24601 };
24602
24603 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
24604     pathSeparator: "/",
24605
24606     proxyNodeEvent : function(){
24607         return this.fireEvent.apply(this, arguments);
24608     },
24609
24610     /**
24611      * Returns the root node for this tree.
24612      * @return {Node}
24613      */
24614     getRootNode : function(){
24615         return this.root;
24616     },
24617
24618     /**
24619      * Sets the root node for this tree.
24620      * @param {Node} node
24621      * @return {Node}
24622      */
24623     setRootNode : function(node){
24624         this.root = node;
24625         node.ownerTree = this;
24626         node.isRoot = true;
24627         this.registerNode(node);
24628         return node;
24629     },
24630
24631     /**
24632      * Gets a node in this tree by its id.
24633      * @param {String} id
24634      * @return {Node}
24635      */
24636     getNodeById : function(id){
24637         return this.nodeHash[id];
24638     },
24639
24640     registerNode : function(node){
24641         this.nodeHash[node.id] = node;
24642     },
24643
24644     unregisterNode : function(node){
24645         delete this.nodeHash[node.id];
24646     },
24647
24648     toString : function(){
24649         return "[Tree"+(this.id?" "+this.id:"")+"]";
24650     }
24651 });
24652
24653 /**
24654  * @class Roo.data.Node
24655  * @extends Roo.util.Observable
24656  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
24657  * @cfg {String} id The id for this node. If one is not specified, one is generated.
24658  * @constructor
24659  * @param {Object} attributes The attributes/config for the node
24660  */
24661 Roo.data.Node = function(attributes){
24662     /**
24663      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
24664      * @type {Object}
24665      */
24666     this.attributes = attributes || {};
24667     this.leaf = this.attributes.leaf;
24668     /**
24669      * The node id. @type String
24670      */
24671     this.id = this.attributes.id;
24672     if(!this.id){
24673         this.id = Roo.id(null, "ynode-");
24674         this.attributes.id = this.id;
24675     }
24676      
24677     
24678     /**
24679      * All child nodes of this node. @type Array
24680      */
24681     this.childNodes = [];
24682     if(!this.childNodes.indexOf){ // indexOf is a must
24683         this.childNodes.indexOf = function(o){
24684             for(var i = 0, len = this.length; i < len; i++){
24685                 if(this[i] == o) {
24686                     return i;
24687                 }
24688             }
24689             return -1;
24690         };
24691     }
24692     /**
24693      * The parent node for this node. @type Node
24694      */
24695     this.parentNode = null;
24696     /**
24697      * The first direct child node of this node, or null if this node has no child nodes. @type Node
24698      */
24699     this.firstChild = null;
24700     /**
24701      * The last direct child node of this node, or null if this node has no child nodes. @type Node
24702      */
24703     this.lastChild = null;
24704     /**
24705      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
24706      */
24707     this.previousSibling = null;
24708     /**
24709      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
24710      */
24711     this.nextSibling = null;
24712
24713     this.addEvents({
24714        /**
24715         * @event append
24716         * Fires when a new child node is appended
24717         * @param {Tree} tree The owner tree
24718         * @param {Node} this This node
24719         * @param {Node} node The newly appended node
24720         * @param {Number} index The index of the newly appended node
24721         */
24722        "append" : true,
24723        /**
24724         * @event remove
24725         * Fires when a child node is removed
24726         * @param {Tree} tree The owner tree
24727         * @param {Node} this This node
24728         * @param {Node} node The removed node
24729         */
24730        "remove" : true,
24731        /**
24732         * @event move
24733         * Fires when this node is moved to a new location in the tree
24734         * @param {Tree} tree The owner tree
24735         * @param {Node} this This node
24736         * @param {Node} oldParent The old parent of this node
24737         * @param {Node} newParent The new parent of this node
24738         * @param {Number} index The index it was moved to
24739         */
24740        "move" : true,
24741        /**
24742         * @event insert
24743         * Fires when a new child node is inserted.
24744         * @param {Tree} tree The owner tree
24745         * @param {Node} this This node
24746         * @param {Node} node The child node inserted
24747         * @param {Node} refNode The child node the node was inserted before
24748         */
24749        "insert" : true,
24750        /**
24751         * @event beforeappend
24752         * Fires before a new child is appended, return false to cancel the append.
24753         * @param {Tree} tree The owner tree
24754         * @param {Node} this This node
24755         * @param {Node} node The child node to be appended
24756         */
24757        "beforeappend" : true,
24758        /**
24759         * @event beforeremove
24760         * Fires before a child is removed, return false to cancel the remove.
24761         * @param {Tree} tree The owner tree
24762         * @param {Node} this This node
24763         * @param {Node} node The child node to be removed
24764         */
24765        "beforeremove" : true,
24766        /**
24767         * @event beforemove
24768         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
24769         * @param {Tree} tree The owner tree
24770         * @param {Node} this This node
24771         * @param {Node} oldParent The parent of this node
24772         * @param {Node} newParent The new parent this node is moving to
24773         * @param {Number} index The index it is being moved to
24774         */
24775        "beforemove" : true,
24776        /**
24777         * @event beforeinsert
24778         * Fires before a new child is inserted, return false to cancel the insert.
24779         * @param {Tree} tree The owner tree
24780         * @param {Node} this This node
24781         * @param {Node} node The child node to be inserted
24782         * @param {Node} refNode The child node the node is being inserted before
24783         */
24784        "beforeinsert" : true
24785    });
24786     this.listeners = this.attributes.listeners;
24787     Roo.data.Node.superclass.constructor.call(this);
24788 };
24789
24790 Roo.extend(Roo.data.Node, Roo.util.Observable, {
24791     fireEvent : function(evtName){
24792         // first do standard event for this node
24793         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
24794             return false;
24795         }
24796         // then bubble it up to the tree if the event wasn't cancelled
24797         var ot = this.getOwnerTree();
24798         if(ot){
24799             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
24800                 return false;
24801             }
24802         }
24803         return true;
24804     },
24805
24806     /**
24807      * Returns true if this node is a leaf
24808      * @return {Boolean}
24809      */
24810     isLeaf : function(){
24811         return this.leaf === true;
24812     },
24813
24814     // private
24815     setFirstChild : function(node){
24816         this.firstChild = node;
24817     },
24818
24819     //private
24820     setLastChild : function(node){
24821         this.lastChild = node;
24822     },
24823
24824
24825     /**
24826      * Returns true if this node is the last child of its parent
24827      * @return {Boolean}
24828      */
24829     isLast : function(){
24830        return (!this.parentNode ? true : this.parentNode.lastChild == this);
24831     },
24832
24833     /**
24834      * Returns true if this node is the first child of its parent
24835      * @return {Boolean}
24836      */
24837     isFirst : function(){
24838        return (!this.parentNode ? true : this.parentNode.firstChild == this);
24839     },
24840
24841     hasChildNodes : function(){
24842         return !this.isLeaf() && this.childNodes.length > 0;
24843     },
24844
24845     /**
24846      * Insert node(s) as the last child node of this node.
24847      * @param {Node/Array} node The node or Array of nodes to append
24848      * @return {Node} The appended node if single append, or null if an array was passed
24849      */
24850     appendChild : function(node){
24851         var multi = false;
24852         if(node instanceof Array){
24853             multi = node;
24854         }else if(arguments.length > 1){
24855             multi = arguments;
24856         }
24857         // if passed an array or multiple args do them one by one
24858         if(multi){
24859             for(var i = 0, len = multi.length; i < len; i++) {
24860                 this.appendChild(multi[i]);
24861             }
24862         }else{
24863             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
24864                 return false;
24865             }
24866             var index = this.childNodes.length;
24867             var oldParent = node.parentNode;
24868             // it's a move, make sure we move it cleanly
24869             if(oldParent){
24870                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
24871                     return false;
24872                 }
24873                 oldParent.removeChild(node);
24874             }
24875             index = this.childNodes.length;
24876             if(index == 0){
24877                 this.setFirstChild(node);
24878             }
24879             this.childNodes.push(node);
24880             node.parentNode = this;
24881             var ps = this.childNodes[index-1];
24882             if(ps){
24883                 node.previousSibling = ps;
24884                 ps.nextSibling = node;
24885             }else{
24886                 node.previousSibling = null;
24887             }
24888             node.nextSibling = null;
24889             this.setLastChild(node);
24890             node.setOwnerTree(this.getOwnerTree());
24891             this.fireEvent("append", this.ownerTree, this, node, index);
24892             if(oldParent){
24893                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
24894             }
24895             return node;
24896         }
24897     },
24898
24899     /**
24900      * Removes a child node from this node.
24901      * @param {Node} node The node to remove
24902      * @return {Node} The removed node
24903      */
24904     removeChild : function(node){
24905         var index = this.childNodes.indexOf(node);
24906         if(index == -1){
24907             return false;
24908         }
24909         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
24910             return false;
24911         }
24912
24913         // remove it from childNodes collection
24914         this.childNodes.splice(index, 1);
24915
24916         // update siblings
24917         if(node.previousSibling){
24918             node.previousSibling.nextSibling = node.nextSibling;
24919         }
24920         if(node.nextSibling){
24921             node.nextSibling.previousSibling = node.previousSibling;
24922         }
24923
24924         // update child refs
24925         if(this.firstChild == node){
24926             this.setFirstChild(node.nextSibling);
24927         }
24928         if(this.lastChild == node){
24929             this.setLastChild(node.previousSibling);
24930         }
24931
24932         node.setOwnerTree(null);
24933         // clear any references from the node
24934         node.parentNode = null;
24935         node.previousSibling = null;
24936         node.nextSibling = null;
24937         this.fireEvent("remove", this.ownerTree, this, node);
24938         return node;
24939     },
24940
24941     /**
24942      * Inserts the first node before the second node in this nodes childNodes collection.
24943      * @param {Node} node The node to insert
24944      * @param {Node} refNode The node to insert before (if null the node is appended)
24945      * @return {Node} The inserted node
24946      */
24947     insertBefore : function(node, refNode){
24948         if(!refNode){ // like standard Dom, refNode can be null for append
24949             return this.appendChild(node);
24950         }
24951         // nothing to do
24952         if(node == refNode){
24953             return false;
24954         }
24955
24956         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
24957             return false;
24958         }
24959         var index = this.childNodes.indexOf(refNode);
24960         var oldParent = node.parentNode;
24961         var refIndex = index;
24962
24963         // when moving internally, indexes will change after remove
24964         if(oldParent == this && this.childNodes.indexOf(node) < index){
24965             refIndex--;
24966         }
24967
24968         // it's a move, make sure we move it cleanly
24969         if(oldParent){
24970             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
24971                 return false;
24972             }
24973             oldParent.removeChild(node);
24974         }
24975         if(refIndex == 0){
24976             this.setFirstChild(node);
24977         }
24978         this.childNodes.splice(refIndex, 0, node);
24979         node.parentNode = this;
24980         var ps = this.childNodes[refIndex-1];
24981         if(ps){
24982             node.previousSibling = ps;
24983             ps.nextSibling = node;
24984         }else{
24985             node.previousSibling = null;
24986         }
24987         node.nextSibling = refNode;
24988         refNode.previousSibling = node;
24989         node.setOwnerTree(this.getOwnerTree());
24990         this.fireEvent("insert", this.ownerTree, this, node, refNode);
24991         if(oldParent){
24992             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
24993         }
24994         return node;
24995     },
24996
24997     /**
24998      * Returns the child node at the specified index.
24999      * @param {Number} index
25000      * @return {Node}
25001      */
25002     item : function(index){
25003         return this.childNodes[index];
25004     },
25005
25006     /**
25007      * Replaces one child node in this node with another.
25008      * @param {Node} newChild The replacement node
25009      * @param {Node} oldChild The node to replace
25010      * @return {Node} The replaced node
25011      */
25012     replaceChild : function(newChild, oldChild){
25013         this.insertBefore(newChild, oldChild);
25014         this.removeChild(oldChild);
25015         return oldChild;
25016     },
25017
25018     /**
25019      * Returns the index of a child node
25020      * @param {Node} node
25021      * @return {Number} The index of the node or -1 if it was not found
25022      */
25023     indexOf : function(child){
25024         return this.childNodes.indexOf(child);
25025     },
25026
25027     /**
25028      * Returns the tree this node is in.
25029      * @return {Tree}
25030      */
25031     getOwnerTree : function(){
25032         // if it doesn't have one, look for one
25033         if(!this.ownerTree){
25034             var p = this;
25035             while(p){
25036                 if(p.ownerTree){
25037                     this.ownerTree = p.ownerTree;
25038                     break;
25039                 }
25040                 p = p.parentNode;
25041             }
25042         }
25043         return this.ownerTree;
25044     },
25045
25046     /**
25047      * Returns depth of this node (the root node has a depth of 0)
25048      * @return {Number}
25049      */
25050     getDepth : function(){
25051         var depth = 0;
25052         var p = this;
25053         while(p.parentNode){
25054             ++depth;
25055             p = p.parentNode;
25056         }
25057         return depth;
25058     },
25059
25060     // private
25061     setOwnerTree : function(tree){
25062         // if it's move, we need to update everyone
25063         if(tree != this.ownerTree){
25064             if(this.ownerTree){
25065                 this.ownerTree.unregisterNode(this);
25066             }
25067             this.ownerTree = tree;
25068             var cs = this.childNodes;
25069             for(var i = 0, len = cs.length; i < len; i++) {
25070                 cs[i].setOwnerTree(tree);
25071             }
25072             if(tree){
25073                 tree.registerNode(this);
25074             }
25075         }
25076     },
25077
25078     /**
25079      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25080      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25081      * @return {String} The path
25082      */
25083     getPath : function(attr){
25084         attr = attr || "id";
25085         var p = this.parentNode;
25086         var b = [this.attributes[attr]];
25087         while(p){
25088             b.unshift(p.attributes[attr]);
25089             p = p.parentNode;
25090         }
25091         var sep = this.getOwnerTree().pathSeparator;
25092         return sep + b.join(sep);
25093     },
25094
25095     /**
25096      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25097      * function call will be the scope provided or the current node. The arguments to the function
25098      * will be the args provided or the current node. If the function returns false at any point,
25099      * the bubble is stopped.
25100      * @param {Function} fn The function to call
25101      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25102      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25103      */
25104     bubble : function(fn, scope, args){
25105         var p = this;
25106         while(p){
25107             if(fn.call(scope || p, args || p) === false){
25108                 break;
25109             }
25110             p = p.parentNode;
25111         }
25112     },
25113
25114     /**
25115      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25116      * function call will be the scope provided or the current node. The arguments to the function
25117      * will be the args provided or the current node. If the function returns false at any point,
25118      * the cascade is stopped on that branch.
25119      * @param {Function} fn The function to call
25120      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25121      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25122      */
25123     cascade : function(fn, scope, args){
25124         if(fn.call(scope || this, args || this) !== false){
25125             var cs = this.childNodes;
25126             for(var i = 0, len = cs.length; i < len; i++) {
25127                 cs[i].cascade(fn, scope, args);
25128             }
25129         }
25130     },
25131
25132     /**
25133      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25134      * function call will be the scope provided or the current node. The arguments to the function
25135      * will be the args provided or the current node. If the function returns false at any point,
25136      * the iteration stops.
25137      * @param {Function} fn The function to call
25138      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25139      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25140      */
25141     eachChild : function(fn, scope, args){
25142         var cs = this.childNodes;
25143         for(var i = 0, len = cs.length; i < len; i++) {
25144                 if(fn.call(scope || this, args || cs[i]) === false){
25145                     break;
25146                 }
25147         }
25148     },
25149
25150     /**
25151      * Finds the first child that has the attribute with the specified value.
25152      * @param {String} attribute The attribute name
25153      * @param {Mixed} value The value to search for
25154      * @return {Node} The found child or null if none was found
25155      */
25156     findChild : function(attribute, value){
25157         var cs = this.childNodes;
25158         for(var i = 0, len = cs.length; i < len; i++) {
25159                 if(cs[i].attributes[attribute] == value){
25160                     return cs[i];
25161                 }
25162         }
25163         return null;
25164     },
25165
25166     /**
25167      * Finds the first child by a custom function. The child matches if the function passed
25168      * returns true.
25169      * @param {Function} fn
25170      * @param {Object} scope (optional)
25171      * @return {Node} The found child or null if none was found
25172      */
25173     findChildBy : function(fn, scope){
25174         var cs = this.childNodes;
25175         for(var i = 0, len = cs.length; i < len; i++) {
25176                 if(fn.call(scope||cs[i], cs[i]) === true){
25177                     return cs[i];
25178                 }
25179         }
25180         return null;
25181     },
25182
25183     /**
25184      * Sorts this nodes children using the supplied sort function
25185      * @param {Function} fn
25186      * @param {Object} scope (optional)
25187      */
25188     sort : function(fn, scope){
25189         var cs = this.childNodes;
25190         var len = cs.length;
25191         if(len > 0){
25192             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
25193             cs.sort(sortFn);
25194             for(var i = 0; i < len; i++){
25195                 var n = cs[i];
25196                 n.previousSibling = cs[i-1];
25197                 n.nextSibling = cs[i+1];
25198                 if(i == 0){
25199                     this.setFirstChild(n);
25200                 }
25201                 if(i == len-1){
25202                     this.setLastChild(n);
25203                 }
25204             }
25205         }
25206     },
25207
25208     /**
25209      * Returns true if this node is an ancestor (at any point) of the passed node.
25210      * @param {Node} node
25211      * @return {Boolean}
25212      */
25213     contains : function(node){
25214         return node.isAncestor(this);
25215     },
25216
25217     /**
25218      * Returns true if the passed node is an ancestor (at any point) of this node.
25219      * @param {Node} node
25220      * @return {Boolean}
25221      */
25222     isAncestor : function(node){
25223         var p = this.parentNode;
25224         while(p){
25225             if(p == node){
25226                 return true;
25227             }
25228             p = p.parentNode;
25229         }
25230         return false;
25231     },
25232
25233     toString : function(){
25234         return "[Node"+(this.id?" "+this.id:"")+"]";
25235     }
25236 });/*
25237  * Based on:
25238  * Ext JS Library 1.1.1
25239  * Copyright(c) 2006-2007, Ext JS, LLC.
25240  *
25241  * Originally Released Under LGPL - original licence link has changed is not relivant.
25242  *
25243  * Fork - LGPL
25244  * <script type="text/javascript">
25245  */
25246  (function(){ 
25247 /**
25248  * @class Roo.Layer
25249  * @extends Roo.Element
25250  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
25251  * automatic maintaining of shadow/shim positions.
25252  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
25253  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
25254  * you can pass a string with a CSS class name. False turns off the shadow.
25255  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
25256  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
25257  * @cfg {String} cls CSS class to add to the element
25258  * @cfg {Number} zindex Starting z-index (defaults to 11000)
25259  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
25260  * @constructor
25261  * @param {Object} config An object with config options.
25262  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
25263  */
25264
25265 Roo.Layer = function(config, existingEl){
25266     config = config || {};
25267     var dh = Roo.DomHelper;
25268     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
25269     if(existingEl){
25270         this.dom = Roo.getDom(existingEl);
25271     }
25272     if(!this.dom){
25273         var o = config.dh || {tag: "div", cls: "x-layer"};
25274         this.dom = dh.append(pel, o);
25275     }
25276     if(config.cls){
25277         this.addClass(config.cls);
25278     }
25279     this.constrain = config.constrain !== false;
25280     this.visibilityMode = Roo.Element.VISIBILITY;
25281     if(config.id){
25282         this.id = this.dom.id = config.id;
25283     }else{
25284         this.id = Roo.id(this.dom);
25285     }
25286     this.zindex = config.zindex || this.getZIndex();
25287     this.position("absolute", this.zindex);
25288     if(config.shadow){
25289         this.shadowOffset = config.shadowOffset || 4;
25290         this.shadow = new Roo.Shadow({
25291             offset : this.shadowOffset,
25292             mode : config.shadow
25293         });
25294     }else{
25295         this.shadowOffset = 0;
25296     }
25297     this.useShim = config.shim !== false && Roo.useShims;
25298     this.useDisplay = config.useDisplay;
25299     this.hide();
25300 };
25301
25302 var supr = Roo.Element.prototype;
25303
25304 // shims are shared among layer to keep from having 100 iframes
25305 var shims = [];
25306
25307 Roo.extend(Roo.Layer, Roo.Element, {
25308
25309     getZIndex : function(){
25310         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
25311     },
25312
25313     getShim : function(){
25314         if(!this.useShim){
25315             return null;
25316         }
25317         if(this.shim){
25318             return this.shim;
25319         }
25320         var shim = shims.shift();
25321         if(!shim){
25322             shim = this.createShim();
25323             shim.enableDisplayMode('block');
25324             shim.dom.style.display = 'none';
25325             shim.dom.style.visibility = 'visible';
25326         }
25327         var pn = this.dom.parentNode;
25328         if(shim.dom.parentNode != pn){
25329             pn.insertBefore(shim.dom, this.dom);
25330         }
25331         shim.setStyle('z-index', this.getZIndex()-2);
25332         this.shim = shim;
25333         return shim;
25334     },
25335
25336     hideShim : function(){
25337         if(this.shim){
25338             this.shim.setDisplayed(false);
25339             shims.push(this.shim);
25340             delete this.shim;
25341         }
25342     },
25343
25344     disableShadow : function(){
25345         if(this.shadow){
25346             this.shadowDisabled = true;
25347             this.shadow.hide();
25348             this.lastShadowOffset = this.shadowOffset;
25349             this.shadowOffset = 0;
25350         }
25351     },
25352
25353     enableShadow : function(show){
25354         if(this.shadow){
25355             this.shadowDisabled = false;
25356             this.shadowOffset = this.lastShadowOffset;
25357             delete this.lastShadowOffset;
25358             if(show){
25359                 this.sync(true);
25360             }
25361         }
25362     },
25363
25364     // private
25365     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
25366     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
25367     sync : function(doShow){
25368         var sw = this.shadow;
25369         if(!this.updating && this.isVisible() && (sw || this.useShim)){
25370             var sh = this.getShim();
25371
25372             var w = this.getWidth(),
25373                 h = this.getHeight();
25374
25375             var l = this.getLeft(true),
25376                 t = this.getTop(true);
25377
25378             if(sw && !this.shadowDisabled){
25379                 if(doShow && !sw.isVisible()){
25380                     sw.show(this);
25381                 }else{
25382                     sw.realign(l, t, w, h);
25383                 }
25384                 if(sh){
25385                     if(doShow){
25386                        sh.show();
25387                     }
25388                     // fit the shim behind the shadow, so it is shimmed too
25389                     var a = sw.adjusts, s = sh.dom.style;
25390                     s.left = (Math.min(l, l+a.l))+"px";
25391                     s.top = (Math.min(t, t+a.t))+"px";
25392                     s.width = (w+a.w)+"px";
25393                     s.height = (h+a.h)+"px";
25394                 }
25395             }else if(sh){
25396                 if(doShow){
25397                    sh.show();
25398                 }
25399                 sh.setSize(w, h);
25400                 sh.setLeftTop(l, t);
25401             }
25402             
25403         }
25404     },
25405
25406     // private
25407     destroy : function(){
25408         this.hideShim();
25409         if(this.shadow){
25410             this.shadow.hide();
25411         }
25412         this.removeAllListeners();
25413         var pn = this.dom.parentNode;
25414         if(pn){
25415             pn.removeChild(this.dom);
25416         }
25417         Roo.Element.uncache(this.id);
25418     },
25419
25420     remove : function(){
25421         this.destroy();
25422     },
25423
25424     // private
25425     beginUpdate : function(){
25426         this.updating = true;
25427     },
25428
25429     // private
25430     endUpdate : function(){
25431         this.updating = false;
25432         this.sync(true);
25433     },
25434
25435     // private
25436     hideUnders : function(negOffset){
25437         if(this.shadow){
25438             this.shadow.hide();
25439         }
25440         this.hideShim();
25441     },
25442
25443     // private
25444     constrainXY : function(){
25445         if(this.constrain){
25446             var vw = Roo.lib.Dom.getViewWidth(),
25447                 vh = Roo.lib.Dom.getViewHeight();
25448             var s = Roo.get(document).getScroll();
25449
25450             var xy = this.getXY();
25451             var x = xy[0], y = xy[1];   
25452             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
25453             // only move it if it needs it
25454             var moved = false;
25455             // first validate right/bottom
25456             if((x + w) > vw+s.left){
25457                 x = vw - w - this.shadowOffset;
25458                 moved = true;
25459             }
25460             if((y + h) > vh+s.top){
25461                 y = vh - h - this.shadowOffset;
25462                 moved = true;
25463             }
25464             // then make sure top/left isn't negative
25465             if(x < s.left){
25466                 x = s.left;
25467                 moved = true;
25468             }
25469             if(y < s.top){
25470                 y = s.top;
25471                 moved = true;
25472             }
25473             if(moved){
25474                 if(this.avoidY){
25475                     var ay = this.avoidY;
25476                     if(y <= ay && (y+h) >= ay){
25477                         y = ay-h-5;   
25478                     }
25479                 }
25480                 xy = [x, y];
25481                 this.storeXY(xy);
25482                 supr.setXY.call(this, xy);
25483                 this.sync();
25484             }
25485         }
25486     },
25487
25488     isVisible : function(){
25489         return this.visible;    
25490     },
25491
25492     // private
25493     showAction : function(){
25494         this.visible = true; // track visibility to prevent getStyle calls
25495         if(this.useDisplay === true){
25496             this.setDisplayed("");
25497         }else if(this.lastXY){
25498             supr.setXY.call(this, this.lastXY);
25499         }else if(this.lastLT){
25500             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
25501         }
25502     },
25503
25504     // private
25505     hideAction : function(){
25506         this.visible = false;
25507         if(this.useDisplay === true){
25508             this.setDisplayed(false);
25509         }else{
25510             this.setLeftTop(-10000,-10000);
25511         }
25512     },
25513
25514     // overridden Element method
25515     setVisible : function(v, a, d, c, e){
25516         if(v){
25517             this.showAction();
25518         }
25519         if(a && v){
25520             var cb = function(){
25521                 this.sync(true);
25522                 if(c){
25523                     c();
25524                 }
25525             }.createDelegate(this);
25526             supr.setVisible.call(this, true, true, d, cb, e);
25527         }else{
25528             if(!v){
25529                 this.hideUnders(true);
25530             }
25531             var cb = c;
25532             if(a){
25533                 cb = function(){
25534                     this.hideAction();
25535                     if(c){
25536                         c();
25537                     }
25538                 }.createDelegate(this);
25539             }
25540             supr.setVisible.call(this, v, a, d, cb, e);
25541             if(v){
25542                 this.sync(true);
25543             }else if(!a){
25544                 this.hideAction();
25545             }
25546         }
25547     },
25548
25549     storeXY : function(xy){
25550         delete this.lastLT;
25551         this.lastXY = xy;
25552     },
25553
25554     storeLeftTop : function(left, top){
25555         delete this.lastXY;
25556         this.lastLT = [left, top];
25557     },
25558
25559     // private
25560     beforeFx : function(){
25561         this.beforeAction();
25562         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
25563     },
25564
25565     // private
25566     afterFx : function(){
25567         Roo.Layer.superclass.afterFx.apply(this, arguments);
25568         this.sync(this.isVisible());
25569     },
25570
25571     // private
25572     beforeAction : function(){
25573         if(!this.updating && this.shadow){
25574             this.shadow.hide();
25575         }
25576     },
25577
25578     // overridden Element method
25579     setLeft : function(left){
25580         this.storeLeftTop(left, this.getTop(true));
25581         supr.setLeft.apply(this, arguments);
25582         this.sync();
25583     },
25584
25585     setTop : function(top){
25586         this.storeLeftTop(this.getLeft(true), top);
25587         supr.setTop.apply(this, arguments);
25588         this.sync();
25589     },
25590
25591     setLeftTop : function(left, top){
25592         this.storeLeftTop(left, top);
25593         supr.setLeftTop.apply(this, arguments);
25594         this.sync();
25595     },
25596
25597     setXY : function(xy, a, d, c, e){
25598         this.fixDisplay();
25599         this.beforeAction();
25600         this.storeXY(xy);
25601         var cb = this.createCB(c);
25602         supr.setXY.call(this, xy, a, d, cb, e);
25603         if(!a){
25604             cb();
25605         }
25606     },
25607
25608     // private
25609     createCB : function(c){
25610         var el = this;
25611         return function(){
25612             el.constrainXY();
25613             el.sync(true);
25614             if(c){
25615                 c();
25616             }
25617         };
25618     },
25619
25620     // overridden Element method
25621     setX : function(x, a, d, c, e){
25622         this.setXY([x, this.getY()], a, d, c, e);
25623     },
25624
25625     // overridden Element method
25626     setY : function(y, a, d, c, e){
25627         this.setXY([this.getX(), y], a, d, c, e);
25628     },
25629
25630     // overridden Element method
25631     setSize : function(w, h, a, d, c, e){
25632         this.beforeAction();
25633         var cb = this.createCB(c);
25634         supr.setSize.call(this, w, h, a, d, cb, e);
25635         if(!a){
25636             cb();
25637         }
25638     },
25639
25640     // overridden Element method
25641     setWidth : function(w, a, d, c, e){
25642         this.beforeAction();
25643         var cb = this.createCB(c);
25644         supr.setWidth.call(this, w, a, d, cb, e);
25645         if(!a){
25646             cb();
25647         }
25648     },
25649
25650     // overridden Element method
25651     setHeight : function(h, a, d, c, e){
25652         this.beforeAction();
25653         var cb = this.createCB(c);
25654         supr.setHeight.call(this, h, a, d, cb, e);
25655         if(!a){
25656             cb();
25657         }
25658     },
25659
25660     // overridden Element method
25661     setBounds : function(x, y, w, h, a, d, c, e){
25662         this.beforeAction();
25663         var cb = this.createCB(c);
25664         if(!a){
25665             this.storeXY([x, y]);
25666             supr.setXY.call(this, [x, y]);
25667             supr.setSize.call(this, w, h, a, d, cb, e);
25668             cb();
25669         }else{
25670             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
25671         }
25672         return this;
25673     },
25674     
25675     /**
25676      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
25677      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
25678      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
25679      * @param {Number} zindex The new z-index to set
25680      * @return {this} The Layer
25681      */
25682     setZIndex : function(zindex){
25683         this.zindex = zindex;
25684         this.setStyle("z-index", zindex + 2);
25685         if(this.shadow){
25686             this.shadow.setZIndex(zindex + 1);
25687         }
25688         if(this.shim){
25689             this.shim.setStyle("z-index", zindex);
25690         }
25691     }
25692 });
25693 })();/*
25694  * Based on:
25695  * Ext JS Library 1.1.1
25696  * Copyright(c) 2006-2007, Ext JS, LLC.
25697  *
25698  * Originally Released Under LGPL - original licence link has changed is not relivant.
25699  *
25700  * Fork - LGPL
25701  * <script type="text/javascript">
25702  */
25703
25704
25705 /**
25706  * @class Roo.Shadow
25707  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
25708  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
25709  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
25710  * @constructor
25711  * Create a new Shadow
25712  * @param {Object} config The config object
25713  */
25714 Roo.Shadow = function(config){
25715     Roo.apply(this, config);
25716     if(typeof this.mode != "string"){
25717         this.mode = this.defaultMode;
25718     }
25719     var o = this.offset, a = {h: 0};
25720     var rad = Math.floor(this.offset/2);
25721     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
25722         case "drop":
25723             a.w = 0;
25724             a.l = a.t = o;
25725             a.t -= 1;
25726             if(Roo.isIE){
25727                 a.l -= this.offset + rad;
25728                 a.t -= this.offset + rad;
25729                 a.w -= rad;
25730                 a.h -= rad;
25731                 a.t += 1;
25732             }
25733         break;
25734         case "sides":
25735             a.w = (o*2);
25736             a.l = -o;
25737             a.t = o-1;
25738             if(Roo.isIE){
25739                 a.l -= (this.offset - rad);
25740                 a.t -= this.offset + rad;
25741                 a.l += 1;
25742                 a.w -= (this.offset - rad)*2;
25743                 a.w -= rad + 1;
25744                 a.h -= 1;
25745             }
25746         break;
25747         case "frame":
25748             a.w = a.h = (o*2);
25749             a.l = a.t = -o;
25750             a.t += 1;
25751             a.h -= 2;
25752             if(Roo.isIE){
25753                 a.l -= (this.offset - rad);
25754                 a.t -= (this.offset - rad);
25755                 a.l += 1;
25756                 a.w -= (this.offset + rad + 1);
25757                 a.h -= (this.offset + rad);
25758                 a.h += 1;
25759             }
25760         break;
25761     };
25762
25763     this.adjusts = a;
25764 };
25765
25766 Roo.Shadow.prototype = {
25767     /**
25768      * @cfg {String} mode
25769      * The shadow display mode.  Supports the following options:<br />
25770      * sides: Shadow displays on both sides and bottom only<br />
25771      * frame: Shadow displays equally on all four sides<br />
25772      * drop: Traditional bottom-right drop shadow (default)
25773      */
25774     /**
25775      * @cfg {String} offset
25776      * The number of pixels to offset the shadow from the element (defaults to 4)
25777      */
25778     offset: 4,
25779
25780     // private
25781     defaultMode: "drop",
25782
25783     /**
25784      * Displays the shadow under the target element
25785      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
25786      */
25787     show : function(target){
25788         target = Roo.get(target);
25789         if(!this.el){
25790             this.el = Roo.Shadow.Pool.pull();
25791             if(this.el.dom.nextSibling != target.dom){
25792                 this.el.insertBefore(target);
25793             }
25794         }
25795         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
25796         if(Roo.isIE){
25797             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
25798         }
25799         this.realign(
25800             target.getLeft(true),
25801             target.getTop(true),
25802             target.getWidth(),
25803             target.getHeight()
25804         );
25805         this.el.dom.style.display = "block";
25806     },
25807
25808     /**
25809      * Returns true if the shadow is visible, else false
25810      */
25811     isVisible : function(){
25812         return this.el ? true : false;  
25813     },
25814
25815     /**
25816      * Direct alignment when values are already available. Show must be called at least once before
25817      * calling this method to ensure it is initialized.
25818      * @param {Number} left The target element left position
25819      * @param {Number} top The target element top position
25820      * @param {Number} width The target element width
25821      * @param {Number} height The target element height
25822      */
25823     realign : function(l, t, w, h){
25824         if(!this.el){
25825             return;
25826         }
25827         var a = this.adjusts, d = this.el.dom, s = d.style;
25828         var iea = 0;
25829         s.left = (l+a.l)+"px";
25830         s.top = (t+a.t)+"px";
25831         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
25832  
25833         if(s.width != sws || s.height != shs){
25834             s.width = sws;
25835             s.height = shs;
25836             if(!Roo.isIE){
25837                 var cn = d.childNodes;
25838                 var sww = Math.max(0, (sw-12))+"px";
25839                 cn[0].childNodes[1].style.width = sww;
25840                 cn[1].childNodes[1].style.width = sww;
25841                 cn[2].childNodes[1].style.width = sww;
25842                 cn[1].style.height = Math.max(0, (sh-12))+"px";
25843             }
25844         }
25845     },
25846
25847     /**
25848      * Hides this shadow
25849      */
25850     hide : function(){
25851         if(this.el){
25852             this.el.dom.style.display = "none";
25853             Roo.Shadow.Pool.push(this.el);
25854             delete this.el;
25855         }
25856     },
25857
25858     /**
25859      * Adjust the z-index of this shadow
25860      * @param {Number} zindex The new z-index
25861      */
25862     setZIndex : function(z){
25863         this.zIndex = z;
25864         if(this.el){
25865             this.el.setStyle("z-index", z);
25866         }
25867     }
25868 };
25869
25870 // Private utility class that manages the internal Shadow cache
25871 Roo.Shadow.Pool = function(){
25872     var p = [];
25873     var markup = Roo.isIE ?
25874                  '<div class="x-ie-shadow"></div>' :
25875                  '<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>';
25876     return {
25877         pull : function(){
25878             var sh = p.shift();
25879             if(!sh){
25880                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
25881                 sh.autoBoxAdjust = false;
25882             }
25883             return sh;
25884         },
25885
25886         push : function(sh){
25887             p.push(sh);
25888         }
25889     };
25890 }();/*
25891  * Based on:
25892  * Ext JS Library 1.1.1
25893  * Copyright(c) 2006-2007, Ext JS, LLC.
25894  *
25895  * Originally Released Under LGPL - original licence link has changed is not relivant.
25896  *
25897  * Fork - LGPL
25898  * <script type="text/javascript">
25899  */
25900
25901
25902 /**
25903  * @class Roo.SplitBar
25904  * @extends Roo.util.Observable
25905  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
25906  * <br><br>
25907  * Usage:
25908  * <pre><code>
25909 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
25910                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
25911 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
25912 split.minSize = 100;
25913 split.maxSize = 600;
25914 split.animate = true;
25915 split.on('moved', splitterMoved);
25916 </code></pre>
25917  * @constructor
25918  * Create a new SplitBar
25919  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
25920  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
25921  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
25922  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
25923                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
25924                         position of the SplitBar).
25925  */
25926 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
25927     
25928     /** @private */
25929     this.el = Roo.get(dragElement, true);
25930     this.el.dom.unselectable = "on";
25931     /** @private */
25932     this.resizingEl = Roo.get(resizingElement, true);
25933
25934     /**
25935      * @private
25936      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
25937      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
25938      * @type Number
25939      */
25940     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
25941     
25942     /**
25943      * The minimum size of the resizing element. (Defaults to 0)
25944      * @type Number
25945      */
25946     this.minSize = 0;
25947     
25948     /**
25949      * The maximum size of the resizing element. (Defaults to 2000)
25950      * @type Number
25951      */
25952     this.maxSize = 2000;
25953     
25954     /**
25955      * Whether to animate the transition to the new size
25956      * @type Boolean
25957      */
25958     this.animate = false;
25959     
25960     /**
25961      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
25962      * @type Boolean
25963      */
25964     this.useShim = false;
25965     
25966     /** @private */
25967     this.shim = null;
25968     
25969     if(!existingProxy){
25970         /** @private */
25971         this.proxy = Roo.SplitBar.createProxy(this.orientation);
25972     }else{
25973         this.proxy = Roo.get(existingProxy).dom;
25974     }
25975     /** @private */
25976     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
25977     
25978     /** @private */
25979     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
25980     
25981     /** @private */
25982     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
25983     
25984     /** @private */
25985     this.dragSpecs = {};
25986     
25987     /**
25988      * @private The adapter to use to positon and resize elements
25989      */
25990     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
25991     this.adapter.init(this);
25992     
25993     if(this.orientation == Roo.SplitBar.HORIZONTAL){
25994         /** @private */
25995         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
25996         this.el.addClass("x-splitbar-h");
25997     }else{
25998         /** @private */
25999         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26000         this.el.addClass("x-splitbar-v");
26001     }
26002     
26003     this.addEvents({
26004         /**
26005          * @event resize
26006          * Fires when the splitter is moved (alias for {@link #event-moved})
26007          * @param {Roo.SplitBar} this
26008          * @param {Number} newSize the new width or height
26009          */
26010         "resize" : true,
26011         /**
26012          * @event moved
26013          * Fires when the splitter is moved
26014          * @param {Roo.SplitBar} this
26015          * @param {Number} newSize the new width or height
26016          */
26017         "moved" : true,
26018         /**
26019          * @event beforeresize
26020          * Fires before the splitter is dragged
26021          * @param {Roo.SplitBar} this
26022          */
26023         "beforeresize" : true,
26024
26025         "beforeapply" : true
26026     });
26027
26028     Roo.util.Observable.call(this);
26029 };
26030
26031 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26032     onStartProxyDrag : function(x, y){
26033         this.fireEvent("beforeresize", this);
26034         if(!this.overlay){
26035             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26036             o.unselectable();
26037             o.enableDisplayMode("block");
26038             // all splitbars share the same overlay
26039             Roo.SplitBar.prototype.overlay = o;
26040         }
26041         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26042         this.overlay.show();
26043         Roo.get(this.proxy).setDisplayed("block");
26044         var size = this.adapter.getElementSize(this);
26045         this.activeMinSize = this.getMinimumSize();;
26046         this.activeMaxSize = this.getMaximumSize();;
26047         var c1 = size - this.activeMinSize;
26048         var c2 = Math.max(this.activeMaxSize - size, 0);
26049         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26050             this.dd.resetConstraints();
26051             this.dd.setXConstraint(
26052                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26053                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26054             );
26055             this.dd.setYConstraint(0, 0);
26056         }else{
26057             this.dd.resetConstraints();
26058             this.dd.setXConstraint(0, 0);
26059             this.dd.setYConstraint(
26060                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26061                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26062             );
26063          }
26064         this.dragSpecs.startSize = size;
26065         this.dragSpecs.startPoint = [x, y];
26066         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26067     },
26068     
26069     /** 
26070      * @private Called after the drag operation by the DDProxy
26071      */
26072     onEndProxyDrag : function(e){
26073         Roo.get(this.proxy).setDisplayed(false);
26074         var endPoint = Roo.lib.Event.getXY(e);
26075         if(this.overlay){
26076             this.overlay.hide();
26077         }
26078         var newSize;
26079         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26080             newSize = this.dragSpecs.startSize + 
26081                 (this.placement == Roo.SplitBar.LEFT ?
26082                     endPoint[0] - this.dragSpecs.startPoint[0] :
26083                     this.dragSpecs.startPoint[0] - endPoint[0]
26084                 );
26085         }else{
26086             newSize = this.dragSpecs.startSize + 
26087                 (this.placement == Roo.SplitBar.TOP ?
26088                     endPoint[1] - this.dragSpecs.startPoint[1] :
26089                     this.dragSpecs.startPoint[1] - endPoint[1]
26090                 );
26091         }
26092         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26093         if(newSize != this.dragSpecs.startSize){
26094             if(this.fireEvent('beforeapply', this, newSize) !== false){
26095                 this.adapter.setElementSize(this, newSize);
26096                 this.fireEvent("moved", this, newSize);
26097                 this.fireEvent("resize", this, newSize);
26098             }
26099         }
26100     },
26101     
26102     /**
26103      * Get the adapter this SplitBar uses
26104      * @return The adapter object
26105      */
26106     getAdapter : function(){
26107         return this.adapter;
26108     },
26109     
26110     /**
26111      * Set the adapter this SplitBar uses
26112      * @param {Object} adapter A SplitBar adapter object
26113      */
26114     setAdapter : function(adapter){
26115         this.adapter = adapter;
26116         this.adapter.init(this);
26117     },
26118     
26119     /**
26120      * Gets the minimum size for the resizing element
26121      * @return {Number} The minimum size
26122      */
26123     getMinimumSize : function(){
26124         return this.minSize;
26125     },
26126     
26127     /**
26128      * Sets the minimum size for the resizing element
26129      * @param {Number} minSize The minimum size
26130      */
26131     setMinimumSize : function(minSize){
26132         this.minSize = minSize;
26133     },
26134     
26135     /**
26136      * Gets the maximum size for the resizing element
26137      * @return {Number} The maximum size
26138      */
26139     getMaximumSize : function(){
26140         return this.maxSize;
26141     },
26142     
26143     /**
26144      * Sets the maximum size for the resizing element
26145      * @param {Number} maxSize The maximum size
26146      */
26147     setMaximumSize : function(maxSize){
26148         this.maxSize = maxSize;
26149     },
26150     
26151     /**
26152      * Sets the initialize size for the resizing element
26153      * @param {Number} size The initial size
26154      */
26155     setCurrentSize : function(size){
26156         var oldAnimate = this.animate;
26157         this.animate = false;
26158         this.adapter.setElementSize(this, size);
26159         this.animate = oldAnimate;
26160     },
26161     
26162     /**
26163      * Destroy this splitbar. 
26164      * @param {Boolean} removeEl True to remove the element
26165      */
26166     destroy : function(removeEl){
26167         if(this.shim){
26168             this.shim.remove();
26169         }
26170         this.dd.unreg();
26171         this.proxy.parentNode.removeChild(this.proxy);
26172         if(removeEl){
26173             this.el.remove();
26174         }
26175     }
26176 });
26177
26178 /**
26179  * @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.
26180  */
26181 Roo.SplitBar.createProxy = function(dir){
26182     var proxy = new Roo.Element(document.createElement("div"));
26183     proxy.unselectable();
26184     var cls = 'x-splitbar-proxy';
26185     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26186     document.body.appendChild(proxy.dom);
26187     return proxy.dom;
26188 };
26189
26190 /** 
26191  * @class Roo.SplitBar.BasicLayoutAdapter
26192  * Default Adapter. It assumes the splitter and resizing element are not positioned
26193  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26194  */
26195 Roo.SplitBar.BasicLayoutAdapter = function(){
26196 };
26197
26198 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26199     // do nothing for now
26200     init : function(s){
26201     
26202     },
26203     /**
26204      * Called before drag operations to get the current size of the resizing element. 
26205      * @param {Roo.SplitBar} s The SplitBar using this adapter
26206      */
26207      getElementSize : function(s){
26208         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26209             return s.resizingEl.getWidth();
26210         }else{
26211             return s.resizingEl.getHeight();
26212         }
26213     },
26214     
26215     /**
26216      * Called after drag operations to set the size of the resizing element.
26217      * @param {Roo.SplitBar} s The SplitBar using this adapter
26218      * @param {Number} newSize The new size to set
26219      * @param {Function} onComplete A function to be invoked when resizing is complete
26220      */
26221     setElementSize : function(s, newSize, onComplete){
26222         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26223             if(!s.animate){
26224                 s.resizingEl.setWidth(newSize);
26225                 if(onComplete){
26226                     onComplete(s, newSize);
26227                 }
26228             }else{
26229                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26230             }
26231         }else{
26232             
26233             if(!s.animate){
26234                 s.resizingEl.setHeight(newSize);
26235                 if(onComplete){
26236                     onComplete(s, newSize);
26237                 }
26238             }else{
26239                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26240             }
26241         }
26242     }
26243 };
26244
26245 /** 
26246  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26247  * @extends Roo.SplitBar.BasicLayoutAdapter
26248  * Adapter that  moves the splitter element to align with the resized sizing element. 
26249  * Used with an absolute positioned SplitBar.
26250  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26251  * document.body, make sure you assign an id to the body element.
26252  */
26253 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26254     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26255     this.container = Roo.get(container);
26256 };
26257
26258 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26259     init : function(s){
26260         this.basic.init(s);
26261     },
26262     
26263     getElementSize : function(s){
26264         return this.basic.getElementSize(s);
26265     },
26266     
26267     setElementSize : function(s, newSize, onComplete){
26268         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26269     },
26270     
26271     moveSplitter : function(s){
26272         var yes = Roo.SplitBar;
26273         switch(s.placement){
26274             case yes.LEFT:
26275                 s.el.setX(s.resizingEl.getRight());
26276                 break;
26277             case yes.RIGHT:
26278                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26279                 break;
26280             case yes.TOP:
26281                 s.el.setY(s.resizingEl.getBottom());
26282                 break;
26283             case yes.BOTTOM:
26284                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26285                 break;
26286         }
26287     }
26288 };
26289
26290 /**
26291  * Orientation constant - Create a vertical SplitBar
26292  * @static
26293  * @type Number
26294  */
26295 Roo.SplitBar.VERTICAL = 1;
26296
26297 /**
26298  * Orientation constant - Create a horizontal SplitBar
26299  * @static
26300  * @type Number
26301  */
26302 Roo.SplitBar.HORIZONTAL = 2;
26303
26304 /**
26305  * Placement constant - The resizing element is to the left of the splitter element
26306  * @static
26307  * @type Number
26308  */
26309 Roo.SplitBar.LEFT = 1;
26310
26311 /**
26312  * Placement constant - The resizing element is to the right of the splitter element
26313  * @static
26314  * @type Number
26315  */
26316 Roo.SplitBar.RIGHT = 2;
26317
26318 /**
26319  * Placement constant - The resizing element is positioned above the splitter element
26320  * @static
26321  * @type Number
26322  */
26323 Roo.SplitBar.TOP = 3;
26324
26325 /**
26326  * Placement constant - The resizing element is positioned under splitter element
26327  * @static
26328  * @type Number
26329  */
26330 Roo.SplitBar.BOTTOM = 4;
26331 /*
26332  * Based on:
26333  * Ext JS Library 1.1.1
26334  * Copyright(c) 2006-2007, Ext JS, LLC.
26335  *
26336  * Originally Released Under LGPL - original licence link has changed is not relivant.
26337  *
26338  * Fork - LGPL
26339  * <script type="text/javascript">
26340  */
26341
26342 /**
26343  * @class Roo.View
26344  * @extends Roo.util.Observable
26345  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26346  * This class also supports single and multi selection modes. <br>
26347  * Create a data model bound view:
26348  <pre><code>
26349  var store = new Roo.data.Store(...);
26350
26351  var view = new Roo.View({
26352     el : "my-element",
26353     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26354  
26355     singleSelect: true,
26356     selectedClass: "ydataview-selected",
26357     store: store
26358  });
26359
26360  // listen for node click?
26361  view.on("click", function(vw, index, node, e){
26362  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26363  });
26364
26365  // load XML data
26366  dataModel.load("foobar.xml");
26367  </code></pre>
26368  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26369  * <br><br>
26370  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26371  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26372  * 
26373  * Note: old style constructor is still suported (container, template, config)
26374  * 
26375  * @constructor
26376  * Create a new View
26377  * @param {Object} config The config object
26378  * 
26379  */
26380 Roo.View = function(config, depreciated_tpl, depreciated_config){
26381     
26382     this.parent = false;
26383     
26384     if (typeof(depreciated_tpl) == 'undefined') {
26385         // new way.. - universal constructor.
26386         Roo.apply(this, config);
26387         this.el  = Roo.get(this.el);
26388     } else {
26389         // old format..
26390         this.el  = Roo.get(config);
26391         this.tpl = depreciated_tpl;
26392         Roo.apply(this, depreciated_config);
26393     }
26394     this.wrapEl  = this.el.wrap().wrap();
26395     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26396     
26397     
26398     if(typeof(this.tpl) == "string"){
26399         this.tpl = new Roo.Template(this.tpl);
26400     } else {
26401         // support xtype ctors..
26402         this.tpl = new Roo.factory(this.tpl, Roo);
26403     }
26404     
26405     
26406     this.tpl.compile();
26407     
26408     /** @private */
26409     this.addEvents({
26410         /**
26411          * @event beforeclick
26412          * Fires before a click is processed. Returns false to cancel the default action.
26413          * @param {Roo.View} this
26414          * @param {Number} index The index of the target node
26415          * @param {HTMLElement} node The target node
26416          * @param {Roo.EventObject} e The raw event object
26417          */
26418             "beforeclick" : true,
26419         /**
26420          * @event click
26421          * Fires when a template node is clicked.
26422          * @param {Roo.View} this
26423          * @param {Number} index The index of the target node
26424          * @param {HTMLElement} node The target node
26425          * @param {Roo.EventObject} e The raw event object
26426          */
26427             "click" : true,
26428         /**
26429          * @event dblclick
26430          * Fires when a template node is double clicked.
26431          * @param {Roo.View} this
26432          * @param {Number} index The index of the target node
26433          * @param {HTMLElement} node The target node
26434          * @param {Roo.EventObject} e The raw event object
26435          */
26436             "dblclick" : true,
26437         /**
26438          * @event contextmenu
26439          * Fires when a template node is right clicked.
26440          * @param {Roo.View} this
26441          * @param {Number} index The index of the target node
26442          * @param {HTMLElement} node The target node
26443          * @param {Roo.EventObject} e The raw event object
26444          */
26445             "contextmenu" : true,
26446         /**
26447          * @event selectionchange
26448          * Fires when the selected nodes change.
26449          * @param {Roo.View} this
26450          * @param {Array} selections Array of the selected nodes
26451          */
26452             "selectionchange" : true,
26453     
26454         /**
26455          * @event beforeselect
26456          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26457          * @param {Roo.View} this
26458          * @param {HTMLElement} node The node to be selected
26459          * @param {Array} selections Array of currently selected nodes
26460          */
26461             "beforeselect" : true,
26462         /**
26463          * @event preparedata
26464          * Fires on every row to render, to allow you to change the data.
26465          * @param {Roo.View} this
26466          * @param {Object} data to be rendered (change this)
26467          */
26468           "preparedata" : true
26469           
26470           
26471         });
26472
26473
26474
26475     this.el.on({
26476         "click": this.onClick,
26477         "dblclick": this.onDblClick,
26478         "contextmenu": this.onContextMenu,
26479         scope:this
26480     });
26481
26482     this.selections = [];
26483     this.nodes = [];
26484     this.cmp = new Roo.CompositeElementLite([]);
26485     if(this.store){
26486         this.store = Roo.factory(this.store, Roo.data);
26487         this.setStore(this.store, true);
26488     }
26489     
26490     if ( this.footer && this.footer.xtype) {
26491            
26492          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26493         
26494         this.footer.dataSource = this.store;
26495         this.footer.container = fctr;
26496         this.footer = Roo.factory(this.footer, Roo);
26497         fctr.insertFirst(this.el);
26498         
26499         // this is a bit insane - as the paging toolbar seems to detach the el..
26500 //        dom.parentNode.parentNode.parentNode
26501          // they get detached?
26502     }
26503     
26504     
26505     Roo.View.superclass.constructor.call(this);
26506     
26507     
26508 };
26509
26510 Roo.extend(Roo.View, Roo.util.Observable, {
26511     
26512      /**
26513      * @cfg {Roo.data.Store} store Data store to load data from.
26514      */
26515     store : false,
26516     
26517     /**
26518      * @cfg {String|Roo.Element} el The container element.
26519      */
26520     el : '',
26521     
26522     /**
26523      * @cfg {String|Roo.Template} tpl The template used by this View 
26524      */
26525     tpl : false,
26526     /**
26527      * @cfg {String} dataName the named area of the template to use as the data area
26528      *                          Works with domtemplates roo-name="name"
26529      */
26530     dataName: false,
26531     /**
26532      * @cfg {String} selectedClass The css class to add to selected nodes
26533      */
26534     selectedClass : "x-view-selected",
26535      /**
26536      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26537      */
26538     emptyText : "",
26539     
26540     /**
26541      * @cfg {String} text to display on mask (default Loading)
26542      */
26543     mask : false,
26544     /**
26545      * @cfg {Boolean} multiSelect Allow multiple selection
26546      */
26547     multiSelect : false,
26548     /**
26549      * @cfg {Boolean} singleSelect Allow single selection
26550      */
26551     singleSelect:  false,
26552     
26553     /**
26554      * @cfg {Boolean} toggleSelect - selecting 
26555      */
26556     toggleSelect : false,
26557     
26558     /**
26559      * @cfg {Boolean} tickable - selecting 
26560      */
26561     tickable : false,
26562     
26563     /**
26564      * Returns the element this view is bound to.
26565      * @return {Roo.Element}
26566      */
26567     getEl : function(){
26568         return this.wrapEl;
26569     },
26570     
26571     
26572
26573     /**
26574      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26575      */
26576     refresh : function(){
26577         //Roo.log('refresh');
26578         var t = this.tpl;
26579         
26580         // if we are using something like 'domtemplate', then
26581         // the what gets used is:
26582         // t.applySubtemplate(NAME, data, wrapping data..)
26583         // the outer template then get' applied with
26584         //     the store 'extra data'
26585         // and the body get's added to the
26586         //      roo-name="data" node?
26587         //      <span class='roo-tpl-{name}'></span> ?????
26588         
26589         
26590         
26591         this.clearSelections();
26592         this.el.update("");
26593         var html = [];
26594         var records = this.store.getRange();
26595         if(records.length < 1) {
26596             
26597             // is this valid??  = should it render a template??
26598             
26599             this.el.update(this.emptyText);
26600             return;
26601         }
26602         var el = this.el;
26603         if (this.dataName) {
26604             this.el.update(t.apply(this.store.meta)); //????
26605             el = this.el.child('.roo-tpl-' + this.dataName);
26606         }
26607         
26608         for(var i = 0, len = records.length; i < len; i++){
26609             var data = this.prepareData(records[i].data, i, records[i]);
26610             this.fireEvent("preparedata", this, data, i, records[i]);
26611             
26612             var d = Roo.apply({}, data);
26613             
26614             if(this.tickable){
26615                 Roo.apply(d, {'roo-id' : Roo.id()});
26616                 
26617                 var _this = this;
26618             
26619                 Roo.each(this.parent.item, function(item){
26620                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26621                         return;
26622                     }
26623                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26624                 });
26625             }
26626             
26627             html[html.length] = Roo.util.Format.trim(
26628                 this.dataName ?
26629                     t.applySubtemplate(this.dataName, d, this.store.meta) :
26630                     t.apply(d)
26631             );
26632         }
26633         
26634         
26635         
26636         el.update(html.join(""));
26637         this.nodes = el.dom.childNodes;
26638         this.updateIndexes(0);
26639     },
26640     
26641
26642     /**
26643      * Function to override to reformat the data that is sent to
26644      * the template for each node.
26645      * DEPRICATED - use the preparedata event handler.
26646      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
26647      * a JSON object for an UpdateManager bound view).
26648      */
26649     prepareData : function(data, index, record)
26650     {
26651         this.fireEvent("preparedata", this, data, index, record);
26652         return data;
26653     },
26654
26655     onUpdate : function(ds, record){
26656         // Roo.log('on update');   
26657         this.clearSelections();
26658         var index = this.store.indexOf(record);
26659         var n = this.nodes[index];
26660         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
26661         n.parentNode.removeChild(n);
26662         this.updateIndexes(index, index);
26663     },
26664
26665     
26666     
26667 // --------- FIXME     
26668     onAdd : function(ds, records, index)
26669     {
26670         //Roo.log(['on Add', ds, records, index] );        
26671         this.clearSelections();
26672         if(this.nodes.length == 0){
26673             this.refresh();
26674             return;
26675         }
26676         var n = this.nodes[index];
26677         for(var i = 0, len = records.length; i < len; i++){
26678             var d = this.prepareData(records[i].data, i, records[i]);
26679             if(n){
26680                 this.tpl.insertBefore(n, d);
26681             }else{
26682                 
26683                 this.tpl.append(this.el, d);
26684             }
26685         }
26686         this.updateIndexes(index);
26687     },
26688
26689     onRemove : function(ds, record, index){
26690        // Roo.log('onRemove');
26691         this.clearSelections();
26692         var el = this.dataName  ?
26693             this.el.child('.roo-tpl-' + this.dataName) :
26694             this.el; 
26695         
26696         el.dom.removeChild(this.nodes[index]);
26697         this.updateIndexes(index);
26698     },
26699
26700     /**
26701      * Refresh an individual node.
26702      * @param {Number} index
26703      */
26704     refreshNode : function(index){
26705         this.onUpdate(this.store, this.store.getAt(index));
26706     },
26707
26708     updateIndexes : function(startIndex, endIndex){
26709         var ns = this.nodes;
26710         startIndex = startIndex || 0;
26711         endIndex = endIndex || ns.length - 1;
26712         for(var i = startIndex; i <= endIndex; i++){
26713             ns[i].nodeIndex = i;
26714         }
26715     },
26716
26717     /**
26718      * Changes the data store this view uses and refresh the view.
26719      * @param {Store} store
26720      */
26721     setStore : function(store, initial){
26722         if(!initial && this.store){
26723             this.store.un("datachanged", this.refresh);
26724             this.store.un("add", this.onAdd);
26725             this.store.un("remove", this.onRemove);
26726             this.store.un("update", this.onUpdate);
26727             this.store.un("clear", this.refresh);
26728             this.store.un("beforeload", this.onBeforeLoad);
26729             this.store.un("load", this.onLoad);
26730             this.store.un("loadexception", this.onLoad);
26731         }
26732         if(store){
26733           
26734             store.on("datachanged", this.refresh, this);
26735             store.on("add", this.onAdd, this);
26736             store.on("remove", this.onRemove, this);
26737             store.on("update", this.onUpdate, this);
26738             store.on("clear", this.refresh, this);
26739             store.on("beforeload", this.onBeforeLoad, this);
26740             store.on("load", this.onLoad, this);
26741             store.on("loadexception", this.onLoad, this);
26742         }
26743         
26744         if(store){
26745             this.refresh();
26746         }
26747     },
26748     /**
26749      * onbeforeLoad - masks the loading area.
26750      *
26751      */
26752     onBeforeLoad : function(store,opts)
26753     {
26754          //Roo.log('onBeforeLoad');   
26755         if (!opts.add) {
26756             this.el.update("");
26757         }
26758         this.el.mask(this.mask ? this.mask : "Loading" ); 
26759     },
26760     onLoad : function ()
26761     {
26762         this.el.unmask();
26763     },
26764     
26765
26766     /**
26767      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
26768      * @param {HTMLElement} node
26769      * @return {HTMLElement} The template node
26770      */
26771     findItemFromChild : function(node){
26772         var el = this.dataName  ?
26773             this.el.child('.roo-tpl-' + this.dataName,true) :
26774             this.el.dom; 
26775         
26776         if(!node || node.parentNode == el){
26777                     return node;
26778             }
26779             var p = node.parentNode;
26780             while(p && p != el){
26781             if(p.parentNode == el){
26782                 return p;
26783             }
26784             p = p.parentNode;
26785         }
26786             return null;
26787     },
26788
26789     /** @ignore */
26790     onClick : function(e){
26791         var item = this.findItemFromChild(e.getTarget());
26792         if(item){
26793             var index = this.indexOf(item);
26794             if(this.onItemClick(item, index, e) !== false){
26795                 this.fireEvent("click", this, index, item, e);
26796             }
26797         }else{
26798             this.clearSelections();
26799         }
26800     },
26801
26802     /** @ignore */
26803     onContextMenu : function(e){
26804         var item = this.findItemFromChild(e.getTarget());
26805         if(item){
26806             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
26807         }
26808     },
26809
26810     /** @ignore */
26811     onDblClick : function(e){
26812         var item = this.findItemFromChild(e.getTarget());
26813         if(item){
26814             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
26815         }
26816     },
26817
26818     onItemClick : function(item, index, e)
26819     {
26820         if(this.fireEvent("beforeclick", this, index, item, e) === false){
26821             return false;
26822         }
26823         if (this.toggleSelect) {
26824             var m = this.isSelected(item) ? 'unselect' : 'select';
26825             //Roo.log(m);
26826             var _t = this;
26827             _t[m](item, true, false);
26828             return true;
26829         }
26830         if(this.multiSelect || this.singleSelect){
26831             if(this.multiSelect && e.shiftKey && this.lastSelection){
26832                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
26833             }else{
26834                 this.select(item, this.multiSelect && e.ctrlKey);
26835                 this.lastSelection = item;
26836             }
26837             
26838             if(!this.tickable){
26839                 e.preventDefault();
26840             }
26841             
26842         }
26843         return true;
26844     },
26845
26846     /**
26847      * Get the number of selected nodes.
26848      * @return {Number}
26849      */
26850     getSelectionCount : function(){
26851         return this.selections.length;
26852     },
26853
26854     /**
26855      * Get the currently selected nodes.
26856      * @return {Array} An array of HTMLElements
26857      */
26858     getSelectedNodes : function(){
26859         return this.selections;
26860     },
26861
26862     /**
26863      * Get the indexes of the selected nodes.
26864      * @return {Array}
26865      */
26866     getSelectedIndexes : function(){
26867         var indexes = [], s = this.selections;
26868         for(var i = 0, len = s.length; i < len; i++){
26869             indexes.push(s[i].nodeIndex);
26870         }
26871         return indexes;
26872     },
26873
26874     /**
26875      * Clear all selections
26876      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
26877      */
26878     clearSelections : function(suppressEvent){
26879         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
26880             this.cmp.elements = this.selections;
26881             this.cmp.removeClass(this.selectedClass);
26882             this.selections = [];
26883             if(!suppressEvent){
26884                 this.fireEvent("selectionchange", this, this.selections);
26885             }
26886         }
26887     },
26888
26889     /**
26890      * Returns true if the passed node is selected
26891      * @param {HTMLElement/Number} node The node or node index
26892      * @return {Boolean}
26893      */
26894     isSelected : function(node){
26895         var s = this.selections;
26896         if(s.length < 1){
26897             return false;
26898         }
26899         node = this.getNode(node);
26900         return s.indexOf(node) !== -1;
26901     },
26902
26903     /**
26904      * Selects nodes.
26905      * @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
26906      * @param {Boolean} keepExisting (optional) true to keep existing selections
26907      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
26908      */
26909     select : function(nodeInfo, keepExisting, suppressEvent){
26910         if(nodeInfo instanceof Array){
26911             if(!keepExisting){
26912                 this.clearSelections(true);
26913             }
26914             for(var i = 0, len = nodeInfo.length; i < len; i++){
26915                 this.select(nodeInfo[i], true, true);
26916             }
26917             return;
26918         } 
26919         var node = this.getNode(nodeInfo);
26920         if(!node || this.isSelected(node)){
26921             return; // already selected.
26922         }
26923         if(!keepExisting){
26924             this.clearSelections(true);
26925         }
26926         
26927         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
26928             Roo.fly(node).addClass(this.selectedClass);
26929             this.selections.push(node);
26930             if(!suppressEvent){
26931                 this.fireEvent("selectionchange", this, this.selections);
26932             }
26933         }
26934         
26935         
26936     },
26937       /**
26938      * Unselects nodes.
26939      * @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
26940      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
26941      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
26942      */
26943     unselect : function(nodeInfo, keepExisting, suppressEvent)
26944     {
26945         if(nodeInfo instanceof Array){
26946             Roo.each(this.selections, function(s) {
26947                 this.unselect(s, nodeInfo);
26948             }, this);
26949             return;
26950         }
26951         var node = this.getNode(nodeInfo);
26952         if(!node || !this.isSelected(node)){
26953             //Roo.log("not selected");
26954             return; // not selected.
26955         }
26956         // fireevent???
26957         var ns = [];
26958         Roo.each(this.selections, function(s) {
26959             if (s == node ) {
26960                 Roo.fly(node).removeClass(this.selectedClass);
26961
26962                 return;
26963             }
26964             ns.push(s);
26965         },this);
26966         
26967         this.selections= ns;
26968         this.fireEvent("selectionchange", this, this.selections);
26969     },
26970
26971     /**
26972      * Gets a template node.
26973      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
26974      * @return {HTMLElement} The node or null if it wasn't found
26975      */
26976     getNode : function(nodeInfo){
26977         if(typeof nodeInfo == "string"){
26978             return document.getElementById(nodeInfo);
26979         }else if(typeof nodeInfo == "number"){
26980             return this.nodes[nodeInfo];
26981         }
26982         return nodeInfo;
26983     },
26984
26985     /**
26986      * Gets a range template nodes.
26987      * @param {Number} startIndex
26988      * @param {Number} endIndex
26989      * @return {Array} An array of nodes
26990      */
26991     getNodes : function(start, end){
26992         var ns = this.nodes;
26993         start = start || 0;
26994         end = typeof end == "undefined" ? ns.length - 1 : end;
26995         var nodes = [];
26996         if(start <= end){
26997             for(var i = start; i <= end; i++){
26998                 nodes.push(ns[i]);
26999             }
27000         } else{
27001             for(var i = start; i >= end; i--){
27002                 nodes.push(ns[i]);
27003             }
27004         }
27005         return nodes;
27006     },
27007
27008     /**
27009      * Finds the index of the passed node
27010      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27011      * @return {Number} The index of the node or -1
27012      */
27013     indexOf : function(node){
27014         node = this.getNode(node);
27015         if(typeof node.nodeIndex == "number"){
27016             return node.nodeIndex;
27017         }
27018         var ns = this.nodes;
27019         for(var i = 0, len = ns.length; i < len; i++){
27020             if(ns[i] == node){
27021                 return i;
27022             }
27023         }
27024         return -1;
27025     }
27026 });
27027 /*
27028  * Based on:
27029  * Ext JS Library 1.1.1
27030  * Copyright(c) 2006-2007, Ext JS, LLC.
27031  *
27032  * Originally Released Under LGPL - original licence link has changed is not relivant.
27033  *
27034  * Fork - LGPL
27035  * <script type="text/javascript">
27036  */
27037
27038 /**
27039  * @class Roo.JsonView
27040  * @extends Roo.View
27041  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27042 <pre><code>
27043 var view = new Roo.JsonView({
27044     container: "my-element",
27045     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27046     multiSelect: true, 
27047     jsonRoot: "data" 
27048 });
27049
27050 // listen for node click?
27051 view.on("click", function(vw, index, node, e){
27052     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27053 });
27054
27055 // direct load of JSON data
27056 view.load("foobar.php");
27057
27058 // Example from my blog list
27059 var tpl = new Roo.Template(
27060     '&lt;div class="entry"&gt;' +
27061     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27062     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27063     "&lt;/div&gt;&lt;hr /&gt;"
27064 );
27065
27066 var moreView = new Roo.JsonView({
27067     container :  "entry-list", 
27068     template : tpl,
27069     jsonRoot: "posts"
27070 });
27071 moreView.on("beforerender", this.sortEntries, this);
27072 moreView.load({
27073     url: "/blog/get-posts.php",
27074     params: "allposts=true",
27075     text: "Loading Blog Entries..."
27076 });
27077 </code></pre>
27078
27079 * Note: old code is supported with arguments : (container, template, config)
27080
27081
27082  * @constructor
27083  * Create a new JsonView
27084  * 
27085  * @param {Object} config The config object
27086  * 
27087  */
27088 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27089     
27090     
27091     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27092
27093     var um = this.el.getUpdateManager();
27094     um.setRenderer(this);
27095     um.on("update", this.onLoad, this);
27096     um.on("failure", this.onLoadException, this);
27097
27098     /**
27099      * @event beforerender
27100      * Fires before rendering of the downloaded JSON data.
27101      * @param {Roo.JsonView} this
27102      * @param {Object} data The JSON data loaded
27103      */
27104     /**
27105      * @event load
27106      * Fires when data is loaded.
27107      * @param {Roo.JsonView} this
27108      * @param {Object} data The JSON data loaded
27109      * @param {Object} response The raw Connect response object
27110      */
27111     /**
27112      * @event loadexception
27113      * Fires when loading fails.
27114      * @param {Roo.JsonView} this
27115      * @param {Object} response The raw Connect response object
27116      */
27117     this.addEvents({
27118         'beforerender' : true,
27119         'load' : true,
27120         'loadexception' : true
27121     });
27122 };
27123 Roo.extend(Roo.JsonView, Roo.View, {
27124     /**
27125      * @type {String} The root property in the loaded JSON object that contains the data
27126      */
27127     jsonRoot : "",
27128
27129     /**
27130      * Refreshes the view.
27131      */
27132     refresh : function(){
27133         this.clearSelections();
27134         this.el.update("");
27135         var html = [];
27136         var o = this.jsonData;
27137         if(o && o.length > 0){
27138             for(var i = 0, len = o.length; i < len; i++){
27139                 var data = this.prepareData(o[i], i, o);
27140                 html[html.length] = this.tpl.apply(data);
27141             }
27142         }else{
27143             html.push(this.emptyText);
27144         }
27145         this.el.update(html.join(""));
27146         this.nodes = this.el.dom.childNodes;
27147         this.updateIndexes(0);
27148     },
27149
27150     /**
27151      * 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.
27152      * @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:
27153      <pre><code>
27154      view.load({
27155          url: "your-url.php",
27156          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27157          callback: yourFunction,
27158          scope: yourObject, //(optional scope)
27159          discardUrl: false,
27160          nocache: false,
27161          text: "Loading...",
27162          timeout: 30,
27163          scripts: false
27164      });
27165      </code></pre>
27166      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27167      * 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.
27168      * @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}
27169      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27170      * @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.
27171      */
27172     load : function(){
27173         var um = this.el.getUpdateManager();
27174         um.update.apply(um, arguments);
27175     },
27176
27177     // note - render is a standard framework call...
27178     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27179     render : function(el, response){
27180         
27181         this.clearSelections();
27182         this.el.update("");
27183         var o;
27184         try{
27185             if (response != '') {
27186                 o = Roo.util.JSON.decode(response.responseText);
27187                 if(this.jsonRoot){
27188                     
27189                     o = o[this.jsonRoot];
27190                 }
27191             }
27192         } catch(e){
27193         }
27194         /**
27195          * The current JSON data or null
27196          */
27197         this.jsonData = o;
27198         this.beforeRender();
27199         this.refresh();
27200     },
27201
27202 /**
27203  * Get the number of records in the current JSON dataset
27204  * @return {Number}
27205  */
27206     getCount : function(){
27207         return this.jsonData ? this.jsonData.length : 0;
27208     },
27209
27210 /**
27211  * Returns the JSON object for the specified node(s)
27212  * @param {HTMLElement/Array} node The node or an array of nodes
27213  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27214  * you get the JSON object for the node
27215  */
27216     getNodeData : function(node){
27217         if(node instanceof Array){
27218             var data = [];
27219             for(var i = 0, len = node.length; i < len; i++){
27220                 data.push(this.getNodeData(node[i]));
27221             }
27222             return data;
27223         }
27224         return this.jsonData[this.indexOf(node)] || null;
27225     },
27226
27227     beforeRender : function(){
27228         this.snapshot = this.jsonData;
27229         if(this.sortInfo){
27230             this.sort.apply(this, this.sortInfo);
27231         }
27232         this.fireEvent("beforerender", this, this.jsonData);
27233     },
27234
27235     onLoad : function(el, o){
27236         this.fireEvent("load", this, this.jsonData, o);
27237     },
27238
27239     onLoadException : function(el, o){
27240         this.fireEvent("loadexception", this, o);
27241     },
27242
27243 /**
27244  * Filter the data by a specific property.
27245  * @param {String} property A property on your JSON objects
27246  * @param {String/RegExp} value Either string that the property values
27247  * should start with, or a RegExp to test against the property
27248  */
27249     filter : function(property, value){
27250         if(this.jsonData){
27251             var data = [];
27252             var ss = this.snapshot;
27253             if(typeof value == "string"){
27254                 var vlen = value.length;
27255                 if(vlen == 0){
27256                     this.clearFilter();
27257                     return;
27258                 }
27259                 value = value.toLowerCase();
27260                 for(var i = 0, len = ss.length; i < len; i++){
27261                     var o = ss[i];
27262                     if(o[property].substr(0, vlen).toLowerCase() == value){
27263                         data.push(o);
27264                     }
27265                 }
27266             } else if(value.exec){ // regex?
27267                 for(var i = 0, len = ss.length; i < len; i++){
27268                     var o = ss[i];
27269                     if(value.test(o[property])){
27270                         data.push(o);
27271                     }
27272                 }
27273             } else{
27274                 return;
27275             }
27276             this.jsonData = data;
27277             this.refresh();
27278         }
27279     },
27280
27281 /**
27282  * Filter by a function. The passed function will be called with each
27283  * object in the current dataset. If the function returns true the value is kept,
27284  * otherwise it is filtered.
27285  * @param {Function} fn
27286  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27287  */
27288     filterBy : function(fn, scope){
27289         if(this.jsonData){
27290             var data = [];
27291             var ss = this.snapshot;
27292             for(var i = 0, len = ss.length; i < len; i++){
27293                 var o = ss[i];
27294                 if(fn.call(scope || this, o)){
27295                     data.push(o);
27296                 }
27297             }
27298             this.jsonData = data;
27299             this.refresh();
27300         }
27301     },
27302
27303 /**
27304  * Clears the current filter.
27305  */
27306     clearFilter : function(){
27307         if(this.snapshot && this.jsonData != this.snapshot){
27308             this.jsonData = this.snapshot;
27309             this.refresh();
27310         }
27311     },
27312
27313
27314 /**
27315  * Sorts the data for this view and refreshes it.
27316  * @param {String} property A property on your JSON objects to sort on
27317  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27318  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27319  */
27320     sort : function(property, dir, sortType){
27321         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27322         if(this.jsonData){
27323             var p = property;
27324             var dsc = dir && dir.toLowerCase() == "desc";
27325             var f = function(o1, o2){
27326                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27327                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27328                 ;
27329                 if(v1 < v2){
27330                     return dsc ? +1 : -1;
27331                 } else if(v1 > v2){
27332                     return dsc ? -1 : +1;
27333                 } else{
27334                     return 0;
27335                 }
27336             };
27337             this.jsonData.sort(f);
27338             this.refresh();
27339             if(this.jsonData != this.snapshot){
27340                 this.snapshot.sort(f);
27341             }
27342         }
27343     }
27344 });/*
27345  * Based on:
27346  * Ext JS Library 1.1.1
27347  * Copyright(c) 2006-2007, Ext JS, LLC.
27348  *
27349  * Originally Released Under LGPL - original licence link has changed is not relivant.
27350  *
27351  * Fork - LGPL
27352  * <script type="text/javascript">
27353  */
27354  
27355
27356 /**
27357  * @class Roo.ColorPalette
27358  * @extends Roo.Component
27359  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27360  * Here's an example of typical usage:
27361  * <pre><code>
27362 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27363 cp.render('my-div');
27364
27365 cp.on('select', function(palette, selColor){
27366     // do something with selColor
27367 });
27368 </code></pre>
27369  * @constructor
27370  * Create a new ColorPalette
27371  * @param {Object} config The config object
27372  */
27373 Roo.ColorPalette = function(config){
27374     Roo.ColorPalette.superclass.constructor.call(this, config);
27375     this.addEvents({
27376         /**
27377              * @event select
27378              * Fires when a color is selected
27379              * @param {ColorPalette} this
27380              * @param {String} color The 6-digit color hex code (without the # symbol)
27381              */
27382         select: true
27383     });
27384
27385     if(this.handler){
27386         this.on("select", this.handler, this.scope, true);
27387     }
27388 };
27389 Roo.extend(Roo.ColorPalette, Roo.Component, {
27390     /**
27391      * @cfg {String} itemCls
27392      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27393      */
27394     itemCls : "x-color-palette",
27395     /**
27396      * @cfg {String} value
27397      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27398      * the hex codes are case-sensitive.
27399      */
27400     value : null,
27401     clickEvent:'click',
27402     // private
27403     ctype: "Roo.ColorPalette",
27404
27405     /**
27406      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27407      */
27408     allowReselect : false,
27409
27410     /**
27411      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27412      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27413      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27414      * of colors with the width setting until the box is symmetrical.</p>
27415      * <p>You can override individual colors if needed:</p>
27416      * <pre><code>
27417 var cp = new Roo.ColorPalette();
27418 cp.colors[0] = "FF0000";  // change the first box to red
27419 </code></pre>
27420
27421 Or you can provide a custom array of your own for complete control:
27422 <pre><code>
27423 var cp = new Roo.ColorPalette();
27424 cp.colors = ["000000", "993300", "333300"];
27425 </code></pre>
27426      * @type Array
27427      */
27428     colors : [
27429         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27430         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27431         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27432         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27433         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27434     ],
27435
27436     // private
27437     onRender : function(container, position){
27438         var t = new Roo.MasterTemplate(
27439             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27440         );
27441         var c = this.colors;
27442         for(var i = 0, len = c.length; i < len; i++){
27443             t.add([c[i]]);
27444         }
27445         var el = document.createElement("div");
27446         el.className = this.itemCls;
27447         t.overwrite(el);
27448         container.dom.insertBefore(el, position);
27449         this.el = Roo.get(el);
27450         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27451         if(this.clickEvent != 'click'){
27452             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27453         }
27454     },
27455
27456     // private
27457     afterRender : function(){
27458         Roo.ColorPalette.superclass.afterRender.call(this);
27459         if(this.value){
27460             var s = this.value;
27461             this.value = null;
27462             this.select(s);
27463         }
27464     },
27465
27466     // private
27467     handleClick : function(e, t){
27468         e.preventDefault();
27469         if(!this.disabled){
27470             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27471             this.select(c.toUpperCase());
27472         }
27473     },
27474
27475     /**
27476      * Selects the specified color in the palette (fires the select event)
27477      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27478      */
27479     select : function(color){
27480         color = color.replace("#", "");
27481         if(color != this.value || this.allowReselect){
27482             var el = this.el;
27483             if(this.value){
27484                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27485             }
27486             el.child("a.color-"+color).addClass("x-color-palette-sel");
27487             this.value = color;
27488             this.fireEvent("select", this, color);
27489         }
27490     }
27491 });/*
27492  * Based on:
27493  * Ext JS Library 1.1.1
27494  * Copyright(c) 2006-2007, Ext JS, LLC.
27495  *
27496  * Originally Released Under LGPL - original licence link has changed is not relivant.
27497  *
27498  * Fork - LGPL
27499  * <script type="text/javascript">
27500  */
27501  
27502 /**
27503  * @class Roo.DatePicker
27504  * @extends Roo.Component
27505  * Simple date picker class.
27506  * @constructor
27507  * Create a new DatePicker
27508  * @param {Object} config The config object
27509  */
27510 Roo.DatePicker = function(config){
27511     Roo.DatePicker.superclass.constructor.call(this, config);
27512
27513     this.value = config && config.value ?
27514                  config.value.clearTime() : new Date().clearTime();
27515
27516     this.addEvents({
27517         /**
27518              * @event select
27519              * Fires when a date is selected
27520              * @param {DatePicker} this
27521              * @param {Date} date The selected date
27522              */
27523         'select': true,
27524         /**
27525              * @event monthchange
27526              * Fires when the displayed month changes 
27527              * @param {DatePicker} this
27528              * @param {Date} date The selected month
27529              */
27530         'monthchange': true
27531     });
27532
27533     if(this.handler){
27534         this.on("select", this.handler,  this.scope || this);
27535     }
27536     // build the disabledDatesRE
27537     if(!this.disabledDatesRE && this.disabledDates){
27538         var dd = this.disabledDates;
27539         var re = "(?:";
27540         for(var i = 0; i < dd.length; i++){
27541             re += dd[i];
27542             if(i != dd.length-1) {
27543                 re += "|";
27544             }
27545         }
27546         this.disabledDatesRE = new RegExp(re + ")");
27547     }
27548 };
27549
27550 Roo.extend(Roo.DatePicker, Roo.Component, {
27551     /**
27552      * @cfg {String} todayText
27553      * The text to display on the button that selects the current date (defaults to "Today")
27554      */
27555     todayText : "Today",
27556     /**
27557      * @cfg {String} okText
27558      * The text to display on the ok button
27559      */
27560     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27561     /**
27562      * @cfg {String} cancelText
27563      * The text to display on the cancel button
27564      */
27565     cancelText : "Cancel",
27566     /**
27567      * @cfg {String} todayTip
27568      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27569      */
27570     todayTip : "{0} (Spacebar)",
27571     /**
27572      * @cfg {Date} minDate
27573      * Minimum allowable date (JavaScript date object, defaults to null)
27574      */
27575     minDate : null,
27576     /**
27577      * @cfg {Date} maxDate
27578      * Maximum allowable date (JavaScript date object, defaults to null)
27579      */
27580     maxDate : null,
27581     /**
27582      * @cfg {String} minText
27583      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27584      */
27585     minText : "This date is before the minimum date",
27586     /**
27587      * @cfg {String} maxText
27588      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27589      */
27590     maxText : "This date is after the maximum date",
27591     /**
27592      * @cfg {String} format
27593      * The default date format string which can be overriden for localization support.  The format must be
27594      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27595      */
27596     format : "m/d/y",
27597     /**
27598      * @cfg {Array} disabledDays
27599      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27600      */
27601     disabledDays : null,
27602     /**
27603      * @cfg {String} disabledDaysText
27604      * The tooltip to display when the date falls on a disabled day (defaults to "")
27605      */
27606     disabledDaysText : "",
27607     /**
27608      * @cfg {RegExp} disabledDatesRE
27609      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27610      */
27611     disabledDatesRE : null,
27612     /**
27613      * @cfg {String} disabledDatesText
27614      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27615      */
27616     disabledDatesText : "",
27617     /**
27618      * @cfg {Boolean} constrainToViewport
27619      * True to constrain the date picker to the viewport (defaults to true)
27620      */
27621     constrainToViewport : true,
27622     /**
27623      * @cfg {Array} monthNames
27624      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27625      */
27626     monthNames : Date.monthNames,
27627     /**
27628      * @cfg {Array} dayNames
27629      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
27630      */
27631     dayNames : Date.dayNames,
27632     /**
27633      * @cfg {String} nextText
27634      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
27635      */
27636     nextText: 'Next Month (Control+Right)',
27637     /**
27638      * @cfg {String} prevText
27639      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
27640      */
27641     prevText: 'Previous Month (Control+Left)',
27642     /**
27643      * @cfg {String} monthYearText
27644      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
27645      */
27646     monthYearText: 'Choose a month (Control+Up/Down to move years)',
27647     /**
27648      * @cfg {Number} startDay
27649      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
27650      */
27651     startDay : 0,
27652     /**
27653      * @cfg {Bool} showClear
27654      * Show a clear button (usefull for date form elements that can be blank.)
27655      */
27656     
27657     showClear: false,
27658     
27659     /**
27660      * Sets the value of the date field
27661      * @param {Date} value The date to set
27662      */
27663     setValue : function(value){
27664         var old = this.value;
27665         
27666         if (typeof(value) == 'string') {
27667          
27668             value = Date.parseDate(value, this.format);
27669         }
27670         if (!value) {
27671             value = new Date();
27672         }
27673         
27674         this.value = value.clearTime(true);
27675         if(this.el){
27676             this.update(this.value);
27677         }
27678     },
27679
27680     /**
27681      * Gets the current selected value of the date field
27682      * @return {Date} The selected date
27683      */
27684     getValue : function(){
27685         return this.value;
27686     },
27687
27688     // private
27689     focus : function(){
27690         if(this.el){
27691             this.update(this.activeDate);
27692         }
27693     },
27694
27695     // privateval
27696     onRender : function(container, position){
27697         
27698         var m = [
27699              '<table cellspacing="0">',
27700                 '<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>',
27701                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
27702         var dn = this.dayNames;
27703         for(var i = 0; i < 7; i++){
27704             var d = this.startDay+i;
27705             if(d > 6){
27706                 d = d-7;
27707             }
27708             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
27709         }
27710         m[m.length] = "</tr></thead><tbody><tr>";
27711         for(var i = 0; i < 42; i++) {
27712             if(i % 7 == 0 && i != 0){
27713                 m[m.length] = "</tr><tr>";
27714             }
27715             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
27716         }
27717         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
27718             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
27719
27720         var el = document.createElement("div");
27721         el.className = "x-date-picker";
27722         el.innerHTML = m.join("");
27723
27724         container.dom.insertBefore(el, position);
27725
27726         this.el = Roo.get(el);
27727         this.eventEl = Roo.get(el.firstChild);
27728
27729         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
27730             handler: this.showPrevMonth,
27731             scope: this,
27732             preventDefault:true,
27733             stopDefault:true
27734         });
27735
27736         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
27737             handler: this.showNextMonth,
27738             scope: this,
27739             preventDefault:true,
27740             stopDefault:true
27741         });
27742
27743         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
27744
27745         this.monthPicker = this.el.down('div.x-date-mp');
27746         this.monthPicker.enableDisplayMode('block');
27747         
27748         var kn = new Roo.KeyNav(this.eventEl, {
27749             "left" : function(e){
27750                 e.ctrlKey ?
27751                     this.showPrevMonth() :
27752                     this.update(this.activeDate.add("d", -1));
27753             },
27754
27755             "right" : function(e){
27756                 e.ctrlKey ?
27757                     this.showNextMonth() :
27758                     this.update(this.activeDate.add("d", 1));
27759             },
27760
27761             "up" : function(e){
27762                 e.ctrlKey ?
27763                     this.showNextYear() :
27764                     this.update(this.activeDate.add("d", -7));
27765             },
27766
27767             "down" : function(e){
27768                 e.ctrlKey ?
27769                     this.showPrevYear() :
27770                     this.update(this.activeDate.add("d", 7));
27771             },
27772
27773             "pageUp" : function(e){
27774                 this.showNextMonth();
27775             },
27776
27777             "pageDown" : function(e){
27778                 this.showPrevMonth();
27779             },
27780
27781             "enter" : function(e){
27782                 e.stopPropagation();
27783                 return true;
27784             },
27785
27786             scope : this
27787         });
27788
27789         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
27790
27791         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
27792
27793         this.el.unselectable();
27794         
27795         this.cells = this.el.select("table.x-date-inner tbody td");
27796         this.textNodes = this.el.query("table.x-date-inner tbody span");
27797
27798         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
27799             text: "&#160;",
27800             tooltip: this.monthYearText
27801         });
27802
27803         this.mbtn.on('click', this.showMonthPicker, this);
27804         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
27805
27806
27807         var today = (new Date()).dateFormat(this.format);
27808         
27809         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
27810         if (this.showClear) {
27811             baseTb.add( new Roo.Toolbar.Fill());
27812         }
27813         baseTb.add({
27814             text: String.format(this.todayText, today),
27815             tooltip: String.format(this.todayTip, today),
27816             handler: this.selectToday,
27817             scope: this
27818         });
27819         
27820         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
27821             
27822         //});
27823         if (this.showClear) {
27824             
27825             baseTb.add( new Roo.Toolbar.Fill());
27826             baseTb.add({
27827                 text: '&#160;',
27828                 cls: 'x-btn-icon x-btn-clear',
27829                 handler: function() {
27830                     //this.value = '';
27831                     this.fireEvent("select", this, '');
27832                 },
27833                 scope: this
27834             });
27835         }
27836         
27837         
27838         if(Roo.isIE){
27839             this.el.repaint();
27840         }
27841         this.update(this.value);
27842     },
27843
27844     createMonthPicker : function(){
27845         if(!this.monthPicker.dom.firstChild){
27846             var buf = ['<table border="0" cellspacing="0">'];
27847             for(var i = 0; i < 6; i++){
27848                 buf.push(
27849                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
27850                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
27851                     i == 0 ?
27852                     '<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>' :
27853                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
27854                 );
27855             }
27856             buf.push(
27857                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
27858                     this.okText,
27859                     '</button><button type="button" class="x-date-mp-cancel">',
27860                     this.cancelText,
27861                     '</button></td></tr>',
27862                 '</table>'
27863             );
27864             this.monthPicker.update(buf.join(''));
27865             this.monthPicker.on('click', this.onMonthClick, this);
27866             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
27867
27868             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
27869             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
27870
27871             this.mpMonths.each(function(m, a, i){
27872                 i += 1;
27873                 if((i%2) == 0){
27874                     m.dom.xmonth = 5 + Math.round(i * .5);
27875                 }else{
27876                     m.dom.xmonth = Math.round((i-1) * .5);
27877                 }
27878             });
27879         }
27880     },
27881
27882     showMonthPicker : function(){
27883         this.createMonthPicker();
27884         var size = this.el.getSize();
27885         this.monthPicker.setSize(size);
27886         this.monthPicker.child('table').setSize(size);
27887
27888         this.mpSelMonth = (this.activeDate || this.value).getMonth();
27889         this.updateMPMonth(this.mpSelMonth);
27890         this.mpSelYear = (this.activeDate || this.value).getFullYear();
27891         this.updateMPYear(this.mpSelYear);
27892
27893         this.monthPicker.slideIn('t', {duration:.2});
27894     },
27895
27896     updateMPYear : function(y){
27897         this.mpyear = y;
27898         var ys = this.mpYears.elements;
27899         for(var i = 1; i <= 10; i++){
27900             var td = ys[i-1], y2;
27901             if((i%2) == 0){
27902                 y2 = y + Math.round(i * .5);
27903                 td.firstChild.innerHTML = y2;
27904                 td.xyear = y2;
27905             }else{
27906                 y2 = y - (5-Math.round(i * .5));
27907                 td.firstChild.innerHTML = y2;
27908                 td.xyear = y2;
27909             }
27910             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
27911         }
27912     },
27913
27914     updateMPMonth : function(sm){
27915         this.mpMonths.each(function(m, a, i){
27916             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
27917         });
27918     },
27919
27920     selectMPMonth: function(m){
27921         
27922     },
27923
27924     onMonthClick : function(e, t){
27925         e.stopEvent();
27926         var el = new Roo.Element(t), pn;
27927         if(el.is('button.x-date-mp-cancel')){
27928             this.hideMonthPicker();
27929         }
27930         else if(el.is('button.x-date-mp-ok')){
27931             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
27932             this.hideMonthPicker();
27933         }
27934         else if(pn = el.up('td.x-date-mp-month', 2)){
27935             this.mpMonths.removeClass('x-date-mp-sel');
27936             pn.addClass('x-date-mp-sel');
27937             this.mpSelMonth = pn.dom.xmonth;
27938         }
27939         else if(pn = el.up('td.x-date-mp-year', 2)){
27940             this.mpYears.removeClass('x-date-mp-sel');
27941             pn.addClass('x-date-mp-sel');
27942             this.mpSelYear = pn.dom.xyear;
27943         }
27944         else if(el.is('a.x-date-mp-prev')){
27945             this.updateMPYear(this.mpyear-10);
27946         }
27947         else if(el.is('a.x-date-mp-next')){
27948             this.updateMPYear(this.mpyear+10);
27949         }
27950     },
27951
27952     onMonthDblClick : function(e, t){
27953         e.stopEvent();
27954         var el = new Roo.Element(t), pn;
27955         if(pn = el.up('td.x-date-mp-month', 2)){
27956             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
27957             this.hideMonthPicker();
27958         }
27959         else if(pn = el.up('td.x-date-mp-year', 2)){
27960             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
27961             this.hideMonthPicker();
27962         }
27963     },
27964
27965     hideMonthPicker : function(disableAnim){
27966         if(this.monthPicker){
27967             if(disableAnim === true){
27968                 this.monthPicker.hide();
27969             }else{
27970                 this.monthPicker.slideOut('t', {duration:.2});
27971             }
27972         }
27973     },
27974
27975     // private
27976     showPrevMonth : function(e){
27977         this.update(this.activeDate.add("mo", -1));
27978     },
27979
27980     // private
27981     showNextMonth : function(e){
27982         this.update(this.activeDate.add("mo", 1));
27983     },
27984
27985     // private
27986     showPrevYear : function(){
27987         this.update(this.activeDate.add("y", -1));
27988     },
27989
27990     // private
27991     showNextYear : function(){
27992         this.update(this.activeDate.add("y", 1));
27993     },
27994
27995     // private
27996     handleMouseWheel : function(e){
27997         var delta = e.getWheelDelta();
27998         if(delta > 0){
27999             this.showPrevMonth();
28000             e.stopEvent();
28001         } else if(delta < 0){
28002             this.showNextMonth();
28003             e.stopEvent();
28004         }
28005     },
28006
28007     // private
28008     handleDateClick : function(e, t){
28009         e.stopEvent();
28010         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28011             this.setValue(new Date(t.dateValue));
28012             this.fireEvent("select", this, this.value);
28013         }
28014     },
28015
28016     // private
28017     selectToday : function(){
28018         this.setValue(new Date().clearTime());
28019         this.fireEvent("select", this, this.value);
28020     },
28021
28022     // private
28023     update : function(date)
28024     {
28025         var vd = this.activeDate;
28026         this.activeDate = date;
28027         if(vd && this.el){
28028             var t = date.getTime();
28029             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28030                 this.cells.removeClass("x-date-selected");
28031                 this.cells.each(function(c){
28032                    if(c.dom.firstChild.dateValue == t){
28033                        c.addClass("x-date-selected");
28034                        setTimeout(function(){
28035                             try{c.dom.firstChild.focus();}catch(e){}
28036                        }, 50);
28037                        return false;
28038                    }
28039                 });
28040                 return;
28041             }
28042         }
28043         
28044         var days = date.getDaysInMonth();
28045         var firstOfMonth = date.getFirstDateOfMonth();
28046         var startingPos = firstOfMonth.getDay()-this.startDay;
28047
28048         if(startingPos <= this.startDay){
28049             startingPos += 7;
28050         }
28051
28052         var pm = date.add("mo", -1);
28053         var prevStart = pm.getDaysInMonth()-startingPos;
28054
28055         var cells = this.cells.elements;
28056         var textEls = this.textNodes;
28057         days += startingPos;
28058
28059         // convert everything to numbers so it's fast
28060         var day = 86400000;
28061         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28062         var today = new Date().clearTime().getTime();
28063         var sel = date.clearTime().getTime();
28064         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28065         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28066         var ddMatch = this.disabledDatesRE;
28067         var ddText = this.disabledDatesText;
28068         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28069         var ddaysText = this.disabledDaysText;
28070         var format = this.format;
28071
28072         var setCellClass = function(cal, cell){
28073             cell.title = "";
28074             var t = d.getTime();
28075             cell.firstChild.dateValue = t;
28076             if(t == today){
28077                 cell.className += " x-date-today";
28078                 cell.title = cal.todayText;
28079             }
28080             if(t == sel){
28081                 cell.className += " x-date-selected";
28082                 setTimeout(function(){
28083                     try{cell.firstChild.focus();}catch(e){}
28084                 }, 50);
28085             }
28086             // disabling
28087             if(t < min) {
28088                 cell.className = " x-date-disabled";
28089                 cell.title = cal.minText;
28090                 return;
28091             }
28092             if(t > max) {
28093                 cell.className = " x-date-disabled";
28094                 cell.title = cal.maxText;
28095                 return;
28096             }
28097             if(ddays){
28098                 if(ddays.indexOf(d.getDay()) != -1){
28099                     cell.title = ddaysText;
28100                     cell.className = " x-date-disabled";
28101                 }
28102             }
28103             if(ddMatch && format){
28104                 var fvalue = d.dateFormat(format);
28105                 if(ddMatch.test(fvalue)){
28106                     cell.title = ddText.replace("%0", fvalue);
28107                     cell.className = " x-date-disabled";
28108                 }
28109             }
28110         };
28111
28112         var i = 0;
28113         for(; i < startingPos; i++) {
28114             textEls[i].innerHTML = (++prevStart);
28115             d.setDate(d.getDate()+1);
28116             cells[i].className = "x-date-prevday";
28117             setCellClass(this, cells[i]);
28118         }
28119         for(; i < days; i++){
28120             intDay = i - startingPos + 1;
28121             textEls[i].innerHTML = (intDay);
28122             d.setDate(d.getDate()+1);
28123             cells[i].className = "x-date-active";
28124             setCellClass(this, cells[i]);
28125         }
28126         var extraDays = 0;
28127         for(; i < 42; i++) {
28128              textEls[i].innerHTML = (++extraDays);
28129              d.setDate(d.getDate()+1);
28130              cells[i].className = "x-date-nextday";
28131              setCellClass(this, cells[i]);
28132         }
28133
28134         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28135         this.fireEvent('monthchange', this, date);
28136         
28137         if(!this.internalRender){
28138             var main = this.el.dom.firstChild;
28139             var w = main.offsetWidth;
28140             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28141             Roo.fly(main).setWidth(w);
28142             this.internalRender = true;
28143             // opera does not respect the auto grow header center column
28144             // then, after it gets a width opera refuses to recalculate
28145             // without a second pass
28146             if(Roo.isOpera && !this.secondPass){
28147                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28148                 this.secondPass = true;
28149                 this.update.defer(10, this, [date]);
28150             }
28151         }
28152         
28153         
28154     }
28155 });        /*
28156  * Based on:
28157  * Ext JS Library 1.1.1
28158  * Copyright(c) 2006-2007, Ext JS, LLC.
28159  *
28160  * Originally Released Under LGPL - original licence link has changed is not relivant.
28161  *
28162  * Fork - LGPL
28163  * <script type="text/javascript">
28164  */
28165 /**
28166  * @class Roo.TabPanel
28167  * @extends Roo.util.Observable
28168  * A lightweight tab container.
28169  * <br><br>
28170  * Usage:
28171  * <pre><code>
28172 // basic tabs 1, built from existing content
28173 var tabs = new Roo.TabPanel("tabs1");
28174 tabs.addTab("script", "View Script");
28175 tabs.addTab("markup", "View Markup");
28176 tabs.activate("script");
28177
28178 // more advanced tabs, built from javascript
28179 var jtabs = new Roo.TabPanel("jtabs");
28180 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28181
28182 // set up the UpdateManager
28183 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28184 var updater = tab2.getUpdateManager();
28185 updater.setDefaultUrl("ajax1.htm");
28186 tab2.on('activate', updater.refresh, updater, true);
28187
28188 // Use setUrl for Ajax loading
28189 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28190 tab3.setUrl("ajax2.htm", null, true);
28191
28192 // Disabled tab
28193 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28194 tab4.disable();
28195
28196 jtabs.activate("jtabs-1");
28197  * </code></pre>
28198  * @constructor
28199  * Create a new TabPanel.
28200  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28201  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28202  */
28203 Roo.TabPanel = function(container, config){
28204     /**
28205     * The container element for this TabPanel.
28206     * @type Roo.Element
28207     */
28208     this.el = Roo.get(container, true);
28209     if(config){
28210         if(typeof config == "boolean"){
28211             this.tabPosition = config ? "bottom" : "top";
28212         }else{
28213             Roo.apply(this, config);
28214         }
28215     }
28216     if(this.tabPosition == "bottom"){
28217         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28218         this.el.addClass("x-tabs-bottom");
28219     }
28220     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28221     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28222     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28223     if(Roo.isIE){
28224         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28225     }
28226     if(this.tabPosition != "bottom"){
28227         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28228          * @type Roo.Element
28229          */
28230         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28231         this.el.addClass("x-tabs-top");
28232     }
28233     this.items = [];
28234
28235     this.bodyEl.setStyle("position", "relative");
28236
28237     this.active = null;
28238     this.activateDelegate = this.activate.createDelegate(this);
28239
28240     this.addEvents({
28241         /**
28242          * @event tabchange
28243          * Fires when the active tab changes
28244          * @param {Roo.TabPanel} this
28245          * @param {Roo.TabPanelItem} activePanel The new active tab
28246          */
28247         "tabchange": true,
28248         /**
28249          * @event beforetabchange
28250          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28251          * @param {Roo.TabPanel} this
28252          * @param {Object} e Set cancel to true on this object to cancel the tab change
28253          * @param {Roo.TabPanelItem} tab The tab being changed to
28254          */
28255         "beforetabchange" : true
28256     });
28257
28258     Roo.EventManager.onWindowResize(this.onResize, this);
28259     this.cpad = this.el.getPadding("lr");
28260     this.hiddenCount = 0;
28261
28262
28263     // toolbar on the tabbar support...
28264     if (this.toolbar) {
28265         var tcfg = this.toolbar;
28266         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28267         this.toolbar = new Roo.Toolbar(tcfg);
28268         if (Roo.isSafari) {
28269             var tbl = tcfg.container.child('table', true);
28270             tbl.setAttribute('width', '100%');
28271         }
28272         
28273     }
28274    
28275
28276
28277     Roo.TabPanel.superclass.constructor.call(this);
28278 };
28279
28280 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28281     /*
28282      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28283      */
28284     tabPosition : "top",
28285     /*
28286      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28287      */
28288     currentTabWidth : 0,
28289     /*
28290      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28291      */
28292     minTabWidth : 40,
28293     /*
28294      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28295      */
28296     maxTabWidth : 250,
28297     /*
28298      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28299      */
28300     preferredTabWidth : 175,
28301     /*
28302      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28303      */
28304     resizeTabs : false,
28305     /*
28306      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28307      */
28308     monitorResize : true,
28309     /*
28310      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28311      */
28312     toolbar : false,
28313
28314     /**
28315      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28316      * @param {String} id The id of the div to use <b>or create</b>
28317      * @param {String} text The text for the tab
28318      * @param {String} content (optional) Content to put in the TabPanelItem body
28319      * @param {Boolean} closable (optional) True to create a close icon on the tab
28320      * @return {Roo.TabPanelItem} The created TabPanelItem
28321      */
28322     addTab : function(id, text, content, closable){
28323         var item = new Roo.TabPanelItem(this, id, text, closable);
28324         this.addTabItem(item);
28325         if(content){
28326             item.setContent(content);
28327         }
28328         return item;
28329     },
28330
28331     /**
28332      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28333      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28334      * @return {Roo.TabPanelItem}
28335      */
28336     getTab : function(id){
28337         return this.items[id];
28338     },
28339
28340     /**
28341      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28342      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28343      */
28344     hideTab : function(id){
28345         var t = this.items[id];
28346         if(!t.isHidden()){
28347            t.setHidden(true);
28348            this.hiddenCount++;
28349            this.autoSizeTabs();
28350         }
28351     },
28352
28353     /**
28354      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28355      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28356      */
28357     unhideTab : function(id){
28358         var t = this.items[id];
28359         if(t.isHidden()){
28360            t.setHidden(false);
28361            this.hiddenCount--;
28362            this.autoSizeTabs();
28363         }
28364     },
28365
28366     /**
28367      * Adds an existing {@link Roo.TabPanelItem}.
28368      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28369      */
28370     addTabItem : function(item){
28371         this.items[item.id] = item;
28372         this.items.push(item);
28373         if(this.resizeTabs){
28374            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28375            this.autoSizeTabs();
28376         }else{
28377             item.autoSize();
28378         }
28379     },
28380
28381     /**
28382      * Removes a {@link Roo.TabPanelItem}.
28383      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28384      */
28385     removeTab : function(id){
28386         var items = this.items;
28387         var tab = items[id];
28388         if(!tab) { return; }
28389         var index = items.indexOf(tab);
28390         if(this.active == tab && items.length > 1){
28391             var newTab = this.getNextAvailable(index);
28392             if(newTab) {
28393                 newTab.activate();
28394             }
28395         }
28396         this.stripEl.dom.removeChild(tab.pnode.dom);
28397         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28398             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28399         }
28400         items.splice(index, 1);
28401         delete this.items[tab.id];
28402         tab.fireEvent("close", tab);
28403         tab.purgeListeners();
28404         this.autoSizeTabs();
28405     },
28406
28407     getNextAvailable : function(start){
28408         var items = this.items;
28409         var index = start;
28410         // look for a next tab that will slide over to
28411         // replace the one being removed
28412         while(index < items.length){
28413             var item = items[++index];
28414             if(item && !item.isHidden()){
28415                 return item;
28416             }
28417         }
28418         // if one isn't found select the previous tab (on the left)
28419         index = start;
28420         while(index >= 0){
28421             var item = items[--index];
28422             if(item && !item.isHidden()){
28423                 return item;
28424             }
28425         }
28426         return null;
28427     },
28428
28429     /**
28430      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28431      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28432      */
28433     disableTab : function(id){
28434         var tab = this.items[id];
28435         if(tab && this.active != tab){
28436             tab.disable();
28437         }
28438     },
28439
28440     /**
28441      * Enables a {@link Roo.TabPanelItem} that is disabled.
28442      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28443      */
28444     enableTab : function(id){
28445         var tab = this.items[id];
28446         tab.enable();
28447     },
28448
28449     /**
28450      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28451      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28452      * @return {Roo.TabPanelItem} The TabPanelItem.
28453      */
28454     activate : function(id){
28455         var tab = this.items[id];
28456         if(!tab){
28457             return null;
28458         }
28459         if(tab == this.active || tab.disabled){
28460             return tab;
28461         }
28462         var e = {};
28463         this.fireEvent("beforetabchange", this, e, tab);
28464         if(e.cancel !== true && !tab.disabled){
28465             if(this.active){
28466                 this.active.hide();
28467             }
28468             this.active = this.items[id];
28469             this.active.show();
28470             this.fireEvent("tabchange", this, this.active);
28471         }
28472         return tab;
28473     },
28474
28475     /**
28476      * Gets the active {@link Roo.TabPanelItem}.
28477      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28478      */
28479     getActiveTab : function(){
28480         return this.active;
28481     },
28482
28483     /**
28484      * Updates the tab body element to fit the height of the container element
28485      * for overflow scrolling
28486      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28487      */
28488     syncHeight : function(targetHeight){
28489         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28490         var bm = this.bodyEl.getMargins();
28491         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28492         this.bodyEl.setHeight(newHeight);
28493         return newHeight;
28494     },
28495
28496     onResize : function(){
28497         if(this.monitorResize){
28498             this.autoSizeTabs();
28499         }
28500     },
28501
28502     /**
28503      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28504      */
28505     beginUpdate : function(){
28506         this.updating = true;
28507     },
28508
28509     /**
28510      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28511      */
28512     endUpdate : function(){
28513         this.updating = false;
28514         this.autoSizeTabs();
28515     },
28516
28517     /**
28518      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28519      */
28520     autoSizeTabs : function(){
28521         var count = this.items.length;
28522         var vcount = count - this.hiddenCount;
28523         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28524             return;
28525         }
28526         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28527         var availWidth = Math.floor(w / vcount);
28528         var b = this.stripBody;
28529         if(b.getWidth() > w){
28530             var tabs = this.items;
28531             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28532             if(availWidth < this.minTabWidth){
28533                 /*if(!this.sleft){    // incomplete scrolling code
28534                     this.createScrollButtons();
28535                 }
28536                 this.showScroll();
28537                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28538             }
28539         }else{
28540             if(this.currentTabWidth < this.preferredTabWidth){
28541                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28542             }
28543         }
28544     },
28545
28546     /**
28547      * Returns the number of tabs in this TabPanel.
28548      * @return {Number}
28549      */
28550      getCount : function(){
28551          return this.items.length;
28552      },
28553
28554     /**
28555      * Resizes all the tabs to the passed width
28556      * @param {Number} The new width
28557      */
28558     setTabWidth : function(width){
28559         this.currentTabWidth = width;
28560         for(var i = 0, len = this.items.length; i < len; i++) {
28561                 if(!this.items[i].isHidden()) {
28562                 this.items[i].setWidth(width);
28563             }
28564         }
28565     },
28566
28567     /**
28568      * Destroys this TabPanel
28569      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28570      */
28571     destroy : function(removeEl){
28572         Roo.EventManager.removeResizeListener(this.onResize, this);
28573         for(var i = 0, len = this.items.length; i < len; i++){
28574             this.items[i].purgeListeners();
28575         }
28576         if(removeEl === true){
28577             this.el.update("");
28578             this.el.remove();
28579         }
28580     }
28581 });
28582
28583 /**
28584  * @class Roo.TabPanelItem
28585  * @extends Roo.util.Observable
28586  * Represents an individual item (tab plus body) in a TabPanel.
28587  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28588  * @param {String} id The id of this TabPanelItem
28589  * @param {String} text The text for the tab of this TabPanelItem
28590  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28591  */
28592 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28593     /**
28594      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28595      * @type Roo.TabPanel
28596      */
28597     this.tabPanel = tabPanel;
28598     /**
28599      * The id for this TabPanelItem
28600      * @type String
28601      */
28602     this.id = id;
28603     /** @private */
28604     this.disabled = false;
28605     /** @private */
28606     this.text = text;
28607     /** @private */
28608     this.loaded = false;
28609     this.closable = closable;
28610
28611     /**
28612      * The body element for this TabPanelItem.
28613      * @type Roo.Element
28614      */
28615     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28616     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28617     this.bodyEl.setStyle("display", "block");
28618     this.bodyEl.setStyle("zoom", "1");
28619     this.hideAction();
28620
28621     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28622     /** @private */
28623     this.el = Roo.get(els.el, true);
28624     this.inner = Roo.get(els.inner, true);
28625     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
28626     this.pnode = Roo.get(els.el.parentNode, true);
28627     this.el.on("mousedown", this.onTabMouseDown, this);
28628     this.el.on("click", this.onTabClick, this);
28629     /** @private */
28630     if(closable){
28631         var c = Roo.get(els.close, true);
28632         c.dom.title = this.closeText;
28633         c.addClassOnOver("close-over");
28634         c.on("click", this.closeClick, this);
28635      }
28636
28637     this.addEvents({
28638          /**
28639          * @event activate
28640          * Fires when this tab becomes the active tab.
28641          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28642          * @param {Roo.TabPanelItem} this
28643          */
28644         "activate": true,
28645         /**
28646          * @event beforeclose
28647          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
28648          * @param {Roo.TabPanelItem} this
28649          * @param {Object} e Set cancel to true on this object to cancel the close.
28650          */
28651         "beforeclose": true,
28652         /**
28653          * @event close
28654          * Fires when this tab is closed.
28655          * @param {Roo.TabPanelItem} this
28656          */
28657          "close": true,
28658         /**
28659          * @event deactivate
28660          * Fires when this tab is no longer the active tab.
28661          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28662          * @param {Roo.TabPanelItem} this
28663          */
28664          "deactivate" : true
28665     });
28666     this.hidden = false;
28667
28668     Roo.TabPanelItem.superclass.constructor.call(this);
28669 };
28670
28671 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
28672     purgeListeners : function(){
28673        Roo.util.Observable.prototype.purgeListeners.call(this);
28674        this.el.removeAllListeners();
28675     },
28676     /**
28677      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
28678      */
28679     show : function(){
28680         this.pnode.addClass("on");
28681         this.showAction();
28682         if(Roo.isOpera){
28683             this.tabPanel.stripWrap.repaint();
28684         }
28685         this.fireEvent("activate", this.tabPanel, this);
28686     },
28687
28688     /**
28689      * Returns true if this tab is the active tab.
28690      * @return {Boolean}
28691      */
28692     isActive : function(){
28693         return this.tabPanel.getActiveTab() == this;
28694     },
28695
28696     /**
28697      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
28698      */
28699     hide : function(){
28700         this.pnode.removeClass("on");
28701         this.hideAction();
28702         this.fireEvent("deactivate", this.tabPanel, this);
28703     },
28704
28705     hideAction : function(){
28706         this.bodyEl.hide();
28707         this.bodyEl.setStyle("position", "absolute");
28708         this.bodyEl.setLeft("-20000px");
28709         this.bodyEl.setTop("-20000px");
28710     },
28711
28712     showAction : function(){
28713         this.bodyEl.setStyle("position", "relative");
28714         this.bodyEl.setTop("");
28715         this.bodyEl.setLeft("");
28716         this.bodyEl.show();
28717     },
28718
28719     /**
28720      * Set the tooltip for the tab.
28721      * @param {String} tooltip The tab's tooltip
28722      */
28723     setTooltip : function(text){
28724         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
28725             this.textEl.dom.qtip = text;
28726             this.textEl.dom.removeAttribute('title');
28727         }else{
28728             this.textEl.dom.title = text;
28729         }
28730     },
28731
28732     onTabClick : function(e){
28733         e.preventDefault();
28734         this.tabPanel.activate(this.id);
28735     },
28736
28737     onTabMouseDown : function(e){
28738         e.preventDefault();
28739         this.tabPanel.activate(this.id);
28740     },
28741
28742     getWidth : function(){
28743         return this.inner.getWidth();
28744     },
28745
28746     setWidth : function(width){
28747         var iwidth = width - this.pnode.getPadding("lr");
28748         this.inner.setWidth(iwidth);
28749         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
28750         this.pnode.setWidth(width);
28751     },
28752
28753     /**
28754      * Show or hide the tab
28755      * @param {Boolean} hidden True to hide or false to show.
28756      */
28757     setHidden : function(hidden){
28758         this.hidden = hidden;
28759         this.pnode.setStyle("display", hidden ? "none" : "");
28760     },
28761
28762     /**
28763      * Returns true if this tab is "hidden"
28764      * @return {Boolean}
28765      */
28766     isHidden : function(){
28767         return this.hidden;
28768     },
28769
28770     /**
28771      * Returns the text for this tab
28772      * @return {String}
28773      */
28774     getText : function(){
28775         return this.text;
28776     },
28777
28778     autoSize : function(){
28779         //this.el.beginMeasure();
28780         this.textEl.setWidth(1);
28781         /*
28782          *  #2804 [new] Tabs in Roojs
28783          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
28784          */
28785         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
28786         //this.el.endMeasure();
28787     },
28788
28789     /**
28790      * Sets the text for the tab (Note: this also sets the tooltip text)
28791      * @param {String} text The tab's text and tooltip
28792      */
28793     setText : function(text){
28794         this.text = text;
28795         this.textEl.update(text);
28796         this.setTooltip(text);
28797         if(!this.tabPanel.resizeTabs){
28798             this.autoSize();
28799         }
28800     },
28801     /**
28802      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
28803      */
28804     activate : function(){
28805         this.tabPanel.activate(this.id);
28806     },
28807
28808     /**
28809      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
28810      */
28811     disable : function(){
28812         if(this.tabPanel.active != this){
28813             this.disabled = true;
28814             this.pnode.addClass("disabled");
28815         }
28816     },
28817
28818     /**
28819      * Enables this TabPanelItem if it was previously disabled.
28820      */
28821     enable : function(){
28822         this.disabled = false;
28823         this.pnode.removeClass("disabled");
28824     },
28825
28826     /**
28827      * Sets the content for this TabPanelItem.
28828      * @param {String} content The content
28829      * @param {Boolean} loadScripts true to look for and load scripts
28830      */
28831     setContent : function(content, loadScripts){
28832         this.bodyEl.update(content, loadScripts);
28833     },
28834
28835     /**
28836      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
28837      * @return {Roo.UpdateManager} The UpdateManager
28838      */
28839     getUpdateManager : function(){
28840         return this.bodyEl.getUpdateManager();
28841     },
28842
28843     /**
28844      * Set a URL to be used to load the content for this TabPanelItem.
28845      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
28846      * @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)
28847      * @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)
28848      * @return {Roo.UpdateManager} The UpdateManager
28849      */
28850     setUrl : function(url, params, loadOnce){
28851         if(this.refreshDelegate){
28852             this.un('activate', this.refreshDelegate);
28853         }
28854         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
28855         this.on("activate", this.refreshDelegate);
28856         return this.bodyEl.getUpdateManager();
28857     },
28858
28859     /** @private */
28860     _handleRefresh : function(url, params, loadOnce){
28861         if(!loadOnce || !this.loaded){
28862             var updater = this.bodyEl.getUpdateManager();
28863             updater.update(url, params, this._setLoaded.createDelegate(this));
28864         }
28865     },
28866
28867     /**
28868      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
28869      *   Will fail silently if the setUrl method has not been called.
28870      *   This does not activate the panel, just updates its content.
28871      */
28872     refresh : function(){
28873         if(this.refreshDelegate){
28874            this.loaded = false;
28875            this.refreshDelegate();
28876         }
28877     },
28878
28879     /** @private */
28880     _setLoaded : function(){
28881         this.loaded = true;
28882     },
28883
28884     /** @private */
28885     closeClick : function(e){
28886         var o = {};
28887         e.stopEvent();
28888         this.fireEvent("beforeclose", this, o);
28889         if(o.cancel !== true){
28890             this.tabPanel.removeTab(this.id);
28891         }
28892     },
28893     /**
28894      * The text displayed in the tooltip for the close icon.
28895      * @type String
28896      */
28897     closeText : "Close this tab"
28898 });
28899
28900 /** @private */
28901 Roo.TabPanel.prototype.createStrip = function(container){
28902     var strip = document.createElement("div");
28903     strip.className = "x-tabs-wrap";
28904     container.appendChild(strip);
28905     return strip;
28906 };
28907 /** @private */
28908 Roo.TabPanel.prototype.createStripList = function(strip){
28909     // div wrapper for retard IE
28910     // returns the "tr" element.
28911     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
28912         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
28913         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
28914     return strip.firstChild.firstChild.firstChild.firstChild;
28915 };
28916 /** @private */
28917 Roo.TabPanel.prototype.createBody = function(container){
28918     var body = document.createElement("div");
28919     Roo.id(body, "tab-body");
28920     Roo.fly(body).addClass("x-tabs-body");
28921     container.appendChild(body);
28922     return body;
28923 };
28924 /** @private */
28925 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
28926     var body = Roo.getDom(id);
28927     if(!body){
28928         body = document.createElement("div");
28929         body.id = id;
28930     }
28931     Roo.fly(body).addClass("x-tabs-item-body");
28932     bodyEl.insertBefore(body, bodyEl.firstChild);
28933     return body;
28934 };
28935 /** @private */
28936 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
28937     var td = document.createElement("td");
28938     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
28939     //stripEl.appendChild(td);
28940     if(closable){
28941         td.className = "x-tabs-closable";
28942         if(!this.closeTpl){
28943             this.closeTpl = new Roo.Template(
28944                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
28945                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
28946                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
28947             );
28948         }
28949         var el = this.closeTpl.overwrite(td, {"text": text});
28950         var close = el.getElementsByTagName("div")[0];
28951         var inner = el.getElementsByTagName("em")[0];
28952         return {"el": el, "close": close, "inner": inner};
28953     } else {
28954         if(!this.tabTpl){
28955             this.tabTpl = new Roo.Template(
28956                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
28957                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
28958             );
28959         }
28960         var el = this.tabTpl.overwrite(td, {"text": text});
28961         var inner = el.getElementsByTagName("em")[0];
28962         return {"el": el, "inner": inner};
28963     }
28964 };/*
28965  * Based on:
28966  * Ext JS Library 1.1.1
28967  * Copyright(c) 2006-2007, Ext JS, LLC.
28968  *
28969  * Originally Released Under LGPL - original licence link has changed is not relivant.
28970  *
28971  * Fork - LGPL
28972  * <script type="text/javascript">
28973  */
28974
28975 /**
28976  * @class Roo.Button
28977  * @extends Roo.util.Observable
28978  * Simple Button class
28979  * @cfg {String} text The button text
28980  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
28981  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
28982  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
28983  * @cfg {Object} scope The scope of the handler
28984  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
28985  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
28986  * @cfg {Boolean} hidden True to start hidden (defaults to false)
28987  * @cfg {Boolean} disabled True to start disabled (defaults to false)
28988  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
28989  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
28990    applies if enableToggle = true)
28991  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
28992  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
28993   an {@link Roo.util.ClickRepeater} config object (defaults to false).
28994  * @constructor
28995  * Create a new button
28996  * @param {Object} config The config object
28997  */
28998 Roo.Button = function(renderTo, config)
28999 {
29000     if (!config) {
29001         config = renderTo;
29002         renderTo = config.renderTo || false;
29003     }
29004     
29005     Roo.apply(this, config);
29006     this.addEvents({
29007         /**
29008              * @event click
29009              * Fires when this button is clicked
29010              * @param {Button} this
29011              * @param {EventObject} e The click event
29012              */
29013             "click" : true,
29014         /**
29015              * @event toggle
29016              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29017              * @param {Button} this
29018              * @param {Boolean} pressed
29019              */
29020             "toggle" : true,
29021         /**
29022              * @event mouseover
29023              * Fires when the mouse hovers over the button
29024              * @param {Button} this
29025              * @param {Event} e The event object
29026              */
29027         'mouseover' : true,
29028         /**
29029              * @event mouseout
29030              * Fires when the mouse exits the button
29031              * @param {Button} this
29032              * @param {Event} e The event object
29033              */
29034         'mouseout': true,
29035          /**
29036              * @event render
29037              * Fires when the button is rendered
29038              * @param {Button} this
29039              */
29040         'render': true
29041     });
29042     if(this.menu){
29043         this.menu = Roo.menu.MenuMgr.get(this.menu);
29044     }
29045     // register listeners first!!  - so render can be captured..
29046     Roo.util.Observable.call(this);
29047     if(renderTo){
29048         this.render(renderTo);
29049     }
29050     
29051   
29052 };
29053
29054 Roo.extend(Roo.Button, Roo.util.Observable, {
29055     /**
29056      * 
29057      */
29058     
29059     /**
29060      * Read-only. True if this button is hidden
29061      * @type Boolean
29062      */
29063     hidden : false,
29064     /**
29065      * Read-only. True if this button is disabled
29066      * @type Boolean
29067      */
29068     disabled : false,
29069     /**
29070      * Read-only. True if this button is pressed (only if enableToggle = true)
29071      * @type Boolean
29072      */
29073     pressed : false,
29074
29075     /**
29076      * @cfg {Number} tabIndex 
29077      * The DOM tabIndex for this button (defaults to undefined)
29078      */
29079     tabIndex : undefined,
29080
29081     /**
29082      * @cfg {Boolean} enableToggle
29083      * True to enable pressed/not pressed toggling (defaults to false)
29084      */
29085     enableToggle: false,
29086     /**
29087      * @cfg {Mixed} menu
29088      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29089      */
29090     menu : undefined,
29091     /**
29092      * @cfg {String} menuAlign
29093      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29094      */
29095     menuAlign : "tl-bl?",
29096
29097     /**
29098      * @cfg {String} iconCls
29099      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29100      */
29101     iconCls : undefined,
29102     /**
29103      * @cfg {String} type
29104      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29105      */
29106     type : 'button',
29107
29108     // private
29109     menuClassTarget: 'tr',
29110
29111     /**
29112      * @cfg {String} clickEvent
29113      * The type of event to map to the button's event handler (defaults to 'click')
29114      */
29115     clickEvent : 'click',
29116
29117     /**
29118      * @cfg {Boolean} handleMouseEvents
29119      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29120      */
29121     handleMouseEvents : true,
29122
29123     /**
29124      * @cfg {String} tooltipType
29125      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29126      */
29127     tooltipType : 'qtip',
29128
29129     /**
29130      * @cfg {String} cls
29131      * A CSS class to apply to the button's main element.
29132      */
29133     
29134     /**
29135      * @cfg {Roo.Template} template (Optional)
29136      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29137      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29138      * require code modifications if required elements (e.g. a button) aren't present.
29139      */
29140
29141     // private
29142     render : function(renderTo){
29143         var btn;
29144         if(this.hideParent){
29145             this.parentEl = Roo.get(renderTo);
29146         }
29147         if(!this.dhconfig){
29148             if(!this.template){
29149                 if(!Roo.Button.buttonTemplate){
29150                     // hideous table template
29151                     Roo.Button.buttonTemplate = new Roo.Template(
29152                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29153                         '<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>',
29154                         "</tr></tbody></table>");
29155                 }
29156                 this.template = Roo.Button.buttonTemplate;
29157             }
29158             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29159             var btnEl = btn.child("button:first");
29160             btnEl.on('focus', this.onFocus, this);
29161             btnEl.on('blur', this.onBlur, this);
29162             if(this.cls){
29163                 btn.addClass(this.cls);
29164             }
29165             if(this.icon){
29166                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29167             }
29168             if(this.iconCls){
29169                 btnEl.addClass(this.iconCls);
29170                 if(!this.cls){
29171                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29172                 }
29173             }
29174             if(this.tabIndex !== undefined){
29175                 btnEl.dom.tabIndex = this.tabIndex;
29176             }
29177             if(this.tooltip){
29178                 if(typeof this.tooltip == 'object'){
29179                     Roo.QuickTips.tips(Roo.apply({
29180                           target: btnEl.id
29181                     }, this.tooltip));
29182                 } else {
29183                     btnEl.dom[this.tooltipType] = this.tooltip;
29184                 }
29185             }
29186         }else{
29187             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29188         }
29189         this.el = btn;
29190         if(this.id){
29191             this.el.dom.id = this.el.id = this.id;
29192         }
29193         if(this.menu){
29194             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29195             this.menu.on("show", this.onMenuShow, this);
29196             this.menu.on("hide", this.onMenuHide, this);
29197         }
29198         btn.addClass("x-btn");
29199         if(Roo.isIE && !Roo.isIE7){
29200             this.autoWidth.defer(1, this);
29201         }else{
29202             this.autoWidth();
29203         }
29204         if(this.handleMouseEvents){
29205             btn.on("mouseover", this.onMouseOver, this);
29206             btn.on("mouseout", this.onMouseOut, this);
29207             btn.on("mousedown", this.onMouseDown, this);
29208         }
29209         btn.on(this.clickEvent, this.onClick, this);
29210         //btn.on("mouseup", this.onMouseUp, this);
29211         if(this.hidden){
29212             this.hide();
29213         }
29214         if(this.disabled){
29215             this.disable();
29216         }
29217         Roo.ButtonToggleMgr.register(this);
29218         if(this.pressed){
29219             this.el.addClass("x-btn-pressed");
29220         }
29221         if(this.repeat){
29222             var repeater = new Roo.util.ClickRepeater(btn,
29223                 typeof this.repeat == "object" ? this.repeat : {}
29224             );
29225             repeater.on("click", this.onClick,  this);
29226         }
29227         
29228         this.fireEvent('render', this);
29229         
29230     },
29231     /**
29232      * Returns the button's underlying element
29233      * @return {Roo.Element} The element
29234      */
29235     getEl : function(){
29236         return this.el;  
29237     },
29238     
29239     /**
29240      * Destroys this Button and removes any listeners.
29241      */
29242     destroy : function(){
29243         Roo.ButtonToggleMgr.unregister(this);
29244         this.el.removeAllListeners();
29245         this.purgeListeners();
29246         this.el.remove();
29247     },
29248
29249     // private
29250     autoWidth : function(){
29251         if(this.el){
29252             this.el.setWidth("auto");
29253             if(Roo.isIE7 && Roo.isStrict){
29254                 var ib = this.el.child('button');
29255                 if(ib && ib.getWidth() > 20){
29256                     ib.clip();
29257                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29258                 }
29259             }
29260             if(this.minWidth){
29261                 if(this.hidden){
29262                     this.el.beginMeasure();
29263                 }
29264                 if(this.el.getWidth() < this.minWidth){
29265                     this.el.setWidth(this.minWidth);
29266                 }
29267                 if(this.hidden){
29268                     this.el.endMeasure();
29269                 }
29270             }
29271         }
29272     },
29273
29274     /**
29275      * Assigns this button's click handler
29276      * @param {Function} handler The function to call when the button is clicked
29277      * @param {Object} scope (optional) Scope for the function passed in
29278      */
29279     setHandler : function(handler, scope){
29280         this.handler = handler;
29281         this.scope = scope;  
29282     },
29283     
29284     /**
29285      * Sets this button's text
29286      * @param {String} text The button text
29287      */
29288     setText : function(text){
29289         this.text = text;
29290         if(this.el){
29291             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29292         }
29293         this.autoWidth();
29294     },
29295     
29296     /**
29297      * Gets the text for this button
29298      * @return {String} The button text
29299      */
29300     getText : function(){
29301         return this.text;  
29302     },
29303     
29304     /**
29305      * Show this button
29306      */
29307     show: function(){
29308         this.hidden = false;
29309         if(this.el){
29310             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29311         }
29312     },
29313     
29314     /**
29315      * Hide this button
29316      */
29317     hide: function(){
29318         this.hidden = true;
29319         if(this.el){
29320             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29321         }
29322     },
29323     
29324     /**
29325      * Convenience function for boolean show/hide
29326      * @param {Boolean} visible True to show, false to hide
29327      */
29328     setVisible: function(visible){
29329         if(visible) {
29330             this.show();
29331         }else{
29332             this.hide();
29333         }
29334     },
29335     
29336     /**
29337      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29338      * @param {Boolean} state (optional) Force a particular state
29339      */
29340     toggle : function(state){
29341         state = state === undefined ? !this.pressed : state;
29342         if(state != this.pressed){
29343             if(state){
29344                 this.el.addClass("x-btn-pressed");
29345                 this.pressed = true;
29346                 this.fireEvent("toggle", this, true);
29347             }else{
29348                 this.el.removeClass("x-btn-pressed");
29349                 this.pressed = false;
29350                 this.fireEvent("toggle", this, false);
29351             }
29352             if(this.toggleHandler){
29353                 this.toggleHandler.call(this.scope || this, this, state);
29354             }
29355         }
29356     },
29357     
29358     /**
29359      * Focus the button
29360      */
29361     focus : function(){
29362         this.el.child('button:first').focus();
29363     },
29364     
29365     /**
29366      * Disable this button
29367      */
29368     disable : function(){
29369         if(this.el){
29370             this.el.addClass("x-btn-disabled");
29371         }
29372         this.disabled = true;
29373     },
29374     
29375     /**
29376      * Enable this button
29377      */
29378     enable : function(){
29379         if(this.el){
29380             this.el.removeClass("x-btn-disabled");
29381         }
29382         this.disabled = false;
29383     },
29384
29385     /**
29386      * Convenience function for boolean enable/disable
29387      * @param {Boolean} enabled True to enable, false to disable
29388      */
29389     setDisabled : function(v){
29390         this[v !== true ? "enable" : "disable"]();
29391     },
29392
29393     // private
29394     onClick : function(e)
29395     {
29396         if(e){
29397             e.preventDefault();
29398         }
29399         if(e.button != 0){
29400             return;
29401         }
29402         if(!this.disabled){
29403             if(this.enableToggle){
29404                 this.toggle();
29405             }
29406             if(this.menu && !this.menu.isVisible()){
29407                 this.menu.show(this.el, this.menuAlign);
29408             }
29409             this.fireEvent("click", this, e);
29410             if(this.handler){
29411                 this.el.removeClass("x-btn-over");
29412                 this.handler.call(this.scope || this, this, e);
29413             }
29414         }
29415     },
29416     // private
29417     onMouseOver : function(e){
29418         if(!this.disabled){
29419             this.el.addClass("x-btn-over");
29420             this.fireEvent('mouseover', this, e);
29421         }
29422     },
29423     // private
29424     onMouseOut : function(e){
29425         if(!e.within(this.el,  true)){
29426             this.el.removeClass("x-btn-over");
29427             this.fireEvent('mouseout', this, e);
29428         }
29429     },
29430     // private
29431     onFocus : function(e){
29432         if(!this.disabled){
29433             this.el.addClass("x-btn-focus");
29434         }
29435     },
29436     // private
29437     onBlur : function(e){
29438         this.el.removeClass("x-btn-focus");
29439     },
29440     // private
29441     onMouseDown : function(e){
29442         if(!this.disabled && e.button == 0){
29443             this.el.addClass("x-btn-click");
29444             Roo.get(document).on('mouseup', this.onMouseUp, this);
29445         }
29446     },
29447     // private
29448     onMouseUp : function(e){
29449         if(e.button == 0){
29450             this.el.removeClass("x-btn-click");
29451             Roo.get(document).un('mouseup', this.onMouseUp, this);
29452         }
29453     },
29454     // private
29455     onMenuShow : function(e){
29456         this.el.addClass("x-btn-menu-active");
29457     },
29458     // private
29459     onMenuHide : function(e){
29460         this.el.removeClass("x-btn-menu-active");
29461     }   
29462 });
29463
29464 // Private utility class used by Button
29465 Roo.ButtonToggleMgr = function(){
29466    var groups = {};
29467    
29468    function toggleGroup(btn, state){
29469        if(state){
29470            var g = groups[btn.toggleGroup];
29471            for(var i = 0, l = g.length; i < l; i++){
29472                if(g[i] != btn){
29473                    g[i].toggle(false);
29474                }
29475            }
29476        }
29477    }
29478    
29479    return {
29480        register : function(btn){
29481            if(!btn.toggleGroup){
29482                return;
29483            }
29484            var g = groups[btn.toggleGroup];
29485            if(!g){
29486                g = groups[btn.toggleGroup] = [];
29487            }
29488            g.push(btn);
29489            btn.on("toggle", toggleGroup);
29490        },
29491        
29492        unregister : function(btn){
29493            if(!btn.toggleGroup){
29494                return;
29495            }
29496            var g = groups[btn.toggleGroup];
29497            if(g){
29498                g.remove(btn);
29499                btn.un("toggle", toggleGroup);
29500            }
29501        }
29502    };
29503 }();/*
29504  * Based on:
29505  * Ext JS Library 1.1.1
29506  * Copyright(c) 2006-2007, Ext JS, LLC.
29507  *
29508  * Originally Released Under LGPL - original licence link has changed is not relivant.
29509  *
29510  * Fork - LGPL
29511  * <script type="text/javascript">
29512  */
29513  
29514 /**
29515  * @class Roo.SplitButton
29516  * @extends Roo.Button
29517  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29518  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29519  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29520  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29521  * @cfg {String} arrowTooltip The title attribute of the arrow
29522  * @constructor
29523  * Create a new menu button
29524  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29525  * @param {Object} config The config object
29526  */
29527 Roo.SplitButton = function(renderTo, config){
29528     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29529     /**
29530      * @event arrowclick
29531      * Fires when this button's arrow is clicked
29532      * @param {SplitButton} this
29533      * @param {EventObject} e The click event
29534      */
29535     this.addEvents({"arrowclick":true});
29536 };
29537
29538 Roo.extend(Roo.SplitButton, Roo.Button, {
29539     render : function(renderTo){
29540         // this is one sweet looking template!
29541         var tpl = new Roo.Template(
29542             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29543             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29544             '<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>',
29545             "</tbody></table></td><td>",
29546             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29547             '<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>',
29548             "</tbody></table></td></tr></table>"
29549         );
29550         var btn = tpl.append(renderTo, [this.text, this.type], true);
29551         var btnEl = btn.child("button");
29552         if(this.cls){
29553             btn.addClass(this.cls);
29554         }
29555         if(this.icon){
29556             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29557         }
29558         if(this.iconCls){
29559             btnEl.addClass(this.iconCls);
29560             if(!this.cls){
29561                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29562             }
29563         }
29564         this.el = btn;
29565         if(this.handleMouseEvents){
29566             btn.on("mouseover", this.onMouseOver, this);
29567             btn.on("mouseout", this.onMouseOut, this);
29568             btn.on("mousedown", this.onMouseDown, this);
29569             btn.on("mouseup", this.onMouseUp, this);
29570         }
29571         btn.on(this.clickEvent, this.onClick, this);
29572         if(this.tooltip){
29573             if(typeof this.tooltip == 'object'){
29574                 Roo.QuickTips.tips(Roo.apply({
29575                       target: btnEl.id
29576                 }, this.tooltip));
29577             } else {
29578                 btnEl.dom[this.tooltipType] = this.tooltip;
29579             }
29580         }
29581         if(this.arrowTooltip){
29582             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29583         }
29584         if(this.hidden){
29585             this.hide();
29586         }
29587         if(this.disabled){
29588             this.disable();
29589         }
29590         if(this.pressed){
29591             this.el.addClass("x-btn-pressed");
29592         }
29593         if(Roo.isIE && !Roo.isIE7){
29594             this.autoWidth.defer(1, this);
29595         }else{
29596             this.autoWidth();
29597         }
29598         if(this.menu){
29599             this.menu.on("show", this.onMenuShow, this);
29600             this.menu.on("hide", this.onMenuHide, this);
29601         }
29602         this.fireEvent('render', this);
29603     },
29604
29605     // private
29606     autoWidth : function(){
29607         if(this.el){
29608             var tbl = this.el.child("table:first");
29609             var tbl2 = this.el.child("table:last");
29610             this.el.setWidth("auto");
29611             tbl.setWidth("auto");
29612             if(Roo.isIE7 && Roo.isStrict){
29613                 var ib = this.el.child('button:first');
29614                 if(ib && ib.getWidth() > 20){
29615                     ib.clip();
29616                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29617                 }
29618             }
29619             if(this.minWidth){
29620                 if(this.hidden){
29621                     this.el.beginMeasure();
29622                 }
29623                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29624                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29625                 }
29626                 if(this.hidden){
29627                     this.el.endMeasure();
29628                 }
29629             }
29630             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
29631         } 
29632     },
29633     /**
29634      * Sets this button's click handler
29635      * @param {Function} handler The function to call when the button is clicked
29636      * @param {Object} scope (optional) Scope for the function passed above
29637      */
29638     setHandler : function(handler, scope){
29639         this.handler = handler;
29640         this.scope = scope;  
29641     },
29642     
29643     /**
29644      * Sets this button's arrow click handler
29645      * @param {Function} handler The function to call when the arrow is clicked
29646      * @param {Object} scope (optional) Scope for the function passed above
29647      */
29648     setArrowHandler : function(handler, scope){
29649         this.arrowHandler = handler;
29650         this.scope = scope;  
29651     },
29652     
29653     /**
29654      * Focus the button
29655      */
29656     focus : function(){
29657         if(this.el){
29658             this.el.child("button:first").focus();
29659         }
29660     },
29661
29662     // private
29663     onClick : function(e){
29664         e.preventDefault();
29665         if(!this.disabled){
29666             if(e.getTarget(".x-btn-menu-arrow-wrap")){
29667                 if(this.menu && !this.menu.isVisible()){
29668                     this.menu.show(this.el, this.menuAlign);
29669                 }
29670                 this.fireEvent("arrowclick", this, e);
29671                 if(this.arrowHandler){
29672                     this.arrowHandler.call(this.scope || this, this, e);
29673                 }
29674             }else{
29675                 this.fireEvent("click", this, e);
29676                 if(this.handler){
29677                     this.handler.call(this.scope || this, this, e);
29678                 }
29679             }
29680         }
29681     },
29682     // private
29683     onMouseDown : function(e){
29684         if(!this.disabled){
29685             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
29686         }
29687     },
29688     // private
29689     onMouseUp : function(e){
29690         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
29691     }   
29692 });
29693
29694
29695 // backwards compat
29696 Roo.MenuButton = Roo.SplitButton;/*
29697  * Based on:
29698  * Ext JS Library 1.1.1
29699  * Copyright(c) 2006-2007, Ext JS, LLC.
29700  *
29701  * Originally Released Under LGPL - original licence link has changed is not relivant.
29702  *
29703  * Fork - LGPL
29704  * <script type="text/javascript">
29705  */
29706
29707 /**
29708  * @class Roo.Toolbar
29709  * Basic Toolbar class.
29710  * @constructor
29711  * Creates a new Toolbar
29712  * @param {Object} container The config object
29713  */ 
29714 Roo.Toolbar = function(container, buttons, config)
29715 {
29716     /// old consturctor format still supported..
29717     if(container instanceof Array){ // omit the container for later rendering
29718         buttons = container;
29719         config = buttons;
29720         container = null;
29721     }
29722     if (typeof(container) == 'object' && container.xtype) {
29723         config = container;
29724         container = config.container;
29725         buttons = config.buttons || []; // not really - use items!!
29726     }
29727     var xitems = [];
29728     if (config && config.items) {
29729         xitems = config.items;
29730         delete config.items;
29731     }
29732     Roo.apply(this, config);
29733     this.buttons = buttons;
29734     
29735     if(container){
29736         this.render(container);
29737     }
29738     this.xitems = xitems;
29739     Roo.each(xitems, function(b) {
29740         this.add(b);
29741     }, this);
29742     
29743 };
29744
29745 Roo.Toolbar.prototype = {
29746     /**
29747      * @cfg {Array} items
29748      * array of button configs or elements to add (will be converted to a MixedCollection)
29749      */
29750     
29751     /**
29752      * @cfg {String/HTMLElement/Element} container
29753      * The id or element that will contain the toolbar
29754      */
29755     // private
29756     render : function(ct){
29757         this.el = Roo.get(ct);
29758         if(this.cls){
29759             this.el.addClass(this.cls);
29760         }
29761         // using a table allows for vertical alignment
29762         // 100% width is needed by Safari...
29763         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
29764         this.tr = this.el.child("tr", true);
29765         var autoId = 0;
29766         this.items = new Roo.util.MixedCollection(false, function(o){
29767             return o.id || ("item" + (++autoId));
29768         });
29769         if(this.buttons){
29770             this.add.apply(this, this.buttons);
29771             delete this.buttons;
29772         }
29773     },
29774
29775     /**
29776      * Adds element(s) to the toolbar -- this function takes a variable number of 
29777      * arguments of mixed type and adds them to the toolbar.
29778      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
29779      * <ul>
29780      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
29781      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
29782      * <li>Field: Any form field (equivalent to {@link #addField})</li>
29783      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
29784      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
29785      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
29786      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
29787      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
29788      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
29789      * </ul>
29790      * @param {Mixed} arg2
29791      * @param {Mixed} etc.
29792      */
29793     add : function(){
29794         var a = arguments, l = a.length;
29795         for(var i = 0; i < l; i++){
29796             this._add(a[i]);
29797         }
29798     },
29799     // private..
29800     _add : function(el) {
29801         
29802         if (el.xtype) {
29803             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
29804         }
29805         
29806         if (el.applyTo){ // some kind of form field
29807             return this.addField(el);
29808         } 
29809         if (el.render){ // some kind of Toolbar.Item
29810             return this.addItem(el);
29811         }
29812         if (typeof el == "string"){ // string
29813             if(el == "separator" || el == "-"){
29814                 return this.addSeparator();
29815             }
29816             if (el == " "){
29817                 return this.addSpacer();
29818             }
29819             if(el == "->"){
29820                 return this.addFill();
29821             }
29822             return this.addText(el);
29823             
29824         }
29825         if(el.tagName){ // element
29826             return this.addElement(el);
29827         }
29828         if(typeof el == "object"){ // must be button config?
29829             return this.addButton(el);
29830         }
29831         // and now what?!?!
29832         return false;
29833         
29834     },
29835     
29836     /**
29837      * Add an Xtype element
29838      * @param {Object} xtype Xtype Object
29839      * @return {Object} created Object
29840      */
29841     addxtype : function(e){
29842         return this.add(e);  
29843     },
29844     
29845     /**
29846      * Returns the Element for this toolbar.
29847      * @return {Roo.Element}
29848      */
29849     getEl : function(){
29850         return this.el;  
29851     },
29852     
29853     /**
29854      * Adds a separator
29855      * @return {Roo.Toolbar.Item} The separator item
29856      */
29857     addSeparator : function(){
29858         return this.addItem(new Roo.Toolbar.Separator());
29859     },
29860
29861     /**
29862      * Adds a spacer element
29863      * @return {Roo.Toolbar.Spacer} The spacer item
29864      */
29865     addSpacer : function(){
29866         return this.addItem(new Roo.Toolbar.Spacer());
29867     },
29868
29869     /**
29870      * Adds a fill element that forces subsequent additions to the right side of the toolbar
29871      * @return {Roo.Toolbar.Fill} The fill item
29872      */
29873     addFill : function(){
29874         return this.addItem(new Roo.Toolbar.Fill());
29875     },
29876
29877     /**
29878      * Adds any standard HTML element to the toolbar
29879      * @param {String/HTMLElement/Element} el The element or id of the element to add
29880      * @return {Roo.Toolbar.Item} The element's item
29881      */
29882     addElement : function(el){
29883         return this.addItem(new Roo.Toolbar.Item(el));
29884     },
29885     /**
29886      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
29887      * @type Roo.util.MixedCollection  
29888      */
29889     items : false,
29890      
29891     /**
29892      * Adds any Toolbar.Item or subclass
29893      * @param {Roo.Toolbar.Item} item
29894      * @return {Roo.Toolbar.Item} The item
29895      */
29896     addItem : function(item){
29897         var td = this.nextBlock();
29898         item.render(td);
29899         this.items.add(item);
29900         return item;
29901     },
29902     
29903     /**
29904      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
29905      * @param {Object/Array} config A button config or array of configs
29906      * @return {Roo.Toolbar.Button/Array}
29907      */
29908     addButton : function(config){
29909         if(config instanceof Array){
29910             var buttons = [];
29911             for(var i = 0, len = config.length; i < len; i++) {
29912                 buttons.push(this.addButton(config[i]));
29913             }
29914             return buttons;
29915         }
29916         var b = config;
29917         if(!(config instanceof Roo.Toolbar.Button)){
29918             b = config.split ?
29919                 new Roo.Toolbar.SplitButton(config) :
29920                 new Roo.Toolbar.Button(config);
29921         }
29922         var td = this.nextBlock();
29923         b.render(td);
29924         this.items.add(b);
29925         return b;
29926     },
29927     
29928     /**
29929      * Adds text to the toolbar
29930      * @param {String} text The text to add
29931      * @return {Roo.Toolbar.Item} The element's item
29932      */
29933     addText : function(text){
29934         return this.addItem(new Roo.Toolbar.TextItem(text));
29935     },
29936     
29937     /**
29938      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
29939      * @param {Number} index The index where the item is to be inserted
29940      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
29941      * @return {Roo.Toolbar.Button/Item}
29942      */
29943     insertButton : function(index, item){
29944         if(item instanceof Array){
29945             var buttons = [];
29946             for(var i = 0, len = item.length; i < len; i++) {
29947                buttons.push(this.insertButton(index + i, item[i]));
29948             }
29949             return buttons;
29950         }
29951         if (!(item instanceof Roo.Toolbar.Button)){
29952            item = new Roo.Toolbar.Button(item);
29953         }
29954         var td = document.createElement("td");
29955         this.tr.insertBefore(td, this.tr.childNodes[index]);
29956         item.render(td);
29957         this.items.insert(index, item);
29958         return item;
29959     },
29960     
29961     /**
29962      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
29963      * @param {Object} config
29964      * @return {Roo.Toolbar.Item} The element's item
29965      */
29966     addDom : function(config, returnEl){
29967         var td = this.nextBlock();
29968         Roo.DomHelper.overwrite(td, config);
29969         var ti = new Roo.Toolbar.Item(td.firstChild);
29970         ti.render(td);
29971         this.items.add(ti);
29972         return ti;
29973     },
29974
29975     /**
29976      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
29977      * @type Roo.util.MixedCollection  
29978      */
29979     fields : false,
29980     
29981     /**
29982      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
29983      * Note: the field should not have been rendered yet. For a field that has already been
29984      * rendered, use {@link #addElement}.
29985      * @param {Roo.form.Field} field
29986      * @return {Roo.ToolbarItem}
29987      */
29988      
29989       
29990     addField : function(field) {
29991         if (!this.fields) {
29992             var autoId = 0;
29993             this.fields = new Roo.util.MixedCollection(false, function(o){
29994                 return o.id || ("item" + (++autoId));
29995             });
29996
29997         }
29998         
29999         var td = this.nextBlock();
30000         field.render(td);
30001         var ti = new Roo.Toolbar.Item(td.firstChild);
30002         ti.render(td);
30003         this.items.add(ti);
30004         this.fields.add(field);
30005         return ti;
30006     },
30007     /**
30008      * Hide the toolbar
30009      * @method hide
30010      */
30011      
30012       
30013     hide : function()
30014     {
30015         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30016         this.el.child('div').hide();
30017     },
30018     /**
30019      * Show the toolbar
30020      * @method show
30021      */
30022     show : function()
30023     {
30024         this.el.child('div').show();
30025     },
30026       
30027     // private
30028     nextBlock : function(){
30029         var td = document.createElement("td");
30030         this.tr.appendChild(td);
30031         return td;
30032     },
30033
30034     // private
30035     destroy : function(){
30036         if(this.items){ // rendered?
30037             Roo.destroy.apply(Roo, this.items.items);
30038         }
30039         if(this.fields){ // rendered?
30040             Roo.destroy.apply(Roo, this.fields.items);
30041         }
30042         Roo.Element.uncache(this.el, this.tr);
30043     }
30044 };
30045
30046 /**
30047  * @class Roo.Toolbar.Item
30048  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30049  * @constructor
30050  * Creates a new Item
30051  * @param {HTMLElement} el 
30052  */
30053 Roo.Toolbar.Item = function(el){
30054     var cfg = {};
30055     if (typeof (el.xtype) != 'undefined') {
30056         cfg = el;
30057         el = cfg.el;
30058     }
30059     
30060     this.el = Roo.getDom(el);
30061     this.id = Roo.id(this.el);
30062     this.hidden = false;
30063     
30064     this.addEvents({
30065          /**
30066              * @event render
30067              * Fires when the button is rendered
30068              * @param {Button} this
30069              */
30070         'render': true
30071     });
30072     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30073 };
30074 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30075 //Roo.Toolbar.Item.prototype = {
30076     
30077     /**
30078      * Get this item's HTML Element
30079      * @return {HTMLElement}
30080      */
30081     getEl : function(){
30082        return this.el;  
30083     },
30084
30085     // private
30086     render : function(td){
30087         
30088          this.td = td;
30089         td.appendChild(this.el);
30090         
30091         this.fireEvent('render', this);
30092     },
30093     
30094     /**
30095      * Removes and destroys this item.
30096      */
30097     destroy : function(){
30098         this.td.parentNode.removeChild(this.td);
30099     },
30100     
30101     /**
30102      * Shows this item.
30103      */
30104     show: function(){
30105         this.hidden = false;
30106         this.td.style.display = "";
30107     },
30108     
30109     /**
30110      * Hides this item.
30111      */
30112     hide: function(){
30113         this.hidden = true;
30114         this.td.style.display = "none";
30115     },
30116     
30117     /**
30118      * Convenience function for boolean show/hide.
30119      * @param {Boolean} visible true to show/false to hide
30120      */
30121     setVisible: function(visible){
30122         if(visible) {
30123             this.show();
30124         }else{
30125             this.hide();
30126         }
30127     },
30128     
30129     /**
30130      * Try to focus this item.
30131      */
30132     focus : function(){
30133         Roo.fly(this.el).focus();
30134     },
30135     
30136     /**
30137      * Disables this item.
30138      */
30139     disable : function(){
30140         Roo.fly(this.td).addClass("x-item-disabled");
30141         this.disabled = true;
30142         this.el.disabled = true;
30143     },
30144     
30145     /**
30146      * Enables this item.
30147      */
30148     enable : function(){
30149         Roo.fly(this.td).removeClass("x-item-disabled");
30150         this.disabled = false;
30151         this.el.disabled = false;
30152     }
30153 });
30154
30155
30156 /**
30157  * @class Roo.Toolbar.Separator
30158  * @extends Roo.Toolbar.Item
30159  * A simple toolbar separator class
30160  * @constructor
30161  * Creates a new Separator
30162  */
30163 Roo.Toolbar.Separator = function(cfg){
30164     
30165     var s = document.createElement("span");
30166     s.className = "ytb-sep";
30167     if (cfg) {
30168         cfg.el = s;
30169     }
30170     
30171     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30172 };
30173 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30174     enable:Roo.emptyFn,
30175     disable:Roo.emptyFn,
30176     focus:Roo.emptyFn
30177 });
30178
30179 /**
30180  * @class Roo.Toolbar.Spacer
30181  * @extends Roo.Toolbar.Item
30182  * A simple element that adds extra horizontal space to a toolbar.
30183  * @constructor
30184  * Creates a new Spacer
30185  */
30186 Roo.Toolbar.Spacer = function(cfg){
30187     var s = document.createElement("div");
30188     s.className = "ytb-spacer";
30189     if (cfg) {
30190         cfg.el = s;
30191     }
30192     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30193 };
30194 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30195     enable:Roo.emptyFn,
30196     disable:Roo.emptyFn,
30197     focus:Roo.emptyFn
30198 });
30199
30200 /**
30201  * @class Roo.Toolbar.Fill
30202  * @extends Roo.Toolbar.Spacer
30203  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30204  * @constructor
30205  * Creates a new Spacer
30206  */
30207 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30208     // private
30209     render : function(td){
30210         td.style.width = '100%';
30211         Roo.Toolbar.Fill.superclass.render.call(this, td);
30212     }
30213 });
30214
30215 /**
30216  * @class Roo.Toolbar.TextItem
30217  * @extends Roo.Toolbar.Item
30218  * A simple class that renders text directly into a toolbar.
30219  * @constructor
30220  * Creates a new TextItem
30221  * @param {String} text
30222  */
30223 Roo.Toolbar.TextItem = function(cfg){
30224     var  text = cfg || "";
30225     if (typeof(cfg) == 'object') {
30226         text = cfg.text || "";
30227     }  else {
30228         cfg = null;
30229     }
30230     var s = document.createElement("span");
30231     s.className = "ytb-text";
30232     s.innerHTML = text;
30233     if (cfg) {
30234         cfg.el  = s;
30235     }
30236     
30237     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30238 };
30239 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30240     
30241      
30242     enable:Roo.emptyFn,
30243     disable:Roo.emptyFn,
30244     focus:Roo.emptyFn
30245 });
30246
30247 /**
30248  * @class Roo.Toolbar.Button
30249  * @extends Roo.Button
30250  * A button that renders into a toolbar.
30251  * @constructor
30252  * Creates a new Button
30253  * @param {Object} config A standard {@link Roo.Button} config object
30254  */
30255 Roo.Toolbar.Button = function(config){
30256     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30257 };
30258 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30259     render : function(td){
30260         this.td = td;
30261         Roo.Toolbar.Button.superclass.render.call(this, td);
30262     },
30263     
30264     /**
30265      * Removes and destroys this button
30266      */
30267     destroy : function(){
30268         Roo.Toolbar.Button.superclass.destroy.call(this);
30269         this.td.parentNode.removeChild(this.td);
30270     },
30271     
30272     /**
30273      * Shows this button
30274      */
30275     show: function(){
30276         this.hidden = false;
30277         this.td.style.display = "";
30278     },
30279     
30280     /**
30281      * Hides this button
30282      */
30283     hide: function(){
30284         this.hidden = true;
30285         this.td.style.display = "none";
30286     },
30287
30288     /**
30289      * Disables this item
30290      */
30291     disable : function(){
30292         Roo.fly(this.td).addClass("x-item-disabled");
30293         this.disabled = true;
30294     },
30295
30296     /**
30297      * Enables this item
30298      */
30299     enable : function(){
30300         Roo.fly(this.td).removeClass("x-item-disabled");
30301         this.disabled = false;
30302     }
30303 });
30304 // backwards compat
30305 Roo.ToolbarButton = Roo.Toolbar.Button;
30306
30307 /**
30308  * @class Roo.Toolbar.SplitButton
30309  * @extends Roo.SplitButton
30310  * A menu button that renders into a toolbar.
30311  * @constructor
30312  * Creates a new SplitButton
30313  * @param {Object} config A standard {@link Roo.SplitButton} config object
30314  */
30315 Roo.Toolbar.SplitButton = function(config){
30316     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30317 };
30318 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30319     render : function(td){
30320         this.td = td;
30321         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30322     },
30323     
30324     /**
30325      * Removes and destroys this button
30326      */
30327     destroy : function(){
30328         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30329         this.td.parentNode.removeChild(this.td);
30330     },
30331     
30332     /**
30333      * Shows this button
30334      */
30335     show: function(){
30336         this.hidden = false;
30337         this.td.style.display = "";
30338     },
30339     
30340     /**
30341      * Hides this button
30342      */
30343     hide: function(){
30344         this.hidden = true;
30345         this.td.style.display = "none";
30346     }
30347 });
30348
30349 // backwards compat
30350 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30351  * Based on:
30352  * Ext JS Library 1.1.1
30353  * Copyright(c) 2006-2007, Ext JS, LLC.
30354  *
30355  * Originally Released Under LGPL - original licence link has changed is not relivant.
30356  *
30357  * Fork - LGPL
30358  * <script type="text/javascript">
30359  */
30360  
30361 /**
30362  * @class Roo.PagingToolbar
30363  * @extends Roo.Toolbar
30364  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30365  * @constructor
30366  * Create a new PagingToolbar
30367  * @param {Object} config The config object
30368  */
30369 Roo.PagingToolbar = function(el, ds, config)
30370 {
30371     // old args format still supported... - xtype is prefered..
30372     if (typeof(el) == 'object' && el.xtype) {
30373         // created from xtype...
30374         config = el;
30375         ds = el.dataSource;
30376         el = config.container;
30377     }
30378     var items = [];
30379     if (config.items) {
30380         items = config.items;
30381         config.items = [];
30382     }
30383     
30384     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30385     this.ds = ds;
30386     this.cursor = 0;
30387     this.renderButtons(this.el);
30388     this.bind(ds);
30389     
30390     // supprot items array.
30391    
30392     Roo.each(items, function(e) {
30393         this.add(Roo.factory(e));
30394     },this);
30395     
30396 };
30397
30398 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30399     /**
30400      * @cfg {Roo.data.Store} dataSource
30401      * The underlying data store providing the paged data
30402      */
30403     /**
30404      * @cfg {String/HTMLElement/Element} container
30405      * container The id or element that will contain the toolbar
30406      */
30407     /**
30408      * @cfg {Boolean} displayInfo
30409      * True to display the displayMsg (defaults to false)
30410      */
30411     /**
30412      * @cfg {Number} pageSize
30413      * The number of records to display per page (defaults to 20)
30414      */
30415     pageSize: 20,
30416     /**
30417      * @cfg {String} displayMsg
30418      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30419      */
30420     displayMsg : 'Displaying {0} - {1} of {2}',
30421     /**
30422      * @cfg {String} emptyMsg
30423      * The message to display when no records are found (defaults to "No data to display")
30424      */
30425     emptyMsg : 'No data to display',
30426     /**
30427      * Customizable piece of the default paging text (defaults to "Page")
30428      * @type String
30429      */
30430     beforePageText : "Page",
30431     /**
30432      * Customizable piece of the default paging text (defaults to "of %0")
30433      * @type String
30434      */
30435     afterPageText : "of {0}",
30436     /**
30437      * Customizable piece of the default paging text (defaults to "First Page")
30438      * @type String
30439      */
30440     firstText : "First Page",
30441     /**
30442      * Customizable piece of the default paging text (defaults to "Previous Page")
30443      * @type String
30444      */
30445     prevText : "Previous Page",
30446     /**
30447      * Customizable piece of the default paging text (defaults to "Next Page")
30448      * @type String
30449      */
30450     nextText : "Next Page",
30451     /**
30452      * Customizable piece of the default paging text (defaults to "Last Page")
30453      * @type String
30454      */
30455     lastText : "Last Page",
30456     /**
30457      * Customizable piece of the default paging text (defaults to "Refresh")
30458      * @type String
30459      */
30460     refreshText : "Refresh",
30461
30462     // private
30463     renderButtons : function(el){
30464         Roo.PagingToolbar.superclass.render.call(this, el);
30465         this.first = this.addButton({
30466             tooltip: this.firstText,
30467             cls: "x-btn-icon x-grid-page-first",
30468             disabled: true,
30469             handler: this.onClick.createDelegate(this, ["first"])
30470         });
30471         this.prev = this.addButton({
30472             tooltip: this.prevText,
30473             cls: "x-btn-icon x-grid-page-prev",
30474             disabled: true,
30475             handler: this.onClick.createDelegate(this, ["prev"])
30476         });
30477         //this.addSeparator();
30478         this.add(this.beforePageText);
30479         this.field = Roo.get(this.addDom({
30480            tag: "input",
30481            type: "text",
30482            size: "3",
30483            value: "1",
30484            cls: "x-grid-page-number"
30485         }).el);
30486         this.field.on("keydown", this.onPagingKeydown, this);
30487         this.field.on("focus", function(){this.dom.select();});
30488         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30489         this.field.setHeight(18);
30490         //this.addSeparator();
30491         this.next = this.addButton({
30492             tooltip: this.nextText,
30493             cls: "x-btn-icon x-grid-page-next",
30494             disabled: true,
30495             handler: this.onClick.createDelegate(this, ["next"])
30496         });
30497         this.last = this.addButton({
30498             tooltip: this.lastText,
30499             cls: "x-btn-icon x-grid-page-last",
30500             disabled: true,
30501             handler: this.onClick.createDelegate(this, ["last"])
30502         });
30503         //this.addSeparator();
30504         this.loading = this.addButton({
30505             tooltip: this.refreshText,
30506             cls: "x-btn-icon x-grid-loading",
30507             handler: this.onClick.createDelegate(this, ["refresh"])
30508         });
30509
30510         if(this.displayInfo){
30511             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30512         }
30513     },
30514
30515     // private
30516     updateInfo : function(){
30517         if(this.displayEl){
30518             var count = this.ds.getCount();
30519             var msg = count == 0 ?
30520                 this.emptyMsg :
30521                 String.format(
30522                     this.displayMsg,
30523                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30524                 );
30525             this.displayEl.update(msg);
30526         }
30527     },
30528
30529     // private
30530     onLoad : function(ds, r, o){
30531        this.cursor = o.params ? o.params.start : 0;
30532        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30533
30534        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30535        this.field.dom.value = ap;
30536        this.first.setDisabled(ap == 1);
30537        this.prev.setDisabled(ap == 1);
30538        this.next.setDisabled(ap == ps);
30539        this.last.setDisabled(ap == ps);
30540        this.loading.enable();
30541        this.updateInfo();
30542     },
30543
30544     // private
30545     getPageData : function(){
30546         var total = this.ds.getTotalCount();
30547         return {
30548             total : total,
30549             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30550             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30551         };
30552     },
30553
30554     // private
30555     onLoadError : function(){
30556         this.loading.enable();
30557     },
30558
30559     // private
30560     onPagingKeydown : function(e){
30561         var k = e.getKey();
30562         var d = this.getPageData();
30563         if(k == e.RETURN){
30564             var v = this.field.dom.value, pageNum;
30565             if(!v || isNaN(pageNum = parseInt(v, 10))){
30566                 this.field.dom.value = d.activePage;
30567                 return;
30568             }
30569             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30570             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30571             e.stopEvent();
30572         }
30573         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))
30574         {
30575           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30576           this.field.dom.value = pageNum;
30577           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30578           e.stopEvent();
30579         }
30580         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30581         {
30582           var v = this.field.dom.value, pageNum; 
30583           var increment = (e.shiftKey) ? 10 : 1;
30584           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30585             increment *= -1;
30586           }
30587           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30588             this.field.dom.value = d.activePage;
30589             return;
30590           }
30591           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30592           {
30593             this.field.dom.value = parseInt(v, 10) + increment;
30594             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30595             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30596           }
30597           e.stopEvent();
30598         }
30599     },
30600
30601     // private
30602     beforeLoad : function(){
30603         if(this.loading){
30604             this.loading.disable();
30605         }
30606     },
30607
30608     // private
30609     onClick : function(which){
30610         var ds = this.ds;
30611         switch(which){
30612             case "first":
30613                 ds.load({params:{start: 0, limit: this.pageSize}});
30614             break;
30615             case "prev":
30616                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30617             break;
30618             case "next":
30619                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30620             break;
30621             case "last":
30622                 var total = ds.getTotalCount();
30623                 var extra = total % this.pageSize;
30624                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30625                 ds.load({params:{start: lastStart, limit: this.pageSize}});
30626             break;
30627             case "refresh":
30628                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
30629             break;
30630         }
30631     },
30632
30633     /**
30634      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
30635      * @param {Roo.data.Store} store The data store to unbind
30636      */
30637     unbind : function(ds){
30638         ds.un("beforeload", this.beforeLoad, this);
30639         ds.un("load", this.onLoad, this);
30640         ds.un("loadexception", this.onLoadError, this);
30641         ds.un("remove", this.updateInfo, this);
30642         ds.un("add", this.updateInfo, this);
30643         this.ds = undefined;
30644     },
30645
30646     /**
30647      * Binds the paging toolbar to the specified {@link Roo.data.Store}
30648      * @param {Roo.data.Store} store The data store to bind
30649      */
30650     bind : function(ds){
30651         ds.on("beforeload", this.beforeLoad, this);
30652         ds.on("load", this.onLoad, this);
30653         ds.on("loadexception", this.onLoadError, this);
30654         ds.on("remove", this.updateInfo, this);
30655         ds.on("add", this.updateInfo, this);
30656         this.ds = ds;
30657     }
30658 });/*
30659  * Based on:
30660  * Ext JS Library 1.1.1
30661  * Copyright(c) 2006-2007, Ext JS, LLC.
30662  *
30663  * Originally Released Under LGPL - original licence link has changed is not relivant.
30664  *
30665  * Fork - LGPL
30666  * <script type="text/javascript">
30667  */
30668
30669 /**
30670  * @class Roo.Resizable
30671  * @extends Roo.util.Observable
30672  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
30673  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
30674  * 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
30675  * the element will be wrapped for you automatically.</p>
30676  * <p>Here is the list of valid resize handles:</p>
30677  * <pre>
30678 Value   Description
30679 ------  -------------------
30680  'n'     north
30681  's'     south
30682  'e'     east
30683  'w'     west
30684  'nw'    northwest
30685  'sw'    southwest
30686  'se'    southeast
30687  'ne'    northeast
30688  'hd'    horizontal drag
30689  'all'   all
30690 </pre>
30691  * <p>Here's an example showing the creation of a typical Resizable:</p>
30692  * <pre><code>
30693 var resizer = new Roo.Resizable("element-id", {
30694     handles: 'all',
30695     minWidth: 200,
30696     minHeight: 100,
30697     maxWidth: 500,
30698     maxHeight: 400,
30699     pinned: true
30700 });
30701 resizer.on("resize", myHandler);
30702 </code></pre>
30703  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
30704  * resizer.east.setDisplayed(false);</p>
30705  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
30706  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
30707  * resize operation's new size (defaults to [0, 0])
30708  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
30709  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
30710  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
30711  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
30712  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
30713  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
30714  * @cfg {Number} width The width of the element in pixels (defaults to null)
30715  * @cfg {Number} height The height of the element in pixels (defaults to null)
30716  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
30717  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
30718  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
30719  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
30720  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
30721  * in favor of the handles config option (defaults to false)
30722  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
30723  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
30724  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
30725  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
30726  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
30727  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
30728  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
30729  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
30730  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
30731  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
30732  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
30733  * @constructor
30734  * Create a new resizable component
30735  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
30736  * @param {Object} config configuration options
30737   */
30738 Roo.Resizable = function(el, config)
30739 {
30740     this.el = Roo.get(el);
30741
30742     if(config && config.wrap){
30743         config.resizeChild = this.el;
30744         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
30745         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
30746         this.el.setStyle("overflow", "hidden");
30747         this.el.setPositioning(config.resizeChild.getPositioning());
30748         config.resizeChild.clearPositioning();
30749         if(!config.width || !config.height){
30750             var csize = config.resizeChild.getSize();
30751             this.el.setSize(csize.width, csize.height);
30752         }
30753         if(config.pinned && !config.adjustments){
30754             config.adjustments = "auto";
30755         }
30756     }
30757
30758     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
30759     this.proxy.unselectable();
30760     this.proxy.enableDisplayMode('block');
30761
30762     Roo.apply(this, config);
30763
30764     if(this.pinned){
30765         this.disableTrackOver = true;
30766         this.el.addClass("x-resizable-pinned");
30767     }
30768     // if the element isn't positioned, make it relative
30769     var position = this.el.getStyle("position");
30770     if(position != "absolute" && position != "fixed"){
30771         this.el.setStyle("position", "relative");
30772     }
30773     if(!this.handles){ // no handles passed, must be legacy style
30774         this.handles = 's,e,se';
30775         if(this.multiDirectional){
30776             this.handles += ',n,w';
30777         }
30778     }
30779     if(this.handles == "all"){
30780         this.handles = "n s e w ne nw se sw";
30781     }
30782     var hs = this.handles.split(/\s*?[,;]\s*?| /);
30783     var ps = Roo.Resizable.positions;
30784     for(var i = 0, len = hs.length; i < len; i++){
30785         if(hs[i] && ps[hs[i]]){
30786             var pos = ps[hs[i]];
30787             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
30788         }
30789     }
30790     // legacy
30791     this.corner = this.southeast;
30792     
30793     // updateBox = the box can move..
30794     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
30795         this.updateBox = true;
30796     }
30797
30798     this.activeHandle = null;
30799
30800     if(this.resizeChild){
30801         if(typeof this.resizeChild == "boolean"){
30802             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
30803         }else{
30804             this.resizeChild = Roo.get(this.resizeChild, true);
30805         }
30806     }
30807     
30808     if(this.adjustments == "auto"){
30809         var rc = this.resizeChild;
30810         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
30811         if(rc && (hw || hn)){
30812             rc.position("relative");
30813             rc.setLeft(hw ? hw.el.getWidth() : 0);
30814             rc.setTop(hn ? hn.el.getHeight() : 0);
30815         }
30816         this.adjustments = [
30817             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
30818             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
30819         ];
30820     }
30821
30822     if(this.draggable){
30823         this.dd = this.dynamic ?
30824             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
30825         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
30826     }
30827
30828     // public events
30829     this.addEvents({
30830         /**
30831          * @event beforeresize
30832          * Fired before resize is allowed. Set enabled to false to cancel resize.
30833          * @param {Roo.Resizable} this
30834          * @param {Roo.EventObject} e The mousedown event
30835          */
30836         "beforeresize" : true,
30837         /**
30838          * @event resizing
30839          * Fired a resizing.
30840          * @param {Roo.Resizable} this
30841          * @param {Number} x The new x position
30842          * @param {Number} y The new y position
30843          * @param {Number} w The new w width
30844          * @param {Number} h The new h hight
30845          * @param {Roo.EventObject} e The mouseup event
30846          */
30847         "resizing" : true,
30848         /**
30849          * @event resize
30850          * Fired after a resize.
30851          * @param {Roo.Resizable} this
30852          * @param {Number} width The new width
30853          * @param {Number} height The new height
30854          * @param {Roo.EventObject} e The mouseup event
30855          */
30856         "resize" : true
30857     });
30858
30859     if(this.width !== null && this.height !== null){
30860         this.resizeTo(this.width, this.height);
30861     }else{
30862         this.updateChildSize();
30863     }
30864     if(Roo.isIE){
30865         this.el.dom.style.zoom = 1;
30866     }
30867     Roo.Resizable.superclass.constructor.call(this);
30868 };
30869
30870 Roo.extend(Roo.Resizable, Roo.util.Observable, {
30871         resizeChild : false,
30872         adjustments : [0, 0],
30873         minWidth : 5,
30874         minHeight : 5,
30875         maxWidth : 10000,
30876         maxHeight : 10000,
30877         enabled : true,
30878         animate : false,
30879         duration : .35,
30880         dynamic : false,
30881         handles : false,
30882         multiDirectional : false,
30883         disableTrackOver : false,
30884         easing : 'easeOutStrong',
30885         widthIncrement : 0,
30886         heightIncrement : 0,
30887         pinned : false,
30888         width : null,
30889         height : null,
30890         preserveRatio : false,
30891         transparent: false,
30892         minX: 0,
30893         minY: 0,
30894         draggable: false,
30895
30896         /**
30897          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
30898          */
30899         constrainTo: undefined,
30900         /**
30901          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
30902          */
30903         resizeRegion: undefined,
30904
30905
30906     /**
30907      * Perform a manual resize
30908      * @param {Number} width
30909      * @param {Number} height
30910      */
30911     resizeTo : function(width, height){
30912         this.el.setSize(width, height);
30913         this.updateChildSize();
30914         this.fireEvent("resize", this, width, height, null);
30915     },
30916
30917     // private
30918     startSizing : function(e, handle){
30919         this.fireEvent("beforeresize", this, e);
30920         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
30921
30922             if(!this.overlay){
30923                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
30924                 this.overlay.unselectable();
30925                 this.overlay.enableDisplayMode("block");
30926                 this.overlay.on("mousemove", this.onMouseMove, this);
30927                 this.overlay.on("mouseup", this.onMouseUp, this);
30928             }
30929             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
30930
30931             this.resizing = true;
30932             this.startBox = this.el.getBox();
30933             this.startPoint = e.getXY();
30934             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
30935                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
30936
30937             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
30938             this.overlay.show();
30939
30940             if(this.constrainTo) {
30941                 var ct = Roo.get(this.constrainTo);
30942                 this.resizeRegion = ct.getRegion().adjust(
30943                     ct.getFrameWidth('t'),
30944                     ct.getFrameWidth('l'),
30945                     -ct.getFrameWidth('b'),
30946                     -ct.getFrameWidth('r')
30947                 );
30948             }
30949
30950             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
30951             this.proxy.show();
30952             this.proxy.setBox(this.startBox);
30953             if(!this.dynamic){
30954                 this.proxy.setStyle('visibility', 'visible');
30955             }
30956         }
30957     },
30958
30959     // private
30960     onMouseDown : function(handle, e){
30961         if(this.enabled){
30962             e.stopEvent();
30963             this.activeHandle = handle;
30964             this.startSizing(e, handle);
30965         }
30966     },
30967
30968     // private
30969     onMouseUp : function(e){
30970         var size = this.resizeElement();
30971         this.resizing = false;
30972         this.handleOut();
30973         this.overlay.hide();
30974         this.proxy.hide();
30975         this.fireEvent("resize", this, size.width, size.height, e);
30976     },
30977
30978     // private
30979     updateChildSize : function(){
30980         
30981         if(this.resizeChild){
30982             var el = this.el;
30983             var child = this.resizeChild;
30984             var adj = this.adjustments;
30985             if(el.dom.offsetWidth){
30986                 var b = el.getSize(true);
30987                 child.setSize(b.width+adj[0], b.height+adj[1]);
30988             }
30989             // Second call here for IE
30990             // The first call enables instant resizing and
30991             // the second call corrects scroll bars if they
30992             // exist
30993             if(Roo.isIE){
30994                 setTimeout(function(){
30995                     if(el.dom.offsetWidth){
30996                         var b = el.getSize(true);
30997                         child.setSize(b.width+adj[0], b.height+adj[1]);
30998                     }
30999                 }, 10);
31000             }
31001         }
31002     },
31003
31004     // private
31005     snap : function(value, inc, min){
31006         if(!inc || !value) {
31007             return value;
31008         }
31009         var newValue = value;
31010         var m = value % inc;
31011         if(m > 0){
31012             if(m > (inc/2)){
31013                 newValue = value + (inc-m);
31014             }else{
31015                 newValue = value - m;
31016             }
31017         }
31018         return Math.max(min, newValue);
31019     },
31020
31021     // private
31022     resizeElement : function(){
31023         var box = this.proxy.getBox();
31024         if(this.updateBox){
31025             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31026         }else{
31027             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31028         }
31029         this.updateChildSize();
31030         if(!this.dynamic){
31031             this.proxy.hide();
31032         }
31033         return box;
31034     },
31035
31036     // private
31037     constrain : function(v, diff, m, mx){
31038         if(v - diff < m){
31039             diff = v - m;
31040         }else if(v - diff > mx){
31041             diff = mx - v;
31042         }
31043         return diff;
31044     },
31045
31046     // private
31047     onMouseMove : function(e){
31048         
31049         if(this.enabled){
31050             try{// try catch so if something goes wrong the user doesn't get hung
31051
31052             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31053                 return;
31054             }
31055
31056             //var curXY = this.startPoint;
31057             var curSize = this.curSize || this.startBox;
31058             var x = this.startBox.x, y = this.startBox.y;
31059             var ox = x, oy = y;
31060             var w = curSize.width, h = curSize.height;
31061             var ow = w, oh = h;
31062             var mw = this.minWidth, mh = this.minHeight;
31063             var mxw = this.maxWidth, mxh = this.maxHeight;
31064             var wi = this.widthIncrement;
31065             var hi = this.heightIncrement;
31066
31067             var eventXY = e.getXY();
31068             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31069             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31070
31071             var pos = this.activeHandle.position;
31072
31073             switch(pos){
31074                 case "east":
31075                     w += diffX;
31076                     w = Math.min(Math.max(mw, w), mxw);
31077                     break;
31078              
31079                 case "south":
31080                     h += diffY;
31081                     h = Math.min(Math.max(mh, h), mxh);
31082                     break;
31083                 case "southeast":
31084                     w += diffX;
31085                     h += diffY;
31086                     w = Math.min(Math.max(mw, w), mxw);
31087                     h = Math.min(Math.max(mh, h), mxh);
31088                     break;
31089                 case "north":
31090                     diffY = this.constrain(h, diffY, mh, mxh);
31091                     y += diffY;
31092                     h -= diffY;
31093                     break;
31094                 case "hdrag":
31095                     
31096                     if (wi) {
31097                         var adiffX = Math.abs(diffX);
31098                         var sub = (adiffX % wi); // how much 
31099                         if (sub > (wi/2)) { // far enough to snap
31100                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31101                         } else {
31102                             // remove difference.. 
31103                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31104                         }
31105                     }
31106                     x += diffX;
31107                     x = Math.max(this.minX, x);
31108                     break;
31109                 case "west":
31110                     diffX = this.constrain(w, diffX, mw, mxw);
31111                     x += diffX;
31112                     w -= diffX;
31113                     break;
31114                 case "northeast":
31115                     w += diffX;
31116                     w = Math.min(Math.max(mw, w), mxw);
31117                     diffY = this.constrain(h, diffY, mh, mxh);
31118                     y += diffY;
31119                     h -= diffY;
31120                     break;
31121                 case "northwest":
31122                     diffX = this.constrain(w, diffX, mw, mxw);
31123                     diffY = this.constrain(h, diffY, mh, mxh);
31124                     y += diffY;
31125                     h -= diffY;
31126                     x += diffX;
31127                     w -= diffX;
31128                     break;
31129                case "southwest":
31130                     diffX = this.constrain(w, diffX, mw, mxw);
31131                     h += diffY;
31132                     h = Math.min(Math.max(mh, h), mxh);
31133                     x += diffX;
31134                     w -= diffX;
31135                     break;
31136             }
31137
31138             var sw = this.snap(w, wi, mw);
31139             var sh = this.snap(h, hi, mh);
31140             if(sw != w || sh != h){
31141                 switch(pos){
31142                     case "northeast":
31143                         y -= sh - h;
31144                     break;
31145                     case "north":
31146                         y -= sh - h;
31147                         break;
31148                     case "southwest":
31149                         x -= sw - w;
31150                     break;
31151                     case "west":
31152                         x -= sw - w;
31153                         break;
31154                     case "northwest":
31155                         x -= sw - w;
31156                         y -= sh - h;
31157                     break;
31158                 }
31159                 w = sw;
31160                 h = sh;
31161             }
31162
31163             if(this.preserveRatio){
31164                 switch(pos){
31165                     case "southeast":
31166                     case "east":
31167                         h = oh * (w/ow);
31168                         h = Math.min(Math.max(mh, h), mxh);
31169                         w = ow * (h/oh);
31170                        break;
31171                     case "south":
31172                         w = ow * (h/oh);
31173                         w = Math.min(Math.max(mw, w), mxw);
31174                         h = oh * (w/ow);
31175                         break;
31176                     case "northeast":
31177                         w = ow * (h/oh);
31178                         w = Math.min(Math.max(mw, w), mxw);
31179                         h = oh * (w/ow);
31180                     break;
31181                     case "north":
31182                         var tw = w;
31183                         w = ow * (h/oh);
31184                         w = Math.min(Math.max(mw, w), mxw);
31185                         h = oh * (w/ow);
31186                         x += (tw - w) / 2;
31187                         break;
31188                     case "southwest":
31189                         h = oh * (w/ow);
31190                         h = Math.min(Math.max(mh, h), mxh);
31191                         var tw = w;
31192                         w = ow * (h/oh);
31193                         x += tw - w;
31194                         break;
31195                     case "west":
31196                         var th = h;
31197                         h = oh * (w/ow);
31198                         h = Math.min(Math.max(mh, h), mxh);
31199                         y += (th - h) / 2;
31200                         var tw = w;
31201                         w = ow * (h/oh);
31202                         x += tw - w;
31203                        break;
31204                     case "northwest":
31205                         var tw = w;
31206                         var th = h;
31207                         h = oh * (w/ow);
31208                         h = Math.min(Math.max(mh, h), mxh);
31209                         w = ow * (h/oh);
31210                         y += th - h;
31211                         x += tw - w;
31212                        break;
31213
31214                 }
31215             }
31216             if (pos == 'hdrag') {
31217                 w = ow;
31218             }
31219             this.proxy.setBounds(x, y, w, h);
31220             if(this.dynamic){
31221                 this.resizeElement();
31222             }
31223             }catch(e){}
31224         }
31225         this.fireEvent("resizing", this, x, y, w, h, e);
31226     },
31227
31228     // private
31229     handleOver : function(){
31230         if(this.enabled){
31231             this.el.addClass("x-resizable-over");
31232         }
31233     },
31234
31235     // private
31236     handleOut : function(){
31237         if(!this.resizing){
31238             this.el.removeClass("x-resizable-over");
31239         }
31240     },
31241
31242     /**
31243      * Returns the element this component is bound to.
31244      * @return {Roo.Element}
31245      */
31246     getEl : function(){
31247         return this.el;
31248     },
31249
31250     /**
31251      * Returns the resizeChild element (or null).
31252      * @return {Roo.Element}
31253      */
31254     getResizeChild : function(){
31255         return this.resizeChild;
31256     },
31257     groupHandler : function()
31258     {
31259         
31260     },
31261     /**
31262      * Destroys this resizable. If the element was wrapped and
31263      * removeEl is not true then the element remains.
31264      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31265      */
31266     destroy : function(removeEl){
31267         this.proxy.remove();
31268         if(this.overlay){
31269             this.overlay.removeAllListeners();
31270             this.overlay.remove();
31271         }
31272         var ps = Roo.Resizable.positions;
31273         for(var k in ps){
31274             if(typeof ps[k] != "function" && this[ps[k]]){
31275                 var h = this[ps[k]];
31276                 h.el.removeAllListeners();
31277                 h.el.remove();
31278             }
31279         }
31280         if(removeEl){
31281             this.el.update("");
31282             this.el.remove();
31283         }
31284     }
31285 });
31286
31287 // private
31288 // hash to map config positions to true positions
31289 Roo.Resizable.positions = {
31290     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31291     hd: "hdrag"
31292 };
31293
31294 // private
31295 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31296     if(!this.tpl){
31297         // only initialize the template if resizable is used
31298         var tpl = Roo.DomHelper.createTemplate(
31299             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31300         );
31301         tpl.compile();
31302         Roo.Resizable.Handle.prototype.tpl = tpl;
31303     }
31304     this.position = pos;
31305     this.rz = rz;
31306     // show north drag fro topdra
31307     var handlepos = pos == 'hdrag' ? 'north' : pos;
31308     
31309     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31310     if (pos == 'hdrag') {
31311         this.el.setStyle('cursor', 'pointer');
31312     }
31313     this.el.unselectable();
31314     if(transparent){
31315         this.el.setOpacity(0);
31316     }
31317     this.el.on("mousedown", this.onMouseDown, this);
31318     if(!disableTrackOver){
31319         this.el.on("mouseover", this.onMouseOver, this);
31320         this.el.on("mouseout", this.onMouseOut, this);
31321     }
31322 };
31323
31324 // private
31325 Roo.Resizable.Handle.prototype = {
31326     afterResize : function(rz){
31327         Roo.log('after?');
31328         // do nothing
31329     },
31330     // private
31331     onMouseDown : function(e){
31332         this.rz.onMouseDown(this, e);
31333     },
31334     // private
31335     onMouseOver : function(e){
31336         this.rz.handleOver(this, e);
31337     },
31338     // private
31339     onMouseOut : function(e){
31340         this.rz.handleOut(this, e);
31341     }
31342 };/*
31343  * Based on:
31344  * Ext JS Library 1.1.1
31345  * Copyright(c) 2006-2007, Ext JS, LLC.
31346  *
31347  * Originally Released Under LGPL - original licence link has changed is not relivant.
31348  *
31349  * Fork - LGPL
31350  * <script type="text/javascript">
31351  */
31352
31353 /**
31354  * @class Roo.Editor
31355  * @extends Roo.Component
31356  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31357  * @constructor
31358  * Create a new Editor
31359  * @param {Roo.form.Field} field The Field object (or descendant)
31360  * @param {Object} config The config object
31361  */
31362 Roo.Editor = function(field, config){
31363     Roo.Editor.superclass.constructor.call(this, config);
31364     this.field = field;
31365     this.addEvents({
31366         /**
31367              * @event beforestartedit
31368              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31369              * false from the handler of this event.
31370              * @param {Editor} this
31371              * @param {Roo.Element} boundEl The underlying element bound to this editor
31372              * @param {Mixed} value The field value being set
31373              */
31374         "beforestartedit" : true,
31375         /**
31376              * @event startedit
31377              * Fires when this editor is displayed
31378              * @param {Roo.Element} boundEl The underlying element bound to this editor
31379              * @param {Mixed} value The starting field value
31380              */
31381         "startedit" : true,
31382         /**
31383              * @event beforecomplete
31384              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31385              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31386              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31387              * event will not fire since no edit actually occurred.
31388              * @param {Editor} this
31389              * @param {Mixed} value The current field value
31390              * @param {Mixed} startValue The original field value
31391              */
31392         "beforecomplete" : true,
31393         /**
31394              * @event complete
31395              * Fires after editing is complete and any changed value has been written to the underlying field.
31396              * @param {Editor} this
31397              * @param {Mixed} value The current field value
31398              * @param {Mixed} startValue The original field value
31399              */
31400         "complete" : true,
31401         /**
31402          * @event specialkey
31403          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31404          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31405          * @param {Roo.form.Field} this
31406          * @param {Roo.EventObject} e The event object
31407          */
31408         "specialkey" : true
31409     });
31410 };
31411
31412 Roo.extend(Roo.Editor, Roo.Component, {
31413     /**
31414      * @cfg {Boolean/String} autosize
31415      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31416      * or "height" to adopt the height only (defaults to false)
31417      */
31418     /**
31419      * @cfg {Boolean} revertInvalid
31420      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31421      * validation fails (defaults to true)
31422      */
31423     /**
31424      * @cfg {Boolean} ignoreNoChange
31425      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31426      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31427      * will never be ignored.
31428      */
31429     /**
31430      * @cfg {Boolean} hideEl
31431      * False to keep the bound element visible while the editor is displayed (defaults to true)
31432      */
31433     /**
31434      * @cfg {Mixed} value
31435      * The data value of the underlying field (defaults to "")
31436      */
31437     value : "",
31438     /**
31439      * @cfg {String} alignment
31440      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31441      */
31442     alignment: "c-c?",
31443     /**
31444      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31445      * for bottom-right shadow (defaults to "frame")
31446      */
31447     shadow : "frame",
31448     /**
31449      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31450      */
31451     constrain : false,
31452     /**
31453      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31454      */
31455     completeOnEnter : false,
31456     /**
31457      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31458      */
31459     cancelOnEsc : false,
31460     /**
31461      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31462      */
31463     updateEl : false,
31464
31465     // private
31466     onRender : function(ct, position){
31467         this.el = new Roo.Layer({
31468             shadow: this.shadow,
31469             cls: "x-editor",
31470             parentEl : ct,
31471             shim : this.shim,
31472             shadowOffset:4,
31473             id: this.id,
31474             constrain: this.constrain
31475         });
31476         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31477         if(this.field.msgTarget != 'title'){
31478             this.field.msgTarget = 'qtip';
31479         }
31480         this.field.render(this.el);
31481         if(Roo.isGecko){
31482             this.field.el.dom.setAttribute('autocomplete', 'off');
31483         }
31484         this.field.on("specialkey", this.onSpecialKey, this);
31485         if(this.swallowKeys){
31486             this.field.el.swallowEvent(['keydown','keypress']);
31487         }
31488         this.field.show();
31489         this.field.on("blur", this.onBlur, this);
31490         if(this.field.grow){
31491             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31492         }
31493     },
31494
31495     onSpecialKey : function(field, e)
31496     {
31497         //Roo.log('editor onSpecialKey');
31498         if(this.completeOnEnter && e.getKey() == e.ENTER){
31499             e.stopEvent();
31500             this.completeEdit();
31501             return;
31502         }
31503         // do not fire special key otherwise it might hide close the editor...
31504         if(e.getKey() == e.ENTER){    
31505             return;
31506         }
31507         if(this.cancelOnEsc && e.getKey() == e.ESC){
31508             this.cancelEdit();
31509             return;
31510         } 
31511         this.fireEvent('specialkey', field, e);
31512     
31513     },
31514
31515     /**
31516      * Starts the editing process and shows the editor.
31517      * @param {String/HTMLElement/Element} el The element to edit
31518      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31519       * to the innerHTML of el.
31520      */
31521     startEdit : function(el, value){
31522         if(this.editing){
31523             this.completeEdit();
31524         }
31525         this.boundEl = Roo.get(el);
31526         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31527         if(!this.rendered){
31528             this.render(this.parentEl || document.body);
31529         }
31530         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31531             return;
31532         }
31533         this.startValue = v;
31534         this.field.setValue(v);
31535         if(this.autoSize){
31536             var sz = this.boundEl.getSize();
31537             switch(this.autoSize){
31538                 case "width":
31539                 this.setSize(sz.width,  "");
31540                 break;
31541                 case "height":
31542                 this.setSize("",  sz.height);
31543                 break;
31544                 default:
31545                 this.setSize(sz.width,  sz.height);
31546             }
31547         }
31548         this.el.alignTo(this.boundEl, this.alignment);
31549         this.editing = true;
31550         if(Roo.QuickTips){
31551             Roo.QuickTips.disable();
31552         }
31553         this.show();
31554     },
31555
31556     /**
31557      * Sets the height and width of this editor.
31558      * @param {Number} width The new width
31559      * @param {Number} height The new height
31560      */
31561     setSize : function(w, h){
31562         this.field.setSize(w, h);
31563         if(this.el){
31564             this.el.sync();
31565         }
31566     },
31567
31568     /**
31569      * Realigns the editor to the bound field based on the current alignment config value.
31570      */
31571     realign : function(){
31572         this.el.alignTo(this.boundEl, this.alignment);
31573     },
31574
31575     /**
31576      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31577      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31578      */
31579     completeEdit : function(remainVisible){
31580         if(!this.editing){
31581             return;
31582         }
31583         var v = this.getValue();
31584         if(this.revertInvalid !== false && !this.field.isValid()){
31585             v = this.startValue;
31586             this.cancelEdit(true);
31587         }
31588         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31589             this.editing = false;
31590             this.hide();
31591             return;
31592         }
31593         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31594             this.editing = false;
31595             if(this.updateEl && this.boundEl){
31596                 this.boundEl.update(v);
31597             }
31598             if(remainVisible !== true){
31599                 this.hide();
31600             }
31601             this.fireEvent("complete", this, v, this.startValue);
31602         }
31603     },
31604
31605     // private
31606     onShow : function(){
31607         this.el.show();
31608         if(this.hideEl !== false){
31609             this.boundEl.hide();
31610         }
31611         this.field.show();
31612         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31613             this.fixIEFocus = true;
31614             this.deferredFocus.defer(50, this);
31615         }else{
31616             this.field.focus();
31617         }
31618         this.fireEvent("startedit", this.boundEl, this.startValue);
31619     },
31620
31621     deferredFocus : function(){
31622         if(this.editing){
31623             this.field.focus();
31624         }
31625     },
31626
31627     /**
31628      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
31629      * reverted to the original starting value.
31630      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
31631      * cancel (defaults to false)
31632      */
31633     cancelEdit : function(remainVisible){
31634         if(this.editing){
31635             this.setValue(this.startValue);
31636             if(remainVisible !== true){
31637                 this.hide();
31638             }
31639         }
31640     },
31641
31642     // private
31643     onBlur : function(){
31644         if(this.allowBlur !== true && this.editing){
31645             this.completeEdit();
31646         }
31647     },
31648
31649     // private
31650     onHide : function(){
31651         if(this.editing){
31652             this.completeEdit();
31653             return;
31654         }
31655         this.field.blur();
31656         if(this.field.collapse){
31657             this.field.collapse();
31658         }
31659         this.el.hide();
31660         if(this.hideEl !== false){
31661             this.boundEl.show();
31662         }
31663         if(Roo.QuickTips){
31664             Roo.QuickTips.enable();
31665         }
31666     },
31667
31668     /**
31669      * Sets the data value of the editor
31670      * @param {Mixed} value Any valid value supported by the underlying field
31671      */
31672     setValue : function(v){
31673         this.field.setValue(v);
31674     },
31675
31676     /**
31677      * Gets the data value of the editor
31678      * @return {Mixed} The data value
31679      */
31680     getValue : function(){
31681         return this.field.getValue();
31682     }
31683 });/*
31684  * Based on:
31685  * Ext JS Library 1.1.1
31686  * Copyright(c) 2006-2007, Ext JS, LLC.
31687  *
31688  * Originally Released Under LGPL - original licence link has changed is not relivant.
31689  *
31690  * Fork - LGPL
31691  * <script type="text/javascript">
31692  */
31693  
31694 /**
31695  * @class Roo.BasicDialog
31696  * @extends Roo.util.Observable
31697  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
31698  * <pre><code>
31699 var dlg = new Roo.BasicDialog("my-dlg", {
31700     height: 200,
31701     width: 300,
31702     minHeight: 100,
31703     minWidth: 150,
31704     modal: true,
31705     proxyDrag: true,
31706     shadow: true
31707 });
31708 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
31709 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
31710 dlg.addButton('Cancel', dlg.hide, dlg);
31711 dlg.show();
31712 </code></pre>
31713   <b>A Dialog should always be a direct child of the body element.</b>
31714  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
31715  * @cfg {String} title Default text to display in the title bar (defaults to null)
31716  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
31717  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
31718  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
31719  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
31720  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
31721  * (defaults to null with no animation)
31722  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
31723  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
31724  * property for valid values (defaults to 'all')
31725  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
31726  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
31727  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
31728  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
31729  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
31730  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
31731  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
31732  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
31733  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
31734  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
31735  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
31736  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
31737  * draggable = true (defaults to false)
31738  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
31739  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
31740  * shadow (defaults to false)
31741  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
31742  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
31743  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
31744  * @cfg {Array} buttons Array of buttons
31745  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
31746  * @constructor
31747  * Create a new BasicDialog.
31748  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
31749  * @param {Object} config Configuration options
31750  */
31751 Roo.BasicDialog = function(el, config){
31752     this.el = Roo.get(el);
31753     var dh = Roo.DomHelper;
31754     if(!this.el && config && config.autoCreate){
31755         if(typeof config.autoCreate == "object"){
31756             if(!config.autoCreate.id){
31757                 config.autoCreate.id = el;
31758             }
31759             this.el = dh.append(document.body,
31760                         config.autoCreate, true);
31761         }else{
31762             this.el = dh.append(document.body,
31763                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
31764         }
31765     }
31766     el = this.el;
31767     el.setDisplayed(true);
31768     el.hide = this.hideAction;
31769     this.id = el.id;
31770     el.addClass("x-dlg");
31771
31772     Roo.apply(this, config);
31773
31774     this.proxy = el.createProxy("x-dlg-proxy");
31775     this.proxy.hide = this.hideAction;
31776     this.proxy.setOpacity(.5);
31777     this.proxy.hide();
31778
31779     if(config.width){
31780         el.setWidth(config.width);
31781     }
31782     if(config.height){
31783         el.setHeight(config.height);
31784     }
31785     this.size = el.getSize();
31786     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
31787         this.xy = [config.x,config.y];
31788     }else{
31789         this.xy = el.getCenterXY(true);
31790     }
31791     /** The header element @type Roo.Element */
31792     this.header = el.child("> .x-dlg-hd");
31793     /** The body element @type Roo.Element */
31794     this.body = el.child("> .x-dlg-bd");
31795     /** The footer element @type Roo.Element */
31796     this.footer = el.child("> .x-dlg-ft");
31797
31798     if(!this.header){
31799         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
31800     }
31801     if(!this.body){
31802         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
31803     }
31804
31805     this.header.unselectable();
31806     if(this.title){
31807         this.header.update(this.title);
31808     }
31809     // this element allows the dialog to be focused for keyboard event
31810     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
31811     this.focusEl.swallowEvent("click", true);
31812
31813     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
31814
31815     // wrap the body and footer for special rendering
31816     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
31817     if(this.footer){
31818         this.bwrap.dom.appendChild(this.footer.dom);
31819     }
31820
31821     this.bg = this.el.createChild({
31822         tag: "div", cls:"x-dlg-bg",
31823         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
31824     });
31825     this.centerBg = this.bg.child("div.x-dlg-bg-center");
31826
31827
31828     if(this.autoScroll !== false && !this.autoTabs){
31829         this.body.setStyle("overflow", "auto");
31830     }
31831
31832     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
31833
31834     if(this.closable !== false){
31835         this.el.addClass("x-dlg-closable");
31836         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
31837         this.close.on("click", this.closeClick, this);
31838         this.close.addClassOnOver("x-dlg-close-over");
31839     }
31840     if(this.collapsible !== false){
31841         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
31842         this.collapseBtn.on("click", this.collapseClick, this);
31843         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
31844         this.header.on("dblclick", this.collapseClick, this);
31845     }
31846     if(this.resizable !== false){
31847         this.el.addClass("x-dlg-resizable");
31848         this.resizer = new Roo.Resizable(el, {
31849             minWidth: this.minWidth || 80,
31850             minHeight:this.minHeight || 80,
31851             handles: this.resizeHandles || "all",
31852             pinned: true
31853         });
31854         this.resizer.on("beforeresize", this.beforeResize, this);
31855         this.resizer.on("resize", this.onResize, this);
31856     }
31857     if(this.draggable !== false){
31858         el.addClass("x-dlg-draggable");
31859         if (!this.proxyDrag) {
31860             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
31861         }
31862         else {
31863             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
31864         }
31865         dd.setHandleElId(this.header.id);
31866         dd.endDrag = this.endMove.createDelegate(this);
31867         dd.startDrag = this.startMove.createDelegate(this);
31868         dd.onDrag = this.onDrag.createDelegate(this);
31869         dd.scroll = false;
31870         this.dd = dd;
31871     }
31872     if(this.modal){
31873         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
31874         this.mask.enableDisplayMode("block");
31875         this.mask.hide();
31876         this.el.addClass("x-dlg-modal");
31877     }
31878     if(this.shadow){
31879         this.shadow = new Roo.Shadow({
31880             mode : typeof this.shadow == "string" ? this.shadow : "sides",
31881             offset : this.shadowOffset
31882         });
31883     }else{
31884         this.shadowOffset = 0;
31885     }
31886     if(Roo.useShims && this.shim !== false){
31887         this.shim = this.el.createShim();
31888         this.shim.hide = this.hideAction;
31889         this.shim.hide();
31890     }else{
31891         this.shim = false;
31892     }
31893     if(this.autoTabs){
31894         this.initTabs();
31895     }
31896     if (this.buttons) { 
31897         var bts= this.buttons;
31898         this.buttons = [];
31899         Roo.each(bts, function(b) {
31900             this.addButton(b);
31901         }, this);
31902     }
31903     
31904     
31905     this.addEvents({
31906         /**
31907          * @event keydown
31908          * Fires when a key is pressed
31909          * @param {Roo.BasicDialog} this
31910          * @param {Roo.EventObject} e
31911          */
31912         "keydown" : true,
31913         /**
31914          * @event move
31915          * Fires when this dialog is moved by the user.
31916          * @param {Roo.BasicDialog} this
31917          * @param {Number} x The new page X
31918          * @param {Number} y The new page Y
31919          */
31920         "move" : true,
31921         /**
31922          * @event resize
31923          * Fires when this dialog is resized by the user.
31924          * @param {Roo.BasicDialog} this
31925          * @param {Number} width The new width
31926          * @param {Number} height The new height
31927          */
31928         "resize" : true,
31929         /**
31930          * @event beforehide
31931          * Fires before this dialog is hidden.
31932          * @param {Roo.BasicDialog} this
31933          */
31934         "beforehide" : true,
31935         /**
31936          * @event hide
31937          * Fires when this dialog is hidden.
31938          * @param {Roo.BasicDialog} this
31939          */
31940         "hide" : true,
31941         /**
31942          * @event beforeshow
31943          * Fires before this dialog is shown.
31944          * @param {Roo.BasicDialog} this
31945          */
31946         "beforeshow" : true,
31947         /**
31948          * @event show
31949          * Fires when this dialog is shown.
31950          * @param {Roo.BasicDialog} this
31951          */
31952         "show" : true
31953     });
31954     el.on("keydown", this.onKeyDown, this);
31955     el.on("mousedown", this.toFront, this);
31956     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
31957     this.el.hide();
31958     Roo.DialogManager.register(this);
31959     Roo.BasicDialog.superclass.constructor.call(this);
31960 };
31961
31962 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
31963     shadowOffset: Roo.isIE ? 6 : 5,
31964     minHeight: 80,
31965     minWidth: 200,
31966     minButtonWidth: 75,
31967     defaultButton: null,
31968     buttonAlign: "right",
31969     tabTag: 'div',
31970     firstShow: true,
31971
31972     /**
31973      * Sets the dialog title text
31974      * @param {String} text The title text to display
31975      * @return {Roo.BasicDialog} this
31976      */
31977     setTitle : function(text){
31978         this.header.update(text);
31979         return this;
31980     },
31981
31982     // private
31983     closeClick : function(){
31984         this.hide();
31985     },
31986
31987     // private
31988     collapseClick : function(){
31989         this[this.collapsed ? "expand" : "collapse"]();
31990     },
31991
31992     /**
31993      * Collapses the dialog to its minimized state (only the title bar is visible).
31994      * Equivalent to the user clicking the collapse dialog button.
31995      */
31996     collapse : function(){
31997         if(!this.collapsed){
31998             this.collapsed = true;
31999             this.el.addClass("x-dlg-collapsed");
32000             this.restoreHeight = this.el.getHeight();
32001             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32002         }
32003     },
32004
32005     /**
32006      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32007      * clicking the expand dialog button.
32008      */
32009     expand : function(){
32010         if(this.collapsed){
32011             this.collapsed = false;
32012             this.el.removeClass("x-dlg-collapsed");
32013             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32014         }
32015     },
32016
32017     /**
32018      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32019      * @return {Roo.TabPanel} The tabs component
32020      */
32021     initTabs : function(){
32022         var tabs = this.getTabs();
32023         while(tabs.getTab(0)){
32024             tabs.removeTab(0);
32025         }
32026         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32027             var dom = el.dom;
32028             tabs.addTab(Roo.id(dom), dom.title);
32029             dom.title = "";
32030         });
32031         tabs.activate(0);
32032         return tabs;
32033     },
32034
32035     // private
32036     beforeResize : function(){
32037         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32038     },
32039
32040     // private
32041     onResize : function(){
32042         this.refreshSize();
32043         this.syncBodyHeight();
32044         this.adjustAssets();
32045         this.focus();
32046         this.fireEvent("resize", this, this.size.width, this.size.height);
32047     },
32048
32049     // private
32050     onKeyDown : function(e){
32051         if(this.isVisible()){
32052             this.fireEvent("keydown", this, e);
32053         }
32054     },
32055
32056     /**
32057      * Resizes the dialog.
32058      * @param {Number} width
32059      * @param {Number} height
32060      * @return {Roo.BasicDialog} this
32061      */
32062     resizeTo : function(width, height){
32063         this.el.setSize(width, height);
32064         this.size = {width: width, height: height};
32065         this.syncBodyHeight();
32066         if(this.fixedcenter){
32067             this.center();
32068         }
32069         if(this.isVisible()){
32070             this.constrainXY();
32071             this.adjustAssets();
32072         }
32073         this.fireEvent("resize", this, width, height);
32074         return this;
32075     },
32076
32077
32078     /**
32079      * Resizes the dialog to fit the specified content size.
32080      * @param {Number} width
32081      * @param {Number} height
32082      * @return {Roo.BasicDialog} this
32083      */
32084     setContentSize : function(w, h){
32085         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32086         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32087         //if(!this.el.isBorderBox()){
32088             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32089             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32090         //}
32091         if(this.tabs){
32092             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32093             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32094         }
32095         this.resizeTo(w, h);
32096         return this;
32097     },
32098
32099     /**
32100      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32101      * executed in response to a particular key being pressed while the dialog is active.
32102      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32103      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32104      * @param {Function} fn The function to call
32105      * @param {Object} scope (optional) The scope of the function
32106      * @return {Roo.BasicDialog} this
32107      */
32108     addKeyListener : function(key, fn, scope){
32109         var keyCode, shift, ctrl, alt;
32110         if(typeof key == "object" && !(key instanceof Array)){
32111             keyCode = key["key"];
32112             shift = key["shift"];
32113             ctrl = key["ctrl"];
32114             alt = key["alt"];
32115         }else{
32116             keyCode = key;
32117         }
32118         var handler = function(dlg, e){
32119             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32120                 var k = e.getKey();
32121                 if(keyCode instanceof Array){
32122                     for(var i = 0, len = keyCode.length; i < len; i++){
32123                         if(keyCode[i] == k){
32124                           fn.call(scope || window, dlg, k, e);
32125                           return;
32126                         }
32127                     }
32128                 }else{
32129                     if(k == keyCode){
32130                         fn.call(scope || window, dlg, k, e);
32131                     }
32132                 }
32133             }
32134         };
32135         this.on("keydown", handler);
32136         return this;
32137     },
32138
32139     /**
32140      * Returns the TabPanel component (creates it if it doesn't exist).
32141      * Note: If you wish to simply check for the existence of tabs without creating them,
32142      * check for a null 'tabs' property.
32143      * @return {Roo.TabPanel} The tabs component
32144      */
32145     getTabs : function(){
32146         if(!this.tabs){
32147             this.el.addClass("x-dlg-auto-tabs");
32148             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32149             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32150         }
32151         return this.tabs;
32152     },
32153
32154     /**
32155      * Adds a button to the footer section of the dialog.
32156      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32157      * object or a valid Roo.DomHelper element config
32158      * @param {Function} handler The function called when the button is clicked
32159      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32160      * @return {Roo.Button} The new button
32161      */
32162     addButton : function(config, handler, scope){
32163         var dh = Roo.DomHelper;
32164         if(!this.footer){
32165             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32166         }
32167         if(!this.btnContainer){
32168             var tb = this.footer.createChild({
32169
32170                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32171                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32172             }, null, true);
32173             this.btnContainer = tb.firstChild.firstChild.firstChild;
32174         }
32175         var bconfig = {
32176             handler: handler,
32177             scope: scope,
32178             minWidth: this.minButtonWidth,
32179             hideParent:true
32180         };
32181         if(typeof config == "string"){
32182             bconfig.text = config;
32183         }else{
32184             if(config.tag){
32185                 bconfig.dhconfig = config;
32186             }else{
32187                 Roo.apply(bconfig, config);
32188             }
32189         }
32190         var fc = false;
32191         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32192             bconfig.position = Math.max(0, bconfig.position);
32193             fc = this.btnContainer.childNodes[bconfig.position];
32194         }
32195          
32196         var btn = new Roo.Button(
32197             fc ? 
32198                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32199                 : this.btnContainer.appendChild(document.createElement("td")),
32200             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32201             bconfig
32202         );
32203         this.syncBodyHeight();
32204         if(!this.buttons){
32205             /**
32206              * Array of all the buttons that have been added to this dialog via addButton
32207              * @type Array
32208              */
32209             this.buttons = [];
32210         }
32211         this.buttons.push(btn);
32212         return btn;
32213     },
32214
32215     /**
32216      * Sets the default button to be focused when the dialog is displayed.
32217      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32218      * @return {Roo.BasicDialog} this
32219      */
32220     setDefaultButton : function(btn){
32221         this.defaultButton = btn;
32222         return this;
32223     },
32224
32225     // private
32226     getHeaderFooterHeight : function(safe){
32227         var height = 0;
32228         if(this.header){
32229            height += this.header.getHeight();
32230         }
32231         if(this.footer){
32232            var fm = this.footer.getMargins();
32233             height += (this.footer.getHeight()+fm.top+fm.bottom);
32234         }
32235         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32236         height += this.centerBg.getPadding("tb");
32237         return height;
32238     },
32239
32240     // private
32241     syncBodyHeight : function()
32242     {
32243         var bd = this.body, // the text
32244             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32245             bw = this.bwrap;
32246         var height = this.size.height - this.getHeaderFooterHeight(false);
32247         bd.setHeight(height-bd.getMargins("tb"));
32248         var hh = this.header.getHeight();
32249         var h = this.size.height-hh;
32250         cb.setHeight(h);
32251         
32252         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32253         bw.setHeight(h-cb.getPadding("tb"));
32254         
32255         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32256         bd.setWidth(bw.getWidth(true));
32257         if(this.tabs){
32258             this.tabs.syncHeight();
32259             if(Roo.isIE){
32260                 this.tabs.el.repaint();
32261             }
32262         }
32263     },
32264
32265     /**
32266      * Restores the previous state of the dialog if Roo.state is configured.
32267      * @return {Roo.BasicDialog} this
32268      */
32269     restoreState : function(){
32270         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32271         if(box && box.width){
32272             this.xy = [box.x, box.y];
32273             this.resizeTo(box.width, box.height);
32274         }
32275         return this;
32276     },
32277
32278     // private
32279     beforeShow : function(){
32280         this.expand();
32281         if(this.fixedcenter){
32282             this.xy = this.el.getCenterXY(true);
32283         }
32284         if(this.modal){
32285             Roo.get(document.body).addClass("x-body-masked");
32286             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32287             this.mask.show();
32288         }
32289         this.constrainXY();
32290     },
32291
32292     // private
32293     animShow : function(){
32294         var b = Roo.get(this.animateTarget).getBox();
32295         this.proxy.setSize(b.width, b.height);
32296         this.proxy.setLocation(b.x, b.y);
32297         this.proxy.show();
32298         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32299                     true, .35, this.showEl.createDelegate(this));
32300     },
32301
32302     /**
32303      * Shows the dialog.
32304      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32305      * @return {Roo.BasicDialog} this
32306      */
32307     show : function(animateTarget){
32308         if (this.fireEvent("beforeshow", this) === false){
32309             return;
32310         }
32311         if(this.syncHeightBeforeShow){
32312             this.syncBodyHeight();
32313         }else if(this.firstShow){
32314             this.firstShow = false;
32315             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32316         }
32317         this.animateTarget = animateTarget || this.animateTarget;
32318         if(!this.el.isVisible()){
32319             this.beforeShow();
32320             if(this.animateTarget && Roo.get(this.animateTarget)){
32321                 this.animShow();
32322             }else{
32323                 this.showEl();
32324             }
32325         }
32326         return this;
32327     },
32328
32329     // private
32330     showEl : function(){
32331         this.proxy.hide();
32332         this.el.setXY(this.xy);
32333         this.el.show();
32334         this.adjustAssets(true);
32335         this.toFront();
32336         this.focus();
32337         // IE peekaboo bug - fix found by Dave Fenwick
32338         if(Roo.isIE){
32339             this.el.repaint();
32340         }
32341         this.fireEvent("show", this);
32342     },
32343
32344     /**
32345      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32346      * dialog itself will receive focus.
32347      */
32348     focus : function(){
32349         if(this.defaultButton){
32350             this.defaultButton.focus();
32351         }else{
32352             this.focusEl.focus();
32353         }
32354     },
32355
32356     // private
32357     constrainXY : function(){
32358         if(this.constraintoviewport !== false){
32359             if(!this.viewSize){
32360                 if(this.container){
32361                     var s = this.container.getSize();
32362                     this.viewSize = [s.width, s.height];
32363                 }else{
32364                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32365                 }
32366             }
32367             var s = Roo.get(this.container||document).getScroll();
32368
32369             var x = this.xy[0], y = this.xy[1];
32370             var w = this.size.width, h = this.size.height;
32371             var vw = this.viewSize[0], vh = this.viewSize[1];
32372             // only move it if it needs it
32373             var moved = false;
32374             // first validate right/bottom
32375             if(x + w > vw+s.left){
32376                 x = vw - w;
32377                 moved = true;
32378             }
32379             if(y + h > vh+s.top){
32380                 y = vh - h;
32381                 moved = true;
32382             }
32383             // then make sure top/left isn't negative
32384             if(x < s.left){
32385                 x = s.left;
32386                 moved = true;
32387             }
32388             if(y < s.top){
32389                 y = s.top;
32390                 moved = true;
32391             }
32392             if(moved){
32393                 // cache xy
32394                 this.xy = [x, y];
32395                 if(this.isVisible()){
32396                     this.el.setLocation(x, y);
32397                     this.adjustAssets();
32398                 }
32399             }
32400         }
32401     },
32402
32403     // private
32404     onDrag : function(){
32405         if(!this.proxyDrag){
32406             this.xy = this.el.getXY();
32407             this.adjustAssets();
32408         }
32409     },
32410
32411     // private
32412     adjustAssets : function(doShow){
32413         var x = this.xy[0], y = this.xy[1];
32414         var w = this.size.width, h = this.size.height;
32415         if(doShow === true){
32416             if(this.shadow){
32417                 this.shadow.show(this.el);
32418             }
32419             if(this.shim){
32420                 this.shim.show();
32421             }
32422         }
32423         if(this.shadow && this.shadow.isVisible()){
32424             this.shadow.show(this.el);
32425         }
32426         if(this.shim && this.shim.isVisible()){
32427             this.shim.setBounds(x, y, w, h);
32428         }
32429     },
32430
32431     // private
32432     adjustViewport : function(w, h){
32433         if(!w || !h){
32434             w = Roo.lib.Dom.getViewWidth();
32435             h = Roo.lib.Dom.getViewHeight();
32436         }
32437         // cache the size
32438         this.viewSize = [w, h];
32439         if(this.modal && this.mask.isVisible()){
32440             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32441             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32442         }
32443         if(this.isVisible()){
32444             this.constrainXY();
32445         }
32446     },
32447
32448     /**
32449      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32450      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32451      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32452      */
32453     destroy : function(removeEl){
32454         if(this.isVisible()){
32455             this.animateTarget = null;
32456             this.hide();
32457         }
32458         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32459         if(this.tabs){
32460             this.tabs.destroy(removeEl);
32461         }
32462         Roo.destroy(
32463              this.shim,
32464              this.proxy,
32465              this.resizer,
32466              this.close,
32467              this.mask
32468         );
32469         if(this.dd){
32470             this.dd.unreg();
32471         }
32472         if(this.buttons){
32473            for(var i = 0, len = this.buttons.length; i < len; i++){
32474                this.buttons[i].destroy();
32475            }
32476         }
32477         this.el.removeAllListeners();
32478         if(removeEl === true){
32479             this.el.update("");
32480             this.el.remove();
32481         }
32482         Roo.DialogManager.unregister(this);
32483     },
32484
32485     // private
32486     startMove : function(){
32487         if(this.proxyDrag){
32488             this.proxy.show();
32489         }
32490         if(this.constraintoviewport !== false){
32491             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32492         }
32493     },
32494
32495     // private
32496     endMove : function(){
32497         if(!this.proxyDrag){
32498             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32499         }else{
32500             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32501             this.proxy.hide();
32502         }
32503         this.refreshSize();
32504         this.adjustAssets();
32505         this.focus();
32506         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32507     },
32508
32509     /**
32510      * Brings this dialog to the front of any other visible dialogs
32511      * @return {Roo.BasicDialog} this
32512      */
32513     toFront : function(){
32514         Roo.DialogManager.bringToFront(this);
32515         return this;
32516     },
32517
32518     /**
32519      * Sends this dialog to the back (under) of any other visible dialogs
32520      * @return {Roo.BasicDialog} this
32521      */
32522     toBack : function(){
32523         Roo.DialogManager.sendToBack(this);
32524         return this;
32525     },
32526
32527     /**
32528      * Centers this dialog in the viewport
32529      * @return {Roo.BasicDialog} this
32530      */
32531     center : function(){
32532         var xy = this.el.getCenterXY(true);
32533         this.moveTo(xy[0], xy[1]);
32534         return this;
32535     },
32536
32537     /**
32538      * Moves the dialog's top-left corner to the specified point
32539      * @param {Number} x
32540      * @param {Number} y
32541      * @return {Roo.BasicDialog} this
32542      */
32543     moveTo : function(x, y){
32544         this.xy = [x,y];
32545         if(this.isVisible()){
32546             this.el.setXY(this.xy);
32547             this.adjustAssets();
32548         }
32549         return this;
32550     },
32551
32552     /**
32553      * Aligns the dialog to the specified element
32554      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32555      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32556      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32557      * @return {Roo.BasicDialog} this
32558      */
32559     alignTo : function(element, position, offsets){
32560         this.xy = this.el.getAlignToXY(element, position, offsets);
32561         if(this.isVisible()){
32562             this.el.setXY(this.xy);
32563             this.adjustAssets();
32564         }
32565         return this;
32566     },
32567
32568     /**
32569      * Anchors an element to another element and realigns it when the window is resized.
32570      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32571      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32572      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32573      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32574      * is a number, it is used as the buffer delay (defaults to 50ms).
32575      * @return {Roo.BasicDialog} this
32576      */
32577     anchorTo : function(el, alignment, offsets, monitorScroll){
32578         var action = function(){
32579             this.alignTo(el, alignment, offsets);
32580         };
32581         Roo.EventManager.onWindowResize(action, this);
32582         var tm = typeof monitorScroll;
32583         if(tm != 'undefined'){
32584             Roo.EventManager.on(window, 'scroll', action, this,
32585                 {buffer: tm == 'number' ? monitorScroll : 50});
32586         }
32587         action.call(this);
32588         return this;
32589     },
32590
32591     /**
32592      * Returns true if the dialog is visible
32593      * @return {Boolean}
32594      */
32595     isVisible : function(){
32596         return this.el.isVisible();
32597     },
32598
32599     // private
32600     animHide : function(callback){
32601         var b = Roo.get(this.animateTarget).getBox();
32602         this.proxy.show();
32603         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32604         this.el.hide();
32605         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32606                     this.hideEl.createDelegate(this, [callback]));
32607     },
32608
32609     /**
32610      * Hides the dialog.
32611      * @param {Function} callback (optional) Function to call when the dialog is hidden
32612      * @return {Roo.BasicDialog} this
32613      */
32614     hide : function(callback){
32615         if (this.fireEvent("beforehide", this) === false){
32616             return;
32617         }
32618         if(this.shadow){
32619             this.shadow.hide();
32620         }
32621         if(this.shim) {
32622           this.shim.hide();
32623         }
32624         // sometimes animateTarget seems to get set.. causing problems...
32625         // this just double checks..
32626         if(this.animateTarget && Roo.get(this.animateTarget)) {
32627            this.animHide(callback);
32628         }else{
32629             this.el.hide();
32630             this.hideEl(callback);
32631         }
32632         return this;
32633     },
32634
32635     // private
32636     hideEl : function(callback){
32637         this.proxy.hide();
32638         if(this.modal){
32639             this.mask.hide();
32640             Roo.get(document.body).removeClass("x-body-masked");
32641         }
32642         this.fireEvent("hide", this);
32643         if(typeof callback == "function"){
32644             callback();
32645         }
32646     },
32647
32648     // private
32649     hideAction : function(){
32650         this.setLeft("-10000px");
32651         this.setTop("-10000px");
32652         this.setStyle("visibility", "hidden");
32653     },
32654
32655     // private
32656     refreshSize : function(){
32657         this.size = this.el.getSize();
32658         this.xy = this.el.getXY();
32659         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
32660     },
32661
32662     // private
32663     // z-index is managed by the DialogManager and may be overwritten at any time
32664     setZIndex : function(index){
32665         if(this.modal){
32666             this.mask.setStyle("z-index", index);
32667         }
32668         if(this.shim){
32669             this.shim.setStyle("z-index", ++index);
32670         }
32671         if(this.shadow){
32672             this.shadow.setZIndex(++index);
32673         }
32674         this.el.setStyle("z-index", ++index);
32675         if(this.proxy){
32676             this.proxy.setStyle("z-index", ++index);
32677         }
32678         if(this.resizer){
32679             this.resizer.proxy.setStyle("z-index", ++index);
32680         }
32681
32682         this.lastZIndex = index;
32683     },
32684
32685     /**
32686      * Returns the element for this dialog
32687      * @return {Roo.Element} The underlying dialog Element
32688      */
32689     getEl : function(){
32690         return this.el;
32691     }
32692 });
32693
32694 /**
32695  * @class Roo.DialogManager
32696  * Provides global access to BasicDialogs that have been created and
32697  * support for z-indexing (layering) multiple open dialogs.
32698  */
32699 Roo.DialogManager = function(){
32700     var list = {};
32701     var accessList = [];
32702     var front = null;
32703
32704     // private
32705     var sortDialogs = function(d1, d2){
32706         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
32707     };
32708
32709     // private
32710     var orderDialogs = function(){
32711         accessList.sort(sortDialogs);
32712         var seed = Roo.DialogManager.zseed;
32713         for(var i = 0, len = accessList.length; i < len; i++){
32714             var dlg = accessList[i];
32715             if(dlg){
32716                 dlg.setZIndex(seed + (i*10));
32717             }
32718         }
32719     };
32720
32721     return {
32722         /**
32723          * The starting z-index for BasicDialogs (defaults to 9000)
32724          * @type Number The z-index value
32725          */
32726         zseed : 9000,
32727
32728         // private
32729         register : function(dlg){
32730             list[dlg.id] = dlg;
32731             accessList.push(dlg);
32732         },
32733
32734         // private
32735         unregister : function(dlg){
32736             delete list[dlg.id];
32737             var i=0;
32738             var len=0;
32739             if(!accessList.indexOf){
32740                 for(  i = 0, len = accessList.length; i < len; i++){
32741                     if(accessList[i] == dlg){
32742                         accessList.splice(i, 1);
32743                         return;
32744                     }
32745                 }
32746             }else{
32747                  i = accessList.indexOf(dlg);
32748                 if(i != -1){
32749                     accessList.splice(i, 1);
32750                 }
32751             }
32752         },
32753
32754         /**
32755          * Gets a registered dialog by id
32756          * @param {String/Object} id The id of the dialog or a dialog
32757          * @return {Roo.BasicDialog} this
32758          */
32759         get : function(id){
32760             return typeof id == "object" ? id : list[id];
32761         },
32762
32763         /**
32764          * Brings the specified dialog to the front
32765          * @param {String/Object} dlg The id of the dialog or a dialog
32766          * @return {Roo.BasicDialog} this
32767          */
32768         bringToFront : function(dlg){
32769             dlg = this.get(dlg);
32770             if(dlg != front){
32771                 front = dlg;
32772                 dlg._lastAccess = new Date().getTime();
32773                 orderDialogs();
32774             }
32775             return dlg;
32776         },
32777
32778         /**
32779          * Sends the specified dialog to the back
32780          * @param {String/Object} dlg The id of the dialog or a dialog
32781          * @return {Roo.BasicDialog} this
32782          */
32783         sendToBack : function(dlg){
32784             dlg = this.get(dlg);
32785             dlg._lastAccess = -(new Date().getTime());
32786             orderDialogs();
32787             return dlg;
32788         },
32789
32790         /**
32791          * Hides all dialogs
32792          */
32793         hideAll : function(){
32794             for(var id in list){
32795                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
32796                     list[id].hide();
32797                 }
32798             }
32799         }
32800     };
32801 }();
32802
32803 /**
32804  * @class Roo.LayoutDialog
32805  * @extends Roo.BasicDialog
32806  * Dialog which provides adjustments for working with a layout in a Dialog.
32807  * Add your necessary layout config options to the dialog's config.<br>
32808  * Example usage (including a nested layout):
32809  * <pre><code>
32810 if(!dialog){
32811     dialog = new Roo.LayoutDialog("download-dlg", {
32812         modal: true,
32813         width:600,
32814         height:450,
32815         shadow:true,
32816         minWidth:500,
32817         minHeight:350,
32818         autoTabs:true,
32819         proxyDrag:true,
32820         // layout config merges with the dialog config
32821         center:{
32822             tabPosition: "top",
32823             alwaysShowTabs: true
32824         }
32825     });
32826     dialog.addKeyListener(27, dialog.hide, dialog);
32827     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
32828     dialog.addButton("Build It!", this.getDownload, this);
32829
32830     // we can even add nested layouts
32831     var innerLayout = new Roo.BorderLayout("dl-inner", {
32832         east: {
32833             initialSize: 200,
32834             autoScroll:true,
32835             split:true
32836         },
32837         center: {
32838             autoScroll:true
32839         }
32840     });
32841     innerLayout.beginUpdate();
32842     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
32843     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
32844     innerLayout.endUpdate(true);
32845
32846     var layout = dialog.getLayout();
32847     layout.beginUpdate();
32848     layout.add("center", new Roo.ContentPanel("standard-panel",
32849                         {title: "Download the Source", fitToFrame:true}));
32850     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
32851                {title: "Build your own roo.js"}));
32852     layout.getRegion("center").showPanel(sp);
32853     layout.endUpdate();
32854 }
32855 </code></pre>
32856     * @constructor
32857     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
32858     * @param {Object} config configuration options
32859   */
32860 Roo.LayoutDialog = function(el, cfg){
32861     
32862     var config=  cfg;
32863     if (typeof(cfg) == 'undefined') {
32864         config = Roo.apply({}, el);
32865         // not sure why we use documentElement here.. - it should always be body.
32866         // IE7 borks horribly if we use documentElement.
32867         // webkit also does not like documentElement - it creates a body element...
32868         el = Roo.get( document.body || document.documentElement ).createChild();
32869         //config.autoCreate = true;
32870     }
32871     
32872     
32873     config.autoTabs = false;
32874     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
32875     this.body.setStyle({overflow:"hidden", position:"relative"});
32876     this.layout = new Roo.BorderLayout(this.body.dom, config);
32877     this.layout.monitorWindowResize = false;
32878     this.el.addClass("x-dlg-auto-layout");
32879     // fix case when center region overwrites center function
32880     this.center = Roo.BasicDialog.prototype.center;
32881     this.on("show", this.layout.layout, this.layout, true);
32882     if (config.items) {
32883         var xitems = config.items;
32884         delete config.items;
32885         Roo.each(xitems, this.addxtype, this);
32886     }
32887     
32888     
32889 };
32890 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
32891     /**
32892      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
32893      * @deprecated
32894      */
32895     endUpdate : function(){
32896         this.layout.endUpdate();
32897     },
32898
32899     /**
32900      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
32901      *  @deprecated
32902      */
32903     beginUpdate : function(){
32904         this.layout.beginUpdate();
32905     },
32906
32907     /**
32908      * Get the BorderLayout for this dialog
32909      * @return {Roo.BorderLayout}
32910      */
32911     getLayout : function(){
32912         return this.layout;
32913     },
32914
32915     showEl : function(){
32916         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
32917         if(Roo.isIE7){
32918             this.layout.layout();
32919         }
32920     },
32921
32922     // private
32923     // Use the syncHeightBeforeShow config option to control this automatically
32924     syncBodyHeight : function(){
32925         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
32926         if(this.layout){this.layout.layout();}
32927     },
32928     
32929       /**
32930      * Add an xtype element (actually adds to the layout.)
32931      * @return {Object} xdata xtype object data.
32932      */
32933     
32934     addxtype : function(c) {
32935         return this.layout.addxtype(c);
32936     }
32937 });/*
32938  * Based on:
32939  * Ext JS Library 1.1.1
32940  * Copyright(c) 2006-2007, Ext JS, LLC.
32941  *
32942  * Originally Released Under LGPL - original licence link has changed is not relivant.
32943  *
32944  * Fork - LGPL
32945  * <script type="text/javascript">
32946  */
32947  
32948 /**
32949  * @class Roo.MessageBox
32950  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
32951  * Example usage:
32952  *<pre><code>
32953 // Basic alert:
32954 Roo.Msg.alert('Status', 'Changes saved successfully.');
32955
32956 // Prompt for user data:
32957 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
32958     if (btn == 'ok'){
32959         // process text value...
32960     }
32961 });
32962
32963 // Show a dialog using config options:
32964 Roo.Msg.show({
32965    title:'Save Changes?',
32966    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
32967    buttons: Roo.Msg.YESNOCANCEL,
32968    fn: processResult,
32969    animEl: 'elId'
32970 });
32971 </code></pre>
32972  * @singleton
32973  */
32974 Roo.MessageBox = function(){
32975     var dlg, opt, mask, waitTimer;
32976     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
32977     var buttons, activeTextEl, bwidth;
32978
32979     // private
32980     var handleButton = function(button){
32981         dlg.hide();
32982         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
32983     };
32984
32985     // private
32986     var handleHide = function(){
32987         if(opt && opt.cls){
32988             dlg.el.removeClass(opt.cls);
32989         }
32990         if(waitTimer){
32991             Roo.TaskMgr.stop(waitTimer);
32992             waitTimer = null;
32993         }
32994     };
32995
32996     // private
32997     var updateButtons = function(b){
32998         var width = 0;
32999         if(!b){
33000             buttons["ok"].hide();
33001             buttons["cancel"].hide();
33002             buttons["yes"].hide();
33003             buttons["no"].hide();
33004             dlg.footer.dom.style.display = 'none';
33005             return width;
33006         }
33007         dlg.footer.dom.style.display = '';
33008         for(var k in buttons){
33009             if(typeof buttons[k] != "function"){
33010                 if(b[k]){
33011                     buttons[k].show();
33012                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33013                     width += buttons[k].el.getWidth()+15;
33014                 }else{
33015                     buttons[k].hide();
33016                 }
33017             }
33018         }
33019         return width;
33020     };
33021
33022     // private
33023     var handleEsc = function(d, k, e){
33024         if(opt && opt.closable !== false){
33025             dlg.hide();
33026         }
33027         if(e){
33028             e.stopEvent();
33029         }
33030     };
33031
33032     return {
33033         /**
33034          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33035          * @return {Roo.BasicDialog} The BasicDialog element
33036          */
33037         getDialog : function(){
33038            if(!dlg){
33039                 dlg = new Roo.BasicDialog("x-msg-box", {
33040                     autoCreate : true,
33041                     shadow: true,
33042                     draggable: true,
33043                     resizable:false,
33044                     constraintoviewport:false,
33045                     fixedcenter:true,
33046                     collapsible : false,
33047                     shim:true,
33048                     modal: true,
33049                     width:400, height:100,
33050                     buttonAlign:"center",
33051                     closeClick : function(){
33052                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33053                             handleButton("no");
33054                         }else{
33055                             handleButton("cancel");
33056                         }
33057                     }
33058                 });
33059                 dlg.on("hide", handleHide);
33060                 mask = dlg.mask;
33061                 dlg.addKeyListener(27, handleEsc);
33062                 buttons = {};
33063                 var bt = this.buttonText;
33064                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33065                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33066                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33067                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33068                 bodyEl = dlg.body.createChild({
33069
33070                     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>'
33071                 });
33072                 msgEl = bodyEl.dom.firstChild;
33073                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33074                 textboxEl.enableDisplayMode();
33075                 textboxEl.addKeyListener([10,13], function(){
33076                     if(dlg.isVisible() && opt && opt.buttons){
33077                         if(opt.buttons.ok){
33078                             handleButton("ok");
33079                         }else if(opt.buttons.yes){
33080                             handleButton("yes");
33081                         }
33082                     }
33083                 });
33084                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33085                 textareaEl.enableDisplayMode();
33086                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33087                 progressEl.enableDisplayMode();
33088                 var pf = progressEl.dom.firstChild;
33089                 if (pf) {
33090                     pp = Roo.get(pf.firstChild);
33091                     pp.setHeight(pf.offsetHeight);
33092                 }
33093                 
33094             }
33095             return dlg;
33096         },
33097
33098         /**
33099          * Updates the message box body text
33100          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33101          * the XHTML-compliant non-breaking space character '&amp;#160;')
33102          * @return {Roo.MessageBox} This message box
33103          */
33104         updateText : function(text){
33105             if(!dlg.isVisible() && !opt.width){
33106                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33107             }
33108             msgEl.innerHTML = text || '&#160;';
33109       
33110             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33111             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33112             var w = Math.max(
33113                     Math.min(opt.width || cw , this.maxWidth), 
33114                     Math.max(opt.minWidth || this.minWidth, bwidth)
33115             );
33116             if(opt.prompt){
33117                 activeTextEl.setWidth(w);
33118             }
33119             if(dlg.isVisible()){
33120                 dlg.fixedcenter = false;
33121             }
33122             // to big, make it scroll. = But as usual stupid IE does not support
33123             // !important..
33124             
33125             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33126                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33127                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33128             } else {
33129                 bodyEl.dom.style.height = '';
33130                 bodyEl.dom.style.overflowY = '';
33131             }
33132             if (cw > w) {
33133                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33134             } else {
33135                 bodyEl.dom.style.overflowX = '';
33136             }
33137             
33138             dlg.setContentSize(w, bodyEl.getHeight());
33139             if(dlg.isVisible()){
33140                 dlg.fixedcenter = true;
33141             }
33142             return this;
33143         },
33144
33145         /**
33146          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33147          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33148          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33149          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33150          * @return {Roo.MessageBox} This message box
33151          */
33152         updateProgress : function(value, text){
33153             if(text){
33154                 this.updateText(text);
33155             }
33156             if (pp) { // weird bug on my firefox - for some reason this is not defined
33157                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33158             }
33159             return this;
33160         },        
33161
33162         /**
33163          * Returns true if the message box is currently displayed
33164          * @return {Boolean} True if the message box is visible, else false
33165          */
33166         isVisible : function(){
33167             return dlg && dlg.isVisible();  
33168         },
33169
33170         /**
33171          * Hides the message box if it is displayed
33172          */
33173         hide : function(){
33174             if(this.isVisible()){
33175                 dlg.hide();
33176             }  
33177         },
33178
33179         /**
33180          * Displays a new message box, or reinitializes an existing message box, based on the config options
33181          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33182          * The following config object properties are supported:
33183          * <pre>
33184 Property    Type             Description
33185 ----------  ---------------  ------------------------------------------------------------------------------------
33186 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33187                                    closes (defaults to undefined)
33188 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33189                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33190 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33191                                    progress and wait dialogs will ignore this property and always hide the
33192                                    close button as they can only be closed programmatically.
33193 cls               String           A custom CSS class to apply to the message box element
33194 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33195                                    displayed (defaults to 75)
33196 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33197                                    function will be btn (the name of the button that was clicked, if applicable,
33198                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33199                                    Progress and wait dialogs will ignore this option since they do not respond to
33200                                    user actions and can only be closed programmatically, so any required function
33201                                    should be called by the same code after it closes the dialog.
33202 icon              String           A CSS class that provides a background image to be used as an icon for
33203                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33204 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33205 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33206 modal             Boolean          False to allow user interaction with the page while the message box is
33207                                    displayed (defaults to true)
33208 msg               String           A string that will replace the existing message box body text (defaults
33209                                    to the XHTML-compliant non-breaking space character '&#160;')
33210 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33211 progress          Boolean          True to display a progress bar (defaults to false)
33212 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33213 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33214 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33215 title             String           The title text
33216 value             String           The string value to set into the active textbox element if displayed
33217 wait              Boolean          True to display a progress bar (defaults to false)
33218 width             Number           The width of the dialog in pixels
33219 </pre>
33220          *
33221          * Example usage:
33222          * <pre><code>
33223 Roo.Msg.show({
33224    title: 'Address',
33225    msg: 'Please enter your address:',
33226    width: 300,
33227    buttons: Roo.MessageBox.OKCANCEL,
33228    multiline: true,
33229    fn: saveAddress,
33230    animEl: 'addAddressBtn'
33231 });
33232 </code></pre>
33233          * @param {Object} config Configuration options
33234          * @return {Roo.MessageBox} This message box
33235          */
33236         show : function(options)
33237         {
33238             
33239             // this causes nightmares if you show one dialog after another
33240             // especially on callbacks..
33241              
33242             if(this.isVisible()){
33243                 
33244                 this.hide();
33245                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33246                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33247                 Roo.log("New Dialog Message:" +  options.msg )
33248                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33249                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33250                 
33251             }
33252             var d = this.getDialog();
33253             opt = options;
33254             d.setTitle(opt.title || "&#160;");
33255             d.close.setDisplayed(opt.closable !== false);
33256             activeTextEl = textboxEl;
33257             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33258             if(opt.prompt){
33259                 if(opt.multiline){
33260                     textboxEl.hide();
33261                     textareaEl.show();
33262                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33263                         opt.multiline : this.defaultTextHeight);
33264                     activeTextEl = textareaEl;
33265                 }else{
33266                     textboxEl.show();
33267                     textareaEl.hide();
33268                 }
33269             }else{
33270                 textboxEl.hide();
33271                 textareaEl.hide();
33272             }
33273             progressEl.setDisplayed(opt.progress === true);
33274             this.updateProgress(0);
33275             activeTextEl.dom.value = opt.value || "";
33276             if(opt.prompt){
33277                 dlg.setDefaultButton(activeTextEl);
33278             }else{
33279                 var bs = opt.buttons;
33280                 var db = null;
33281                 if(bs && bs.ok){
33282                     db = buttons["ok"];
33283                 }else if(bs && bs.yes){
33284                     db = buttons["yes"];
33285                 }
33286                 dlg.setDefaultButton(db);
33287             }
33288             bwidth = updateButtons(opt.buttons);
33289             this.updateText(opt.msg);
33290             if(opt.cls){
33291                 d.el.addClass(opt.cls);
33292             }
33293             d.proxyDrag = opt.proxyDrag === true;
33294             d.modal = opt.modal !== false;
33295             d.mask = opt.modal !== false ? mask : false;
33296             if(!d.isVisible()){
33297                 // force it to the end of the z-index stack so it gets a cursor in FF
33298                 document.body.appendChild(dlg.el.dom);
33299                 d.animateTarget = null;
33300                 d.show(options.animEl);
33301             }
33302             return this;
33303         },
33304
33305         /**
33306          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33307          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33308          * and closing the message box when the process is complete.
33309          * @param {String} title The title bar text
33310          * @param {String} msg The message box body text
33311          * @return {Roo.MessageBox} This message box
33312          */
33313         progress : function(title, msg){
33314             this.show({
33315                 title : title,
33316                 msg : msg,
33317                 buttons: false,
33318                 progress:true,
33319                 closable:false,
33320                 minWidth: this.minProgressWidth,
33321                 modal : true
33322             });
33323             return this;
33324         },
33325
33326         /**
33327          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33328          * If a callback function is passed it will be called after the user clicks the button, and the
33329          * id of the button that was clicked will be passed as the only parameter to the callback
33330          * (could also be the top-right close button).
33331          * @param {String} title The title bar text
33332          * @param {String} msg The message box body text
33333          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33334          * @param {Object} scope (optional) The scope of the callback function
33335          * @return {Roo.MessageBox} This message box
33336          */
33337         alert : function(title, msg, fn, scope){
33338             this.show({
33339                 title : title,
33340                 msg : msg,
33341                 buttons: this.OK,
33342                 fn: fn,
33343                 scope : scope,
33344                 modal : true
33345             });
33346             return this;
33347         },
33348
33349         /**
33350          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33351          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33352          * You are responsible for closing the message box when the process is complete.
33353          * @param {String} msg The message box body text
33354          * @param {String} title (optional) The title bar text
33355          * @return {Roo.MessageBox} This message box
33356          */
33357         wait : function(msg, title){
33358             this.show({
33359                 title : title,
33360                 msg : msg,
33361                 buttons: false,
33362                 closable:false,
33363                 progress:true,
33364                 modal:true,
33365                 width:300,
33366                 wait:true
33367             });
33368             waitTimer = Roo.TaskMgr.start({
33369                 run: function(i){
33370                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33371                 },
33372                 interval: 1000
33373             });
33374             return this;
33375         },
33376
33377         /**
33378          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33379          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33380          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33381          * @param {String} title The title bar text
33382          * @param {String} msg The message box body text
33383          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33384          * @param {Object} scope (optional) The scope of the callback function
33385          * @return {Roo.MessageBox} This message box
33386          */
33387         confirm : function(title, msg, fn, scope){
33388             this.show({
33389                 title : title,
33390                 msg : msg,
33391                 buttons: this.YESNO,
33392                 fn: fn,
33393                 scope : scope,
33394                 modal : true
33395             });
33396             return this;
33397         },
33398
33399         /**
33400          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33401          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33402          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33403          * (could also be the top-right close button) and the text that was entered will be passed as the two
33404          * parameters to the callback.
33405          * @param {String} title The title bar text
33406          * @param {String} msg The message box body text
33407          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33408          * @param {Object} scope (optional) The scope of the callback function
33409          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33410          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33411          * @return {Roo.MessageBox} This message box
33412          */
33413         prompt : function(title, msg, fn, scope, multiline){
33414             this.show({
33415                 title : title,
33416                 msg : msg,
33417                 buttons: this.OKCANCEL,
33418                 fn: fn,
33419                 minWidth:250,
33420                 scope : scope,
33421                 prompt:true,
33422                 multiline: multiline,
33423                 modal : true
33424             });
33425             return this;
33426         },
33427
33428         /**
33429          * Button config that displays a single OK button
33430          * @type Object
33431          */
33432         OK : {ok:true},
33433         /**
33434          * Button config that displays Yes and No buttons
33435          * @type Object
33436          */
33437         YESNO : {yes:true, no:true},
33438         /**
33439          * Button config that displays OK and Cancel buttons
33440          * @type Object
33441          */
33442         OKCANCEL : {ok:true, cancel:true},
33443         /**
33444          * Button config that displays Yes, No and Cancel buttons
33445          * @type Object
33446          */
33447         YESNOCANCEL : {yes:true, no:true, cancel:true},
33448
33449         /**
33450          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33451          * @type Number
33452          */
33453         defaultTextHeight : 75,
33454         /**
33455          * The maximum width in pixels of the message box (defaults to 600)
33456          * @type Number
33457          */
33458         maxWidth : 600,
33459         /**
33460          * The minimum width in pixels of the message box (defaults to 100)
33461          * @type Number
33462          */
33463         minWidth : 100,
33464         /**
33465          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33466          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33467          * @type Number
33468          */
33469         minProgressWidth : 250,
33470         /**
33471          * An object containing the default button text strings that can be overriden for localized language support.
33472          * Supported properties are: ok, cancel, yes and no.
33473          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33474          * @type Object
33475          */
33476         buttonText : {
33477             ok : "OK",
33478             cancel : "Cancel",
33479             yes : "Yes",
33480             no : "No"
33481         }
33482     };
33483 }();
33484
33485 /**
33486  * Shorthand for {@link Roo.MessageBox}
33487  */
33488 Roo.Msg = Roo.MessageBox;/*
33489  * Based on:
33490  * Ext JS Library 1.1.1
33491  * Copyright(c) 2006-2007, Ext JS, LLC.
33492  *
33493  * Originally Released Under LGPL - original licence link has changed is not relivant.
33494  *
33495  * Fork - LGPL
33496  * <script type="text/javascript">
33497  */
33498 /**
33499  * @class Roo.QuickTips
33500  * Provides attractive and customizable tooltips for any element.
33501  * @singleton
33502  */
33503 Roo.QuickTips = function(){
33504     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33505     var ce, bd, xy, dd;
33506     var visible = false, disabled = true, inited = false;
33507     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33508     
33509     var onOver = function(e){
33510         if(disabled){
33511             return;
33512         }
33513         var t = e.getTarget();
33514         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33515             return;
33516         }
33517         if(ce && t == ce.el){
33518             clearTimeout(hideProc);
33519             return;
33520         }
33521         if(t && tagEls[t.id]){
33522             tagEls[t.id].el = t;
33523             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33524             return;
33525         }
33526         var ttp, et = Roo.fly(t);
33527         var ns = cfg.namespace;
33528         if(tm.interceptTitles && t.title){
33529             ttp = t.title;
33530             t.qtip = ttp;
33531             t.removeAttribute("title");
33532             e.preventDefault();
33533         }else{
33534             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33535         }
33536         if(ttp){
33537             showProc = show.defer(tm.showDelay, tm, [{
33538                 el: t, 
33539                 text: ttp, 
33540                 width: et.getAttributeNS(ns, cfg.width),
33541                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33542                 title: et.getAttributeNS(ns, cfg.title),
33543                     cls: et.getAttributeNS(ns, cfg.cls)
33544             }]);
33545         }
33546     };
33547     
33548     var onOut = function(e){
33549         clearTimeout(showProc);
33550         var t = e.getTarget();
33551         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33552             hideProc = setTimeout(hide, tm.hideDelay);
33553         }
33554     };
33555     
33556     var onMove = function(e){
33557         if(disabled){
33558             return;
33559         }
33560         xy = e.getXY();
33561         xy[1] += 18;
33562         if(tm.trackMouse && ce){
33563             el.setXY(xy);
33564         }
33565     };
33566     
33567     var onDown = function(e){
33568         clearTimeout(showProc);
33569         clearTimeout(hideProc);
33570         if(!e.within(el)){
33571             if(tm.hideOnClick){
33572                 hide();
33573                 tm.disable();
33574                 tm.enable.defer(100, tm);
33575             }
33576         }
33577     };
33578     
33579     var getPad = function(){
33580         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33581     };
33582
33583     var show = function(o){
33584         if(disabled){
33585             return;
33586         }
33587         clearTimeout(dismissProc);
33588         ce = o;
33589         if(removeCls){ // in case manually hidden
33590             el.removeClass(removeCls);
33591             removeCls = null;
33592         }
33593         if(ce.cls){
33594             el.addClass(ce.cls);
33595             removeCls = ce.cls;
33596         }
33597         if(ce.title){
33598             tipTitle.update(ce.title);
33599             tipTitle.show();
33600         }else{
33601             tipTitle.update('');
33602             tipTitle.hide();
33603         }
33604         el.dom.style.width  = tm.maxWidth+'px';
33605         //tipBody.dom.style.width = '';
33606         tipBodyText.update(o.text);
33607         var p = getPad(), w = ce.width;
33608         if(!w){
33609             var td = tipBodyText.dom;
33610             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33611             if(aw > tm.maxWidth){
33612                 w = tm.maxWidth;
33613             }else if(aw < tm.minWidth){
33614                 w = tm.minWidth;
33615             }else{
33616                 w = aw;
33617             }
33618         }
33619         //tipBody.setWidth(w);
33620         el.setWidth(parseInt(w, 10) + p);
33621         if(ce.autoHide === false){
33622             close.setDisplayed(true);
33623             if(dd){
33624                 dd.unlock();
33625             }
33626         }else{
33627             close.setDisplayed(false);
33628             if(dd){
33629                 dd.lock();
33630             }
33631         }
33632         if(xy){
33633             el.avoidY = xy[1]-18;
33634             el.setXY(xy);
33635         }
33636         if(tm.animate){
33637             el.setOpacity(.1);
33638             el.setStyle("visibility", "visible");
33639             el.fadeIn({callback: afterShow});
33640         }else{
33641             afterShow();
33642         }
33643     };
33644     
33645     var afterShow = function(){
33646         if(ce){
33647             el.show();
33648             esc.enable();
33649             if(tm.autoDismiss && ce.autoHide !== false){
33650                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
33651             }
33652         }
33653     };
33654     
33655     var hide = function(noanim){
33656         clearTimeout(dismissProc);
33657         clearTimeout(hideProc);
33658         ce = null;
33659         if(el.isVisible()){
33660             esc.disable();
33661             if(noanim !== true && tm.animate){
33662                 el.fadeOut({callback: afterHide});
33663             }else{
33664                 afterHide();
33665             } 
33666         }
33667     };
33668     
33669     var afterHide = function(){
33670         el.hide();
33671         if(removeCls){
33672             el.removeClass(removeCls);
33673             removeCls = null;
33674         }
33675     };
33676     
33677     return {
33678         /**
33679         * @cfg {Number} minWidth
33680         * The minimum width of the quick tip (defaults to 40)
33681         */
33682        minWidth : 40,
33683         /**
33684         * @cfg {Number} maxWidth
33685         * The maximum width of the quick tip (defaults to 300)
33686         */
33687        maxWidth : 300,
33688         /**
33689         * @cfg {Boolean} interceptTitles
33690         * True to automatically use the element's DOM title value if available (defaults to false)
33691         */
33692        interceptTitles : false,
33693         /**
33694         * @cfg {Boolean} trackMouse
33695         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
33696         */
33697        trackMouse : false,
33698         /**
33699         * @cfg {Boolean} hideOnClick
33700         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
33701         */
33702        hideOnClick : true,
33703         /**
33704         * @cfg {Number} showDelay
33705         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
33706         */
33707        showDelay : 500,
33708         /**
33709         * @cfg {Number} hideDelay
33710         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
33711         */
33712        hideDelay : 200,
33713         /**
33714         * @cfg {Boolean} autoHide
33715         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
33716         * Used in conjunction with hideDelay.
33717         */
33718        autoHide : true,
33719         /**
33720         * @cfg {Boolean}
33721         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
33722         * (defaults to true).  Used in conjunction with autoDismissDelay.
33723         */
33724        autoDismiss : true,
33725         /**
33726         * @cfg {Number}
33727         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
33728         */
33729        autoDismissDelay : 5000,
33730        /**
33731         * @cfg {Boolean} animate
33732         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
33733         */
33734        animate : false,
33735
33736        /**
33737         * @cfg {String} title
33738         * Title text to display (defaults to '').  This can be any valid HTML markup.
33739         */
33740         title: '',
33741        /**
33742         * @cfg {String} text
33743         * Body text to display (defaults to '').  This can be any valid HTML markup.
33744         */
33745         text : '',
33746        /**
33747         * @cfg {String} cls
33748         * A CSS class to apply to the base quick tip element (defaults to '').
33749         */
33750         cls : '',
33751        /**
33752         * @cfg {Number} width
33753         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
33754         * minWidth or maxWidth.
33755         */
33756         width : null,
33757
33758     /**
33759      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
33760      * or display QuickTips in a page.
33761      */
33762        init : function(){
33763           tm = Roo.QuickTips;
33764           cfg = tm.tagConfig;
33765           if(!inited){
33766               if(!Roo.isReady){ // allow calling of init() before onReady
33767                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
33768                   return;
33769               }
33770               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
33771               el.fxDefaults = {stopFx: true};
33772               // maximum custom styling
33773               //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>');
33774               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>');              
33775               tipTitle = el.child('h3');
33776               tipTitle.enableDisplayMode("block");
33777               tipBody = el.child('div.x-tip-bd');
33778               tipBodyText = el.child('div.x-tip-bd-inner');
33779               //bdLeft = el.child('div.x-tip-bd-left');
33780               //bdRight = el.child('div.x-tip-bd-right');
33781               close = el.child('div.x-tip-close');
33782               close.enableDisplayMode("block");
33783               close.on("click", hide);
33784               var d = Roo.get(document);
33785               d.on("mousedown", onDown);
33786               d.on("mouseover", onOver);
33787               d.on("mouseout", onOut);
33788               d.on("mousemove", onMove);
33789               esc = d.addKeyListener(27, hide);
33790               esc.disable();
33791               if(Roo.dd.DD){
33792                   dd = el.initDD("default", null, {
33793                       onDrag : function(){
33794                           el.sync();  
33795                       }
33796                   });
33797                   dd.setHandleElId(tipTitle.id);
33798                   dd.lock();
33799               }
33800               inited = true;
33801           }
33802           this.enable(); 
33803        },
33804
33805     /**
33806      * Configures a new quick tip instance and assigns it to a target element.  The following config options
33807      * are supported:
33808      * <pre>
33809 Property    Type                   Description
33810 ----------  ---------------------  ------------------------------------------------------------------------
33811 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
33812      * </ul>
33813      * @param {Object} config The config object
33814      */
33815        register : function(config){
33816            var cs = config instanceof Array ? config : arguments;
33817            for(var i = 0, len = cs.length; i < len; i++) {
33818                var c = cs[i];
33819                var target = c.target;
33820                if(target){
33821                    if(target instanceof Array){
33822                        for(var j = 0, jlen = target.length; j < jlen; j++){
33823                            tagEls[target[j]] = c;
33824                        }
33825                    }else{
33826                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
33827                    }
33828                }
33829            }
33830        },
33831
33832     /**
33833      * Removes this quick tip from its element and destroys it.
33834      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
33835      */
33836        unregister : function(el){
33837            delete tagEls[Roo.id(el)];
33838        },
33839
33840     /**
33841      * Enable this quick tip.
33842      */
33843        enable : function(){
33844            if(inited && disabled){
33845                locks.pop();
33846                if(locks.length < 1){
33847                    disabled = false;
33848                }
33849            }
33850        },
33851
33852     /**
33853      * Disable this quick tip.
33854      */
33855        disable : function(){
33856           disabled = true;
33857           clearTimeout(showProc);
33858           clearTimeout(hideProc);
33859           clearTimeout(dismissProc);
33860           if(ce){
33861               hide(true);
33862           }
33863           locks.push(1);
33864        },
33865
33866     /**
33867      * Returns true if the quick tip is enabled, else false.
33868      */
33869        isEnabled : function(){
33870             return !disabled;
33871        },
33872
33873         // private
33874        tagConfig : {
33875            namespace : "roo", // was ext?? this may break..
33876            alt_namespace : "ext",
33877            attribute : "qtip",
33878            width : "width",
33879            target : "target",
33880            title : "qtitle",
33881            hide : "hide",
33882            cls : "qclass"
33883        }
33884    };
33885 }();
33886
33887 // backwards compat
33888 Roo.QuickTips.tips = Roo.QuickTips.register;/*
33889  * Based on:
33890  * Ext JS Library 1.1.1
33891  * Copyright(c) 2006-2007, Ext JS, LLC.
33892  *
33893  * Originally Released Under LGPL - original licence link has changed is not relivant.
33894  *
33895  * Fork - LGPL
33896  * <script type="text/javascript">
33897  */
33898  
33899
33900 /**
33901  * @class Roo.tree.TreePanel
33902  * @extends Roo.data.Tree
33903
33904  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
33905  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
33906  * @cfg {Boolean} enableDD true to enable drag and drop
33907  * @cfg {Boolean} enableDrag true to enable just drag
33908  * @cfg {Boolean} enableDrop true to enable just drop
33909  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
33910  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
33911  * @cfg {String} ddGroup The DD group this TreePanel belongs to
33912  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
33913  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
33914  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
33915  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
33916  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
33917  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
33918  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
33919  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
33920  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
33921  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
33922  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
33923  * @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>
33924  * @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>
33925  * 
33926  * @constructor
33927  * @param {String/HTMLElement/Element} el The container element
33928  * @param {Object} config
33929  */
33930 Roo.tree.TreePanel = function(el, config){
33931     var root = false;
33932     var loader = false;
33933     if (config.root) {
33934         root = config.root;
33935         delete config.root;
33936     }
33937     if (config.loader) {
33938         loader = config.loader;
33939         delete config.loader;
33940     }
33941     
33942     Roo.apply(this, config);
33943     Roo.tree.TreePanel.superclass.constructor.call(this);
33944     this.el = Roo.get(el);
33945     this.el.addClass('x-tree');
33946     //console.log(root);
33947     if (root) {
33948         this.setRootNode( Roo.factory(root, Roo.tree));
33949     }
33950     if (loader) {
33951         this.loader = Roo.factory(loader, Roo.tree);
33952     }
33953    /**
33954     * Read-only. The id of the container element becomes this TreePanel's id.
33955     */
33956     this.id = this.el.id;
33957     this.addEvents({
33958         /**
33959         * @event beforeload
33960         * Fires before a node is loaded, return false to cancel
33961         * @param {Node} node The node being loaded
33962         */
33963         "beforeload" : true,
33964         /**
33965         * @event load
33966         * Fires when a node is loaded
33967         * @param {Node} node The node that was loaded
33968         */
33969         "load" : true,
33970         /**
33971         * @event textchange
33972         * Fires when the text for a node is changed
33973         * @param {Node} node The node
33974         * @param {String} text The new text
33975         * @param {String} oldText The old text
33976         */
33977         "textchange" : true,
33978         /**
33979         * @event beforeexpand
33980         * Fires before a node is expanded, return false to cancel.
33981         * @param {Node} node The node
33982         * @param {Boolean} deep
33983         * @param {Boolean} anim
33984         */
33985         "beforeexpand" : true,
33986         /**
33987         * @event beforecollapse
33988         * Fires before a node is collapsed, return false to cancel.
33989         * @param {Node} node The node
33990         * @param {Boolean} deep
33991         * @param {Boolean} anim
33992         */
33993         "beforecollapse" : true,
33994         /**
33995         * @event expand
33996         * Fires when a node is expanded
33997         * @param {Node} node The node
33998         */
33999         "expand" : true,
34000         /**
34001         * @event disabledchange
34002         * Fires when the disabled status of a node changes
34003         * @param {Node} node The node
34004         * @param {Boolean} disabled
34005         */
34006         "disabledchange" : true,
34007         /**
34008         * @event collapse
34009         * Fires when a node is collapsed
34010         * @param {Node} node The node
34011         */
34012         "collapse" : true,
34013         /**
34014         * @event beforeclick
34015         * Fires before click processing on a node. Return false to cancel the default action.
34016         * @param {Node} node The node
34017         * @param {Roo.EventObject} e The event object
34018         */
34019         "beforeclick":true,
34020         /**
34021         * @event checkchange
34022         * Fires when a node with a checkbox's checked property changes
34023         * @param {Node} this This node
34024         * @param {Boolean} checked
34025         */
34026         "checkchange":true,
34027         /**
34028         * @event click
34029         * Fires when a node is clicked
34030         * @param {Node} node The node
34031         * @param {Roo.EventObject} e The event object
34032         */
34033         "click":true,
34034         /**
34035         * @event dblclick
34036         * Fires when a node is double clicked
34037         * @param {Node} node The node
34038         * @param {Roo.EventObject} e The event object
34039         */
34040         "dblclick":true,
34041         /**
34042         * @event contextmenu
34043         * Fires when a node is right clicked
34044         * @param {Node} node The node
34045         * @param {Roo.EventObject} e The event object
34046         */
34047         "contextmenu":true,
34048         /**
34049         * @event beforechildrenrendered
34050         * Fires right before the child nodes for a node are rendered
34051         * @param {Node} node The node
34052         */
34053         "beforechildrenrendered":true,
34054         /**
34055         * @event startdrag
34056         * Fires when a node starts being dragged
34057         * @param {Roo.tree.TreePanel} this
34058         * @param {Roo.tree.TreeNode} node
34059         * @param {event} e The raw browser event
34060         */ 
34061        "startdrag" : true,
34062        /**
34063         * @event enddrag
34064         * Fires when a drag operation is complete
34065         * @param {Roo.tree.TreePanel} this
34066         * @param {Roo.tree.TreeNode} node
34067         * @param {event} e The raw browser event
34068         */
34069        "enddrag" : true,
34070        /**
34071         * @event dragdrop
34072         * Fires when a dragged node is dropped on a valid DD target
34073         * @param {Roo.tree.TreePanel} this
34074         * @param {Roo.tree.TreeNode} node
34075         * @param {DD} dd The dd it was dropped on
34076         * @param {event} e The raw browser event
34077         */
34078        "dragdrop" : true,
34079        /**
34080         * @event beforenodedrop
34081         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34082         * passed to handlers has the following properties:<br />
34083         * <ul style="padding:5px;padding-left:16px;">
34084         * <li>tree - The TreePanel</li>
34085         * <li>target - The node being targeted for the drop</li>
34086         * <li>data - The drag data from the drag source</li>
34087         * <li>point - The point of the drop - append, above or below</li>
34088         * <li>source - The drag source</li>
34089         * <li>rawEvent - Raw mouse event</li>
34090         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34091         * to be inserted by setting them on this object.</li>
34092         * <li>cancel - Set this to true to cancel the drop.</li>
34093         * </ul>
34094         * @param {Object} dropEvent
34095         */
34096        "beforenodedrop" : true,
34097        /**
34098         * @event nodedrop
34099         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34100         * passed to handlers has the following properties:<br />
34101         * <ul style="padding:5px;padding-left:16px;">
34102         * <li>tree - The TreePanel</li>
34103         * <li>target - The node being targeted for the drop</li>
34104         * <li>data - The drag data from the drag source</li>
34105         * <li>point - The point of the drop - append, above or below</li>
34106         * <li>source - The drag source</li>
34107         * <li>rawEvent - Raw mouse event</li>
34108         * <li>dropNode - Dropped node(s).</li>
34109         * </ul>
34110         * @param {Object} dropEvent
34111         */
34112        "nodedrop" : true,
34113         /**
34114         * @event nodedragover
34115         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34116         * passed to handlers has the following properties:<br />
34117         * <ul style="padding:5px;padding-left:16px;">
34118         * <li>tree - The TreePanel</li>
34119         * <li>target - The node being targeted for the drop</li>
34120         * <li>data - The drag data from the drag source</li>
34121         * <li>point - The point of the drop - append, above or below</li>
34122         * <li>source - The drag source</li>
34123         * <li>rawEvent - Raw mouse event</li>
34124         * <li>dropNode - Drop node(s) provided by the source.</li>
34125         * <li>cancel - Set this to true to signal drop not allowed.</li>
34126         * </ul>
34127         * @param {Object} dragOverEvent
34128         */
34129        "nodedragover" : true
34130         
34131     });
34132     if(this.singleExpand){
34133        this.on("beforeexpand", this.restrictExpand, this);
34134     }
34135     if (this.editor) {
34136         this.editor.tree = this;
34137         this.editor = Roo.factory(this.editor, Roo.tree);
34138     }
34139     
34140     if (this.selModel) {
34141         this.selModel = Roo.factory(this.selModel, Roo.tree);
34142     }
34143    
34144 };
34145 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34146     rootVisible : true,
34147     animate: Roo.enableFx,
34148     lines : true,
34149     enableDD : false,
34150     hlDrop : Roo.enableFx,
34151   
34152     renderer: false,
34153     
34154     rendererTip: false,
34155     // private
34156     restrictExpand : function(node){
34157         var p = node.parentNode;
34158         if(p){
34159             if(p.expandedChild && p.expandedChild.parentNode == p){
34160                 p.expandedChild.collapse();
34161             }
34162             p.expandedChild = node;
34163         }
34164     },
34165
34166     // private override
34167     setRootNode : function(node){
34168         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34169         if(!this.rootVisible){
34170             node.ui = new Roo.tree.RootTreeNodeUI(node);
34171         }
34172         return node;
34173     },
34174
34175     /**
34176      * Returns the container element for this TreePanel
34177      */
34178     getEl : function(){
34179         return this.el;
34180     },
34181
34182     /**
34183      * Returns the default TreeLoader for this TreePanel
34184      */
34185     getLoader : function(){
34186         return this.loader;
34187     },
34188
34189     /**
34190      * Expand all nodes
34191      */
34192     expandAll : function(){
34193         this.root.expand(true);
34194     },
34195
34196     /**
34197      * Collapse all nodes
34198      */
34199     collapseAll : function(){
34200         this.root.collapse(true);
34201     },
34202
34203     /**
34204      * Returns the selection model used by this TreePanel
34205      */
34206     getSelectionModel : function(){
34207         if(!this.selModel){
34208             this.selModel = new Roo.tree.DefaultSelectionModel();
34209         }
34210         return this.selModel;
34211     },
34212
34213     /**
34214      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34215      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34216      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34217      * @return {Array}
34218      */
34219     getChecked : function(a, startNode){
34220         startNode = startNode || this.root;
34221         var r = [];
34222         var f = function(){
34223             if(this.attributes.checked){
34224                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34225             }
34226         }
34227         startNode.cascade(f);
34228         return r;
34229     },
34230
34231     /**
34232      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34233      * @param {String} path
34234      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34235      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34236      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34237      */
34238     expandPath : function(path, attr, callback){
34239         attr = attr || "id";
34240         var keys = path.split(this.pathSeparator);
34241         var curNode = this.root;
34242         if(curNode.attributes[attr] != keys[1]){ // invalid root
34243             if(callback){
34244                 callback(false, null);
34245             }
34246             return;
34247         }
34248         var index = 1;
34249         var f = function(){
34250             if(++index == keys.length){
34251                 if(callback){
34252                     callback(true, curNode);
34253                 }
34254                 return;
34255             }
34256             var c = curNode.findChild(attr, keys[index]);
34257             if(!c){
34258                 if(callback){
34259                     callback(false, curNode);
34260                 }
34261                 return;
34262             }
34263             curNode = c;
34264             c.expand(false, false, f);
34265         };
34266         curNode.expand(false, false, f);
34267     },
34268
34269     /**
34270      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34271      * @param {String} path
34272      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34273      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34274      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34275      */
34276     selectPath : function(path, attr, callback){
34277         attr = attr || "id";
34278         var keys = path.split(this.pathSeparator);
34279         var v = keys.pop();
34280         if(keys.length > 0){
34281             var f = function(success, node){
34282                 if(success && node){
34283                     var n = node.findChild(attr, v);
34284                     if(n){
34285                         n.select();
34286                         if(callback){
34287                             callback(true, n);
34288                         }
34289                     }else if(callback){
34290                         callback(false, n);
34291                     }
34292                 }else{
34293                     if(callback){
34294                         callback(false, n);
34295                     }
34296                 }
34297             };
34298             this.expandPath(keys.join(this.pathSeparator), attr, f);
34299         }else{
34300             this.root.select();
34301             if(callback){
34302                 callback(true, this.root);
34303             }
34304         }
34305     },
34306
34307     getTreeEl : function(){
34308         return this.el;
34309     },
34310
34311     /**
34312      * Trigger rendering of this TreePanel
34313      */
34314     render : function(){
34315         if (this.innerCt) {
34316             return this; // stop it rendering more than once!!
34317         }
34318         
34319         this.innerCt = this.el.createChild({tag:"ul",
34320                cls:"x-tree-root-ct " +
34321                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34322
34323         if(this.containerScroll){
34324             Roo.dd.ScrollManager.register(this.el);
34325         }
34326         if((this.enableDD || this.enableDrop) && !this.dropZone){
34327            /**
34328             * The dropZone used by this tree if drop is enabled
34329             * @type Roo.tree.TreeDropZone
34330             */
34331              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34332                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34333            });
34334         }
34335         if((this.enableDD || this.enableDrag) && !this.dragZone){
34336            /**
34337             * The dragZone used by this tree if drag is enabled
34338             * @type Roo.tree.TreeDragZone
34339             */
34340             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34341                ddGroup: this.ddGroup || "TreeDD",
34342                scroll: this.ddScroll
34343            });
34344         }
34345         this.getSelectionModel().init(this);
34346         if (!this.root) {
34347             Roo.log("ROOT not set in tree");
34348             return this;
34349         }
34350         this.root.render();
34351         if(!this.rootVisible){
34352             this.root.renderChildren();
34353         }
34354         return this;
34355     }
34356 });/*
34357  * Based on:
34358  * Ext JS Library 1.1.1
34359  * Copyright(c) 2006-2007, Ext JS, LLC.
34360  *
34361  * Originally Released Under LGPL - original licence link has changed is not relivant.
34362  *
34363  * Fork - LGPL
34364  * <script type="text/javascript">
34365  */
34366  
34367
34368 /**
34369  * @class Roo.tree.DefaultSelectionModel
34370  * @extends Roo.util.Observable
34371  * The default single selection for a TreePanel.
34372  * @param {Object} cfg Configuration
34373  */
34374 Roo.tree.DefaultSelectionModel = function(cfg){
34375    this.selNode = null;
34376    
34377    
34378    
34379    this.addEvents({
34380        /**
34381         * @event selectionchange
34382         * Fires when the selected node changes
34383         * @param {DefaultSelectionModel} this
34384         * @param {TreeNode} node the new selection
34385         */
34386        "selectionchange" : true,
34387
34388        /**
34389         * @event beforeselect
34390         * Fires before the selected node changes, return false to cancel the change
34391         * @param {DefaultSelectionModel} this
34392         * @param {TreeNode} node the new selection
34393         * @param {TreeNode} node the old selection
34394         */
34395        "beforeselect" : true
34396    });
34397    
34398     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34399 };
34400
34401 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34402     init : function(tree){
34403         this.tree = tree;
34404         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34405         tree.on("click", this.onNodeClick, this);
34406     },
34407     
34408     onNodeClick : function(node, e){
34409         if (e.ctrlKey && this.selNode == node)  {
34410             this.unselect(node);
34411             return;
34412         }
34413         this.select(node);
34414     },
34415     
34416     /**
34417      * Select a node.
34418      * @param {TreeNode} node The node to select
34419      * @return {TreeNode} The selected node
34420      */
34421     select : function(node){
34422         var last = this.selNode;
34423         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34424             if(last){
34425                 last.ui.onSelectedChange(false);
34426             }
34427             this.selNode = node;
34428             node.ui.onSelectedChange(true);
34429             this.fireEvent("selectionchange", this, node, last);
34430         }
34431         return node;
34432     },
34433     
34434     /**
34435      * Deselect a node.
34436      * @param {TreeNode} node The node to unselect
34437      */
34438     unselect : function(node){
34439         if(this.selNode == node){
34440             this.clearSelections();
34441         }    
34442     },
34443     
34444     /**
34445      * Clear all selections
34446      */
34447     clearSelections : function(){
34448         var n = this.selNode;
34449         if(n){
34450             n.ui.onSelectedChange(false);
34451             this.selNode = null;
34452             this.fireEvent("selectionchange", this, null);
34453         }
34454         return n;
34455     },
34456     
34457     /**
34458      * Get the selected node
34459      * @return {TreeNode} The selected node
34460      */
34461     getSelectedNode : function(){
34462         return this.selNode;    
34463     },
34464     
34465     /**
34466      * Returns true if the node is selected
34467      * @param {TreeNode} node The node to check
34468      * @return {Boolean}
34469      */
34470     isSelected : function(node){
34471         return this.selNode == node;  
34472     },
34473
34474     /**
34475      * Selects the node above the selected node in the tree, intelligently walking the nodes
34476      * @return TreeNode The new selection
34477      */
34478     selectPrevious : function(){
34479         var s = this.selNode || this.lastSelNode;
34480         if(!s){
34481             return null;
34482         }
34483         var ps = s.previousSibling;
34484         if(ps){
34485             if(!ps.isExpanded() || ps.childNodes.length < 1){
34486                 return this.select(ps);
34487             } else{
34488                 var lc = ps.lastChild;
34489                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34490                     lc = lc.lastChild;
34491                 }
34492                 return this.select(lc);
34493             }
34494         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34495             return this.select(s.parentNode);
34496         }
34497         return null;
34498     },
34499
34500     /**
34501      * Selects the node above the selected node in the tree, intelligently walking the nodes
34502      * @return TreeNode The new selection
34503      */
34504     selectNext : function(){
34505         var s = this.selNode || this.lastSelNode;
34506         if(!s){
34507             return null;
34508         }
34509         if(s.firstChild && s.isExpanded()){
34510              return this.select(s.firstChild);
34511          }else if(s.nextSibling){
34512              return this.select(s.nextSibling);
34513          }else if(s.parentNode){
34514             var newS = null;
34515             s.parentNode.bubble(function(){
34516                 if(this.nextSibling){
34517                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34518                     return false;
34519                 }
34520             });
34521             return newS;
34522          }
34523         return null;
34524     },
34525
34526     onKeyDown : function(e){
34527         var s = this.selNode || this.lastSelNode;
34528         // undesirable, but required
34529         var sm = this;
34530         if(!s){
34531             return;
34532         }
34533         var k = e.getKey();
34534         switch(k){
34535              case e.DOWN:
34536                  e.stopEvent();
34537                  this.selectNext();
34538              break;
34539              case e.UP:
34540                  e.stopEvent();
34541                  this.selectPrevious();
34542              break;
34543              case e.RIGHT:
34544                  e.preventDefault();
34545                  if(s.hasChildNodes()){
34546                      if(!s.isExpanded()){
34547                          s.expand();
34548                      }else if(s.firstChild){
34549                          this.select(s.firstChild, e);
34550                      }
34551                  }
34552              break;
34553              case e.LEFT:
34554                  e.preventDefault();
34555                  if(s.hasChildNodes() && s.isExpanded()){
34556                      s.collapse();
34557                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34558                      this.select(s.parentNode, e);
34559                  }
34560              break;
34561         };
34562     }
34563 });
34564
34565 /**
34566  * @class Roo.tree.MultiSelectionModel
34567  * @extends Roo.util.Observable
34568  * Multi selection for a TreePanel.
34569  * @param {Object} cfg Configuration
34570  */
34571 Roo.tree.MultiSelectionModel = function(){
34572    this.selNodes = [];
34573    this.selMap = {};
34574    this.addEvents({
34575        /**
34576         * @event selectionchange
34577         * Fires when the selected nodes change
34578         * @param {MultiSelectionModel} this
34579         * @param {Array} nodes Array of the selected nodes
34580         */
34581        "selectionchange" : true
34582    });
34583    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34584    
34585 };
34586
34587 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34588     init : function(tree){
34589         this.tree = tree;
34590         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34591         tree.on("click", this.onNodeClick, this);
34592     },
34593     
34594     onNodeClick : function(node, e){
34595         this.select(node, e, e.ctrlKey);
34596     },
34597     
34598     /**
34599      * Select a node.
34600      * @param {TreeNode} node The node to select
34601      * @param {EventObject} e (optional) An event associated with the selection
34602      * @param {Boolean} keepExisting True to retain existing selections
34603      * @return {TreeNode} The selected node
34604      */
34605     select : function(node, e, keepExisting){
34606         if(keepExisting !== true){
34607             this.clearSelections(true);
34608         }
34609         if(this.isSelected(node)){
34610             this.lastSelNode = node;
34611             return node;
34612         }
34613         this.selNodes.push(node);
34614         this.selMap[node.id] = node;
34615         this.lastSelNode = node;
34616         node.ui.onSelectedChange(true);
34617         this.fireEvent("selectionchange", this, this.selNodes);
34618         return node;
34619     },
34620     
34621     /**
34622      * Deselect a node.
34623      * @param {TreeNode} node The node to unselect
34624      */
34625     unselect : function(node){
34626         if(this.selMap[node.id]){
34627             node.ui.onSelectedChange(false);
34628             var sn = this.selNodes;
34629             var index = -1;
34630             if(sn.indexOf){
34631                 index = sn.indexOf(node);
34632             }else{
34633                 for(var i = 0, len = sn.length; i < len; i++){
34634                     if(sn[i] == node){
34635                         index = i;
34636                         break;
34637                     }
34638                 }
34639             }
34640             if(index != -1){
34641                 this.selNodes.splice(index, 1);
34642             }
34643             delete this.selMap[node.id];
34644             this.fireEvent("selectionchange", this, this.selNodes);
34645         }
34646     },
34647     
34648     /**
34649      * Clear all selections
34650      */
34651     clearSelections : function(suppressEvent){
34652         var sn = this.selNodes;
34653         if(sn.length > 0){
34654             for(var i = 0, len = sn.length; i < len; i++){
34655                 sn[i].ui.onSelectedChange(false);
34656             }
34657             this.selNodes = [];
34658             this.selMap = {};
34659             if(suppressEvent !== true){
34660                 this.fireEvent("selectionchange", this, this.selNodes);
34661             }
34662         }
34663     },
34664     
34665     /**
34666      * Returns true if the node is selected
34667      * @param {TreeNode} node The node to check
34668      * @return {Boolean}
34669      */
34670     isSelected : function(node){
34671         return this.selMap[node.id] ? true : false;  
34672     },
34673     
34674     /**
34675      * Returns an array of the selected nodes
34676      * @return {Array}
34677      */
34678     getSelectedNodes : function(){
34679         return this.selNodes;    
34680     },
34681
34682     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
34683
34684     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
34685
34686     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
34687 });/*
34688  * Based on:
34689  * Ext JS Library 1.1.1
34690  * Copyright(c) 2006-2007, Ext JS, LLC.
34691  *
34692  * Originally Released Under LGPL - original licence link has changed is not relivant.
34693  *
34694  * Fork - LGPL
34695  * <script type="text/javascript">
34696  */
34697  
34698 /**
34699  * @class Roo.tree.TreeNode
34700  * @extends Roo.data.Node
34701  * @cfg {String} text The text for this node
34702  * @cfg {Boolean} expanded true to start the node expanded
34703  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
34704  * @cfg {Boolean} allowDrop false if this node cannot be drop on
34705  * @cfg {Boolean} disabled true to start the node disabled
34706  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
34707  * is to use the cls or iconCls attributes and add the icon via a CSS background image.
34708  * @cfg {String} cls A css class to be added to the node
34709  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
34710  * @cfg {String} href URL of the link used for the node (defaults to #)
34711  * @cfg {String} hrefTarget target frame for the link
34712  * @cfg {String} qtip An Ext QuickTip for the node
34713  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
34714  * @cfg {Boolean} singleClickExpand True for single click expand on this node
34715  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
34716  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
34717  * (defaults to undefined with no checkbox rendered)
34718  * @constructor
34719  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
34720  */
34721 Roo.tree.TreeNode = function(attributes){
34722     attributes = attributes || {};
34723     if(typeof attributes == "string"){
34724         attributes = {text: attributes};
34725     }
34726     this.childrenRendered = false;
34727     this.rendered = false;
34728     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
34729     this.expanded = attributes.expanded === true;
34730     this.isTarget = attributes.isTarget !== false;
34731     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
34732     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
34733
34734     /**
34735      * Read-only. The text for this node. To change it use setText().
34736      * @type String
34737      */
34738     this.text = attributes.text;
34739     /**
34740      * True if this node is disabled.
34741      * @type Boolean
34742      */
34743     this.disabled = attributes.disabled === true;
34744
34745     this.addEvents({
34746         /**
34747         * @event textchange
34748         * Fires when the text for this node is changed
34749         * @param {Node} this This node
34750         * @param {String} text The new text
34751         * @param {String} oldText The old text
34752         */
34753         "textchange" : true,
34754         /**
34755         * @event beforeexpand
34756         * Fires before this node is expanded, return false to cancel.
34757         * @param {Node} this This node
34758         * @param {Boolean} deep
34759         * @param {Boolean} anim
34760         */
34761         "beforeexpand" : true,
34762         /**
34763         * @event beforecollapse
34764         * Fires before this node is collapsed, return false to cancel.
34765         * @param {Node} this This node
34766         * @param {Boolean} deep
34767         * @param {Boolean} anim
34768         */
34769         "beforecollapse" : true,
34770         /**
34771         * @event expand
34772         * Fires when this node is expanded
34773         * @param {Node} this This node
34774         */
34775         "expand" : true,
34776         /**
34777         * @event disabledchange
34778         * Fires when the disabled status of this node changes
34779         * @param {Node} this This node
34780         * @param {Boolean} disabled
34781         */
34782         "disabledchange" : true,
34783         /**
34784         * @event collapse
34785         * Fires when this node is collapsed
34786         * @param {Node} this This node
34787         */
34788         "collapse" : true,
34789         /**
34790         * @event beforeclick
34791         * Fires before click processing. Return false to cancel the default action.
34792         * @param {Node} this This node
34793         * @param {Roo.EventObject} e The event object
34794         */
34795         "beforeclick":true,
34796         /**
34797         * @event checkchange
34798         * Fires when a node with a checkbox's checked property changes
34799         * @param {Node} this This node
34800         * @param {Boolean} checked
34801         */
34802         "checkchange":true,
34803         /**
34804         * @event click
34805         * Fires when this node is clicked
34806         * @param {Node} this This node
34807         * @param {Roo.EventObject} e The event object
34808         */
34809         "click":true,
34810         /**
34811         * @event dblclick
34812         * Fires when this node is double clicked
34813         * @param {Node} this This node
34814         * @param {Roo.EventObject} e The event object
34815         */
34816         "dblclick":true,
34817         /**
34818         * @event contextmenu
34819         * Fires when this node is right clicked
34820         * @param {Node} this This node
34821         * @param {Roo.EventObject} e The event object
34822         */
34823         "contextmenu":true,
34824         /**
34825         * @event beforechildrenrendered
34826         * Fires right before the child nodes for this node are rendered
34827         * @param {Node} this This node
34828         */
34829         "beforechildrenrendered":true
34830     });
34831
34832     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
34833
34834     /**
34835      * Read-only. The UI for this node
34836      * @type TreeNodeUI
34837      */
34838     this.ui = new uiClass(this);
34839     
34840     // finally support items[]
34841     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
34842         return;
34843     }
34844     
34845     
34846     Roo.each(this.attributes.items, function(c) {
34847         this.appendChild(Roo.factory(c,Roo.Tree));
34848     }, this);
34849     delete this.attributes.items;
34850     
34851     
34852     
34853 };
34854 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
34855     preventHScroll: true,
34856     /**
34857      * Returns true if this node is expanded
34858      * @return {Boolean}
34859      */
34860     isExpanded : function(){
34861         return this.expanded;
34862     },
34863
34864     /**
34865      * Returns the UI object for this node
34866      * @return {TreeNodeUI}
34867      */
34868     getUI : function(){
34869         return this.ui;
34870     },
34871
34872     // private override
34873     setFirstChild : function(node){
34874         var of = this.firstChild;
34875         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
34876         if(this.childrenRendered && of && node != of){
34877             of.renderIndent(true, true);
34878         }
34879         if(this.rendered){
34880             this.renderIndent(true, true);
34881         }
34882     },
34883
34884     // private override
34885     setLastChild : function(node){
34886         var ol = this.lastChild;
34887         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
34888         if(this.childrenRendered && ol && node != ol){
34889             ol.renderIndent(true, true);
34890         }
34891         if(this.rendered){
34892             this.renderIndent(true, true);
34893         }
34894     },
34895
34896     // these methods are overridden to provide lazy rendering support
34897     // private override
34898     appendChild : function()
34899     {
34900         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
34901         if(node && this.childrenRendered){
34902             node.render();
34903         }
34904         this.ui.updateExpandIcon();
34905         return node;
34906     },
34907
34908     // private override
34909     removeChild : function(node){
34910         this.ownerTree.getSelectionModel().unselect(node);
34911         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
34912         // if it's been rendered remove dom node
34913         if(this.childrenRendered){
34914             node.ui.remove();
34915         }
34916         if(this.childNodes.length < 1){
34917             this.collapse(false, false);
34918         }else{
34919             this.ui.updateExpandIcon();
34920         }
34921         if(!this.firstChild) {
34922             this.childrenRendered = false;
34923         }
34924         return node;
34925     },
34926
34927     // private override
34928     insertBefore : function(node, refNode){
34929         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
34930         if(newNode && refNode && this.childrenRendered){
34931             node.render();
34932         }
34933         this.ui.updateExpandIcon();
34934         return newNode;
34935     },
34936
34937     /**
34938      * Sets the text for this node
34939      * @param {String} text
34940      */
34941     setText : function(text){
34942         var oldText = this.text;
34943         this.text = text;
34944         this.attributes.text = text;
34945         if(this.rendered){ // event without subscribing
34946             this.ui.onTextChange(this, text, oldText);
34947         }
34948         this.fireEvent("textchange", this, text, oldText);
34949     },
34950
34951     /**
34952      * Triggers selection of this node
34953      */
34954     select : function(){
34955         this.getOwnerTree().getSelectionModel().select(this);
34956     },
34957
34958     /**
34959      * Triggers deselection of this node
34960      */
34961     unselect : function(){
34962         this.getOwnerTree().getSelectionModel().unselect(this);
34963     },
34964
34965     /**
34966      * Returns true if this node is selected
34967      * @return {Boolean}
34968      */
34969     isSelected : function(){
34970         return this.getOwnerTree().getSelectionModel().isSelected(this);
34971     },
34972
34973     /**
34974      * Expand this node.
34975      * @param {Boolean} deep (optional) True to expand all children as well
34976      * @param {Boolean} anim (optional) false to cancel the default animation
34977      * @param {Function} callback (optional) A callback to be called when
34978      * expanding this node completes (does not wait for deep expand to complete).
34979      * Called with 1 parameter, this node.
34980      */
34981     expand : function(deep, anim, callback){
34982         if(!this.expanded){
34983             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
34984                 return;
34985             }
34986             if(!this.childrenRendered){
34987                 this.renderChildren();
34988             }
34989             this.expanded = true;
34990             if(!this.isHiddenRoot() && (this.getOwnerTree().animate && anim !== false) || anim){
34991                 this.ui.animExpand(function(){
34992                     this.fireEvent("expand", this);
34993                     if(typeof callback == "function"){
34994                         callback(this);
34995                     }
34996                     if(deep === true){
34997                         this.expandChildNodes(true);
34998                     }
34999                 }.createDelegate(this));
35000                 return;
35001             }else{
35002                 this.ui.expand();
35003                 this.fireEvent("expand", this);
35004                 if(typeof callback == "function"){
35005                     callback(this);
35006                 }
35007             }
35008         }else{
35009            if(typeof callback == "function"){
35010                callback(this);
35011            }
35012         }
35013         if(deep === true){
35014             this.expandChildNodes(true);
35015         }
35016     },
35017
35018     isHiddenRoot : function(){
35019         return this.isRoot && !this.getOwnerTree().rootVisible;
35020     },
35021
35022     /**
35023      * Collapse this node.
35024      * @param {Boolean} deep (optional) True to collapse all children as well
35025      * @param {Boolean} anim (optional) false to cancel the default animation
35026      */
35027     collapse : function(deep, anim){
35028         if(this.expanded && !this.isHiddenRoot()){
35029             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35030                 return;
35031             }
35032             this.expanded = false;
35033             if((this.getOwnerTree().animate && anim !== false) || anim){
35034                 this.ui.animCollapse(function(){
35035                     this.fireEvent("collapse", this);
35036                     if(deep === true){
35037                         this.collapseChildNodes(true);
35038                     }
35039                 }.createDelegate(this));
35040                 return;
35041             }else{
35042                 this.ui.collapse();
35043                 this.fireEvent("collapse", this);
35044             }
35045         }
35046         if(deep === true){
35047             var cs = this.childNodes;
35048             for(var i = 0, len = cs.length; i < len; i++) {
35049                 cs[i].collapse(true, false);
35050             }
35051         }
35052     },
35053
35054     // private
35055     delayedExpand : function(delay){
35056         if(!this.expandProcId){
35057             this.expandProcId = this.expand.defer(delay, this);
35058         }
35059     },
35060
35061     // private
35062     cancelExpand : function(){
35063         if(this.expandProcId){
35064             clearTimeout(this.expandProcId);
35065         }
35066         this.expandProcId = false;
35067     },
35068
35069     /**
35070      * Toggles expanded/collapsed state of the node
35071      */
35072     toggle : function(){
35073         if(this.expanded){
35074             this.collapse();
35075         }else{
35076             this.expand();
35077         }
35078     },
35079
35080     /**
35081      * Ensures all parent nodes are expanded
35082      */
35083     ensureVisible : function(callback){
35084         var tree = this.getOwnerTree();
35085         tree.expandPath(this.parentNode.getPath(), false, function(){
35086             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35087             Roo.callback(callback);
35088         }.createDelegate(this));
35089     },
35090
35091     /**
35092      * Expand all child nodes
35093      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35094      */
35095     expandChildNodes : function(deep){
35096         var cs = this.childNodes;
35097         for(var i = 0, len = cs.length; i < len; i++) {
35098                 cs[i].expand(deep);
35099         }
35100     },
35101
35102     /**
35103      * Collapse all child nodes
35104      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35105      */
35106     collapseChildNodes : function(deep){
35107         var cs = this.childNodes;
35108         for(var i = 0, len = cs.length; i < len; i++) {
35109                 cs[i].collapse(deep);
35110         }
35111     },
35112
35113     /**
35114      * Disables this node
35115      */
35116     disable : function(){
35117         this.disabled = true;
35118         this.unselect();
35119         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35120             this.ui.onDisableChange(this, true);
35121         }
35122         this.fireEvent("disabledchange", this, true);
35123     },
35124
35125     /**
35126      * Enables this node
35127      */
35128     enable : function(){
35129         this.disabled = false;
35130         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35131             this.ui.onDisableChange(this, false);
35132         }
35133         this.fireEvent("disabledchange", this, false);
35134     },
35135
35136     // private
35137     renderChildren : function(suppressEvent){
35138         if(suppressEvent !== false){
35139             this.fireEvent("beforechildrenrendered", this);
35140         }
35141         var cs = this.childNodes;
35142         for(var i = 0, len = cs.length; i < len; i++){
35143             cs[i].render(true);
35144         }
35145         this.childrenRendered = true;
35146     },
35147
35148     // private
35149     sort : function(fn, scope){
35150         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35151         if(this.childrenRendered){
35152             var cs = this.childNodes;
35153             for(var i = 0, len = cs.length; i < len; i++){
35154                 cs[i].render(true);
35155             }
35156         }
35157     },
35158
35159     // private
35160     render : function(bulkRender){
35161         this.ui.render(bulkRender);
35162         if(!this.rendered){
35163             this.rendered = true;
35164             if(this.expanded){
35165                 this.expanded = false;
35166                 this.expand(false, false);
35167             }
35168         }
35169     },
35170
35171     // private
35172     renderIndent : function(deep, refresh){
35173         if(refresh){
35174             this.ui.childIndent = null;
35175         }
35176         this.ui.renderIndent();
35177         if(deep === true && this.childrenRendered){
35178             var cs = this.childNodes;
35179             for(var i = 0, len = cs.length; i < len; i++){
35180                 cs[i].renderIndent(true, refresh);
35181             }
35182         }
35183     }
35184 });/*
35185  * Based on:
35186  * Ext JS Library 1.1.1
35187  * Copyright(c) 2006-2007, Ext JS, LLC.
35188  *
35189  * Originally Released Under LGPL - original licence link has changed is not relivant.
35190  *
35191  * Fork - LGPL
35192  * <script type="text/javascript">
35193  */
35194  
35195 /**
35196  * @class Roo.tree.AsyncTreeNode
35197  * @extends Roo.tree.TreeNode
35198  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35199  * @constructor
35200  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35201  */
35202  Roo.tree.AsyncTreeNode = function(config){
35203     this.loaded = false;
35204     this.loading = false;
35205     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35206     /**
35207     * @event beforeload
35208     * Fires before this node is loaded, return false to cancel
35209     * @param {Node} this This node
35210     */
35211     this.addEvents({'beforeload':true, 'load': true});
35212     /**
35213     * @event load
35214     * Fires when this node is loaded
35215     * @param {Node} this This node
35216     */
35217     /**
35218      * The loader used by this node (defaults to using the tree's defined loader)
35219      * @type TreeLoader
35220      * @property loader
35221      */
35222 };
35223 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35224     expand : function(deep, anim, callback){
35225         if(this.loading){ // if an async load is already running, waiting til it's done
35226             var timer;
35227             var f = function(){
35228                 if(!this.loading){ // done loading
35229                     clearInterval(timer);
35230                     this.expand(deep, anim, callback);
35231                 }
35232             }.createDelegate(this);
35233             timer = setInterval(f, 200);
35234             return;
35235         }
35236         if(!this.loaded){
35237             if(this.fireEvent("beforeload", this) === false){
35238                 return;
35239             }
35240             this.loading = true;
35241             this.ui.beforeLoad(this);
35242             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35243             if(loader){
35244                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35245                 return;
35246             }
35247         }
35248         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35249     },
35250     
35251     /**
35252      * Returns true if this node is currently loading
35253      * @return {Boolean}
35254      */
35255     isLoading : function(){
35256         return this.loading;  
35257     },
35258     
35259     loadComplete : function(deep, anim, callback){
35260         this.loading = false;
35261         this.loaded = true;
35262         this.ui.afterLoad(this);
35263         this.fireEvent("load", this);
35264         this.expand(deep, anim, callback);
35265     },
35266     
35267     /**
35268      * Returns true if this node has been loaded
35269      * @return {Boolean}
35270      */
35271     isLoaded : function(){
35272         return this.loaded;
35273     },
35274     
35275     hasChildNodes : function(){
35276         if(!this.isLeaf() && !this.loaded){
35277             return true;
35278         }else{
35279             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35280         }
35281     },
35282
35283     /**
35284      * Trigger a reload for this node
35285      * @param {Function} callback
35286      */
35287     reload : function(callback){
35288         this.collapse(false, false);
35289         while(this.firstChild){
35290             this.removeChild(this.firstChild);
35291         }
35292         this.childrenRendered = false;
35293         this.loaded = false;
35294         if(this.isHiddenRoot()){
35295             this.expanded = false;
35296         }
35297         this.expand(false, false, callback);
35298     }
35299 });/*
35300  * Based on:
35301  * Ext JS Library 1.1.1
35302  * Copyright(c) 2006-2007, Ext JS, LLC.
35303  *
35304  * Originally Released Under LGPL - original licence link has changed is not relivant.
35305  *
35306  * Fork - LGPL
35307  * <script type="text/javascript">
35308  */
35309  
35310 /**
35311  * @class Roo.tree.TreeNodeUI
35312  * @constructor
35313  * @param {Object} node The node to render
35314  * The TreeNode UI implementation is separate from the
35315  * tree implementation. Unless you are customizing the tree UI,
35316  * you should never have to use this directly.
35317  */
35318 Roo.tree.TreeNodeUI = function(node){
35319     this.node = node;
35320     this.rendered = false;
35321     this.animating = false;
35322     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35323 };
35324
35325 Roo.tree.TreeNodeUI.prototype = {
35326     removeChild : function(node){
35327         if(this.rendered){
35328             this.ctNode.removeChild(node.ui.getEl());
35329         }
35330     },
35331
35332     beforeLoad : function(){
35333          this.addClass("x-tree-node-loading");
35334     },
35335
35336     afterLoad : function(){
35337          this.removeClass("x-tree-node-loading");
35338     },
35339
35340     onTextChange : function(node, text, oldText){
35341         if(this.rendered){
35342             this.textNode.innerHTML = text;
35343         }
35344     },
35345
35346     onDisableChange : function(node, state){
35347         this.disabled = state;
35348         if(state){
35349             this.addClass("x-tree-node-disabled");
35350         }else{
35351             this.removeClass("x-tree-node-disabled");
35352         }
35353     },
35354
35355     onSelectedChange : function(state){
35356         if(state){
35357             this.focus();
35358             this.addClass("x-tree-selected");
35359         }else{
35360             //this.blur();
35361             this.removeClass("x-tree-selected");
35362         }
35363     },
35364
35365     onMove : function(tree, node, oldParent, newParent, index, refNode){
35366         this.childIndent = null;
35367         if(this.rendered){
35368             var targetNode = newParent.ui.getContainer();
35369             if(!targetNode){//target not rendered
35370                 this.holder = document.createElement("div");
35371                 this.holder.appendChild(this.wrap);
35372                 return;
35373             }
35374             var insertBefore = refNode ? refNode.ui.getEl() : null;
35375             if(insertBefore){
35376                 targetNode.insertBefore(this.wrap, insertBefore);
35377             }else{
35378                 targetNode.appendChild(this.wrap);
35379             }
35380             this.node.renderIndent(true);
35381         }
35382     },
35383
35384     addClass : function(cls){
35385         if(this.elNode){
35386             Roo.fly(this.elNode).addClass(cls);
35387         }
35388     },
35389
35390     removeClass : function(cls){
35391         if(this.elNode){
35392             Roo.fly(this.elNode).removeClass(cls);
35393         }
35394     },
35395
35396     remove : function(){
35397         if(this.rendered){
35398             this.holder = document.createElement("div");
35399             this.holder.appendChild(this.wrap);
35400         }
35401     },
35402
35403     fireEvent : function(){
35404         return this.node.fireEvent.apply(this.node, arguments);
35405     },
35406
35407     initEvents : function(){
35408         this.node.on("move", this.onMove, this);
35409         var E = Roo.EventManager;
35410         var a = this.anchor;
35411
35412         var el = Roo.fly(a, '_treeui');
35413
35414         if(Roo.isOpera){ // opera render bug ignores the CSS
35415             el.setStyle("text-decoration", "none");
35416         }
35417
35418         el.on("click", this.onClick, this);
35419         el.on("dblclick", this.onDblClick, this);
35420
35421         if(this.checkbox){
35422             Roo.EventManager.on(this.checkbox,
35423                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35424         }
35425
35426         el.on("contextmenu", this.onContextMenu, this);
35427
35428         var icon = Roo.fly(this.iconNode);
35429         icon.on("click", this.onClick, this);
35430         icon.on("dblclick", this.onDblClick, this);
35431         icon.on("contextmenu", this.onContextMenu, this);
35432         E.on(this.ecNode, "click", this.ecClick, this, true);
35433
35434         if(this.node.disabled){
35435             this.addClass("x-tree-node-disabled");
35436         }
35437         if(this.node.hidden){
35438             this.addClass("x-tree-node-disabled");
35439         }
35440         var ot = this.node.getOwnerTree();
35441         var dd = ot.enableDD || ot.enableDrag || ot.enableDrop;
35442         if(dd && (!this.node.isRoot || ot.rootVisible)){
35443             Roo.dd.Registry.register(this.elNode, {
35444                 node: this.node,
35445                 handles: this.getDDHandles(),
35446                 isHandle: false
35447             });
35448         }
35449     },
35450
35451     getDDHandles : function(){
35452         return [this.iconNode, this.textNode];
35453     },
35454
35455     hide : function(){
35456         if(this.rendered){
35457             this.wrap.style.display = "none";
35458         }
35459     },
35460
35461     show : function(){
35462         if(this.rendered){
35463             this.wrap.style.display = "";
35464         }
35465     },
35466
35467     onContextMenu : function(e){
35468         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35469             e.preventDefault();
35470             this.focus();
35471             this.fireEvent("contextmenu", this.node, e);
35472         }
35473     },
35474
35475     onClick : function(e){
35476         if(this.dropping){
35477             e.stopEvent();
35478             return;
35479         }
35480         if(this.fireEvent("beforeclick", this.node, e) !== false){
35481             if(!this.disabled && this.node.attributes.href){
35482                 this.fireEvent("click", this.node, e);
35483                 return;
35484             }
35485             e.preventDefault();
35486             if(this.disabled){
35487                 return;
35488             }
35489
35490             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35491                 this.node.toggle();
35492             }
35493
35494             this.fireEvent("click", this.node, e);
35495         }else{
35496             e.stopEvent();
35497         }
35498     },
35499
35500     onDblClick : function(e){
35501         e.preventDefault();
35502         if(this.disabled){
35503             return;
35504         }
35505         if(this.checkbox){
35506             this.toggleCheck();
35507         }
35508         if(!this.animating && this.node.hasChildNodes()){
35509             this.node.toggle();
35510         }
35511         this.fireEvent("dblclick", this.node, e);
35512     },
35513
35514     onCheckChange : function(){
35515         var checked = this.checkbox.checked;
35516         this.node.attributes.checked = checked;
35517         this.fireEvent('checkchange', this.node, checked);
35518     },
35519
35520     ecClick : function(e){
35521         if(!this.animating && this.node.hasChildNodes()){
35522             this.node.toggle();
35523         }
35524     },
35525
35526     startDrop : function(){
35527         this.dropping = true;
35528     },
35529
35530     // delayed drop so the click event doesn't get fired on a drop
35531     endDrop : function(){
35532        setTimeout(function(){
35533            this.dropping = false;
35534        }.createDelegate(this), 50);
35535     },
35536
35537     expand : function(){
35538         this.updateExpandIcon();
35539         this.ctNode.style.display = "";
35540     },
35541
35542     focus : function(){
35543         if(!this.node.preventHScroll){
35544             try{this.anchor.focus();
35545             }catch(e){}
35546         }else if(!Roo.isIE){
35547             try{
35548                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35549                 var l = noscroll.scrollLeft;
35550                 this.anchor.focus();
35551                 noscroll.scrollLeft = l;
35552             }catch(e){}
35553         }
35554     },
35555
35556     toggleCheck : function(value){
35557         var cb = this.checkbox;
35558         if(cb){
35559             cb.checked = (value === undefined ? !cb.checked : value);
35560         }
35561     },
35562
35563     blur : function(){
35564         try{
35565             this.anchor.blur();
35566         }catch(e){}
35567     },
35568
35569     animExpand : function(callback){
35570         var ct = Roo.get(this.ctNode);
35571         ct.stopFx();
35572         if(!this.node.hasChildNodes()){
35573             this.updateExpandIcon();
35574             this.ctNode.style.display = "";
35575             Roo.callback(callback);
35576             return;
35577         }
35578         this.animating = true;
35579         this.updateExpandIcon();
35580
35581         ct.slideIn('t', {
35582            callback : function(){
35583                this.animating = false;
35584                Roo.callback(callback);
35585             },
35586             scope: this,
35587             duration: this.node.ownerTree.duration || .25
35588         });
35589     },
35590
35591     highlight : function(){
35592         var tree = this.node.getOwnerTree();
35593         Roo.fly(this.wrap).highlight(
35594             tree.hlColor || "C3DAF9",
35595             {endColor: tree.hlBaseColor}
35596         );
35597     },
35598
35599     collapse : function(){
35600         this.updateExpandIcon();
35601         this.ctNode.style.display = "none";
35602     },
35603
35604     animCollapse : function(callback){
35605         var ct = Roo.get(this.ctNode);
35606         ct.enableDisplayMode('block');
35607         ct.stopFx();
35608
35609         this.animating = true;
35610         this.updateExpandIcon();
35611
35612         ct.slideOut('t', {
35613             callback : function(){
35614                this.animating = false;
35615                Roo.callback(callback);
35616             },
35617             scope: this,
35618             duration: this.node.ownerTree.duration || .25
35619         });
35620     },
35621
35622     getContainer : function(){
35623         return this.ctNode;
35624     },
35625
35626     getEl : function(){
35627         return this.wrap;
35628     },
35629
35630     appendDDGhost : function(ghostNode){
35631         ghostNode.appendChild(this.elNode.cloneNode(true));
35632     },
35633
35634     getDDRepairXY : function(){
35635         return Roo.lib.Dom.getXY(this.iconNode);
35636     },
35637
35638     onRender : function(){
35639         this.render();
35640     },
35641
35642     render : function(bulkRender){
35643         var n = this.node, a = n.attributes;
35644         var targetNode = n.parentNode ?
35645               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
35646
35647         if(!this.rendered){
35648             this.rendered = true;
35649
35650             this.renderElements(n, a, targetNode, bulkRender);
35651
35652             if(a.qtip){
35653                if(this.textNode.setAttributeNS){
35654                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
35655                    if(a.qtipTitle){
35656                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
35657                    }
35658                }else{
35659                    this.textNode.setAttribute("ext:qtip", a.qtip);
35660                    if(a.qtipTitle){
35661                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
35662                    }
35663                }
35664             }else if(a.qtipCfg){
35665                 a.qtipCfg.target = Roo.id(this.textNode);
35666                 Roo.QuickTips.register(a.qtipCfg);
35667             }
35668             this.initEvents();
35669             if(!this.node.expanded){
35670                 this.updateExpandIcon();
35671             }
35672         }else{
35673             if(bulkRender === true) {
35674                 targetNode.appendChild(this.wrap);
35675             }
35676         }
35677     },
35678
35679     renderElements : function(n, a, targetNode, bulkRender)
35680     {
35681         // add some indent caching, this helps performance when rendering a large tree
35682         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
35683         var t = n.getOwnerTree();
35684         var txt = t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
35685         if (typeof(n.attributes.html) != 'undefined') {
35686             txt = n.attributes.html;
35687         }
35688         var tip = t.rendererTip ? t.rendererTip(n.attributes) : txt;
35689         var cb = typeof a.checked == 'boolean';
35690         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
35691         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
35692             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
35693             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
35694             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
35695             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
35696             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
35697              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
35698                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
35699             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
35700             "</li>"];
35701
35702         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
35703             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
35704                                 n.nextSibling.ui.getEl(), buf.join(""));
35705         }else{
35706             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
35707         }
35708
35709         this.elNode = this.wrap.childNodes[0];
35710         this.ctNode = this.wrap.childNodes[1];
35711         var cs = this.elNode.childNodes;
35712         this.indentNode = cs[0];
35713         this.ecNode = cs[1];
35714         this.iconNode = cs[2];
35715         var index = 3;
35716         if(cb){
35717             this.checkbox = cs[3];
35718             index++;
35719         }
35720         this.anchor = cs[index];
35721         this.textNode = cs[index].firstChild;
35722     },
35723
35724     getAnchor : function(){
35725         return this.anchor;
35726     },
35727
35728     getTextEl : function(){
35729         return this.textNode;
35730     },
35731
35732     getIconEl : function(){
35733         return this.iconNode;
35734     },
35735
35736     isChecked : function(){
35737         return this.checkbox ? this.checkbox.checked : false;
35738     },
35739
35740     updateExpandIcon : function(){
35741         if(this.rendered){
35742             var n = this.node, c1, c2;
35743             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
35744             var hasChild = n.hasChildNodes();
35745             if(hasChild){
35746                 if(n.expanded){
35747                     cls += "-minus";
35748                     c1 = "x-tree-node-collapsed";
35749                     c2 = "x-tree-node-expanded";
35750                 }else{
35751                     cls += "-plus";
35752                     c1 = "x-tree-node-expanded";
35753                     c2 = "x-tree-node-collapsed";
35754                 }
35755                 if(this.wasLeaf){
35756                     this.removeClass("x-tree-node-leaf");
35757                     this.wasLeaf = false;
35758                 }
35759                 if(this.c1 != c1 || this.c2 != c2){
35760                     Roo.fly(this.elNode).replaceClass(c1, c2);
35761                     this.c1 = c1; this.c2 = c2;
35762                 }
35763             }else{
35764                 // this changes non-leafs into leafs if they have no children.
35765                 // it's not very rational behaviour..
35766                 
35767                 if(!this.wasLeaf && this.node.leaf){
35768                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
35769                     delete this.c1;
35770                     delete this.c2;
35771                     this.wasLeaf = true;
35772                 }
35773             }
35774             var ecc = "x-tree-ec-icon "+cls;
35775             if(this.ecc != ecc){
35776                 this.ecNode.className = ecc;
35777                 this.ecc = ecc;
35778             }
35779         }
35780     },
35781
35782     getChildIndent : function(){
35783         if(!this.childIndent){
35784             var buf = [];
35785             var p = this.node;
35786             while(p){
35787                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
35788                     if(!p.isLast()) {
35789                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
35790                     } else {
35791                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
35792                     }
35793                 }
35794                 p = p.parentNode;
35795             }
35796             this.childIndent = buf.join("");
35797         }
35798         return this.childIndent;
35799     },
35800
35801     renderIndent : function(){
35802         if(this.rendered){
35803             var indent = "";
35804             var p = this.node.parentNode;
35805             if(p){
35806                 indent = p.ui.getChildIndent();
35807             }
35808             if(this.indentMarkup != indent){ // don't rerender if not required
35809                 this.indentNode.innerHTML = indent;
35810                 this.indentMarkup = indent;
35811             }
35812             this.updateExpandIcon();
35813         }
35814     }
35815 };
35816
35817 Roo.tree.RootTreeNodeUI = function(){
35818     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
35819 };
35820 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
35821     render : function(){
35822         if(!this.rendered){
35823             var targetNode = this.node.ownerTree.innerCt.dom;
35824             this.node.expanded = true;
35825             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
35826             this.wrap = this.ctNode = targetNode.firstChild;
35827         }
35828     },
35829     collapse : function(){
35830     },
35831     expand : function(){
35832     }
35833 });/*
35834  * Based on:
35835  * Ext JS Library 1.1.1
35836  * Copyright(c) 2006-2007, Ext JS, LLC.
35837  *
35838  * Originally Released Under LGPL - original licence link has changed is not relivant.
35839  *
35840  * Fork - LGPL
35841  * <script type="text/javascript">
35842  */
35843 /**
35844  * @class Roo.tree.TreeLoader
35845  * @extends Roo.util.Observable
35846  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
35847  * nodes from a specified URL. The response must be a javascript Array definition
35848  * who's elements are node definition objects. eg:
35849  * <pre><code>
35850 {  success : true,
35851    data :      [
35852    
35853     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
35854     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
35855     ]
35856 }
35857
35858
35859 </code></pre>
35860  * <br><br>
35861  * The old style respose with just an array is still supported, but not recommended.
35862  * <br><br>
35863  *
35864  * A server request is sent, and child nodes are loaded only when a node is expanded.
35865  * The loading node's id is passed to the server under the parameter name "node" to
35866  * enable the server to produce the correct child nodes.
35867  * <br><br>
35868  * To pass extra parameters, an event handler may be attached to the "beforeload"
35869  * event, and the parameters specified in the TreeLoader's baseParams property:
35870  * <pre><code>
35871     myTreeLoader.on("beforeload", function(treeLoader, node) {
35872         this.baseParams.category = node.attributes.category;
35873     }, this);
35874 </code></pre><
35875  * This would pass an HTTP parameter called "category" to the server containing
35876  * the value of the Node's "category" attribute.
35877  * @constructor
35878  * Creates a new Treeloader.
35879  * @param {Object} config A config object containing config properties.
35880  */
35881 Roo.tree.TreeLoader = function(config){
35882     this.baseParams = {};
35883     this.requestMethod = "POST";
35884     Roo.apply(this, config);
35885
35886     this.addEvents({
35887     
35888         /**
35889          * @event beforeload
35890          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
35891          * @param {Object} This TreeLoader object.
35892          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
35893          * @param {Object} callback The callback function specified in the {@link #load} call.
35894          */
35895         beforeload : true,
35896         /**
35897          * @event load
35898          * Fires when the node has been successfuly loaded.
35899          * @param {Object} This TreeLoader object.
35900          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
35901          * @param {Object} response The response object containing the data from the server.
35902          */
35903         load : true,
35904         /**
35905          * @event loadexception
35906          * Fires if the network request failed.
35907          * @param {Object} This TreeLoader object.
35908          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
35909          * @param {Object} response The response object containing the data from the server.
35910          */
35911         loadexception : true,
35912         /**
35913          * @event create
35914          * Fires before a node is created, enabling you to return custom Node types 
35915          * @param {Object} This TreeLoader object.
35916          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
35917          */
35918         create : true
35919     });
35920
35921     Roo.tree.TreeLoader.superclass.constructor.call(this);
35922 };
35923
35924 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
35925     /**
35926     * @cfg {String} dataUrl The URL from which to request a Json string which
35927     * specifies an array of node definition object representing the child nodes
35928     * to be loaded.
35929     */
35930     /**
35931     * @cfg {String} requestMethod either GET or POST
35932     * defaults to POST (due to BC)
35933     * to be loaded.
35934     */
35935     /**
35936     * @cfg {Object} baseParams (optional) An object containing properties which
35937     * specify HTTP parameters to be passed to each request for child nodes.
35938     */
35939     /**
35940     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
35941     * created by this loader. If the attributes sent by the server have an attribute in this object,
35942     * they take priority.
35943     */
35944     /**
35945     * @cfg {Object} uiProviders (optional) An object containing properties which
35946     * 
35947     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
35948     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
35949     * <i>uiProvider</i> attribute of a returned child node is a string rather
35950     * than a reference to a TreeNodeUI implementation, this that string value
35951     * is used as a property name in the uiProviders object. You can define the provider named
35952     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
35953     */
35954     uiProviders : {},
35955
35956     /**
35957     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
35958     * child nodes before loading.
35959     */
35960     clearOnLoad : true,
35961
35962     /**
35963     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
35964     * property on loading, rather than expecting an array. (eg. more compatible to a standard
35965     * Grid query { data : [ .....] }
35966     */
35967     
35968     root : false,
35969      /**
35970     * @cfg {String} queryParam (optional) 
35971     * Name of the query as it will be passed on the querystring (defaults to 'node')
35972     * eg. the request will be ?node=[id]
35973     */
35974     
35975     
35976     queryParam: false,
35977     
35978     /**
35979      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
35980      * This is called automatically when a node is expanded, but may be used to reload
35981      * a node (or append new children if the {@link #clearOnLoad} option is false.)
35982      * @param {Roo.tree.TreeNode} node
35983      * @param {Function} callback
35984      */
35985     load : function(node, callback){
35986         if(this.clearOnLoad){
35987             while(node.firstChild){
35988                 node.removeChild(node.firstChild);
35989             }
35990         }
35991         if(node.attributes.children){ // preloaded json children
35992             var cs = node.attributes.children;
35993             for(var i = 0, len = cs.length; i < len; i++){
35994                 node.appendChild(this.createNode(cs[i]));
35995             }
35996             if(typeof callback == "function"){
35997                 callback();
35998             }
35999         }else if(this.dataUrl){
36000             this.requestData(node, callback);
36001         }
36002     },
36003
36004     getParams: function(node){
36005         var buf = [], bp = this.baseParams;
36006         for(var key in bp){
36007             if(typeof bp[key] != "function"){
36008                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36009             }
36010         }
36011         var n = this.queryParam === false ? 'node' : this.queryParam;
36012         buf.push(n + "=", encodeURIComponent(node.id));
36013         return buf.join("");
36014     },
36015
36016     requestData : function(node, callback){
36017         if(this.fireEvent("beforeload", this, node, callback) !== false){
36018             this.transId = Roo.Ajax.request({
36019                 method:this.requestMethod,
36020                 url: this.dataUrl||this.url,
36021                 success: this.handleResponse,
36022                 failure: this.handleFailure,
36023                 scope: this,
36024                 argument: {callback: callback, node: node},
36025                 params: this.getParams(node)
36026             });
36027         }else{
36028             // if the load is cancelled, make sure we notify
36029             // the node that we are done
36030             if(typeof callback == "function"){
36031                 callback();
36032             }
36033         }
36034     },
36035
36036     isLoading : function(){
36037         return this.transId ? true : false;
36038     },
36039
36040     abort : function(){
36041         if(this.isLoading()){
36042             Roo.Ajax.abort(this.transId);
36043         }
36044     },
36045
36046     // private
36047     createNode : function(attr)
36048     {
36049         // apply baseAttrs, nice idea Corey!
36050         if(this.baseAttrs){
36051             Roo.applyIf(attr, this.baseAttrs);
36052         }
36053         if(this.applyLoader !== false){
36054             attr.loader = this;
36055         }
36056         // uiProvider = depreciated..
36057         
36058         if(typeof(attr.uiProvider) == 'string'){
36059            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36060                 /**  eval:var:attr */ eval(attr.uiProvider);
36061         }
36062         if(typeof(this.uiProviders['default']) != 'undefined') {
36063             attr.uiProvider = this.uiProviders['default'];
36064         }
36065         
36066         this.fireEvent('create', this, attr);
36067         
36068         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36069         return(attr.leaf ?
36070                         new Roo.tree.TreeNode(attr) :
36071                         new Roo.tree.AsyncTreeNode(attr));
36072     },
36073
36074     processResponse : function(response, node, callback)
36075     {
36076         var json = response.responseText;
36077         try {
36078             
36079             var o = Roo.decode(json);
36080             
36081             if (this.root === false && typeof(o.success) != undefined) {
36082                 this.root = 'data'; // the default behaviour for list like data..
36083                 }
36084                 
36085             if (this.root !== false &&  !o.success) {
36086                 // it's a failure condition.
36087                 var a = response.argument;
36088                 this.fireEvent("loadexception", this, a.node, response);
36089                 Roo.log("Load failed - should have a handler really");
36090                 return;
36091             }
36092             
36093             
36094             
36095             if (this.root !== false) {
36096                  o = o[this.root];
36097             }
36098             
36099             for(var i = 0, len = o.length; i < len; i++){
36100                 var n = this.createNode(o[i]);
36101                 if(n){
36102                     node.appendChild(n);
36103                 }
36104             }
36105             if(typeof callback == "function"){
36106                 callback(this, node);
36107             }
36108         }catch(e){
36109             this.handleFailure(response);
36110         }
36111     },
36112
36113     handleResponse : function(response){
36114         this.transId = false;
36115         var a = response.argument;
36116         this.processResponse(response, a.node, a.callback);
36117         this.fireEvent("load", this, a.node, response);
36118     },
36119
36120     handleFailure : function(response)
36121     {
36122         // should handle failure better..
36123         this.transId = false;
36124         var a = response.argument;
36125         this.fireEvent("loadexception", this, a.node, response);
36126         if(typeof a.callback == "function"){
36127             a.callback(this, a.node);
36128         }
36129     }
36130 });/*
36131  * Based on:
36132  * Ext JS Library 1.1.1
36133  * Copyright(c) 2006-2007, Ext JS, LLC.
36134  *
36135  * Originally Released Under LGPL - original licence link has changed is not relivant.
36136  *
36137  * Fork - LGPL
36138  * <script type="text/javascript">
36139  */
36140
36141 /**
36142 * @class Roo.tree.TreeFilter
36143 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36144 * @param {TreePanel} tree
36145 * @param {Object} config (optional)
36146  */
36147 Roo.tree.TreeFilter = function(tree, config){
36148     this.tree = tree;
36149     this.filtered = {};
36150     Roo.apply(this, config);
36151 };
36152
36153 Roo.tree.TreeFilter.prototype = {
36154     clearBlank:false,
36155     reverse:false,
36156     autoClear:false,
36157     remove:false,
36158
36159      /**
36160      * Filter the data by a specific attribute.
36161      * @param {String/RegExp} value Either string that the attribute value
36162      * should start with or a RegExp to test against the attribute
36163      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36164      * @param {TreeNode} startNode (optional) The node to start the filter at.
36165      */
36166     filter : function(value, attr, startNode){
36167         attr = attr || "text";
36168         var f;
36169         if(typeof value == "string"){
36170             var vlen = value.length;
36171             // auto clear empty filter
36172             if(vlen == 0 && this.clearBlank){
36173                 this.clear();
36174                 return;
36175             }
36176             value = value.toLowerCase();
36177             f = function(n){
36178                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36179             };
36180         }else if(value.exec){ // regex?
36181             f = function(n){
36182                 return value.test(n.attributes[attr]);
36183             };
36184         }else{
36185             throw 'Illegal filter type, must be string or regex';
36186         }
36187         this.filterBy(f, null, startNode);
36188         },
36189
36190     /**
36191      * Filter by a function. The passed function will be called with each
36192      * node in the tree (or from the startNode). If the function returns true, the node is kept
36193      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36194      * @param {Function} fn The filter function
36195      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36196      */
36197     filterBy : function(fn, scope, startNode){
36198         startNode = startNode || this.tree.root;
36199         if(this.autoClear){
36200             this.clear();
36201         }
36202         var af = this.filtered, rv = this.reverse;
36203         var f = function(n){
36204             if(n == startNode){
36205                 return true;
36206             }
36207             if(af[n.id]){
36208                 return false;
36209             }
36210             var m = fn.call(scope || n, n);
36211             if(!m || rv){
36212                 af[n.id] = n;
36213                 n.ui.hide();
36214                 return false;
36215             }
36216             return true;
36217         };
36218         startNode.cascade(f);
36219         if(this.remove){
36220            for(var id in af){
36221                if(typeof id != "function"){
36222                    var n = af[id];
36223                    if(n && n.parentNode){
36224                        n.parentNode.removeChild(n);
36225                    }
36226                }
36227            }
36228         }
36229     },
36230
36231     /**
36232      * Clears the current filter. Note: with the "remove" option
36233      * set a filter cannot be cleared.
36234      */
36235     clear : function(){
36236         var t = this.tree;
36237         var af = this.filtered;
36238         for(var id in af){
36239             if(typeof id != "function"){
36240                 var n = af[id];
36241                 if(n){
36242                     n.ui.show();
36243                 }
36244             }
36245         }
36246         this.filtered = {};
36247     }
36248 };
36249 /*
36250  * Based on:
36251  * Ext JS Library 1.1.1
36252  * Copyright(c) 2006-2007, Ext JS, LLC.
36253  *
36254  * Originally Released Under LGPL - original licence link has changed is not relivant.
36255  *
36256  * Fork - LGPL
36257  * <script type="text/javascript">
36258  */
36259  
36260
36261 /**
36262  * @class Roo.tree.TreeSorter
36263  * Provides sorting of nodes in a TreePanel
36264  * 
36265  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36266  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36267  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36268  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36269  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36270  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36271  * @constructor
36272  * @param {TreePanel} tree
36273  * @param {Object} config
36274  */
36275 Roo.tree.TreeSorter = function(tree, config){
36276     Roo.apply(this, config);
36277     tree.on("beforechildrenrendered", this.doSort, this);
36278     tree.on("append", this.updateSort, this);
36279     tree.on("insert", this.updateSort, this);
36280     
36281     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36282     var p = this.property || "text";
36283     var sortType = this.sortType;
36284     var fs = this.folderSort;
36285     var cs = this.caseSensitive === true;
36286     var leafAttr = this.leafAttr || 'leaf';
36287
36288     this.sortFn = function(n1, n2){
36289         if(fs){
36290             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36291                 return 1;
36292             }
36293             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36294                 return -1;
36295             }
36296         }
36297         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36298         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36299         if(v1 < v2){
36300                         return dsc ? +1 : -1;
36301                 }else if(v1 > v2){
36302                         return dsc ? -1 : +1;
36303         }else{
36304                 return 0;
36305         }
36306     };
36307 };
36308
36309 Roo.tree.TreeSorter.prototype = {
36310     doSort : function(node){
36311         node.sort(this.sortFn);
36312     },
36313     
36314     compareNodes : function(n1, n2){
36315         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36316     },
36317     
36318     updateSort : function(tree, node){
36319         if(node.childrenRendered){
36320             this.doSort.defer(1, this, [node]);
36321         }
36322     }
36323 };/*
36324  * Based on:
36325  * Ext JS Library 1.1.1
36326  * Copyright(c) 2006-2007, Ext JS, LLC.
36327  *
36328  * Originally Released Under LGPL - original licence link has changed is not relivant.
36329  *
36330  * Fork - LGPL
36331  * <script type="text/javascript">
36332  */
36333
36334 if(Roo.dd.DropZone){
36335     
36336 Roo.tree.TreeDropZone = function(tree, config){
36337     this.allowParentInsert = false;
36338     this.allowContainerDrop = false;
36339     this.appendOnly = false;
36340     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36341     this.tree = tree;
36342     this.lastInsertClass = "x-tree-no-status";
36343     this.dragOverData = {};
36344 };
36345
36346 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36347     ddGroup : "TreeDD",
36348     scroll:  true,
36349     
36350     expandDelay : 1000,
36351     
36352     expandNode : function(node){
36353         if(node.hasChildNodes() && !node.isExpanded()){
36354             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36355         }
36356     },
36357     
36358     queueExpand : function(node){
36359         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36360     },
36361     
36362     cancelExpand : function(){
36363         if(this.expandProcId){
36364             clearTimeout(this.expandProcId);
36365             this.expandProcId = false;
36366         }
36367     },
36368     
36369     isValidDropPoint : function(n, pt, dd, e, data){
36370         if(!n || !data){ return false; }
36371         var targetNode = n.node;
36372         var dropNode = data.node;
36373         // default drop rules
36374         if(!(targetNode && targetNode.isTarget && pt)){
36375             return false;
36376         }
36377         if(pt == "append" && targetNode.allowChildren === false){
36378             return false;
36379         }
36380         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36381             return false;
36382         }
36383         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36384             return false;
36385         }
36386         // reuse the object
36387         var overEvent = this.dragOverData;
36388         overEvent.tree = this.tree;
36389         overEvent.target = targetNode;
36390         overEvent.data = data;
36391         overEvent.point = pt;
36392         overEvent.source = dd;
36393         overEvent.rawEvent = e;
36394         overEvent.dropNode = dropNode;
36395         overEvent.cancel = false;  
36396         var result = this.tree.fireEvent("nodedragover", overEvent);
36397         return overEvent.cancel === false && result !== false;
36398     },
36399     
36400     getDropPoint : function(e, n, dd)
36401     {
36402         var tn = n.node;
36403         if(tn.isRoot){
36404             return tn.allowChildren !== false ? "append" : false; // always append for root
36405         }
36406         var dragEl = n.ddel;
36407         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36408         var y = Roo.lib.Event.getPageY(e);
36409         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36410         
36411         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36412         var noAppend = tn.allowChildren === false;
36413         if(this.appendOnly || tn.parentNode.allowChildren === false){
36414             return noAppend ? false : "append";
36415         }
36416         var noBelow = false;
36417         if(!this.allowParentInsert){
36418             noBelow = tn.hasChildNodes() && tn.isExpanded();
36419         }
36420         var q = (b - t) / (noAppend ? 2 : 3);
36421         if(y >= t && y < (t + q)){
36422             return "above";
36423         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36424             return "below";
36425         }else{
36426             return "append";
36427         }
36428     },
36429     
36430     onNodeEnter : function(n, dd, e, data)
36431     {
36432         this.cancelExpand();
36433     },
36434     
36435     onNodeOver : function(n, dd, e, data)
36436     {
36437        
36438         var pt = this.getDropPoint(e, n, dd);
36439         var node = n.node;
36440         
36441         // auto node expand check
36442         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36443             this.queueExpand(node);
36444         }else if(pt != "append"){
36445             this.cancelExpand();
36446         }
36447         
36448         // set the insert point style on the target node
36449         var returnCls = this.dropNotAllowed;
36450         if(this.isValidDropPoint(n, pt, dd, e, data)){
36451            if(pt){
36452                var el = n.ddel;
36453                var cls;
36454                if(pt == "above"){
36455                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36456                    cls = "x-tree-drag-insert-above";
36457                }else if(pt == "below"){
36458                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36459                    cls = "x-tree-drag-insert-below";
36460                }else{
36461                    returnCls = "x-tree-drop-ok-append";
36462                    cls = "x-tree-drag-append";
36463                }
36464                if(this.lastInsertClass != cls){
36465                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36466                    this.lastInsertClass = cls;
36467                }
36468            }
36469        }
36470        return returnCls;
36471     },
36472     
36473     onNodeOut : function(n, dd, e, data){
36474         
36475         this.cancelExpand();
36476         this.removeDropIndicators(n);
36477     },
36478     
36479     onNodeDrop : function(n, dd, e, data){
36480         var point = this.getDropPoint(e, n, dd);
36481         var targetNode = n.node;
36482         targetNode.ui.startDrop();
36483         if(!this.isValidDropPoint(n, point, dd, e, data)){
36484             targetNode.ui.endDrop();
36485             return false;
36486         }
36487         // first try to find the drop node
36488         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36489         var dropEvent = {
36490             tree : this.tree,
36491             target: targetNode,
36492             data: data,
36493             point: point,
36494             source: dd,
36495             rawEvent: e,
36496             dropNode: dropNode,
36497             cancel: !dropNode   
36498         };
36499         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36500         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36501             targetNode.ui.endDrop();
36502             return false;
36503         }
36504         // allow target changing
36505         targetNode = dropEvent.target;
36506         if(point == "append" && !targetNode.isExpanded()){
36507             targetNode.expand(false, null, function(){
36508                 this.completeDrop(dropEvent);
36509             }.createDelegate(this));
36510         }else{
36511             this.completeDrop(dropEvent);
36512         }
36513         return true;
36514     },
36515     
36516     completeDrop : function(de){
36517         var ns = de.dropNode, p = de.point, t = de.target;
36518         if(!(ns instanceof Array)){
36519             ns = [ns];
36520         }
36521         var n;
36522         for(var i = 0, len = ns.length; i < len; i++){
36523             n = ns[i];
36524             if(p == "above"){
36525                 t.parentNode.insertBefore(n, t);
36526             }else if(p == "below"){
36527                 t.parentNode.insertBefore(n, t.nextSibling);
36528             }else{
36529                 t.appendChild(n);
36530             }
36531         }
36532         n.ui.focus();
36533         if(this.tree.hlDrop){
36534             n.ui.highlight();
36535         }
36536         t.ui.endDrop();
36537         this.tree.fireEvent("nodedrop", de);
36538     },
36539     
36540     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36541         if(this.tree.hlDrop){
36542             dropNode.ui.focus();
36543             dropNode.ui.highlight();
36544         }
36545         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36546     },
36547     
36548     getTree : function(){
36549         return this.tree;
36550     },
36551     
36552     removeDropIndicators : function(n){
36553         if(n && n.ddel){
36554             var el = n.ddel;
36555             Roo.fly(el).removeClass([
36556                     "x-tree-drag-insert-above",
36557                     "x-tree-drag-insert-below",
36558                     "x-tree-drag-append"]);
36559             this.lastInsertClass = "_noclass";
36560         }
36561     },
36562     
36563     beforeDragDrop : function(target, e, id){
36564         this.cancelExpand();
36565         return true;
36566     },
36567     
36568     afterRepair : function(data){
36569         if(data && Roo.enableFx){
36570             data.node.ui.highlight();
36571         }
36572         this.hideProxy();
36573     } 
36574     
36575 });
36576
36577 }
36578 /*
36579  * Based on:
36580  * Ext JS Library 1.1.1
36581  * Copyright(c) 2006-2007, Ext JS, LLC.
36582  *
36583  * Originally Released Under LGPL - original licence link has changed is not relivant.
36584  *
36585  * Fork - LGPL
36586  * <script type="text/javascript">
36587  */
36588  
36589
36590 if(Roo.dd.DragZone){
36591 Roo.tree.TreeDragZone = function(tree, config){
36592     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36593     this.tree = tree;
36594 };
36595
36596 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36597     ddGroup : "TreeDD",
36598    
36599     onBeforeDrag : function(data, e){
36600         var n = data.node;
36601         return n && n.draggable && !n.disabled;
36602     },
36603      
36604     
36605     onInitDrag : function(e){
36606         var data = this.dragData;
36607         this.tree.getSelectionModel().select(data.node);
36608         this.proxy.update("");
36609         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36610         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36611     },
36612     
36613     getRepairXY : function(e, data){
36614         return data.node.ui.getDDRepairXY();
36615     },
36616     
36617     onEndDrag : function(data, e){
36618         this.tree.fireEvent("enddrag", this.tree, data.node, e);
36619         
36620         
36621     },
36622     
36623     onValidDrop : function(dd, e, id){
36624         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
36625         this.hideProxy();
36626     },
36627     
36628     beforeInvalidDrop : function(e, id){
36629         // this scrolls the original position back into view
36630         var sm = this.tree.getSelectionModel();
36631         sm.clearSelections();
36632         sm.select(this.dragData.node);
36633     }
36634 });
36635 }/*
36636  * Based on:
36637  * Ext JS Library 1.1.1
36638  * Copyright(c) 2006-2007, Ext JS, LLC.
36639  *
36640  * Originally Released Under LGPL - original licence link has changed is not relivant.
36641  *
36642  * Fork - LGPL
36643  * <script type="text/javascript">
36644  */
36645 /**
36646  * @class Roo.tree.TreeEditor
36647  * @extends Roo.Editor
36648  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
36649  * as the editor field.
36650  * @constructor
36651  * @param {Object} config (used to be the tree panel.)
36652  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
36653  * 
36654  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
36655  * @cfg {Roo.form.TextField|Object} field The field configuration
36656  *
36657  * 
36658  */
36659 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
36660     var tree = config;
36661     var field;
36662     if (oldconfig) { // old style..
36663         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
36664     } else {
36665         // new style..
36666         tree = config.tree;
36667         config.field = config.field  || {};
36668         config.field.xtype = 'TextField';
36669         field = Roo.factory(config.field, Roo.form);
36670     }
36671     config = config || {};
36672     
36673     
36674     this.addEvents({
36675         /**
36676          * @event beforenodeedit
36677          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
36678          * false from the handler of this event.
36679          * @param {Editor} this
36680          * @param {Roo.tree.Node} node 
36681          */
36682         "beforenodeedit" : true
36683     });
36684     
36685     //Roo.log(config);
36686     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
36687
36688     this.tree = tree;
36689
36690     tree.on('beforeclick', this.beforeNodeClick, this);
36691     tree.getTreeEl().on('mousedown', this.hide, this);
36692     this.on('complete', this.updateNode, this);
36693     this.on('beforestartedit', this.fitToTree, this);
36694     this.on('startedit', this.bindScroll, this, {delay:10});
36695     this.on('specialkey', this.onSpecialKey, this);
36696 };
36697
36698 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
36699     /**
36700      * @cfg {String} alignment
36701      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
36702      */
36703     alignment: "l-l",
36704     // inherit
36705     autoSize: false,
36706     /**
36707      * @cfg {Boolean} hideEl
36708      * True to hide the bound element while the editor is displayed (defaults to false)
36709      */
36710     hideEl : false,
36711     /**
36712      * @cfg {String} cls
36713      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
36714      */
36715     cls: "x-small-editor x-tree-editor",
36716     /**
36717      * @cfg {Boolean} shim
36718      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
36719      */
36720     shim:false,
36721     // inherit
36722     shadow:"frame",
36723     /**
36724      * @cfg {Number} maxWidth
36725      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
36726      * the containing tree element's size, it will be automatically limited for you to the container width, taking
36727      * scroll and client offsets into account prior to each edit.
36728      */
36729     maxWidth: 250,
36730
36731     editDelay : 350,
36732
36733     // private
36734     fitToTree : function(ed, el){
36735         var td = this.tree.getTreeEl().dom, nd = el.dom;
36736         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
36737             td.scrollLeft = nd.offsetLeft;
36738         }
36739         var w = Math.min(
36740                 this.maxWidth,
36741                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
36742         this.setSize(w, '');
36743         
36744         return this.fireEvent('beforenodeedit', this, this.editNode);
36745         
36746     },
36747
36748     // private
36749     triggerEdit : function(node){
36750         this.completeEdit();
36751         this.editNode = node;
36752         this.startEdit(node.ui.textNode, node.text);
36753     },
36754
36755     // private
36756     bindScroll : function(){
36757         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
36758     },
36759
36760     // private
36761     beforeNodeClick : function(node, e){
36762         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
36763         this.lastClick = new Date();
36764         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
36765             e.stopEvent();
36766             this.triggerEdit(node);
36767             return false;
36768         }
36769         return true;
36770     },
36771
36772     // private
36773     updateNode : function(ed, value){
36774         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
36775         this.editNode.setText(value);
36776     },
36777
36778     // private
36779     onHide : function(){
36780         Roo.tree.TreeEditor.superclass.onHide.call(this);
36781         if(this.editNode){
36782             this.editNode.ui.focus();
36783         }
36784     },
36785
36786     // private
36787     onSpecialKey : function(field, e){
36788         var k = e.getKey();
36789         if(k == e.ESC){
36790             e.stopEvent();
36791             this.cancelEdit();
36792         }else if(k == e.ENTER && !e.hasModifier()){
36793             e.stopEvent();
36794             this.completeEdit();
36795         }
36796     }
36797 });//<Script type="text/javascript">
36798 /*
36799  * Based on:
36800  * Ext JS Library 1.1.1
36801  * Copyright(c) 2006-2007, Ext JS, LLC.
36802  *
36803  * Originally Released Under LGPL - original licence link has changed is not relivant.
36804  *
36805  * Fork - LGPL
36806  * <script type="text/javascript">
36807  */
36808  
36809 /**
36810  * Not documented??? - probably should be...
36811  */
36812
36813 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
36814     //focus: Roo.emptyFn, // prevent odd scrolling behavior
36815     
36816     renderElements : function(n, a, targetNode, bulkRender){
36817         //consel.log("renderElements?");
36818         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36819
36820         var t = n.getOwnerTree();
36821         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
36822         
36823         var cols = t.columns;
36824         var bw = t.borderWidth;
36825         var c = cols[0];
36826         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36827          var cb = typeof a.checked == "boolean";
36828         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
36829         var colcls = 'x-t-' + tid + '-c0';
36830         var buf = [
36831             '<li class="x-tree-node">',
36832             
36833                 
36834                 '<div class="x-tree-node-el ', a.cls,'">',
36835                     // extran...
36836                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
36837                 
36838                 
36839                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
36840                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
36841                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
36842                            (a.icon ? ' x-tree-node-inline-icon' : ''),
36843                            (a.iconCls ? ' '+a.iconCls : ''),
36844                            '" unselectable="on" />',
36845                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
36846                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
36847                              
36848                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
36849                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
36850                             '<span unselectable="on" qtip="' + tx + '">',
36851                              tx,
36852                              '</span></a>' ,
36853                     '</div>',
36854                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
36855                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
36856                  ];
36857         for(var i = 1, len = cols.length; i < len; i++){
36858             c = cols[i];
36859             colcls = 'x-t-' + tid + '-c' +i;
36860             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
36861             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
36862                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
36863                       "</div>");
36864          }
36865          
36866          buf.push(
36867             '</a>',
36868             '<div class="x-clear"></div></div>',
36869             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36870             "</li>");
36871         
36872         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36873             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36874                                 n.nextSibling.ui.getEl(), buf.join(""));
36875         }else{
36876             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36877         }
36878         var el = this.wrap.firstChild;
36879         this.elRow = el;
36880         this.elNode = el.firstChild;
36881         this.ranchor = el.childNodes[1];
36882         this.ctNode = this.wrap.childNodes[1];
36883         var cs = el.firstChild.childNodes;
36884         this.indentNode = cs[0];
36885         this.ecNode = cs[1];
36886         this.iconNode = cs[2];
36887         var index = 3;
36888         if(cb){
36889             this.checkbox = cs[3];
36890             index++;
36891         }
36892         this.anchor = cs[index];
36893         
36894         this.textNode = cs[index].firstChild;
36895         
36896         //el.on("click", this.onClick, this);
36897         //el.on("dblclick", this.onDblClick, this);
36898         
36899         
36900        // console.log(this);
36901     },
36902     initEvents : function(){
36903         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
36904         
36905             
36906         var a = this.ranchor;
36907
36908         var el = Roo.get(a);
36909
36910         if(Roo.isOpera){ // opera render bug ignores the CSS
36911             el.setStyle("text-decoration", "none");
36912         }
36913
36914         el.on("click", this.onClick, this);
36915         el.on("dblclick", this.onDblClick, this);
36916         el.on("contextmenu", this.onContextMenu, this);
36917         
36918     },
36919     
36920     /*onSelectedChange : function(state){
36921         if(state){
36922             this.focus();
36923             this.addClass("x-tree-selected");
36924         }else{
36925             //this.blur();
36926             this.removeClass("x-tree-selected");
36927         }
36928     },*/
36929     addClass : function(cls){
36930         if(this.elRow){
36931             Roo.fly(this.elRow).addClass(cls);
36932         }
36933         
36934     },
36935     
36936     
36937     removeClass : function(cls){
36938         if(this.elRow){
36939             Roo.fly(this.elRow).removeClass(cls);
36940         }
36941     }
36942
36943     
36944     
36945 });//<Script type="text/javascript">
36946
36947 /*
36948  * Based on:
36949  * Ext JS Library 1.1.1
36950  * Copyright(c) 2006-2007, Ext JS, LLC.
36951  *
36952  * Originally Released Under LGPL - original licence link has changed is not relivant.
36953  *
36954  * Fork - LGPL
36955  * <script type="text/javascript">
36956  */
36957  
36958
36959 /**
36960  * @class Roo.tree.ColumnTree
36961  * @extends Roo.data.TreePanel
36962  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
36963  * @cfg {int} borderWidth  compined right/left border allowance
36964  * @constructor
36965  * @param {String/HTMLElement/Element} el The container element
36966  * @param {Object} config
36967  */
36968 Roo.tree.ColumnTree =  function(el, config)
36969 {
36970    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
36971    this.addEvents({
36972         /**
36973         * @event resize
36974         * Fire this event on a container when it resizes
36975         * @param {int} w Width
36976         * @param {int} h Height
36977         */
36978        "resize" : true
36979     });
36980     this.on('resize', this.onResize, this);
36981 };
36982
36983 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
36984     //lines:false,
36985     
36986     
36987     borderWidth: Roo.isBorderBox ? 0 : 2, 
36988     headEls : false,
36989     
36990     render : function(){
36991         // add the header.....
36992        
36993         Roo.tree.ColumnTree.superclass.render.apply(this);
36994         
36995         this.el.addClass('x-column-tree');
36996         
36997         this.headers = this.el.createChild(
36998             {cls:'x-tree-headers'},this.innerCt.dom);
36999    
37000         var cols = this.columns, c;
37001         var totalWidth = 0;
37002         this.headEls = [];
37003         var  len = cols.length;
37004         for(var i = 0; i < len; i++){
37005              c = cols[i];
37006              totalWidth += c.width;
37007             this.headEls.push(this.headers.createChild({
37008                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37009                  cn: {
37010                      cls:'x-tree-hd-text',
37011                      html: c.header
37012                  },
37013                  style:'width:'+(c.width-this.borderWidth)+'px;'
37014              }));
37015         }
37016         this.headers.createChild({cls:'x-clear'});
37017         // prevent floats from wrapping when clipped
37018         this.headers.setWidth(totalWidth);
37019         //this.innerCt.setWidth(totalWidth);
37020         this.innerCt.setStyle({ overflow: 'auto' });
37021         this.onResize(this.width, this.height);
37022              
37023         
37024     },
37025     onResize : function(w,h)
37026     {
37027         this.height = h;
37028         this.width = w;
37029         // resize cols..
37030         this.innerCt.setWidth(this.width);
37031         this.innerCt.setHeight(this.height-20);
37032         
37033         // headers...
37034         var cols = this.columns, c;
37035         var totalWidth = 0;
37036         var expEl = false;
37037         var len = cols.length;
37038         for(var i = 0; i < len; i++){
37039             c = cols[i];
37040             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37041                 // it's the expander..
37042                 expEl  = this.headEls[i];
37043                 continue;
37044             }
37045             totalWidth += c.width;
37046             
37047         }
37048         if (expEl) {
37049             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37050         }
37051         this.headers.setWidth(w-20);
37052
37053         
37054         
37055         
37056     }
37057 });
37058 /*
37059  * Based on:
37060  * Ext JS Library 1.1.1
37061  * Copyright(c) 2006-2007, Ext JS, LLC.
37062  *
37063  * Originally Released Under LGPL - original licence link has changed is not relivant.
37064  *
37065  * Fork - LGPL
37066  * <script type="text/javascript">
37067  */
37068  
37069 /**
37070  * @class Roo.menu.Menu
37071  * @extends Roo.util.Observable
37072  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37073  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37074  * @constructor
37075  * Creates a new Menu
37076  * @param {Object} config Configuration options
37077  */
37078 Roo.menu.Menu = function(config){
37079     Roo.apply(this, config);
37080     this.id = this.id || Roo.id();
37081     this.addEvents({
37082         /**
37083          * @event beforeshow
37084          * Fires before this menu is displayed
37085          * @param {Roo.menu.Menu} this
37086          */
37087         beforeshow : true,
37088         /**
37089          * @event beforehide
37090          * Fires before this menu is hidden
37091          * @param {Roo.menu.Menu} this
37092          */
37093         beforehide : true,
37094         /**
37095          * @event show
37096          * Fires after this menu is displayed
37097          * @param {Roo.menu.Menu} this
37098          */
37099         show : true,
37100         /**
37101          * @event hide
37102          * Fires after this menu is hidden
37103          * @param {Roo.menu.Menu} this
37104          */
37105         hide : true,
37106         /**
37107          * @event click
37108          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37109          * @param {Roo.menu.Menu} this
37110          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37111          * @param {Roo.EventObject} e
37112          */
37113         click : true,
37114         /**
37115          * @event mouseover
37116          * Fires when the mouse is hovering over this menu
37117          * @param {Roo.menu.Menu} this
37118          * @param {Roo.EventObject} e
37119          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37120          */
37121         mouseover : true,
37122         /**
37123          * @event mouseout
37124          * Fires when the mouse exits this menu
37125          * @param {Roo.menu.Menu} this
37126          * @param {Roo.EventObject} e
37127          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37128          */
37129         mouseout : true,
37130         /**
37131          * @event itemclick
37132          * Fires when a menu item contained in this menu is clicked
37133          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37134          * @param {Roo.EventObject} e
37135          */
37136         itemclick: true
37137     });
37138     if (this.registerMenu) {
37139         Roo.menu.MenuMgr.register(this);
37140     }
37141     
37142     var mis = this.items;
37143     this.items = new Roo.util.MixedCollection();
37144     if(mis){
37145         this.add.apply(this, mis);
37146     }
37147 };
37148
37149 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37150     /**
37151      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37152      */
37153     minWidth : 120,
37154     /**
37155      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37156      * for bottom-right shadow (defaults to "sides")
37157      */
37158     shadow : "sides",
37159     /**
37160      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37161      * this menu (defaults to "tl-tr?")
37162      */
37163     subMenuAlign : "tl-tr?",
37164     /**
37165      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37166      * relative to its element of origin (defaults to "tl-bl?")
37167      */
37168     defaultAlign : "tl-bl?",
37169     /**
37170      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37171      */
37172     allowOtherMenus : false,
37173     /**
37174      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37175      */
37176     registerMenu : true,
37177
37178     hidden:true,
37179
37180     // private
37181     render : function(){
37182         if(this.el){
37183             return;
37184         }
37185         var el = this.el = new Roo.Layer({
37186             cls: "x-menu",
37187             shadow:this.shadow,
37188             constrain: false,
37189             parentEl: this.parentEl || document.body,
37190             zindex:15000
37191         });
37192
37193         this.keyNav = new Roo.menu.MenuNav(this);
37194
37195         if(this.plain){
37196             el.addClass("x-menu-plain");
37197         }
37198         if(this.cls){
37199             el.addClass(this.cls);
37200         }
37201         // generic focus element
37202         this.focusEl = el.createChild({
37203             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37204         });
37205         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37206         //disabling touch- as it's causing issues ..
37207         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37208         ul.on('click'   , this.onClick, this);
37209         
37210         
37211         ul.on("mouseover", this.onMouseOver, this);
37212         ul.on("mouseout", this.onMouseOut, this);
37213         this.items.each(function(item){
37214             if (item.hidden) {
37215                 return;
37216             }
37217             
37218             var li = document.createElement("li");
37219             li.className = "x-menu-list-item";
37220             ul.dom.appendChild(li);
37221             item.render(li, this);
37222         }, this);
37223         this.ul = ul;
37224         this.autoWidth();
37225     },
37226
37227     // private
37228     autoWidth : function(){
37229         var el = this.el, ul = this.ul;
37230         if(!el){
37231             return;
37232         }
37233         var w = this.width;
37234         if(w){
37235             el.setWidth(w);
37236         }else if(Roo.isIE){
37237             el.setWidth(this.minWidth);
37238             var t = el.dom.offsetWidth; // force recalc
37239             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37240         }
37241     },
37242
37243     // private
37244     delayAutoWidth : function(){
37245         if(this.rendered){
37246             if(!this.awTask){
37247                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37248             }
37249             this.awTask.delay(20);
37250         }
37251     },
37252
37253     // private
37254     findTargetItem : function(e){
37255         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37256         if(t && t.menuItemId){
37257             return this.items.get(t.menuItemId);
37258         }
37259     },
37260
37261     // private
37262     onClick : function(e){
37263         Roo.log("menu.onClick");
37264         var t = this.findTargetItem(e);
37265         if(!t){
37266             return;
37267         }
37268         Roo.log(e);
37269         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37270             if(t == this.activeItem && t.shouldDeactivate(e)){
37271                 this.activeItem.deactivate();
37272                 delete this.activeItem;
37273                 return;
37274             }
37275             if(t.canActivate){
37276                 this.setActiveItem(t, true);
37277             }
37278             return;
37279             
37280             
37281         }
37282         
37283         t.onClick(e);
37284         this.fireEvent("click", this, t, e);
37285     },
37286
37287     // private
37288     setActiveItem : function(item, autoExpand){
37289         if(item != this.activeItem){
37290             if(this.activeItem){
37291                 this.activeItem.deactivate();
37292             }
37293             this.activeItem = item;
37294             item.activate(autoExpand);
37295         }else if(autoExpand){
37296             item.expandMenu();
37297         }
37298     },
37299
37300     // private
37301     tryActivate : function(start, step){
37302         var items = this.items;
37303         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37304             var item = items.get(i);
37305             if(!item.disabled && item.canActivate){
37306                 this.setActiveItem(item, false);
37307                 return item;
37308             }
37309         }
37310         return false;
37311     },
37312
37313     // private
37314     onMouseOver : function(e){
37315         var t;
37316         if(t = this.findTargetItem(e)){
37317             if(t.canActivate && !t.disabled){
37318                 this.setActiveItem(t, true);
37319             }
37320         }
37321         this.fireEvent("mouseover", this, e, t);
37322     },
37323
37324     // private
37325     onMouseOut : function(e){
37326         var t;
37327         if(t = this.findTargetItem(e)){
37328             if(t == this.activeItem && t.shouldDeactivate(e)){
37329                 this.activeItem.deactivate();
37330                 delete this.activeItem;
37331             }
37332         }
37333         this.fireEvent("mouseout", this, e, t);
37334     },
37335
37336     /**
37337      * Read-only.  Returns true if the menu is currently displayed, else false.
37338      * @type Boolean
37339      */
37340     isVisible : function(){
37341         return this.el && !this.hidden;
37342     },
37343
37344     /**
37345      * Displays this menu relative to another element
37346      * @param {String/HTMLElement/Roo.Element} element The element to align to
37347      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37348      * the element (defaults to this.defaultAlign)
37349      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37350      */
37351     show : function(el, pos, parentMenu){
37352         this.parentMenu = parentMenu;
37353         if(!this.el){
37354             this.render();
37355         }
37356         this.fireEvent("beforeshow", this);
37357         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37358     },
37359
37360     /**
37361      * Displays this menu at a specific xy position
37362      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37363      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37364      */
37365     showAt : function(xy, parentMenu, /* private: */_e){
37366         this.parentMenu = parentMenu;
37367         if(!this.el){
37368             this.render();
37369         }
37370         if(_e !== false){
37371             this.fireEvent("beforeshow", this);
37372             xy = this.el.adjustForConstraints(xy);
37373         }
37374         this.el.setXY(xy);
37375         this.el.show();
37376         this.hidden = false;
37377         this.focus();
37378         this.fireEvent("show", this);
37379     },
37380
37381     focus : function(){
37382         if(!this.hidden){
37383             this.doFocus.defer(50, this);
37384         }
37385     },
37386
37387     doFocus : function(){
37388         if(!this.hidden){
37389             this.focusEl.focus();
37390         }
37391     },
37392
37393     /**
37394      * Hides this menu and optionally all parent menus
37395      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37396      */
37397     hide : function(deep){
37398         if(this.el && this.isVisible()){
37399             this.fireEvent("beforehide", this);
37400             if(this.activeItem){
37401                 this.activeItem.deactivate();
37402                 this.activeItem = null;
37403             }
37404             this.el.hide();
37405             this.hidden = true;
37406             this.fireEvent("hide", this);
37407         }
37408         if(deep === true && this.parentMenu){
37409             this.parentMenu.hide(true);
37410         }
37411     },
37412
37413     /**
37414      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37415      * Any of the following are valid:
37416      * <ul>
37417      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37418      * <li>An HTMLElement object which will be converted to a menu item</li>
37419      * <li>A menu item config object that will be created as a new menu item</li>
37420      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37421      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37422      * </ul>
37423      * Usage:
37424      * <pre><code>
37425 // Create the menu
37426 var menu = new Roo.menu.Menu();
37427
37428 // Create a menu item to add by reference
37429 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37430
37431 // Add a bunch of items at once using different methods.
37432 // Only the last item added will be returned.
37433 var item = menu.add(
37434     menuItem,                // add existing item by ref
37435     'Dynamic Item',          // new TextItem
37436     '-',                     // new separator
37437     { text: 'Config Item' }  // new item by config
37438 );
37439 </code></pre>
37440      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37441      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37442      */
37443     add : function(){
37444         var a = arguments, l = a.length, item;
37445         for(var i = 0; i < l; i++){
37446             var el = a[i];
37447             if ((typeof(el) == "object") && el.xtype && el.xns) {
37448                 el = Roo.factory(el, Roo.menu);
37449             }
37450             
37451             if(el.render){ // some kind of Item
37452                 item = this.addItem(el);
37453             }else if(typeof el == "string"){ // string
37454                 if(el == "separator" || el == "-"){
37455                     item = this.addSeparator();
37456                 }else{
37457                     item = this.addText(el);
37458                 }
37459             }else if(el.tagName || el.el){ // element
37460                 item = this.addElement(el);
37461             }else if(typeof el == "object"){ // must be menu item config?
37462                 item = this.addMenuItem(el);
37463             }
37464         }
37465         return item;
37466     },
37467
37468     /**
37469      * Returns this menu's underlying {@link Roo.Element} object
37470      * @return {Roo.Element} The element
37471      */
37472     getEl : function(){
37473         if(!this.el){
37474             this.render();
37475         }
37476         return this.el;
37477     },
37478
37479     /**
37480      * Adds a separator bar to the menu
37481      * @return {Roo.menu.Item} The menu item that was added
37482      */
37483     addSeparator : function(){
37484         return this.addItem(new Roo.menu.Separator());
37485     },
37486
37487     /**
37488      * Adds an {@link Roo.Element} object to the menu
37489      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37490      * @return {Roo.menu.Item} The menu item that was added
37491      */
37492     addElement : function(el){
37493         return this.addItem(new Roo.menu.BaseItem(el));
37494     },
37495
37496     /**
37497      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37498      * @param {Roo.menu.Item} item The menu item to add
37499      * @return {Roo.menu.Item} The menu item that was added
37500      */
37501     addItem : function(item){
37502         this.items.add(item);
37503         if(this.ul){
37504             var li = document.createElement("li");
37505             li.className = "x-menu-list-item";
37506             this.ul.dom.appendChild(li);
37507             item.render(li, this);
37508             this.delayAutoWidth();
37509         }
37510         return item;
37511     },
37512
37513     /**
37514      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37515      * @param {Object} config A MenuItem config object
37516      * @return {Roo.menu.Item} The menu item that was added
37517      */
37518     addMenuItem : function(config){
37519         if(!(config instanceof Roo.menu.Item)){
37520             if(typeof config.checked == "boolean"){ // must be check menu item config?
37521                 config = new Roo.menu.CheckItem(config);
37522             }else{
37523                 config = new Roo.menu.Item(config);
37524             }
37525         }
37526         return this.addItem(config);
37527     },
37528
37529     /**
37530      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37531      * @param {String} text The text to display in the menu item
37532      * @return {Roo.menu.Item} The menu item that was added
37533      */
37534     addText : function(text){
37535         return this.addItem(new Roo.menu.TextItem({ text : text }));
37536     },
37537
37538     /**
37539      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37540      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37541      * @param {Roo.menu.Item} item The menu item to add
37542      * @return {Roo.menu.Item} The menu item that was added
37543      */
37544     insert : function(index, item){
37545         this.items.insert(index, item);
37546         if(this.ul){
37547             var li = document.createElement("li");
37548             li.className = "x-menu-list-item";
37549             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37550             item.render(li, this);
37551             this.delayAutoWidth();
37552         }
37553         return item;
37554     },
37555
37556     /**
37557      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37558      * @param {Roo.menu.Item} item The menu item to remove
37559      */
37560     remove : function(item){
37561         this.items.removeKey(item.id);
37562         item.destroy();
37563     },
37564
37565     /**
37566      * Removes and destroys all items in the menu
37567      */
37568     removeAll : function(){
37569         var f;
37570         while(f = this.items.first()){
37571             this.remove(f);
37572         }
37573     }
37574 });
37575
37576 // MenuNav is a private utility class used internally by the Menu
37577 Roo.menu.MenuNav = function(menu){
37578     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37579     this.scope = this.menu = menu;
37580 };
37581
37582 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37583     doRelay : function(e, h){
37584         var k = e.getKey();
37585         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37586             this.menu.tryActivate(0, 1);
37587             return false;
37588         }
37589         return h.call(this.scope || this, e, this.menu);
37590     },
37591
37592     up : function(e, m){
37593         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37594             m.tryActivate(m.items.length-1, -1);
37595         }
37596     },
37597
37598     down : function(e, m){
37599         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37600             m.tryActivate(0, 1);
37601         }
37602     },
37603
37604     right : function(e, m){
37605         if(m.activeItem){
37606             m.activeItem.expandMenu(true);
37607         }
37608     },
37609
37610     left : function(e, m){
37611         m.hide();
37612         if(m.parentMenu && m.parentMenu.activeItem){
37613             m.parentMenu.activeItem.activate();
37614         }
37615     },
37616
37617     enter : function(e, m){
37618         if(m.activeItem){
37619             e.stopPropagation();
37620             m.activeItem.onClick(e);
37621             m.fireEvent("click", this, m.activeItem);
37622             return true;
37623         }
37624     }
37625 });/*
37626  * Based on:
37627  * Ext JS Library 1.1.1
37628  * Copyright(c) 2006-2007, Ext JS, LLC.
37629  *
37630  * Originally Released Under LGPL - original licence link has changed is not relivant.
37631  *
37632  * Fork - LGPL
37633  * <script type="text/javascript">
37634  */
37635  
37636 /**
37637  * @class Roo.menu.MenuMgr
37638  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
37639  * @singleton
37640  */
37641 Roo.menu.MenuMgr = function(){
37642    var menus, active, groups = {}, attached = false, lastShow = new Date();
37643
37644    // private - called when first menu is created
37645    function init(){
37646        menus = {};
37647        active = new Roo.util.MixedCollection();
37648        Roo.get(document).addKeyListener(27, function(){
37649            if(active.length > 0){
37650                hideAll();
37651            }
37652        });
37653    }
37654
37655    // private
37656    function hideAll(){
37657        if(active && active.length > 0){
37658            var c = active.clone();
37659            c.each(function(m){
37660                m.hide();
37661            });
37662        }
37663    }
37664
37665    // private
37666    function onHide(m){
37667        active.remove(m);
37668        if(active.length < 1){
37669            Roo.get(document).un("mousedown", onMouseDown);
37670            attached = false;
37671        }
37672    }
37673
37674    // private
37675    function onShow(m){
37676        var last = active.last();
37677        lastShow = new Date();
37678        active.add(m);
37679        if(!attached){
37680            Roo.get(document).on("mousedown", onMouseDown);
37681            attached = true;
37682        }
37683        if(m.parentMenu){
37684           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
37685           m.parentMenu.activeChild = m;
37686        }else if(last && last.isVisible()){
37687           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
37688        }
37689    }
37690
37691    // private
37692    function onBeforeHide(m){
37693        if(m.activeChild){
37694            m.activeChild.hide();
37695        }
37696        if(m.autoHideTimer){
37697            clearTimeout(m.autoHideTimer);
37698            delete m.autoHideTimer;
37699        }
37700    }
37701
37702    // private
37703    function onBeforeShow(m){
37704        var pm = m.parentMenu;
37705        if(!pm && !m.allowOtherMenus){
37706            hideAll();
37707        }else if(pm && pm.activeChild && active != m){
37708            pm.activeChild.hide();
37709        }
37710    }
37711
37712    // private
37713    function onMouseDown(e){
37714        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
37715            hideAll();
37716        }
37717    }
37718
37719    // private
37720    function onBeforeCheck(mi, state){
37721        if(state){
37722            var g = groups[mi.group];
37723            for(var i = 0, l = g.length; i < l; i++){
37724                if(g[i] != mi){
37725                    g[i].setChecked(false);
37726                }
37727            }
37728        }
37729    }
37730
37731    return {
37732
37733        /**
37734         * Hides all menus that are currently visible
37735         */
37736        hideAll : function(){
37737             hideAll();  
37738        },
37739
37740        // private
37741        register : function(menu){
37742            if(!menus){
37743                init();
37744            }
37745            menus[menu.id] = menu;
37746            menu.on("beforehide", onBeforeHide);
37747            menu.on("hide", onHide);
37748            menu.on("beforeshow", onBeforeShow);
37749            menu.on("show", onShow);
37750            var g = menu.group;
37751            if(g && menu.events["checkchange"]){
37752                if(!groups[g]){
37753                    groups[g] = [];
37754                }
37755                groups[g].push(menu);
37756                menu.on("checkchange", onCheck);
37757            }
37758        },
37759
37760         /**
37761          * Returns a {@link Roo.menu.Menu} object
37762          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
37763          * be used to generate and return a new Menu instance.
37764          */
37765        get : function(menu){
37766            if(typeof menu == "string"){ // menu id
37767                return menus[menu];
37768            }else if(menu.events){  // menu instance
37769                return menu;
37770            }else if(typeof menu.length == 'number'){ // array of menu items?
37771                return new Roo.menu.Menu({items:menu});
37772            }else{ // otherwise, must be a config
37773                return new Roo.menu.Menu(menu);
37774            }
37775        },
37776
37777        // private
37778        unregister : function(menu){
37779            delete menus[menu.id];
37780            menu.un("beforehide", onBeforeHide);
37781            menu.un("hide", onHide);
37782            menu.un("beforeshow", onBeforeShow);
37783            menu.un("show", onShow);
37784            var g = menu.group;
37785            if(g && menu.events["checkchange"]){
37786                groups[g].remove(menu);
37787                menu.un("checkchange", onCheck);
37788            }
37789        },
37790
37791        // private
37792        registerCheckable : function(menuItem){
37793            var g = menuItem.group;
37794            if(g){
37795                if(!groups[g]){
37796                    groups[g] = [];
37797                }
37798                groups[g].push(menuItem);
37799                menuItem.on("beforecheckchange", onBeforeCheck);
37800            }
37801        },
37802
37803        // private
37804        unregisterCheckable : function(menuItem){
37805            var g = menuItem.group;
37806            if(g){
37807                groups[g].remove(menuItem);
37808                menuItem.un("beforecheckchange", onBeforeCheck);
37809            }
37810        }
37811    };
37812 }();/*
37813  * Based on:
37814  * Ext JS Library 1.1.1
37815  * Copyright(c) 2006-2007, Ext JS, LLC.
37816  *
37817  * Originally Released Under LGPL - original licence link has changed is not relivant.
37818  *
37819  * Fork - LGPL
37820  * <script type="text/javascript">
37821  */
37822  
37823
37824 /**
37825  * @class Roo.menu.BaseItem
37826  * @extends Roo.Component
37827  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
37828  * management and base configuration options shared by all menu components.
37829  * @constructor
37830  * Creates a new BaseItem
37831  * @param {Object} config Configuration options
37832  */
37833 Roo.menu.BaseItem = function(config){
37834     Roo.menu.BaseItem.superclass.constructor.call(this, config);
37835
37836     this.addEvents({
37837         /**
37838          * @event click
37839          * Fires when this item is clicked
37840          * @param {Roo.menu.BaseItem} this
37841          * @param {Roo.EventObject} e
37842          */
37843         click: true,
37844         /**
37845          * @event activate
37846          * Fires when this item is activated
37847          * @param {Roo.menu.BaseItem} this
37848          */
37849         activate : true,
37850         /**
37851          * @event deactivate
37852          * Fires when this item is deactivated
37853          * @param {Roo.menu.BaseItem} this
37854          */
37855         deactivate : true
37856     });
37857
37858     if(this.handler){
37859         this.on("click", this.handler, this.scope, true);
37860     }
37861 };
37862
37863 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
37864     /**
37865      * @cfg {Function} handler
37866      * A function that will handle the click event of this menu item (defaults to undefined)
37867      */
37868     /**
37869      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
37870      */
37871     canActivate : false,
37872     
37873      /**
37874      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
37875      */
37876     hidden: false,
37877     
37878     /**
37879      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
37880      */
37881     activeClass : "x-menu-item-active",
37882     /**
37883      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
37884      */
37885     hideOnClick : true,
37886     /**
37887      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
37888      */
37889     hideDelay : 100,
37890
37891     // private
37892     ctype: "Roo.menu.BaseItem",
37893
37894     // private
37895     actionMode : "container",
37896
37897     // private
37898     render : function(container, parentMenu){
37899         this.parentMenu = parentMenu;
37900         Roo.menu.BaseItem.superclass.render.call(this, container);
37901         this.container.menuItemId = this.id;
37902     },
37903
37904     // private
37905     onRender : function(container, position){
37906         this.el = Roo.get(this.el);
37907         container.dom.appendChild(this.el.dom);
37908     },
37909
37910     // private
37911     onClick : function(e){
37912         if(!this.disabled && this.fireEvent("click", this, e) !== false
37913                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
37914             this.handleClick(e);
37915         }else{
37916             e.stopEvent();
37917         }
37918     },
37919
37920     // private
37921     activate : function(){
37922         if(this.disabled){
37923             return false;
37924         }
37925         var li = this.container;
37926         li.addClass(this.activeClass);
37927         this.region = li.getRegion().adjust(2, 2, -2, -2);
37928         this.fireEvent("activate", this);
37929         return true;
37930     },
37931
37932     // private
37933     deactivate : function(){
37934         this.container.removeClass(this.activeClass);
37935         this.fireEvent("deactivate", this);
37936     },
37937
37938     // private
37939     shouldDeactivate : function(e){
37940         return !this.region || !this.region.contains(e.getPoint());
37941     },
37942
37943     // private
37944     handleClick : function(e){
37945         if(this.hideOnClick){
37946             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
37947         }
37948     },
37949
37950     // private
37951     expandMenu : function(autoActivate){
37952         // do nothing
37953     },
37954
37955     // private
37956     hideMenu : function(){
37957         // do nothing
37958     }
37959 });/*
37960  * Based on:
37961  * Ext JS Library 1.1.1
37962  * Copyright(c) 2006-2007, Ext JS, LLC.
37963  *
37964  * Originally Released Under LGPL - original licence link has changed is not relivant.
37965  *
37966  * Fork - LGPL
37967  * <script type="text/javascript">
37968  */
37969  
37970 /**
37971  * @class Roo.menu.Adapter
37972  * @extends Roo.menu.BaseItem
37973  * 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.
37974  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
37975  * @constructor
37976  * Creates a new Adapter
37977  * @param {Object} config Configuration options
37978  */
37979 Roo.menu.Adapter = function(component, config){
37980     Roo.menu.Adapter.superclass.constructor.call(this, config);
37981     this.component = component;
37982 };
37983 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
37984     // private
37985     canActivate : true,
37986
37987     // private
37988     onRender : function(container, position){
37989         this.component.render(container);
37990         this.el = this.component.getEl();
37991     },
37992
37993     // private
37994     activate : function(){
37995         if(this.disabled){
37996             return false;
37997         }
37998         this.component.focus();
37999         this.fireEvent("activate", this);
38000         return true;
38001     },
38002
38003     // private
38004     deactivate : function(){
38005         this.fireEvent("deactivate", this);
38006     },
38007
38008     // private
38009     disable : function(){
38010         this.component.disable();
38011         Roo.menu.Adapter.superclass.disable.call(this);
38012     },
38013
38014     // private
38015     enable : function(){
38016         this.component.enable();
38017         Roo.menu.Adapter.superclass.enable.call(this);
38018     }
38019 });/*
38020  * Based on:
38021  * Ext JS Library 1.1.1
38022  * Copyright(c) 2006-2007, Ext JS, LLC.
38023  *
38024  * Originally Released Under LGPL - original licence link has changed is not relivant.
38025  *
38026  * Fork - LGPL
38027  * <script type="text/javascript">
38028  */
38029
38030 /**
38031  * @class Roo.menu.TextItem
38032  * @extends Roo.menu.BaseItem
38033  * Adds a static text string to a menu, usually used as either a heading or group separator.
38034  * Note: old style constructor with text is still supported.
38035  * 
38036  * @constructor
38037  * Creates a new TextItem
38038  * @param {Object} cfg Configuration
38039  */
38040 Roo.menu.TextItem = function(cfg){
38041     if (typeof(cfg) == 'string') {
38042         this.text = cfg;
38043     } else {
38044         Roo.apply(this,cfg);
38045     }
38046     
38047     Roo.menu.TextItem.superclass.constructor.call(this);
38048 };
38049
38050 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38051     /**
38052      * @cfg {Boolean} text Text to show on item.
38053      */
38054     text : '',
38055     
38056     /**
38057      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38058      */
38059     hideOnClick : false,
38060     /**
38061      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38062      */
38063     itemCls : "x-menu-text",
38064
38065     // private
38066     onRender : function(){
38067         var s = document.createElement("span");
38068         s.className = this.itemCls;
38069         s.innerHTML = this.text;
38070         this.el = s;
38071         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38072     }
38073 });/*
38074  * Based on:
38075  * Ext JS Library 1.1.1
38076  * Copyright(c) 2006-2007, Ext JS, LLC.
38077  *
38078  * Originally Released Under LGPL - original licence link has changed is not relivant.
38079  *
38080  * Fork - LGPL
38081  * <script type="text/javascript">
38082  */
38083
38084 /**
38085  * @class Roo.menu.Separator
38086  * @extends Roo.menu.BaseItem
38087  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38088  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38089  * @constructor
38090  * @param {Object} config Configuration options
38091  */
38092 Roo.menu.Separator = function(config){
38093     Roo.menu.Separator.superclass.constructor.call(this, config);
38094 };
38095
38096 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38097     /**
38098      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38099      */
38100     itemCls : "x-menu-sep",
38101     /**
38102      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38103      */
38104     hideOnClick : false,
38105
38106     // private
38107     onRender : function(li){
38108         var s = document.createElement("span");
38109         s.className = this.itemCls;
38110         s.innerHTML = "&#160;";
38111         this.el = s;
38112         li.addClass("x-menu-sep-li");
38113         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38114     }
38115 });/*
38116  * Based on:
38117  * Ext JS Library 1.1.1
38118  * Copyright(c) 2006-2007, Ext JS, LLC.
38119  *
38120  * Originally Released Under LGPL - original licence link has changed is not relivant.
38121  *
38122  * Fork - LGPL
38123  * <script type="text/javascript">
38124  */
38125 /**
38126  * @class Roo.menu.Item
38127  * @extends Roo.menu.BaseItem
38128  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38129  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38130  * activation and click handling.
38131  * @constructor
38132  * Creates a new Item
38133  * @param {Object} config Configuration options
38134  */
38135 Roo.menu.Item = function(config){
38136     Roo.menu.Item.superclass.constructor.call(this, config);
38137     if(this.menu){
38138         this.menu = Roo.menu.MenuMgr.get(this.menu);
38139     }
38140 };
38141 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38142     
38143     /**
38144      * @cfg {String} text
38145      * The text to show on the menu item.
38146      */
38147     text: '',
38148      /**
38149      * @cfg {String} HTML to render in menu
38150      * The text to show on the menu item (HTML version).
38151      */
38152     html: '',
38153     /**
38154      * @cfg {String} icon
38155      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38156      */
38157     icon: undefined,
38158     /**
38159      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38160      */
38161     itemCls : "x-menu-item",
38162     /**
38163      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38164      */
38165     canActivate : true,
38166     /**
38167      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38168      */
38169     showDelay: 200,
38170     // doc'd in BaseItem
38171     hideDelay: 200,
38172
38173     // private
38174     ctype: "Roo.menu.Item",
38175     
38176     // private
38177     onRender : function(container, position){
38178         var el = document.createElement("a");
38179         el.hideFocus = true;
38180         el.unselectable = "on";
38181         el.href = this.href || "#";
38182         if(this.hrefTarget){
38183             el.target = this.hrefTarget;
38184         }
38185         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38186         
38187         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38188         
38189         el.innerHTML = String.format(
38190                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38191                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38192         this.el = el;
38193         Roo.menu.Item.superclass.onRender.call(this, container, position);
38194     },
38195
38196     /**
38197      * Sets the text to display in this menu item
38198      * @param {String} text The text to display
38199      * @param {Boolean} isHTML true to indicate text is pure html.
38200      */
38201     setText : function(text, isHTML){
38202         if (isHTML) {
38203             this.html = text;
38204         } else {
38205             this.text = text;
38206             this.html = '';
38207         }
38208         if(this.rendered){
38209             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38210      
38211             this.el.update(String.format(
38212                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38213                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38214             this.parentMenu.autoWidth();
38215         }
38216     },
38217
38218     // private
38219     handleClick : function(e){
38220         if(!this.href){ // if no link defined, stop the event automatically
38221             e.stopEvent();
38222         }
38223         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38224     },
38225
38226     // private
38227     activate : function(autoExpand){
38228         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38229             this.focus();
38230             if(autoExpand){
38231                 this.expandMenu();
38232             }
38233         }
38234         return true;
38235     },
38236
38237     // private
38238     shouldDeactivate : function(e){
38239         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38240             if(this.menu && this.menu.isVisible()){
38241                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38242             }
38243             return true;
38244         }
38245         return false;
38246     },
38247
38248     // private
38249     deactivate : function(){
38250         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38251         this.hideMenu();
38252     },
38253
38254     // private
38255     expandMenu : function(autoActivate){
38256         if(!this.disabled && this.menu){
38257             clearTimeout(this.hideTimer);
38258             delete this.hideTimer;
38259             if(!this.menu.isVisible() && !this.showTimer){
38260                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38261             }else if (this.menu.isVisible() && autoActivate){
38262                 this.menu.tryActivate(0, 1);
38263             }
38264         }
38265     },
38266
38267     // private
38268     deferExpand : function(autoActivate){
38269         delete this.showTimer;
38270         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38271         if(autoActivate){
38272             this.menu.tryActivate(0, 1);
38273         }
38274     },
38275
38276     // private
38277     hideMenu : function(){
38278         clearTimeout(this.showTimer);
38279         delete this.showTimer;
38280         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38281             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38282         }
38283     },
38284
38285     // private
38286     deferHide : function(){
38287         delete this.hideTimer;
38288         this.menu.hide();
38289     }
38290 });/*
38291  * Based on:
38292  * Ext JS Library 1.1.1
38293  * Copyright(c) 2006-2007, Ext JS, LLC.
38294  *
38295  * Originally Released Under LGPL - original licence link has changed is not relivant.
38296  *
38297  * Fork - LGPL
38298  * <script type="text/javascript">
38299  */
38300  
38301 /**
38302  * @class Roo.menu.CheckItem
38303  * @extends Roo.menu.Item
38304  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38305  * @constructor
38306  * Creates a new CheckItem
38307  * @param {Object} config Configuration options
38308  */
38309 Roo.menu.CheckItem = function(config){
38310     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38311     this.addEvents({
38312         /**
38313          * @event beforecheckchange
38314          * Fires before the checked value is set, providing an opportunity to cancel if needed
38315          * @param {Roo.menu.CheckItem} this
38316          * @param {Boolean} checked The new checked value that will be set
38317          */
38318         "beforecheckchange" : true,
38319         /**
38320          * @event checkchange
38321          * Fires after the checked value has been set
38322          * @param {Roo.menu.CheckItem} this
38323          * @param {Boolean} checked The checked value that was set
38324          */
38325         "checkchange" : true
38326     });
38327     if(this.checkHandler){
38328         this.on('checkchange', this.checkHandler, this.scope);
38329     }
38330 };
38331 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38332     /**
38333      * @cfg {String} group
38334      * All check items with the same group name will automatically be grouped into a single-select
38335      * radio button group (defaults to '')
38336      */
38337     /**
38338      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38339      */
38340     itemCls : "x-menu-item x-menu-check-item",
38341     /**
38342      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38343      */
38344     groupClass : "x-menu-group-item",
38345
38346     /**
38347      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38348      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38349      * initialized with checked = true will be rendered as checked.
38350      */
38351     checked: false,
38352
38353     // private
38354     ctype: "Roo.menu.CheckItem",
38355
38356     // private
38357     onRender : function(c){
38358         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38359         if(this.group){
38360             this.el.addClass(this.groupClass);
38361         }
38362         Roo.menu.MenuMgr.registerCheckable(this);
38363         if(this.checked){
38364             this.checked = false;
38365             this.setChecked(true, true);
38366         }
38367     },
38368
38369     // private
38370     destroy : function(){
38371         if(this.rendered){
38372             Roo.menu.MenuMgr.unregisterCheckable(this);
38373         }
38374         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38375     },
38376
38377     /**
38378      * Set the checked state of this item
38379      * @param {Boolean} checked The new checked value
38380      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38381      */
38382     setChecked : function(state, suppressEvent){
38383         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38384             if(this.container){
38385                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38386             }
38387             this.checked = state;
38388             if(suppressEvent !== true){
38389                 this.fireEvent("checkchange", this, state);
38390             }
38391         }
38392     },
38393
38394     // private
38395     handleClick : function(e){
38396        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38397            this.setChecked(!this.checked);
38398        }
38399        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38400     }
38401 });/*
38402  * Based on:
38403  * Ext JS Library 1.1.1
38404  * Copyright(c) 2006-2007, Ext JS, LLC.
38405  *
38406  * Originally Released Under LGPL - original licence link has changed is not relivant.
38407  *
38408  * Fork - LGPL
38409  * <script type="text/javascript">
38410  */
38411  
38412 /**
38413  * @class Roo.menu.DateItem
38414  * @extends Roo.menu.Adapter
38415  * A menu item that wraps the {@link Roo.DatPicker} component.
38416  * @constructor
38417  * Creates a new DateItem
38418  * @param {Object} config Configuration options
38419  */
38420 Roo.menu.DateItem = function(config){
38421     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38422     /** The Roo.DatePicker object @type Roo.DatePicker */
38423     this.picker = this.component;
38424     this.addEvents({select: true});
38425     
38426     this.picker.on("render", function(picker){
38427         picker.getEl().swallowEvent("click");
38428         picker.container.addClass("x-menu-date-item");
38429     });
38430
38431     this.picker.on("select", this.onSelect, this);
38432 };
38433
38434 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38435     // private
38436     onSelect : function(picker, date){
38437         this.fireEvent("select", this, date, picker);
38438         Roo.menu.DateItem.superclass.handleClick.call(this);
38439     }
38440 });/*
38441  * Based on:
38442  * Ext JS Library 1.1.1
38443  * Copyright(c) 2006-2007, Ext JS, LLC.
38444  *
38445  * Originally Released Under LGPL - original licence link has changed is not relivant.
38446  *
38447  * Fork - LGPL
38448  * <script type="text/javascript">
38449  */
38450  
38451 /**
38452  * @class Roo.menu.ColorItem
38453  * @extends Roo.menu.Adapter
38454  * A menu item that wraps the {@link Roo.ColorPalette} component.
38455  * @constructor
38456  * Creates a new ColorItem
38457  * @param {Object} config Configuration options
38458  */
38459 Roo.menu.ColorItem = function(config){
38460     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38461     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38462     this.palette = this.component;
38463     this.relayEvents(this.palette, ["select"]);
38464     if(this.selectHandler){
38465         this.on('select', this.selectHandler, this.scope);
38466     }
38467 };
38468 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38469  * Based on:
38470  * Ext JS Library 1.1.1
38471  * Copyright(c) 2006-2007, Ext JS, LLC.
38472  *
38473  * Originally Released Under LGPL - original licence link has changed is not relivant.
38474  *
38475  * Fork - LGPL
38476  * <script type="text/javascript">
38477  */
38478  
38479
38480 /**
38481  * @class Roo.menu.DateMenu
38482  * @extends Roo.menu.Menu
38483  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38484  * @constructor
38485  * Creates a new DateMenu
38486  * @param {Object} config Configuration options
38487  */
38488 Roo.menu.DateMenu = function(config){
38489     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38490     this.plain = true;
38491     var di = new Roo.menu.DateItem(config);
38492     this.add(di);
38493     /**
38494      * The {@link Roo.DatePicker} instance for this DateMenu
38495      * @type DatePicker
38496      */
38497     this.picker = di.picker;
38498     /**
38499      * @event select
38500      * @param {DatePicker} picker
38501      * @param {Date} date
38502      */
38503     this.relayEvents(di, ["select"]);
38504     this.on('beforeshow', function(){
38505         if(this.picker){
38506             this.picker.hideMonthPicker(false);
38507         }
38508     }, this);
38509 };
38510 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38511     cls:'x-date-menu'
38512 });/*
38513  * Based on:
38514  * Ext JS Library 1.1.1
38515  * Copyright(c) 2006-2007, Ext JS, LLC.
38516  *
38517  * Originally Released Under LGPL - original licence link has changed is not relivant.
38518  *
38519  * Fork - LGPL
38520  * <script type="text/javascript">
38521  */
38522  
38523
38524 /**
38525  * @class Roo.menu.ColorMenu
38526  * @extends Roo.menu.Menu
38527  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38528  * @constructor
38529  * Creates a new ColorMenu
38530  * @param {Object} config Configuration options
38531  */
38532 Roo.menu.ColorMenu = function(config){
38533     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38534     this.plain = true;
38535     var ci = new Roo.menu.ColorItem(config);
38536     this.add(ci);
38537     /**
38538      * The {@link Roo.ColorPalette} instance for this ColorMenu
38539      * @type ColorPalette
38540      */
38541     this.palette = ci.palette;
38542     /**
38543      * @event select
38544      * @param {ColorPalette} palette
38545      * @param {String} color
38546      */
38547     this.relayEvents(ci, ["select"]);
38548 };
38549 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38550  * Based on:
38551  * Ext JS Library 1.1.1
38552  * Copyright(c) 2006-2007, Ext JS, LLC.
38553  *
38554  * Originally Released Under LGPL - original licence link has changed is not relivant.
38555  *
38556  * Fork - LGPL
38557  * <script type="text/javascript">
38558  */
38559  
38560 /**
38561  * @class Roo.form.Field
38562  * @extends Roo.BoxComponent
38563  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38564  * @constructor
38565  * Creates a new Field
38566  * @param {Object} config Configuration options
38567  */
38568 Roo.form.Field = function(config){
38569     Roo.form.Field.superclass.constructor.call(this, config);
38570 };
38571
38572 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
38573     /**
38574      * @cfg {String} fieldLabel Label to use when rendering a form.
38575      */
38576        /**
38577      * @cfg {String} qtip Mouse over tip
38578      */
38579      
38580     /**
38581      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
38582      */
38583     invalidClass : "x-form-invalid",
38584     /**
38585      * @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")
38586      */
38587     invalidText : "The value in this field is invalid",
38588     /**
38589      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
38590      */
38591     focusClass : "x-form-focus",
38592     /**
38593      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
38594       automatic validation (defaults to "keyup").
38595      */
38596     validationEvent : "keyup",
38597     /**
38598      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
38599      */
38600     validateOnBlur : true,
38601     /**
38602      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
38603      */
38604     validationDelay : 250,
38605     /**
38606      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
38607      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
38608      */
38609     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
38610     /**
38611      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
38612      */
38613     fieldClass : "x-form-field",
38614     /**
38615      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
38616      *<pre>
38617 Value         Description
38618 -----------   ----------------------------------------------------------------------
38619 qtip          Display a quick tip when the user hovers over the field
38620 title         Display a default browser title attribute popup
38621 under         Add a block div beneath the field containing the error text
38622 side          Add an error icon to the right of the field with a popup on hover
38623 [element id]  Add the error text directly to the innerHTML of the specified element
38624 </pre>
38625      */
38626     msgTarget : 'qtip',
38627     /**
38628      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
38629      */
38630     msgFx : 'normal',
38631
38632     /**
38633      * @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.
38634      */
38635     readOnly : false,
38636
38637     /**
38638      * @cfg {Boolean} disabled True to disable the field (defaults to false).
38639      */
38640     disabled : false,
38641
38642     /**
38643      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
38644      */
38645     inputType : undefined,
38646     
38647     /**
38648      * @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).
38649          */
38650         tabIndex : undefined,
38651         
38652     // private
38653     isFormField : true,
38654
38655     // private
38656     hasFocus : false,
38657     /**
38658      * @property {Roo.Element} fieldEl
38659      * Element Containing the rendered Field (with label etc.)
38660      */
38661     /**
38662      * @cfg {Mixed} value A value to initialize this field with.
38663      */
38664     value : undefined,
38665
38666     /**
38667      * @cfg {String} name The field's HTML name attribute.
38668      */
38669     /**
38670      * @cfg {String} cls A CSS class to apply to the field's underlying element.
38671      */
38672     // private
38673     loadedValue : false,
38674      
38675      
38676         // private ??
38677         initComponent : function(){
38678         Roo.form.Field.superclass.initComponent.call(this);
38679         this.addEvents({
38680             /**
38681              * @event focus
38682              * Fires when this field receives input focus.
38683              * @param {Roo.form.Field} this
38684              */
38685             focus : true,
38686             /**
38687              * @event blur
38688              * Fires when this field loses input focus.
38689              * @param {Roo.form.Field} this
38690              */
38691             blur : true,
38692             /**
38693              * @event specialkey
38694              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
38695              * {@link Roo.EventObject#getKey} to determine which key was pressed.
38696              * @param {Roo.form.Field} this
38697              * @param {Roo.EventObject} e The event object
38698              */
38699             specialkey : true,
38700             /**
38701              * @event change
38702              * Fires just before the field blurs if the field value has changed.
38703              * @param {Roo.form.Field} this
38704              * @param {Mixed} newValue The new value
38705              * @param {Mixed} oldValue The original value
38706              */
38707             change : true,
38708             /**
38709              * @event invalid
38710              * Fires after the field has been marked as invalid.
38711              * @param {Roo.form.Field} this
38712              * @param {String} msg The validation message
38713              */
38714             invalid : true,
38715             /**
38716              * @event valid
38717              * Fires after the field has been validated with no errors.
38718              * @param {Roo.form.Field} this
38719              */
38720             valid : true,
38721              /**
38722              * @event keyup
38723              * Fires after the key up
38724              * @param {Roo.form.Field} this
38725              * @param {Roo.EventObject}  e The event Object
38726              */
38727             keyup : true
38728         });
38729     },
38730
38731     /**
38732      * Returns the name attribute of the field if available
38733      * @return {String} name The field name
38734      */
38735     getName: function(){
38736          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
38737     },
38738
38739     // private
38740     onRender : function(ct, position){
38741         Roo.form.Field.superclass.onRender.call(this, ct, position);
38742         if(!this.el){
38743             var cfg = this.getAutoCreate();
38744             if(!cfg.name){
38745                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38746             }
38747             if (!cfg.name.length) {
38748                 delete cfg.name;
38749             }
38750             if(this.inputType){
38751                 cfg.type = this.inputType;
38752             }
38753             this.el = ct.createChild(cfg, position);
38754         }
38755         var type = this.el.dom.type;
38756         if(type){
38757             if(type == 'password'){
38758                 type = 'text';
38759             }
38760             this.el.addClass('x-form-'+type);
38761         }
38762         if(this.readOnly){
38763             this.el.dom.readOnly = true;
38764         }
38765         if(this.tabIndex !== undefined){
38766             this.el.dom.setAttribute('tabIndex', this.tabIndex);
38767         }
38768
38769         this.el.addClass([this.fieldClass, this.cls]);
38770         this.initValue();
38771     },
38772
38773     /**
38774      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
38775      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
38776      * @return {Roo.form.Field} this
38777      */
38778     applyTo : function(target){
38779         this.allowDomMove = false;
38780         this.el = Roo.get(target);
38781         this.render(this.el.dom.parentNode);
38782         return this;
38783     },
38784
38785     // private
38786     initValue : function(){
38787         if(this.value !== undefined){
38788             this.setValue(this.value);
38789         }else if(this.el.dom.value.length > 0){
38790             this.setValue(this.el.dom.value);
38791         }
38792     },
38793
38794     /**
38795      * Returns true if this field has been changed since it was originally loaded and is not disabled.
38796      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
38797      */
38798     isDirty : function() {
38799         if(this.disabled) {
38800             return false;
38801         }
38802         return String(this.getValue()) !== String(this.originalValue);
38803     },
38804
38805     /**
38806      * stores the current value in loadedValue
38807      */
38808     resetHasChanged : function()
38809     {
38810         this.loadedValue = String(this.getValue());
38811     },
38812     /**
38813      * checks the current value against the 'loaded' value.
38814      * Note - will return false if 'resetHasChanged' has not been called first.
38815      */
38816     hasChanged : function()
38817     {
38818         if(this.disabled || this.readOnly) {
38819             return false;
38820         }
38821         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
38822     },
38823     
38824     
38825     
38826     // private
38827     afterRender : function(){
38828         Roo.form.Field.superclass.afterRender.call(this);
38829         this.initEvents();
38830     },
38831
38832     // private
38833     fireKey : function(e){
38834         //Roo.log('field ' + e.getKey());
38835         if(e.isNavKeyPress()){
38836             this.fireEvent("specialkey", this, e);
38837         }
38838     },
38839
38840     /**
38841      * Resets the current field value to the originally loaded value and clears any validation messages
38842      */
38843     reset : function(){
38844         this.setValue(this.resetValue);
38845         this.clearInvalid();
38846     },
38847
38848     // private
38849     initEvents : function(){
38850         // safari killled keypress - so keydown is now used..
38851         this.el.on("keydown" , this.fireKey,  this);
38852         this.el.on("focus", this.onFocus,  this);
38853         this.el.on("blur", this.onBlur,  this);
38854         this.el.relayEvent('keyup', this);
38855
38856         // reference to original value for reset
38857         this.originalValue = this.getValue();
38858         this.resetValue =  this.getValue();
38859     },
38860
38861     // private
38862     onFocus : function(){
38863         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
38864             this.el.addClass(this.focusClass);
38865         }
38866         if(!this.hasFocus){
38867             this.hasFocus = true;
38868             this.startValue = this.getValue();
38869             this.fireEvent("focus", this);
38870         }
38871     },
38872
38873     beforeBlur : Roo.emptyFn,
38874
38875     // private
38876     onBlur : function(){
38877         this.beforeBlur();
38878         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
38879             this.el.removeClass(this.focusClass);
38880         }
38881         this.hasFocus = false;
38882         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
38883             this.validate();
38884         }
38885         var v = this.getValue();
38886         if(String(v) !== String(this.startValue)){
38887             this.fireEvent('change', this, v, this.startValue);
38888         }
38889         this.fireEvent("blur", this);
38890     },
38891
38892     /**
38893      * Returns whether or not the field value is currently valid
38894      * @param {Boolean} preventMark True to disable marking the field invalid
38895      * @return {Boolean} True if the value is valid, else false
38896      */
38897     isValid : function(preventMark){
38898         if(this.disabled){
38899             return true;
38900         }
38901         var restore = this.preventMark;
38902         this.preventMark = preventMark === true;
38903         var v = this.validateValue(this.processValue(this.getRawValue()));
38904         this.preventMark = restore;
38905         return v;
38906     },
38907
38908     /**
38909      * Validates the field value
38910      * @return {Boolean} True if the value is valid, else false
38911      */
38912     validate : function(){
38913         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
38914             this.clearInvalid();
38915             return true;
38916         }
38917         return false;
38918     },
38919
38920     processValue : function(value){
38921         return value;
38922     },
38923
38924     // private
38925     // Subclasses should provide the validation implementation by overriding this
38926     validateValue : function(value){
38927         return true;
38928     },
38929
38930     /**
38931      * Mark this field as invalid
38932      * @param {String} msg The validation message
38933      */
38934     markInvalid : function(msg){
38935         if(!this.rendered || this.preventMark){ // not rendered
38936             return;
38937         }
38938         
38939         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
38940         
38941         obj.el.addClass(this.invalidClass);
38942         msg = msg || this.invalidText;
38943         switch(this.msgTarget){
38944             case 'qtip':
38945                 obj.el.dom.qtip = msg;
38946                 obj.el.dom.qclass = 'x-form-invalid-tip';
38947                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
38948                     Roo.QuickTips.enable();
38949                 }
38950                 break;
38951             case 'title':
38952                 this.el.dom.title = msg;
38953                 break;
38954             case 'under':
38955                 if(!this.errorEl){
38956                     var elp = this.el.findParent('.x-form-element', 5, true);
38957                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
38958                     this.errorEl.setWidth(elp.getWidth(true)-20);
38959                 }
38960                 this.errorEl.update(msg);
38961                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
38962                 break;
38963             case 'side':
38964                 if(!this.errorIcon){
38965                     var elp = this.el.findParent('.x-form-element', 5, true);
38966                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
38967                 }
38968                 this.alignErrorIcon();
38969                 this.errorIcon.dom.qtip = msg;
38970                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
38971                 this.errorIcon.show();
38972                 this.on('resize', this.alignErrorIcon, this);
38973                 break;
38974             default:
38975                 var t = Roo.getDom(this.msgTarget);
38976                 t.innerHTML = msg;
38977                 t.style.display = this.msgDisplay;
38978                 break;
38979         }
38980         this.fireEvent('invalid', this, msg);
38981     },
38982
38983     // private
38984     alignErrorIcon : function(){
38985         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
38986     },
38987
38988     /**
38989      * Clear any invalid styles/messages for this field
38990      */
38991     clearInvalid : function(){
38992         if(!this.rendered || this.preventMark){ // not rendered
38993             return;
38994         }
38995         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
38996         
38997         obj.el.removeClass(this.invalidClass);
38998         switch(this.msgTarget){
38999             case 'qtip':
39000                 obj.el.dom.qtip = '';
39001                 break;
39002             case 'title':
39003                 this.el.dom.title = '';
39004                 break;
39005             case 'under':
39006                 if(this.errorEl){
39007                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39008                 }
39009                 break;
39010             case 'side':
39011                 if(this.errorIcon){
39012                     this.errorIcon.dom.qtip = '';
39013                     this.errorIcon.hide();
39014                     this.un('resize', this.alignErrorIcon, this);
39015                 }
39016                 break;
39017             default:
39018                 var t = Roo.getDom(this.msgTarget);
39019                 t.innerHTML = '';
39020                 t.style.display = 'none';
39021                 break;
39022         }
39023         this.fireEvent('valid', this);
39024     },
39025
39026     /**
39027      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39028      * @return {Mixed} value The field value
39029      */
39030     getRawValue : function(){
39031         var v = this.el.getValue();
39032         
39033         return v;
39034     },
39035
39036     /**
39037      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39038      * @return {Mixed} value The field value
39039      */
39040     getValue : function(){
39041         var v = this.el.getValue();
39042          
39043         return v;
39044     },
39045
39046     /**
39047      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39048      * @param {Mixed} value The value to set
39049      */
39050     setRawValue : function(v){
39051         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39052     },
39053
39054     /**
39055      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39056      * @param {Mixed} value The value to set
39057      */
39058     setValue : function(v){
39059         this.value = v;
39060         if(this.rendered){
39061             this.el.dom.value = (v === null || v === undefined ? '' : v);
39062              this.validate();
39063         }
39064     },
39065
39066     adjustSize : function(w, h){
39067         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39068         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39069         return s;
39070     },
39071
39072     adjustWidth : function(tag, w){
39073         tag = tag.toLowerCase();
39074         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39075             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39076                 if(tag == 'input'){
39077                     return w + 2;
39078                 }
39079                 if(tag == 'textarea'){
39080                     return w-2;
39081                 }
39082             }else if(Roo.isOpera){
39083                 if(tag == 'input'){
39084                     return w + 2;
39085                 }
39086                 if(tag == 'textarea'){
39087                     return w-2;
39088                 }
39089             }
39090         }
39091         return w;
39092     }
39093 });
39094
39095
39096 // anything other than normal should be considered experimental
39097 Roo.form.Field.msgFx = {
39098     normal : {
39099         show: function(msgEl, f){
39100             msgEl.setDisplayed('block');
39101         },
39102
39103         hide : function(msgEl, f){
39104             msgEl.setDisplayed(false).update('');
39105         }
39106     },
39107
39108     slide : {
39109         show: function(msgEl, f){
39110             msgEl.slideIn('t', {stopFx:true});
39111         },
39112
39113         hide : function(msgEl, f){
39114             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39115         }
39116     },
39117
39118     slideRight : {
39119         show: function(msgEl, f){
39120             msgEl.fixDisplay();
39121             msgEl.alignTo(f.el, 'tl-tr');
39122             msgEl.slideIn('l', {stopFx:true});
39123         },
39124
39125         hide : function(msgEl, f){
39126             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39127         }
39128     }
39129 };/*
39130  * Based on:
39131  * Ext JS Library 1.1.1
39132  * Copyright(c) 2006-2007, Ext JS, LLC.
39133  *
39134  * Originally Released Under LGPL - original licence link has changed is not relivant.
39135  *
39136  * Fork - LGPL
39137  * <script type="text/javascript">
39138  */
39139  
39140
39141 /**
39142  * @class Roo.form.TextField
39143  * @extends Roo.form.Field
39144  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39145  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39146  * @constructor
39147  * Creates a new TextField
39148  * @param {Object} config Configuration options
39149  */
39150 Roo.form.TextField = function(config){
39151     Roo.form.TextField.superclass.constructor.call(this, config);
39152     this.addEvents({
39153         /**
39154          * @event autosize
39155          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39156          * according to the default logic, but this event provides a hook for the developer to apply additional
39157          * logic at runtime to resize the field if needed.
39158              * @param {Roo.form.Field} this This text field
39159              * @param {Number} width The new field width
39160              */
39161         autosize : true
39162     });
39163 };
39164
39165 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39166     /**
39167      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39168      */
39169     grow : false,
39170     /**
39171      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39172      */
39173     growMin : 30,
39174     /**
39175      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39176      */
39177     growMax : 800,
39178     /**
39179      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39180      */
39181     vtype : null,
39182     /**
39183      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39184      */
39185     maskRe : null,
39186     /**
39187      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39188      */
39189     disableKeyFilter : false,
39190     /**
39191      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39192      */
39193     allowBlank : true,
39194     /**
39195      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39196      */
39197     minLength : 0,
39198     /**
39199      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39200      */
39201     maxLength : Number.MAX_VALUE,
39202     /**
39203      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39204      */
39205     minLengthText : "The minimum length for this field is {0}",
39206     /**
39207      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39208      */
39209     maxLengthText : "The maximum length for this field is {0}",
39210     /**
39211      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39212      */
39213     selectOnFocus : false,
39214     /**
39215      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39216      */
39217     blankText : "This field is required",
39218     /**
39219      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39220      * If available, this function will be called only after the basic validators all return true, and will be passed the
39221      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39222      */
39223     validator : null,
39224     /**
39225      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39226      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39227      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39228      */
39229     regex : null,
39230     /**
39231      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39232      */
39233     regexText : "",
39234     /**
39235      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39236      */
39237     emptyText : null,
39238    
39239
39240     // private
39241     initEvents : function()
39242     {
39243         if (this.emptyText) {
39244             this.el.attr('placeholder', this.emptyText);
39245         }
39246         
39247         Roo.form.TextField.superclass.initEvents.call(this);
39248         if(this.validationEvent == 'keyup'){
39249             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39250             this.el.on('keyup', this.filterValidation, this);
39251         }
39252         else if(this.validationEvent !== false){
39253             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39254         }
39255         
39256         if(this.selectOnFocus){
39257             this.on("focus", this.preFocus, this);
39258             
39259         }
39260         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39261             this.el.on("keypress", this.filterKeys, this);
39262         }
39263         if(this.grow){
39264             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39265             this.el.on("click", this.autoSize,  this);
39266         }
39267         if(this.el.is('input[type=password]') && Roo.isSafari){
39268             this.el.on('keydown', this.SafariOnKeyDown, this);
39269         }
39270     },
39271
39272     processValue : function(value){
39273         if(this.stripCharsRe){
39274             var newValue = value.replace(this.stripCharsRe, '');
39275             if(newValue !== value){
39276                 this.setRawValue(newValue);
39277                 return newValue;
39278             }
39279         }
39280         return value;
39281     },
39282
39283     filterValidation : function(e){
39284         if(!e.isNavKeyPress()){
39285             this.validationTask.delay(this.validationDelay);
39286         }
39287     },
39288
39289     // private
39290     onKeyUp : function(e){
39291         if(!e.isNavKeyPress()){
39292             this.autoSize();
39293         }
39294     },
39295
39296     /**
39297      * Resets the current field value to the originally-loaded value and clears any validation messages.
39298      *  
39299      */
39300     reset : function(){
39301         Roo.form.TextField.superclass.reset.call(this);
39302        
39303     },
39304
39305     
39306     // private
39307     preFocus : function(){
39308         
39309         if(this.selectOnFocus){
39310             this.el.dom.select();
39311         }
39312     },
39313
39314     
39315     // private
39316     filterKeys : function(e){
39317         var k = e.getKey();
39318         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39319             return;
39320         }
39321         var c = e.getCharCode(), cc = String.fromCharCode(c);
39322         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39323             return;
39324         }
39325         if(!this.maskRe.test(cc)){
39326             e.stopEvent();
39327         }
39328     },
39329
39330     setValue : function(v){
39331         
39332         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39333         
39334         this.autoSize();
39335     },
39336
39337     /**
39338      * Validates a value according to the field's validation rules and marks the field as invalid
39339      * if the validation fails
39340      * @param {Mixed} value The value to validate
39341      * @return {Boolean} True if the value is valid, else false
39342      */
39343     validateValue : function(value){
39344         if(value.length < 1)  { // if it's blank
39345              if(this.allowBlank){
39346                 this.clearInvalid();
39347                 return true;
39348              }else{
39349                 this.markInvalid(this.blankText);
39350                 return false;
39351              }
39352         }
39353         if(value.length < this.minLength){
39354             this.markInvalid(String.format(this.minLengthText, this.minLength));
39355             return false;
39356         }
39357         if(value.length > this.maxLength){
39358             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39359             return false;
39360         }
39361         if(this.vtype){
39362             var vt = Roo.form.VTypes;
39363             if(!vt[this.vtype](value, this)){
39364                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39365                 return false;
39366             }
39367         }
39368         if(typeof this.validator == "function"){
39369             var msg = this.validator(value);
39370             if(msg !== true){
39371                 this.markInvalid(msg);
39372                 return false;
39373             }
39374         }
39375         if(this.regex && !this.regex.test(value)){
39376             this.markInvalid(this.regexText);
39377             return false;
39378         }
39379         return true;
39380     },
39381
39382     /**
39383      * Selects text in this field
39384      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39385      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39386      */
39387     selectText : function(start, end){
39388         var v = this.getRawValue();
39389         if(v.length > 0){
39390             start = start === undefined ? 0 : start;
39391             end = end === undefined ? v.length : end;
39392             var d = this.el.dom;
39393             if(d.setSelectionRange){
39394                 d.setSelectionRange(start, end);
39395             }else if(d.createTextRange){
39396                 var range = d.createTextRange();
39397                 range.moveStart("character", start);
39398                 range.moveEnd("character", v.length-end);
39399                 range.select();
39400             }
39401         }
39402     },
39403
39404     /**
39405      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39406      * This only takes effect if grow = true, and fires the autosize event.
39407      */
39408     autoSize : function(){
39409         if(!this.grow || !this.rendered){
39410             return;
39411         }
39412         if(!this.metrics){
39413             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39414         }
39415         var el = this.el;
39416         var v = el.dom.value;
39417         var d = document.createElement('div');
39418         d.appendChild(document.createTextNode(v));
39419         v = d.innerHTML;
39420         d = null;
39421         v += "&#160;";
39422         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39423         this.el.setWidth(w);
39424         this.fireEvent("autosize", this, w);
39425     },
39426     
39427     // private
39428     SafariOnKeyDown : function(event)
39429     {
39430         // this is a workaround for a password hang bug on chrome/ webkit.
39431         
39432         var isSelectAll = false;
39433         
39434         if(this.el.dom.selectionEnd > 0){
39435             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39436         }
39437         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39438             event.preventDefault();
39439             this.setValue('');
39440             return;
39441         }
39442         
39443         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39444             
39445             event.preventDefault();
39446             // this is very hacky as keydown always get's upper case.
39447             
39448             var cc = String.fromCharCode(event.getCharCode());
39449             
39450             
39451             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39452             
39453         }
39454         
39455         
39456     }
39457 });/*
39458  * Based on:
39459  * Ext JS Library 1.1.1
39460  * Copyright(c) 2006-2007, Ext JS, LLC.
39461  *
39462  * Originally Released Under LGPL - original licence link has changed is not relivant.
39463  *
39464  * Fork - LGPL
39465  * <script type="text/javascript">
39466  */
39467  
39468 /**
39469  * @class Roo.form.Hidden
39470  * @extends Roo.form.TextField
39471  * Simple Hidden element used on forms 
39472  * 
39473  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39474  * 
39475  * @constructor
39476  * Creates a new Hidden form element.
39477  * @param {Object} config Configuration options
39478  */
39479
39480
39481
39482 // easy hidden field...
39483 Roo.form.Hidden = function(config){
39484     Roo.form.Hidden.superclass.constructor.call(this, config);
39485 };
39486   
39487 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39488     fieldLabel:      '',
39489     inputType:      'hidden',
39490     width:          50,
39491     allowBlank:     true,
39492     labelSeparator: '',
39493     hidden:         true,
39494     itemCls :       'x-form-item-display-none'
39495
39496
39497 });
39498
39499
39500 /*
39501  * Based on:
39502  * Ext JS Library 1.1.1
39503  * Copyright(c) 2006-2007, Ext JS, LLC.
39504  *
39505  * Originally Released Under LGPL - original licence link has changed is not relivant.
39506  *
39507  * Fork - LGPL
39508  * <script type="text/javascript">
39509  */
39510  
39511 /**
39512  * @class Roo.form.TriggerField
39513  * @extends Roo.form.TextField
39514  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39515  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39516  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39517  * for which you can provide a custom implementation.  For example:
39518  * <pre><code>
39519 var trigger = new Roo.form.TriggerField();
39520 trigger.onTriggerClick = myTriggerFn;
39521 trigger.applyTo('my-field');
39522 </code></pre>
39523  *
39524  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39525  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39526  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39527  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
39528  * @constructor
39529  * Create a new TriggerField.
39530  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
39531  * to the base TextField)
39532  */
39533 Roo.form.TriggerField = function(config){
39534     this.mimicing = false;
39535     Roo.form.TriggerField.superclass.constructor.call(this, config);
39536 };
39537
39538 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
39539     /**
39540      * @cfg {String} triggerClass A CSS class to apply to the trigger
39541      */
39542     /**
39543      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39544      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
39545      */
39546     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
39547     /**
39548      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
39549      */
39550     hideTrigger:false,
39551
39552     /** @cfg {Boolean} grow @hide */
39553     /** @cfg {Number} growMin @hide */
39554     /** @cfg {Number} growMax @hide */
39555
39556     /**
39557      * @hide 
39558      * @method
39559      */
39560     autoSize: Roo.emptyFn,
39561     // private
39562     monitorTab : true,
39563     // private
39564     deferHeight : true,
39565
39566     
39567     actionMode : 'wrap',
39568     // private
39569     onResize : function(w, h){
39570         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
39571         if(typeof w == 'number'){
39572             var x = w - this.trigger.getWidth();
39573             this.el.setWidth(this.adjustWidth('input', x));
39574             this.trigger.setStyle('left', x+'px');
39575         }
39576     },
39577
39578     // private
39579     adjustSize : Roo.BoxComponent.prototype.adjustSize,
39580
39581     // private
39582     getResizeEl : function(){
39583         return this.wrap;
39584     },
39585
39586     // private
39587     getPositionEl : function(){
39588         return this.wrap;
39589     },
39590
39591     // private
39592     alignErrorIcon : function(){
39593         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
39594     },
39595
39596     // private
39597     onRender : function(ct, position){
39598         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
39599         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
39600         this.trigger = this.wrap.createChild(this.triggerConfig ||
39601                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
39602         if(this.hideTrigger){
39603             this.trigger.setDisplayed(false);
39604         }
39605         this.initTrigger();
39606         if(!this.width){
39607             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
39608         }
39609     },
39610
39611     // private
39612     initTrigger : function(){
39613         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
39614         this.trigger.addClassOnOver('x-form-trigger-over');
39615         this.trigger.addClassOnClick('x-form-trigger-click');
39616     },
39617
39618     // private
39619     onDestroy : function(){
39620         if(this.trigger){
39621             this.trigger.removeAllListeners();
39622             this.trigger.remove();
39623         }
39624         if(this.wrap){
39625             this.wrap.remove();
39626         }
39627         Roo.form.TriggerField.superclass.onDestroy.call(this);
39628     },
39629
39630     // private
39631     onFocus : function(){
39632         Roo.form.TriggerField.superclass.onFocus.call(this);
39633         if(!this.mimicing){
39634             this.wrap.addClass('x-trigger-wrap-focus');
39635             this.mimicing = true;
39636             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
39637             if(this.monitorTab){
39638                 this.el.on("keydown", this.checkTab, this);
39639             }
39640         }
39641     },
39642
39643     // private
39644     checkTab : function(e){
39645         if(e.getKey() == e.TAB){
39646             this.triggerBlur();
39647         }
39648     },
39649
39650     // private
39651     onBlur : function(){
39652         // do nothing
39653     },
39654
39655     // private
39656     mimicBlur : function(e, t){
39657         if(!this.wrap.contains(t) && this.validateBlur()){
39658             this.triggerBlur();
39659         }
39660     },
39661
39662     // private
39663     triggerBlur : function(){
39664         this.mimicing = false;
39665         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
39666         if(this.monitorTab){
39667             this.el.un("keydown", this.checkTab, this);
39668         }
39669         this.wrap.removeClass('x-trigger-wrap-focus');
39670         Roo.form.TriggerField.superclass.onBlur.call(this);
39671     },
39672
39673     // private
39674     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
39675     validateBlur : function(e, t){
39676         return true;
39677     },
39678
39679     // private
39680     onDisable : function(){
39681         Roo.form.TriggerField.superclass.onDisable.call(this);
39682         if(this.wrap){
39683             this.wrap.addClass('x-item-disabled');
39684         }
39685     },
39686
39687     // private
39688     onEnable : function(){
39689         Roo.form.TriggerField.superclass.onEnable.call(this);
39690         if(this.wrap){
39691             this.wrap.removeClass('x-item-disabled');
39692         }
39693     },
39694
39695     // private
39696     onShow : function(){
39697         var ae = this.getActionEl();
39698         
39699         if(ae){
39700             ae.dom.style.display = '';
39701             ae.dom.style.visibility = 'visible';
39702         }
39703     },
39704
39705     // private
39706     
39707     onHide : function(){
39708         var ae = this.getActionEl();
39709         ae.dom.style.display = 'none';
39710     },
39711
39712     /**
39713      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
39714      * by an implementing function.
39715      * @method
39716      * @param {EventObject} e
39717      */
39718     onTriggerClick : Roo.emptyFn
39719 });
39720
39721 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
39722 // to be extended by an implementing class.  For an example of implementing this class, see the custom
39723 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
39724 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
39725     initComponent : function(){
39726         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
39727
39728         this.triggerConfig = {
39729             tag:'span', cls:'x-form-twin-triggers', cn:[
39730             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
39731             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
39732         ]};
39733     },
39734
39735     getTrigger : function(index){
39736         return this.triggers[index];
39737     },
39738
39739     initTrigger : function(){
39740         var ts = this.trigger.select('.x-form-trigger', true);
39741         this.wrap.setStyle('overflow', 'hidden');
39742         var triggerField = this;
39743         ts.each(function(t, all, index){
39744             t.hide = function(){
39745                 var w = triggerField.wrap.getWidth();
39746                 this.dom.style.display = 'none';
39747                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
39748             };
39749             t.show = function(){
39750                 var w = triggerField.wrap.getWidth();
39751                 this.dom.style.display = '';
39752                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
39753             };
39754             var triggerIndex = 'Trigger'+(index+1);
39755
39756             if(this['hide'+triggerIndex]){
39757                 t.dom.style.display = 'none';
39758             }
39759             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
39760             t.addClassOnOver('x-form-trigger-over');
39761             t.addClassOnClick('x-form-trigger-click');
39762         }, this);
39763         this.triggers = ts.elements;
39764     },
39765
39766     onTrigger1Click : Roo.emptyFn,
39767     onTrigger2Click : Roo.emptyFn
39768 });/*
39769  * Based on:
39770  * Ext JS Library 1.1.1
39771  * Copyright(c) 2006-2007, Ext JS, LLC.
39772  *
39773  * Originally Released Under LGPL - original licence link has changed is not relivant.
39774  *
39775  * Fork - LGPL
39776  * <script type="text/javascript">
39777  */
39778  
39779 /**
39780  * @class Roo.form.TextArea
39781  * @extends Roo.form.TextField
39782  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
39783  * support for auto-sizing.
39784  * @constructor
39785  * Creates a new TextArea
39786  * @param {Object} config Configuration options
39787  */
39788 Roo.form.TextArea = function(config){
39789     Roo.form.TextArea.superclass.constructor.call(this, config);
39790     // these are provided exchanges for backwards compat
39791     // minHeight/maxHeight were replaced by growMin/growMax to be
39792     // compatible with TextField growing config values
39793     if(this.minHeight !== undefined){
39794         this.growMin = this.minHeight;
39795     }
39796     if(this.maxHeight !== undefined){
39797         this.growMax = this.maxHeight;
39798     }
39799 };
39800
39801 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
39802     /**
39803      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
39804      */
39805     growMin : 60,
39806     /**
39807      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
39808      */
39809     growMax: 1000,
39810     /**
39811      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
39812      * in the field (equivalent to setting overflow: hidden, defaults to false)
39813      */
39814     preventScrollbars: false,
39815     /**
39816      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39817      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
39818      */
39819
39820     // private
39821     onRender : function(ct, position){
39822         if(!this.el){
39823             this.defaultAutoCreate = {
39824                 tag: "textarea",
39825                 style:"width:300px;height:60px;",
39826                 autocomplete: "new-password"
39827             };
39828         }
39829         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
39830         if(this.grow){
39831             this.textSizeEl = Roo.DomHelper.append(document.body, {
39832                 tag: "pre", cls: "x-form-grow-sizer"
39833             });
39834             if(this.preventScrollbars){
39835                 this.el.setStyle("overflow", "hidden");
39836             }
39837             this.el.setHeight(this.growMin);
39838         }
39839     },
39840
39841     onDestroy : function(){
39842         if(this.textSizeEl){
39843             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
39844         }
39845         Roo.form.TextArea.superclass.onDestroy.call(this);
39846     },
39847
39848     // private
39849     onKeyUp : function(e){
39850         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
39851             this.autoSize();
39852         }
39853     },
39854
39855     /**
39856      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
39857      * This only takes effect if grow = true, and fires the autosize event if the height changes.
39858      */
39859     autoSize : function(){
39860         if(!this.grow || !this.textSizeEl){
39861             return;
39862         }
39863         var el = this.el;
39864         var v = el.dom.value;
39865         var ts = this.textSizeEl;
39866
39867         ts.innerHTML = '';
39868         ts.appendChild(document.createTextNode(v));
39869         v = ts.innerHTML;
39870
39871         Roo.fly(ts).setWidth(this.el.getWidth());
39872         if(v.length < 1){
39873             v = "&#160;&#160;";
39874         }else{
39875             if(Roo.isIE){
39876                 v = v.replace(/\n/g, '<p>&#160;</p>');
39877             }
39878             v += "&#160;\n&#160;";
39879         }
39880         ts.innerHTML = v;
39881         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
39882         if(h != this.lastHeight){
39883             this.lastHeight = h;
39884             this.el.setHeight(h);
39885             this.fireEvent("autosize", this, h);
39886         }
39887     }
39888 });/*
39889  * Based on:
39890  * Ext JS Library 1.1.1
39891  * Copyright(c) 2006-2007, Ext JS, LLC.
39892  *
39893  * Originally Released Under LGPL - original licence link has changed is not relivant.
39894  *
39895  * Fork - LGPL
39896  * <script type="text/javascript">
39897  */
39898  
39899
39900 /**
39901  * @class Roo.form.NumberField
39902  * @extends Roo.form.TextField
39903  * Numeric text field that provides automatic keystroke filtering and numeric validation.
39904  * @constructor
39905  * Creates a new NumberField
39906  * @param {Object} config Configuration options
39907  */
39908 Roo.form.NumberField = function(config){
39909     Roo.form.NumberField.superclass.constructor.call(this, config);
39910 };
39911
39912 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
39913     /**
39914      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
39915      */
39916     fieldClass: "x-form-field x-form-num-field",
39917     /**
39918      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
39919      */
39920     allowDecimals : true,
39921     /**
39922      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
39923      */
39924     decimalSeparator : ".",
39925     /**
39926      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
39927      */
39928     decimalPrecision : 2,
39929     /**
39930      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
39931      */
39932     allowNegative : true,
39933     /**
39934      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
39935      */
39936     minValue : Number.NEGATIVE_INFINITY,
39937     /**
39938      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
39939      */
39940     maxValue : Number.MAX_VALUE,
39941     /**
39942      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
39943      */
39944     minText : "The minimum value for this field is {0}",
39945     /**
39946      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
39947      */
39948     maxText : "The maximum value for this field is {0}",
39949     /**
39950      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
39951      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
39952      */
39953     nanText : "{0} is not a valid number",
39954
39955     // private
39956     initEvents : function(){
39957         Roo.form.NumberField.superclass.initEvents.call(this);
39958         var allowed = "0123456789";
39959         if(this.allowDecimals){
39960             allowed += this.decimalSeparator;
39961         }
39962         if(this.allowNegative){
39963             allowed += "-";
39964         }
39965         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
39966         var keyPress = function(e){
39967             var k = e.getKey();
39968             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
39969                 return;
39970             }
39971             var c = e.getCharCode();
39972             if(allowed.indexOf(String.fromCharCode(c)) === -1){
39973                 e.stopEvent();
39974             }
39975         };
39976         this.el.on("keypress", keyPress, this);
39977     },
39978
39979     // private
39980     validateValue : function(value){
39981         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
39982             return false;
39983         }
39984         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
39985              return true;
39986         }
39987         var num = this.parseValue(value);
39988         if(isNaN(num)){
39989             this.markInvalid(String.format(this.nanText, value));
39990             return false;
39991         }
39992         if(num < this.minValue){
39993             this.markInvalid(String.format(this.minText, this.minValue));
39994             return false;
39995         }
39996         if(num > this.maxValue){
39997             this.markInvalid(String.format(this.maxText, this.maxValue));
39998             return false;
39999         }
40000         return true;
40001     },
40002
40003     getValue : function(){
40004         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40005     },
40006
40007     // private
40008     parseValue : function(value){
40009         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40010         return isNaN(value) ? '' : value;
40011     },
40012
40013     // private
40014     fixPrecision : function(value){
40015         var nan = isNaN(value);
40016         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40017             return nan ? '' : value;
40018         }
40019         return parseFloat(value).toFixed(this.decimalPrecision);
40020     },
40021
40022     setValue : function(v){
40023         v = this.fixPrecision(v);
40024         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40025     },
40026
40027     // private
40028     decimalPrecisionFcn : function(v){
40029         return Math.floor(v);
40030     },
40031
40032     beforeBlur : function(){
40033         var v = this.parseValue(this.getRawValue());
40034         if(v){
40035             this.setValue(v);
40036         }
40037     }
40038 });/*
40039  * Based on:
40040  * Ext JS Library 1.1.1
40041  * Copyright(c) 2006-2007, Ext JS, LLC.
40042  *
40043  * Originally Released Under LGPL - original licence link has changed is not relivant.
40044  *
40045  * Fork - LGPL
40046  * <script type="text/javascript">
40047  */
40048  
40049 /**
40050  * @class Roo.form.DateField
40051  * @extends Roo.form.TriggerField
40052  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40053 * @constructor
40054 * Create a new DateField
40055 * @param {Object} config
40056  */
40057 Roo.form.DateField = function(config){
40058     Roo.form.DateField.superclass.constructor.call(this, config);
40059     
40060       this.addEvents({
40061          
40062         /**
40063          * @event select
40064          * Fires when a date is selected
40065              * @param {Roo.form.DateField} combo This combo box
40066              * @param {Date} date The date selected
40067              */
40068         'select' : true
40069          
40070     });
40071     
40072     
40073     if(typeof this.minValue == "string") {
40074         this.minValue = this.parseDate(this.minValue);
40075     }
40076     if(typeof this.maxValue == "string") {
40077         this.maxValue = this.parseDate(this.maxValue);
40078     }
40079     this.ddMatch = null;
40080     if(this.disabledDates){
40081         var dd = this.disabledDates;
40082         var re = "(?:";
40083         for(var i = 0; i < dd.length; i++){
40084             re += dd[i];
40085             if(i != dd.length-1) {
40086                 re += "|";
40087             }
40088         }
40089         this.ddMatch = new RegExp(re + ")");
40090     }
40091 };
40092
40093 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40094     /**
40095      * @cfg {String} format
40096      * The default date format string which can be overriden for localization support.  The format must be
40097      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40098      */
40099     format : "m/d/y",
40100     /**
40101      * @cfg {String} altFormats
40102      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40103      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40104      */
40105     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40106     /**
40107      * @cfg {Array} disabledDays
40108      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40109      */
40110     disabledDays : null,
40111     /**
40112      * @cfg {String} disabledDaysText
40113      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40114      */
40115     disabledDaysText : "Disabled",
40116     /**
40117      * @cfg {Array} disabledDates
40118      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40119      * expression so they are very powerful. Some examples:
40120      * <ul>
40121      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40122      * <li>["03/08", "09/16"] would disable those days for every year</li>
40123      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40124      * <li>["03/../2006"] would disable every day in March 2006</li>
40125      * <li>["^03"] would disable every day in every March</li>
40126      * </ul>
40127      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40128      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40129      */
40130     disabledDates : null,
40131     /**
40132      * @cfg {String} disabledDatesText
40133      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40134      */
40135     disabledDatesText : "Disabled",
40136     /**
40137      * @cfg {Date/String} minValue
40138      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40139      * valid format (defaults to null).
40140      */
40141     minValue : null,
40142     /**
40143      * @cfg {Date/String} maxValue
40144      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40145      * valid format (defaults to null).
40146      */
40147     maxValue : null,
40148     /**
40149      * @cfg {String} minText
40150      * The error text to display when the date in the cell is before minValue (defaults to
40151      * 'The date in this field must be after {minValue}').
40152      */
40153     minText : "The date in this field must be equal to or after {0}",
40154     /**
40155      * @cfg {String} maxText
40156      * The error text to display when the date in the cell is after maxValue (defaults to
40157      * 'The date in this field must be before {maxValue}').
40158      */
40159     maxText : "The date in this field must be equal to or before {0}",
40160     /**
40161      * @cfg {String} invalidText
40162      * The error text to display when the date in the field is invalid (defaults to
40163      * '{value} is not a valid date - it must be in the format {format}').
40164      */
40165     invalidText : "{0} is not a valid date - it must be in the format {1}",
40166     /**
40167      * @cfg {String} triggerClass
40168      * An additional CSS class used to style the trigger button.  The trigger will always get the
40169      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40170      * which displays a calendar icon).
40171      */
40172     triggerClass : 'x-form-date-trigger',
40173     
40174
40175     /**
40176      * @cfg {Boolean} useIso
40177      * if enabled, then the date field will use a hidden field to store the 
40178      * real value as iso formated date. default (false)
40179      */ 
40180     useIso : false,
40181     /**
40182      * @cfg {String/Object} autoCreate
40183      * A DomHelper element spec, or true for a default element spec (defaults to
40184      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40185      */ 
40186     // private
40187     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40188     
40189     // private
40190     hiddenField: false,
40191     
40192     onRender : function(ct, position)
40193     {
40194         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40195         if (this.useIso) {
40196             //this.el.dom.removeAttribute('name'); 
40197             Roo.log("Changing name?");
40198             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40199             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40200                     'before', true);
40201             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40202             // prevent input submission
40203             this.hiddenName = this.name;
40204         }
40205             
40206             
40207     },
40208     
40209     // private
40210     validateValue : function(value)
40211     {
40212         value = this.formatDate(value);
40213         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40214             Roo.log('super failed');
40215             return false;
40216         }
40217         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40218              return true;
40219         }
40220         var svalue = value;
40221         value = this.parseDate(value);
40222         if(!value){
40223             Roo.log('parse date failed' + svalue);
40224             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40225             return false;
40226         }
40227         var time = value.getTime();
40228         if(this.minValue && time < this.minValue.getTime()){
40229             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40230             return false;
40231         }
40232         if(this.maxValue && time > this.maxValue.getTime()){
40233             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40234             return false;
40235         }
40236         if(this.disabledDays){
40237             var day = value.getDay();
40238             for(var i = 0; i < this.disabledDays.length; i++) {
40239                 if(day === this.disabledDays[i]){
40240                     this.markInvalid(this.disabledDaysText);
40241                     return false;
40242                 }
40243             }
40244         }
40245         var fvalue = this.formatDate(value);
40246         if(this.ddMatch && this.ddMatch.test(fvalue)){
40247             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40248             return false;
40249         }
40250         return true;
40251     },
40252
40253     // private
40254     // Provides logic to override the default TriggerField.validateBlur which just returns true
40255     validateBlur : function(){
40256         return !this.menu || !this.menu.isVisible();
40257     },
40258     
40259     getName: function()
40260     {
40261         // returns hidden if it's set..
40262         if (!this.rendered) {return ''};
40263         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40264         
40265     },
40266
40267     /**
40268      * Returns the current date value of the date field.
40269      * @return {Date} The date value
40270      */
40271     getValue : function(){
40272         
40273         return  this.hiddenField ?
40274                 this.hiddenField.value :
40275                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40276     },
40277
40278     /**
40279      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40280      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40281      * (the default format used is "m/d/y").
40282      * <br />Usage:
40283      * <pre><code>
40284 //All of these calls set the same date value (May 4, 2006)
40285
40286 //Pass a date object:
40287 var dt = new Date('5/4/06');
40288 dateField.setValue(dt);
40289
40290 //Pass a date string (default format):
40291 dateField.setValue('5/4/06');
40292
40293 //Pass a date string (custom format):
40294 dateField.format = 'Y-m-d';
40295 dateField.setValue('2006-5-4');
40296 </code></pre>
40297      * @param {String/Date} date The date or valid date string
40298      */
40299     setValue : function(date){
40300         if (this.hiddenField) {
40301             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40302         }
40303         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40304         // make sure the value field is always stored as a date..
40305         this.value = this.parseDate(date);
40306         
40307         
40308     },
40309
40310     // private
40311     parseDate : function(value){
40312         if(!value || value instanceof Date){
40313             return value;
40314         }
40315         var v = Date.parseDate(value, this.format);
40316          if (!v && this.useIso) {
40317             v = Date.parseDate(value, 'Y-m-d');
40318         }
40319         if(!v && this.altFormats){
40320             if(!this.altFormatsArray){
40321                 this.altFormatsArray = this.altFormats.split("|");
40322             }
40323             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40324                 v = Date.parseDate(value, this.altFormatsArray[i]);
40325             }
40326         }
40327         return v;
40328     },
40329
40330     // private
40331     formatDate : function(date, fmt){
40332         return (!date || !(date instanceof Date)) ?
40333                date : date.dateFormat(fmt || this.format);
40334     },
40335
40336     // private
40337     menuListeners : {
40338         select: function(m, d){
40339             
40340             this.setValue(d);
40341             this.fireEvent('select', this, d);
40342         },
40343         show : function(){ // retain focus styling
40344             this.onFocus();
40345         },
40346         hide : function(){
40347             this.focus.defer(10, this);
40348             var ml = this.menuListeners;
40349             this.menu.un("select", ml.select,  this);
40350             this.menu.un("show", ml.show,  this);
40351             this.menu.un("hide", ml.hide,  this);
40352         }
40353     },
40354
40355     // private
40356     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40357     onTriggerClick : function(){
40358         if(this.disabled){
40359             return;
40360         }
40361         if(this.menu == null){
40362             this.menu = new Roo.menu.DateMenu();
40363         }
40364         Roo.apply(this.menu.picker,  {
40365             showClear: this.allowBlank,
40366             minDate : this.minValue,
40367             maxDate : this.maxValue,
40368             disabledDatesRE : this.ddMatch,
40369             disabledDatesText : this.disabledDatesText,
40370             disabledDays : this.disabledDays,
40371             disabledDaysText : this.disabledDaysText,
40372             format : this.useIso ? 'Y-m-d' : this.format,
40373             minText : String.format(this.minText, this.formatDate(this.minValue)),
40374             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40375         });
40376         this.menu.on(Roo.apply({}, this.menuListeners, {
40377             scope:this
40378         }));
40379         this.menu.picker.setValue(this.getValue() || new Date());
40380         this.menu.show(this.el, "tl-bl?");
40381     },
40382
40383     beforeBlur : function(){
40384         var v = this.parseDate(this.getRawValue());
40385         if(v){
40386             this.setValue(v);
40387         }
40388     },
40389
40390     /*@
40391      * overide
40392      * 
40393      */
40394     isDirty : function() {
40395         if(this.disabled) {
40396             return false;
40397         }
40398         
40399         if(typeof(this.startValue) === 'undefined'){
40400             return false;
40401         }
40402         
40403         return String(this.getValue()) !== String(this.startValue);
40404         
40405     }
40406 });/*
40407  * Based on:
40408  * Ext JS Library 1.1.1
40409  * Copyright(c) 2006-2007, Ext JS, LLC.
40410  *
40411  * Originally Released Under LGPL - original licence link has changed is not relivant.
40412  *
40413  * Fork - LGPL
40414  * <script type="text/javascript">
40415  */
40416  
40417 /**
40418  * @class Roo.form.MonthField
40419  * @extends Roo.form.TriggerField
40420  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40421 * @constructor
40422 * Create a new MonthField
40423 * @param {Object} config
40424  */
40425 Roo.form.MonthField = function(config){
40426     
40427     Roo.form.MonthField.superclass.constructor.call(this, config);
40428     
40429       this.addEvents({
40430          
40431         /**
40432          * @event select
40433          * Fires when a date is selected
40434              * @param {Roo.form.MonthFieeld} combo This combo box
40435              * @param {Date} date The date selected
40436              */
40437         'select' : true
40438          
40439     });
40440     
40441     
40442     if(typeof this.minValue == "string") {
40443         this.minValue = this.parseDate(this.minValue);
40444     }
40445     if(typeof this.maxValue == "string") {
40446         this.maxValue = this.parseDate(this.maxValue);
40447     }
40448     this.ddMatch = null;
40449     if(this.disabledDates){
40450         var dd = this.disabledDates;
40451         var re = "(?:";
40452         for(var i = 0; i < dd.length; i++){
40453             re += dd[i];
40454             if(i != dd.length-1) {
40455                 re += "|";
40456             }
40457         }
40458         this.ddMatch = new RegExp(re + ")");
40459     }
40460 };
40461
40462 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40463     /**
40464      * @cfg {String} format
40465      * The default date format string which can be overriden for localization support.  The format must be
40466      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40467      */
40468     format : "M Y",
40469     /**
40470      * @cfg {String} altFormats
40471      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40472      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40473      */
40474     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40475     /**
40476      * @cfg {Array} disabledDays
40477      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40478      */
40479     disabledDays : [0,1,2,3,4,5,6],
40480     /**
40481      * @cfg {String} disabledDaysText
40482      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40483      */
40484     disabledDaysText : "Disabled",
40485     /**
40486      * @cfg {Array} disabledDates
40487      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40488      * expression so they are very powerful. Some examples:
40489      * <ul>
40490      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40491      * <li>["03/08", "09/16"] would disable those days for every year</li>
40492      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40493      * <li>["03/../2006"] would disable every day in March 2006</li>
40494      * <li>["^03"] would disable every day in every March</li>
40495      * </ul>
40496      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40497      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40498      */
40499     disabledDates : null,
40500     /**
40501      * @cfg {String} disabledDatesText
40502      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40503      */
40504     disabledDatesText : "Disabled",
40505     /**
40506      * @cfg {Date/String} minValue
40507      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40508      * valid format (defaults to null).
40509      */
40510     minValue : null,
40511     /**
40512      * @cfg {Date/String} maxValue
40513      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40514      * valid format (defaults to null).
40515      */
40516     maxValue : null,
40517     /**
40518      * @cfg {String} minText
40519      * The error text to display when the date in the cell is before minValue (defaults to
40520      * 'The date in this field must be after {minValue}').
40521      */
40522     minText : "The date in this field must be equal to or after {0}",
40523     /**
40524      * @cfg {String} maxTextf
40525      * The error text to display when the date in the cell is after maxValue (defaults to
40526      * 'The date in this field must be before {maxValue}').
40527      */
40528     maxText : "The date in this field must be equal to or before {0}",
40529     /**
40530      * @cfg {String} invalidText
40531      * The error text to display when the date in the field is invalid (defaults to
40532      * '{value} is not a valid date - it must be in the format {format}').
40533      */
40534     invalidText : "{0} is not a valid date - it must be in the format {1}",
40535     /**
40536      * @cfg {String} triggerClass
40537      * An additional CSS class used to style the trigger button.  The trigger will always get the
40538      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40539      * which displays a calendar icon).
40540      */
40541     triggerClass : 'x-form-date-trigger',
40542     
40543
40544     /**
40545      * @cfg {Boolean} useIso
40546      * if enabled, then the date field will use a hidden field to store the 
40547      * real value as iso formated date. default (true)
40548      */ 
40549     useIso : true,
40550     /**
40551      * @cfg {String/Object} autoCreate
40552      * A DomHelper element spec, or true for a default element spec (defaults to
40553      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40554      */ 
40555     // private
40556     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
40557     
40558     // private
40559     hiddenField: false,
40560     
40561     hideMonthPicker : false,
40562     
40563     onRender : function(ct, position)
40564     {
40565         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
40566         if (this.useIso) {
40567             this.el.dom.removeAttribute('name'); 
40568             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40569                     'before', true);
40570             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40571             // prevent input submission
40572             this.hiddenName = this.name;
40573         }
40574             
40575             
40576     },
40577     
40578     // private
40579     validateValue : function(value)
40580     {
40581         value = this.formatDate(value);
40582         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
40583             return false;
40584         }
40585         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40586              return true;
40587         }
40588         var svalue = value;
40589         value = this.parseDate(value);
40590         if(!value){
40591             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40592             return false;
40593         }
40594         var time = value.getTime();
40595         if(this.minValue && time < this.minValue.getTime()){
40596             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40597             return false;
40598         }
40599         if(this.maxValue && time > this.maxValue.getTime()){
40600             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40601             return false;
40602         }
40603         /*if(this.disabledDays){
40604             var day = value.getDay();
40605             for(var i = 0; i < this.disabledDays.length; i++) {
40606                 if(day === this.disabledDays[i]){
40607                     this.markInvalid(this.disabledDaysText);
40608                     return false;
40609                 }
40610             }
40611         }
40612         */
40613         var fvalue = this.formatDate(value);
40614         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
40615             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40616             return false;
40617         }
40618         */
40619         return true;
40620     },
40621
40622     // private
40623     // Provides logic to override the default TriggerField.validateBlur which just returns true
40624     validateBlur : function(){
40625         return !this.menu || !this.menu.isVisible();
40626     },
40627
40628     /**
40629      * Returns the current date value of the date field.
40630      * @return {Date} The date value
40631      */
40632     getValue : function(){
40633         
40634         
40635         
40636         return  this.hiddenField ?
40637                 this.hiddenField.value :
40638                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
40639     },
40640
40641     /**
40642      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40643      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
40644      * (the default format used is "m/d/y").
40645      * <br />Usage:
40646      * <pre><code>
40647 //All of these calls set the same date value (May 4, 2006)
40648
40649 //Pass a date object:
40650 var dt = new Date('5/4/06');
40651 monthField.setValue(dt);
40652
40653 //Pass a date string (default format):
40654 monthField.setValue('5/4/06');
40655
40656 //Pass a date string (custom format):
40657 monthField.format = 'Y-m-d';
40658 monthField.setValue('2006-5-4');
40659 </code></pre>
40660      * @param {String/Date} date The date or valid date string
40661      */
40662     setValue : function(date){
40663         Roo.log('month setValue' + date);
40664         // can only be first of month..
40665         
40666         var val = this.parseDate(date);
40667         
40668         if (this.hiddenField) {
40669             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40670         }
40671         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40672         this.value = this.parseDate(date);
40673     },
40674
40675     // private
40676     parseDate : function(value){
40677         if(!value || value instanceof Date){
40678             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
40679             return value;
40680         }
40681         var v = Date.parseDate(value, this.format);
40682         if (!v && this.useIso) {
40683             v = Date.parseDate(value, 'Y-m-d');
40684         }
40685         if (v) {
40686             // 
40687             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
40688         }
40689         
40690         
40691         if(!v && this.altFormats){
40692             if(!this.altFormatsArray){
40693                 this.altFormatsArray = this.altFormats.split("|");
40694             }
40695             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40696                 v = Date.parseDate(value, this.altFormatsArray[i]);
40697             }
40698         }
40699         return v;
40700     },
40701
40702     // private
40703     formatDate : function(date, fmt){
40704         return (!date || !(date instanceof Date)) ?
40705                date : date.dateFormat(fmt || this.format);
40706     },
40707
40708     // private
40709     menuListeners : {
40710         select: function(m, d){
40711             this.setValue(d);
40712             this.fireEvent('select', this, d);
40713         },
40714         show : function(){ // retain focus styling
40715             this.onFocus();
40716         },
40717         hide : function(){
40718             this.focus.defer(10, this);
40719             var ml = this.menuListeners;
40720             this.menu.un("select", ml.select,  this);
40721             this.menu.un("show", ml.show,  this);
40722             this.menu.un("hide", ml.hide,  this);
40723         }
40724     },
40725     // private
40726     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40727     onTriggerClick : function(){
40728         if(this.disabled){
40729             return;
40730         }
40731         if(this.menu == null){
40732             this.menu = new Roo.menu.DateMenu();
40733            
40734         }
40735         
40736         Roo.apply(this.menu.picker,  {
40737             
40738             showClear: this.allowBlank,
40739             minDate : this.minValue,
40740             maxDate : this.maxValue,
40741             disabledDatesRE : this.ddMatch,
40742             disabledDatesText : this.disabledDatesText,
40743             
40744             format : this.useIso ? 'Y-m-d' : this.format,
40745             minText : String.format(this.minText, this.formatDate(this.minValue)),
40746             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40747             
40748         });
40749          this.menu.on(Roo.apply({}, this.menuListeners, {
40750             scope:this
40751         }));
40752        
40753         
40754         var m = this.menu;
40755         var p = m.picker;
40756         
40757         // hide month picker get's called when we called by 'before hide';
40758         
40759         var ignorehide = true;
40760         p.hideMonthPicker  = function(disableAnim){
40761             if (ignorehide) {
40762                 return;
40763             }
40764              if(this.monthPicker){
40765                 Roo.log("hideMonthPicker called");
40766                 if(disableAnim === true){
40767                     this.monthPicker.hide();
40768                 }else{
40769                     this.monthPicker.slideOut('t', {duration:.2});
40770                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
40771                     p.fireEvent("select", this, this.value);
40772                     m.hide();
40773                 }
40774             }
40775         }
40776         
40777         Roo.log('picker set value');
40778         Roo.log(this.getValue());
40779         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
40780         m.show(this.el, 'tl-bl?');
40781         ignorehide  = false;
40782         // this will trigger hideMonthPicker..
40783         
40784         
40785         // hidden the day picker
40786         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
40787         
40788         
40789         
40790       
40791         
40792         p.showMonthPicker.defer(100, p);
40793     
40794         
40795        
40796     },
40797
40798     beforeBlur : function(){
40799         var v = this.parseDate(this.getRawValue());
40800         if(v){
40801             this.setValue(v);
40802         }
40803     }
40804
40805     /** @cfg {Boolean} grow @hide */
40806     /** @cfg {Number} growMin @hide */
40807     /** @cfg {Number} growMax @hide */
40808     /**
40809      * @hide
40810      * @method autoSize
40811      */
40812 });/*
40813  * Based on:
40814  * Ext JS Library 1.1.1
40815  * Copyright(c) 2006-2007, Ext JS, LLC.
40816  *
40817  * Originally Released Under LGPL - original licence link has changed is not relivant.
40818  *
40819  * Fork - LGPL
40820  * <script type="text/javascript">
40821  */
40822  
40823
40824 /**
40825  * @class Roo.form.ComboBox
40826  * @extends Roo.form.TriggerField
40827  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
40828  * @constructor
40829  * Create a new ComboBox.
40830  * @param {Object} config Configuration options
40831  */
40832 Roo.form.ComboBox = function(config){
40833     Roo.form.ComboBox.superclass.constructor.call(this, config);
40834     this.addEvents({
40835         /**
40836          * @event expand
40837          * Fires when the dropdown list is expanded
40838              * @param {Roo.form.ComboBox} combo This combo box
40839              */
40840         'expand' : true,
40841         /**
40842          * @event collapse
40843          * Fires when the dropdown list is collapsed
40844              * @param {Roo.form.ComboBox} combo This combo box
40845              */
40846         'collapse' : true,
40847         /**
40848          * @event beforeselect
40849          * Fires before a list item is selected. Return false to cancel the selection.
40850              * @param {Roo.form.ComboBox} combo This combo box
40851              * @param {Roo.data.Record} record The data record returned from the underlying store
40852              * @param {Number} index The index of the selected item in the dropdown list
40853              */
40854         'beforeselect' : true,
40855         /**
40856          * @event select
40857          * Fires when a list item is selected
40858              * @param {Roo.form.ComboBox} combo This combo box
40859              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
40860              * @param {Number} index The index of the selected item in the dropdown list
40861              */
40862         'select' : true,
40863         /**
40864          * @event beforequery
40865          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
40866          * The event object passed has these properties:
40867              * @param {Roo.form.ComboBox} combo This combo box
40868              * @param {String} query The query
40869              * @param {Boolean} forceAll true to force "all" query
40870              * @param {Boolean} cancel true to cancel the query
40871              * @param {Object} e The query event object
40872              */
40873         'beforequery': true,
40874          /**
40875          * @event add
40876          * Fires when the 'add' icon is pressed (add a listener to enable add button)
40877              * @param {Roo.form.ComboBox} combo This combo box
40878              */
40879         'add' : true,
40880         /**
40881          * @event edit
40882          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
40883              * @param {Roo.form.ComboBox} combo This combo box
40884              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
40885              */
40886         'edit' : true
40887         
40888         
40889     });
40890     if(this.transform){
40891         this.allowDomMove = false;
40892         var s = Roo.getDom(this.transform);
40893         if(!this.hiddenName){
40894             this.hiddenName = s.name;
40895         }
40896         if(!this.store){
40897             this.mode = 'local';
40898             var d = [], opts = s.options;
40899             for(var i = 0, len = opts.length;i < len; i++){
40900                 var o = opts[i];
40901                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
40902                 if(o.selected) {
40903                     this.value = value;
40904                 }
40905                 d.push([value, o.text]);
40906             }
40907             this.store = new Roo.data.SimpleStore({
40908                 'id': 0,
40909                 fields: ['value', 'text'],
40910                 data : d
40911             });
40912             this.valueField = 'value';
40913             this.displayField = 'text';
40914         }
40915         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
40916         if(!this.lazyRender){
40917             this.target = true;
40918             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
40919             s.parentNode.removeChild(s); // remove it
40920             this.render(this.el.parentNode);
40921         }else{
40922             s.parentNode.removeChild(s); // remove it
40923         }
40924
40925     }
40926     if (this.store) {
40927         this.store = Roo.factory(this.store, Roo.data);
40928     }
40929     
40930     this.selectedIndex = -1;
40931     if(this.mode == 'local'){
40932         if(config.queryDelay === undefined){
40933             this.queryDelay = 10;
40934         }
40935         if(config.minChars === undefined){
40936             this.minChars = 0;
40937         }
40938     }
40939 };
40940
40941 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
40942     /**
40943      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
40944      */
40945     /**
40946      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
40947      * rendering into an Roo.Editor, defaults to false)
40948      */
40949     /**
40950      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
40951      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
40952      */
40953     /**
40954      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
40955      */
40956     /**
40957      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
40958      * the dropdown list (defaults to undefined, with no header element)
40959      */
40960
40961      /**
40962      * @cfg {String/Roo.Template} tpl The template to use to render the output
40963      */
40964      
40965     // private
40966     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
40967     /**
40968      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
40969      */
40970     listWidth: undefined,
40971     /**
40972      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
40973      * mode = 'remote' or 'text' if mode = 'local')
40974      */
40975     displayField: undefined,
40976     /**
40977      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
40978      * mode = 'remote' or 'value' if mode = 'local'). 
40979      * Note: use of a valueField requires the user make a selection
40980      * in order for a value to be mapped.
40981      */
40982     valueField: undefined,
40983     
40984     
40985     /**
40986      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
40987      * field's data value (defaults to the underlying DOM element's name)
40988      */
40989     hiddenName: undefined,
40990     /**
40991      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
40992      */
40993     listClass: '',
40994     /**
40995      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
40996      */
40997     selectedClass: 'x-combo-selected',
40998     /**
40999      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41000      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41001      * which displays a downward arrow icon).
41002      */
41003     triggerClass : 'x-form-arrow-trigger',
41004     /**
41005      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41006      */
41007     shadow:'sides',
41008     /**
41009      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41010      * anchor positions (defaults to 'tl-bl')
41011      */
41012     listAlign: 'tl-bl?',
41013     /**
41014      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41015      */
41016     maxHeight: 300,
41017     /**
41018      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41019      * query specified by the allQuery config option (defaults to 'query')
41020      */
41021     triggerAction: 'query',
41022     /**
41023      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41024      * (defaults to 4, does not apply if editable = false)
41025      */
41026     minChars : 4,
41027     /**
41028      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41029      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41030      */
41031     typeAhead: false,
41032     /**
41033      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41034      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41035      */
41036     queryDelay: 500,
41037     /**
41038      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41039      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41040      */
41041     pageSize: 0,
41042     /**
41043      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41044      * when editable = true (defaults to false)
41045      */
41046     selectOnFocus:false,
41047     /**
41048      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41049      */
41050     queryParam: 'query',
41051     /**
41052      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41053      * when mode = 'remote' (defaults to 'Loading...')
41054      */
41055     loadingText: 'Loading...',
41056     /**
41057      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41058      */
41059     resizable: false,
41060     /**
41061      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41062      */
41063     handleHeight : 8,
41064     /**
41065      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41066      * traditional select (defaults to true)
41067      */
41068     editable: true,
41069     /**
41070      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41071      */
41072     allQuery: '',
41073     /**
41074      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41075      */
41076     mode: 'remote',
41077     /**
41078      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41079      * listWidth has a higher value)
41080      */
41081     minListWidth : 70,
41082     /**
41083      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41084      * allow the user to set arbitrary text into the field (defaults to false)
41085      */
41086     forceSelection:false,
41087     /**
41088      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41089      * if typeAhead = true (defaults to 250)
41090      */
41091     typeAheadDelay : 250,
41092     /**
41093      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41094      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41095      */
41096     valueNotFoundText : undefined,
41097     /**
41098      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41099      */
41100     blockFocus : false,
41101     
41102     /**
41103      * @cfg {Boolean} disableClear Disable showing of clear button.
41104      */
41105     disableClear : false,
41106     /**
41107      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41108      */
41109     alwaysQuery : false,
41110     
41111     //private
41112     addicon : false,
41113     editicon: false,
41114     
41115     // element that contains real text value.. (when hidden is used..)
41116      
41117     // private
41118     onRender : function(ct, position){
41119         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41120         if(this.hiddenName){
41121             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41122                     'before', true);
41123             this.hiddenField.value =
41124                 this.hiddenValue !== undefined ? this.hiddenValue :
41125                 this.value !== undefined ? this.value : '';
41126
41127             // prevent input submission
41128             this.el.dom.removeAttribute('name');
41129              
41130              
41131         }
41132         if(Roo.isGecko){
41133             this.el.dom.setAttribute('autocomplete', 'off');
41134         }
41135
41136         var cls = 'x-combo-list';
41137
41138         this.list = new Roo.Layer({
41139             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41140         });
41141
41142         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41143         this.list.setWidth(lw);
41144         this.list.swallowEvent('mousewheel');
41145         this.assetHeight = 0;
41146
41147         if(this.title){
41148             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41149             this.assetHeight += this.header.getHeight();
41150         }
41151
41152         this.innerList = this.list.createChild({cls:cls+'-inner'});
41153         this.innerList.on('mouseover', this.onViewOver, this);
41154         this.innerList.on('mousemove', this.onViewMove, this);
41155         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41156         
41157         if(this.allowBlank && !this.pageSize && !this.disableClear){
41158             this.footer = this.list.createChild({cls:cls+'-ft'});
41159             this.pageTb = new Roo.Toolbar(this.footer);
41160            
41161         }
41162         if(this.pageSize){
41163             this.footer = this.list.createChild({cls:cls+'-ft'});
41164             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41165                     {pageSize: this.pageSize});
41166             
41167         }
41168         
41169         if (this.pageTb && this.allowBlank && !this.disableClear) {
41170             var _this = this;
41171             this.pageTb.add(new Roo.Toolbar.Fill(), {
41172                 cls: 'x-btn-icon x-btn-clear',
41173                 text: '&#160;',
41174                 handler: function()
41175                 {
41176                     _this.collapse();
41177                     _this.clearValue();
41178                     _this.onSelect(false, -1);
41179                 }
41180             });
41181         }
41182         if (this.footer) {
41183             this.assetHeight += this.footer.getHeight();
41184         }
41185         
41186
41187         if(!this.tpl){
41188             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41189         }
41190
41191         this.view = new Roo.View(this.innerList, this.tpl, {
41192             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41193         });
41194
41195         this.view.on('click', this.onViewClick, this);
41196
41197         this.store.on('beforeload', this.onBeforeLoad, this);
41198         this.store.on('load', this.onLoad, this);
41199         this.store.on('loadexception', this.onLoadException, this);
41200
41201         if(this.resizable){
41202             this.resizer = new Roo.Resizable(this.list,  {
41203                pinned:true, handles:'se'
41204             });
41205             this.resizer.on('resize', function(r, w, h){
41206                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41207                 this.listWidth = w;
41208                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41209                 this.restrictHeight();
41210             }, this);
41211             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41212         }
41213         if(!this.editable){
41214             this.editable = true;
41215             this.setEditable(false);
41216         }  
41217         
41218         
41219         if (typeof(this.events.add.listeners) != 'undefined') {
41220             
41221             this.addicon = this.wrap.createChild(
41222                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41223        
41224             this.addicon.on('click', function(e) {
41225                 this.fireEvent('add', this);
41226             }, this);
41227         }
41228         if (typeof(this.events.edit.listeners) != 'undefined') {
41229             
41230             this.editicon = this.wrap.createChild(
41231                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41232             if (this.addicon) {
41233                 this.editicon.setStyle('margin-left', '40px');
41234             }
41235             this.editicon.on('click', function(e) {
41236                 
41237                 // we fire even  if inothing is selected..
41238                 this.fireEvent('edit', this, this.lastData );
41239                 
41240             }, this);
41241         }
41242         
41243         
41244         
41245     },
41246
41247     // private
41248     initEvents : function(){
41249         Roo.form.ComboBox.superclass.initEvents.call(this);
41250
41251         this.keyNav = new Roo.KeyNav(this.el, {
41252             "up" : function(e){
41253                 this.inKeyMode = true;
41254                 this.selectPrev();
41255             },
41256
41257             "down" : function(e){
41258                 if(!this.isExpanded()){
41259                     this.onTriggerClick();
41260                 }else{
41261                     this.inKeyMode = true;
41262                     this.selectNext();
41263                 }
41264             },
41265
41266             "enter" : function(e){
41267                 this.onViewClick();
41268                 //return true;
41269             },
41270
41271             "esc" : function(e){
41272                 this.collapse();
41273             },
41274
41275             "tab" : function(e){
41276                 this.onViewClick(false);
41277                 this.fireEvent("specialkey", this, e);
41278                 return true;
41279             },
41280
41281             scope : this,
41282
41283             doRelay : function(foo, bar, hname){
41284                 if(hname == 'down' || this.scope.isExpanded()){
41285                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41286                 }
41287                 return true;
41288             },
41289
41290             forceKeyDown: true
41291         });
41292         this.queryDelay = Math.max(this.queryDelay || 10,
41293                 this.mode == 'local' ? 10 : 250);
41294         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41295         if(this.typeAhead){
41296             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41297         }
41298         if(this.editable !== false){
41299             this.el.on("keyup", this.onKeyUp, this);
41300         }
41301         if(this.forceSelection){
41302             this.on('blur', this.doForce, this);
41303         }
41304     },
41305
41306     onDestroy : function(){
41307         if(this.view){
41308             this.view.setStore(null);
41309             this.view.el.removeAllListeners();
41310             this.view.el.remove();
41311             this.view.purgeListeners();
41312         }
41313         if(this.list){
41314             this.list.destroy();
41315         }
41316         if(this.store){
41317             this.store.un('beforeload', this.onBeforeLoad, this);
41318             this.store.un('load', this.onLoad, this);
41319             this.store.un('loadexception', this.onLoadException, this);
41320         }
41321         Roo.form.ComboBox.superclass.onDestroy.call(this);
41322     },
41323
41324     // private
41325     fireKey : function(e){
41326         if(e.isNavKeyPress() && !this.list.isVisible()){
41327             this.fireEvent("specialkey", this, e);
41328         }
41329     },
41330
41331     // private
41332     onResize: function(w, h){
41333         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41334         
41335         if(typeof w != 'number'){
41336             // we do not handle it!?!?
41337             return;
41338         }
41339         var tw = this.trigger.getWidth();
41340         tw += this.addicon ? this.addicon.getWidth() : 0;
41341         tw += this.editicon ? this.editicon.getWidth() : 0;
41342         var x = w - tw;
41343         this.el.setWidth( this.adjustWidth('input', x));
41344             
41345         this.trigger.setStyle('left', x+'px');
41346         
41347         if(this.list && this.listWidth === undefined){
41348             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41349             this.list.setWidth(lw);
41350             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41351         }
41352         
41353     
41354         
41355     },
41356
41357     /**
41358      * Allow or prevent the user from directly editing the field text.  If false is passed,
41359      * the user will only be able to select from the items defined in the dropdown list.  This method
41360      * is the runtime equivalent of setting the 'editable' config option at config time.
41361      * @param {Boolean} value True to allow the user to directly edit the field text
41362      */
41363     setEditable : function(value){
41364         if(value == this.editable){
41365             return;
41366         }
41367         this.editable = value;
41368         if(!value){
41369             this.el.dom.setAttribute('readOnly', true);
41370             this.el.on('mousedown', this.onTriggerClick,  this);
41371             this.el.addClass('x-combo-noedit');
41372         }else{
41373             this.el.dom.setAttribute('readOnly', false);
41374             this.el.un('mousedown', this.onTriggerClick,  this);
41375             this.el.removeClass('x-combo-noedit');
41376         }
41377     },
41378
41379     // private
41380     onBeforeLoad : function(){
41381         if(!this.hasFocus){
41382             return;
41383         }
41384         this.innerList.update(this.loadingText ?
41385                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41386         this.restrictHeight();
41387         this.selectedIndex = -1;
41388     },
41389
41390     // private
41391     onLoad : function(){
41392         if(!this.hasFocus){
41393             return;
41394         }
41395         if(this.store.getCount() > 0){
41396             this.expand();
41397             this.restrictHeight();
41398             if(this.lastQuery == this.allQuery){
41399                 if(this.editable){
41400                     this.el.dom.select();
41401                 }
41402                 if(!this.selectByValue(this.value, true)){
41403                     this.select(0, true);
41404                 }
41405             }else{
41406                 this.selectNext();
41407                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41408                     this.taTask.delay(this.typeAheadDelay);
41409                 }
41410             }
41411         }else{
41412             this.onEmptyResults();
41413         }
41414         //this.el.focus();
41415     },
41416     // private
41417     onLoadException : function()
41418     {
41419         this.collapse();
41420         Roo.log(this.store.reader.jsonData);
41421         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41422             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41423         }
41424         
41425         
41426     },
41427     // private
41428     onTypeAhead : function(){
41429         if(this.store.getCount() > 0){
41430             var r = this.store.getAt(0);
41431             var newValue = r.data[this.displayField];
41432             var len = newValue.length;
41433             var selStart = this.getRawValue().length;
41434             if(selStart != len){
41435                 this.setRawValue(newValue);
41436                 this.selectText(selStart, newValue.length);
41437             }
41438         }
41439     },
41440
41441     // private
41442     onSelect : function(record, index){
41443         if(this.fireEvent('beforeselect', this, record, index) !== false){
41444             this.setFromData(index > -1 ? record.data : false);
41445             this.collapse();
41446             this.fireEvent('select', this, record, index);
41447         }
41448     },
41449
41450     /**
41451      * Returns the currently selected field value or empty string if no value is set.
41452      * @return {String} value The selected value
41453      */
41454     getValue : function(){
41455         if(this.valueField){
41456             return typeof this.value != 'undefined' ? this.value : '';
41457         }
41458         return Roo.form.ComboBox.superclass.getValue.call(this);
41459     },
41460
41461     /**
41462      * Clears any text/value currently set in the field
41463      */
41464     clearValue : function(){
41465         if(this.hiddenField){
41466             this.hiddenField.value = '';
41467         }
41468         this.value = '';
41469         this.setRawValue('');
41470         this.lastSelectionText = '';
41471         
41472     },
41473
41474     /**
41475      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41476      * will be displayed in the field.  If the value does not match the data value of an existing item,
41477      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41478      * Otherwise the field will be blank (although the value will still be set).
41479      * @param {String} value The value to match
41480      */
41481     setValue : function(v){
41482         var text = v;
41483         if(this.valueField){
41484             var r = this.findRecord(this.valueField, v);
41485             if(r){
41486                 text = r.data[this.displayField];
41487             }else if(this.valueNotFoundText !== undefined){
41488                 text = this.valueNotFoundText;
41489             }
41490         }
41491         this.lastSelectionText = text;
41492         if(this.hiddenField){
41493             this.hiddenField.value = v;
41494         }
41495         Roo.form.ComboBox.superclass.setValue.call(this, text);
41496         this.value = v;
41497     },
41498     /**
41499      * @property {Object} the last set data for the element
41500      */
41501     
41502     lastData : false,
41503     /**
41504      * Sets the value of the field based on a object which is related to the record format for the store.
41505      * @param {Object} value the value to set as. or false on reset?
41506      */
41507     setFromData : function(o){
41508         var dv = ''; // display value
41509         var vv = ''; // value value..
41510         this.lastData = o;
41511         if (this.displayField) {
41512             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41513         } else {
41514             // this is an error condition!!!
41515             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
41516         }
41517         
41518         if(this.valueField){
41519             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
41520         }
41521         if(this.hiddenField){
41522             this.hiddenField.value = vv;
41523             
41524             this.lastSelectionText = dv;
41525             Roo.form.ComboBox.superclass.setValue.call(this, dv);
41526             this.value = vv;
41527             return;
41528         }
41529         // no hidden field.. - we store the value in 'value', but still display
41530         // display field!!!!
41531         this.lastSelectionText = dv;
41532         Roo.form.ComboBox.superclass.setValue.call(this, dv);
41533         this.value = vv;
41534         
41535         
41536     },
41537     // private
41538     reset : function(){
41539         // overridden so that last data is reset..
41540         this.setValue(this.resetValue);
41541         this.clearInvalid();
41542         this.lastData = false;
41543         if (this.view) {
41544             this.view.clearSelections();
41545         }
41546     },
41547     // private
41548     findRecord : function(prop, value){
41549         var record;
41550         if(this.store.getCount() > 0){
41551             this.store.each(function(r){
41552                 if(r.data[prop] == value){
41553                     record = r;
41554                     return false;
41555                 }
41556                 return true;
41557             });
41558         }
41559         return record;
41560     },
41561     
41562     getName: function()
41563     {
41564         // returns hidden if it's set..
41565         if (!this.rendered) {return ''};
41566         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
41567         
41568     },
41569     // private
41570     onViewMove : function(e, t){
41571         this.inKeyMode = false;
41572     },
41573
41574     // private
41575     onViewOver : function(e, t){
41576         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
41577             return;
41578         }
41579         var item = this.view.findItemFromChild(t);
41580         if(item){
41581             var index = this.view.indexOf(item);
41582             this.select(index, false);
41583         }
41584     },
41585
41586     // private
41587     onViewClick : function(doFocus)
41588     {
41589         var index = this.view.getSelectedIndexes()[0];
41590         var r = this.store.getAt(index);
41591         if(r){
41592             this.onSelect(r, index);
41593         }
41594         if(doFocus !== false && !this.blockFocus){
41595             this.el.focus();
41596         }
41597     },
41598
41599     // private
41600     restrictHeight : function(){
41601         this.innerList.dom.style.height = '';
41602         var inner = this.innerList.dom;
41603         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
41604         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
41605         this.list.beginUpdate();
41606         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
41607         this.list.alignTo(this.el, this.listAlign);
41608         this.list.endUpdate();
41609     },
41610
41611     // private
41612     onEmptyResults : function(){
41613         this.collapse();
41614     },
41615
41616     /**
41617      * Returns true if the dropdown list is expanded, else false.
41618      */
41619     isExpanded : function(){
41620         return this.list.isVisible();
41621     },
41622
41623     /**
41624      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
41625      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
41626      * @param {String} value The data value of the item to select
41627      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
41628      * selected item if it is not currently in view (defaults to true)
41629      * @return {Boolean} True if the value matched an item in the list, else false
41630      */
41631     selectByValue : function(v, scrollIntoView){
41632         if(v !== undefined && v !== null){
41633             var r = this.findRecord(this.valueField || this.displayField, v);
41634             if(r){
41635                 this.select(this.store.indexOf(r), scrollIntoView);
41636                 return true;
41637             }
41638         }
41639         return false;
41640     },
41641
41642     /**
41643      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
41644      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
41645      * @param {Number} index The zero-based index of the list item to select
41646      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
41647      * selected item if it is not currently in view (defaults to true)
41648      */
41649     select : function(index, scrollIntoView){
41650         this.selectedIndex = index;
41651         this.view.select(index);
41652         if(scrollIntoView !== false){
41653             var el = this.view.getNode(index);
41654             if(el){
41655                 this.innerList.scrollChildIntoView(el, false);
41656             }
41657         }
41658     },
41659
41660     // private
41661     selectNext : function(){
41662         var ct = this.store.getCount();
41663         if(ct > 0){
41664             if(this.selectedIndex == -1){
41665                 this.select(0);
41666             }else if(this.selectedIndex < ct-1){
41667                 this.select(this.selectedIndex+1);
41668             }
41669         }
41670     },
41671
41672     // private
41673     selectPrev : function(){
41674         var ct = this.store.getCount();
41675         if(ct > 0){
41676             if(this.selectedIndex == -1){
41677                 this.select(0);
41678             }else if(this.selectedIndex != 0){
41679                 this.select(this.selectedIndex-1);
41680             }
41681         }
41682     },
41683
41684     // private
41685     onKeyUp : function(e){
41686         if(this.editable !== false && !e.isSpecialKey()){
41687             this.lastKey = e.getKey();
41688             this.dqTask.delay(this.queryDelay);
41689         }
41690     },
41691
41692     // private
41693     validateBlur : function(){
41694         return !this.list || !this.list.isVisible();   
41695     },
41696
41697     // private
41698     initQuery : function(){
41699         this.doQuery(this.getRawValue());
41700     },
41701
41702     // private
41703     doForce : function(){
41704         if(this.el.dom.value.length > 0){
41705             this.el.dom.value =
41706                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
41707              
41708         }
41709     },
41710
41711     /**
41712      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
41713      * query allowing the query action to be canceled if needed.
41714      * @param {String} query The SQL query to execute
41715      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
41716      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
41717      * saved in the current store (defaults to false)
41718      */
41719     doQuery : function(q, forceAll){
41720         if(q === undefined || q === null){
41721             q = '';
41722         }
41723         var qe = {
41724             query: q,
41725             forceAll: forceAll,
41726             combo: this,
41727             cancel:false
41728         };
41729         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
41730             return false;
41731         }
41732         q = qe.query;
41733         forceAll = qe.forceAll;
41734         if(forceAll === true || (q.length >= this.minChars)){
41735             if(this.lastQuery != q || this.alwaysQuery){
41736                 this.lastQuery = q;
41737                 if(this.mode == 'local'){
41738                     this.selectedIndex = -1;
41739                     if(forceAll){
41740                         this.store.clearFilter();
41741                     }else{
41742                         this.store.filter(this.displayField, q);
41743                     }
41744                     this.onLoad();
41745                 }else{
41746                     this.store.baseParams[this.queryParam] = q;
41747                     this.store.load({
41748                         params: this.getParams(q)
41749                     });
41750                     this.expand();
41751                 }
41752             }else{
41753                 this.selectedIndex = -1;
41754                 this.onLoad();   
41755             }
41756         }
41757     },
41758
41759     // private
41760     getParams : function(q){
41761         var p = {};
41762         //p[this.queryParam] = q;
41763         if(this.pageSize){
41764             p.start = 0;
41765             p.limit = this.pageSize;
41766         }
41767         return p;
41768     },
41769
41770     /**
41771      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
41772      */
41773     collapse : function(){
41774         if(!this.isExpanded()){
41775             return;
41776         }
41777         this.list.hide();
41778         Roo.get(document).un('mousedown', this.collapseIf, this);
41779         Roo.get(document).un('mousewheel', this.collapseIf, this);
41780         if (!this.editable) {
41781             Roo.get(document).un('keydown', this.listKeyPress, this);
41782         }
41783         this.fireEvent('collapse', this);
41784     },
41785
41786     // private
41787     collapseIf : function(e){
41788         if(!e.within(this.wrap) && !e.within(this.list)){
41789             this.collapse();
41790         }
41791     },
41792
41793     /**
41794      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
41795      */
41796     expand : function(){
41797         if(this.isExpanded() || !this.hasFocus){
41798             return;
41799         }
41800         this.list.alignTo(this.el, this.listAlign);
41801         this.list.show();
41802         Roo.get(document).on('mousedown', this.collapseIf, this);
41803         Roo.get(document).on('mousewheel', this.collapseIf, this);
41804         if (!this.editable) {
41805             Roo.get(document).on('keydown', this.listKeyPress, this);
41806         }
41807         
41808         this.fireEvent('expand', this);
41809     },
41810
41811     // private
41812     // Implements the default empty TriggerField.onTriggerClick function
41813     onTriggerClick : function(){
41814         if(this.disabled){
41815             return;
41816         }
41817         if(this.isExpanded()){
41818             this.collapse();
41819             if (!this.blockFocus) {
41820                 this.el.focus();
41821             }
41822             
41823         }else {
41824             this.hasFocus = true;
41825             if(this.triggerAction == 'all') {
41826                 this.doQuery(this.allQuery, true);
41827             } else {
41828                 this.doQuery(this.getRawValue());
41829             }
41830             if (!this.blockFocus) {
41831                 this.el.focus();
41832             }
41833         }
41834     },
41835     listKeyPress : function(e)
41836     {
41837         //Roo.log('listkeypress');
41838         // scroll to first matching element based on key pres..
41839         if (e.isSpecialKey()) {
41840             return false;
41841         }
41842         var k = String.fromCharCode(e.getKey()).toUpperCase();
41843         //Roo.log(k);
41844         var match  = false;
41845         var csel = this.view.getSelectedNodes();
41846         var cselitem = false;
41847         if (csel.length) {
41848             var ix = this.view.indexOf(csel[0]);
41849             cselitem  = this.store.getAt(ix);
41850             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
41851                 cselitem = false;
41852             }
41853             
41854         }
41855         
41856         this.store.each(function(v) { 
41857             if (cselitem) {
41858                 // start at existing selection.
41859                 if (cselitem.id == v.id) {
41860                     cselitem = false;
41861                 }
41862                 return;
41863             }
41864                 
41865             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
41866                 match = this.store.indexOf(v);
41867                 return false;
41868             }
41869         }, this);
41870         
41871         if (match === false) {
41872             return true; // no more action?
41873         }
41874         // scroll to?
41875         this.view.select(match);
41876         var sn = Roo.get(this.view.getSelectedNodes()[0]);
41877         sn.scrollIntoView(sn.dom.parentNode, false);
41878     }
41879
41880     /** 
41881     * @cfg {Boolean} grow 
41882     * @hide 
41883     */
41884     /** 
41885     * @cfg {Number} growMin 
41886     * @hide 
41887     */
41888     /** 
41889     * @cfg {Number} growMax 
41890     * @hide 
41891     */
41892     /**
41893      * @hide
41894      * @method autoSize
41895      */
41896 });/*
41897  * Copyright(c) 2010-2012, Roo J Solutions Limited
41898  *
41899  * Licence LGPL
41900  *
41901  */
41902
41903 /**
41904  * @class Roo.form.ComboBoxArray
41905  * @extends Roo.form.TextField
41906  * A facebook style adder... for lists of email / people / countries  etc...
41907  * pick multiple items from a combo box, and shows each one.
41908  *
41909  *  Fred [x]  Brian [x]  [Pick another |v]
41910  *
41911  *
41912  *  For this to work: it needs various extra information
41913  *    - normal combo problay has
41914  *      name, hiddenName
41915  *    + displayField, valueField
41916  *
41917  *    For our purpose...
41918  *
41919  *
41920  *   If we change from 'extends' to wrapping...
41921  *   
41922  *  
41923  *
41924  
41925  
41926  * @constructor
41927  * Create a new ComboBoxArray.
41928  * @param {Object} config Configuration options
41929  */
41930  
41931
41932 Roo.form.ComboBoxArray = function(config)
41933 {
41934     this.addEvents({
41935         /**
41936          * @event beforeremove
41937          * Fires before remove the value from the list
41938              * @param {Roo.form.ComboBoxArray} _self This combo box array
41939              * @param {Roo.form.ComboBoxArray.Item} item removed item
41940              */
41941         'beforeremove' : true,
41942         /**
41943          * @event remove
41944          * Fires when remove the value from the list
41945              * @param {Roo.form.ComboBoxArray} _self This combo box array
41946              * @param {Roo.form.ComboBoxArray.Item} item removed item
41947              */
41948         'remove' : true
41949         
41950         
41951     });
41952     
41953     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
41954     
41955     this.items = new Roo.util.MixedCollection(false);
41956     
41957     // construct the child combo...
41958     
41959     
41960     
41961     
41962    
41963     
41964 }
41965
41966  
41967 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
41968
41969     /**
41970      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
41971      */
41972     
41973     lastData : false,
41974     
41975     // behavies liek a hiddne field
41976     inputType:      'hidden',
41977     /**
41978      * @cfg {Number} width The width of the box that displays the selected element
41979      */ 
41980     width:          300,
41981
41982     
41983     
41984     /**
41985      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
41986      */
41987     name : false,
41988     /**
41989      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
41990      */
41991     hiddenName : false,
41992     
41993     
41994     // private the array of items that are displayed..
41995     items  : false,
41996     // private - the hidden field el.
41997     hiddenEl : false,
41998     // private - the filed el..
41999     el : false,
42000     
42001     //validateValue : function() { return true; }, // all values are ok!
42002     //onAddClick: function() { },
42003     
42004     onRender : function(ct, position) 
42005     {
42006         
42007         // create the standard hidden element
42008         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42009         
42010         
42011         // give fake names to child combo;
42012         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42013         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
42014         
42015         this.combo = Roo.factory(this.combo, Roo.form);
42016         this.combo.onRender(ct, position);
42017         if (typeof(this.combo.width) != 'undefined') {
42018             this.combo.onResize(this.combo.width,0);
42019         }
42020         
42021         this.combo.initEvents();
42022         
42023         // assigned so form know we need to do this..
42024         this.store          = this.combo.store;
42025         this.valueField     = this.combo.valueField;
42026         this.displayField   = this.combo.displayField ;
42027         
42028         
42029         this.combo.wrap.addClass('x-cbarray-grp');
42030         
42031         var cbwrap = this.combo.wrap.createChild(
42032             {tag: 'div', cls: 'x-cbarray-cb'},
42033             this.combo.el.dom
42034         );
42035         
42036              
42037         this.hiddenEl = this.combo.wrap.createChild({
42038             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42039         });
42040         this.el = this.combo.wrap.createChild({
42041             tag: 'input',  type:'hidden' , name: this.name, value : ''
42042         });
42043          //   this.el.dom.removeAttribute("name");
42044         
42045         
42046         this.outerWrap = this.combo.wrap;
42047         this.wrap = cbwrap;
42048         
42049         this.outerWrap.setWidth(this.width);
42050         this.outerWrap.dom.removeChild(this.el.dom);
42051         
42052         this.wrap.dom.appendChild(this.el.dom);
42053         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42054         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42055         
42056         this.combo.trigger.setStyle('position','relative');
42057         this.combo.trigger.setStyle('left', '0px');
42058         this.combo.trigger.setStyle('top', '2px');
42059         
42060         this.combo.el.setStyle('vertical-align', 'text-bottom');
42061         
42062         //this.trigger.setStyle('vertical-align', 'top');
42063         
42064         // this should use the code from combo really... on('add' ....)
42065         if (this.adder) {
42066             
42067         
42068             this.adder = this.outerWrap.createChild(
42069                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42070             var _t = this;
42071             this.adder.on('click', function(e) {
42072                 _t.fireEvent('adderclick', this, e);
42073             }, _t);
42074         }
42075         //var _t = this;
42076         //this.adder.on('click', this.onAddClick, _t);
42077         
42078         
42079         this.combo.on('select', function(cb, rec, ix) {
42080             this.addItem(rec.data);
42081             
42082             cb.setValue('');
42083             cb.el.dom.value = '';
42084             //cb.lastData = rec.data;
42085             // add to list
42086             
42087         }, this);
42088         
42089         
42090     },
42091     
42092     
42093     getName: function()
42094     {
42095         // returns hidden if it's set..
42096         if (!this.rendered) {return ''};
42097         return  this.hiddenName ? this.hiddenName : this.name;
42098         
42099     },
42100     
42101     
42102     onResize: function(w, h){
42103         
42104         return;
42105         // not sure if this is needed..
42106         //this.combo.onResize(w,h);
42107         
42108         if(typeof w != 'number'){
42109             // we do not handle it!?!?
42110             return;
42111         }
42112         var tw = this.combo.trigger.getWidth();
42113         tw += this.addicon ? this.addicon.getWidth() : 0;
42114         tw += this.editicon ? this.editicon.getWidth() : 0;
42115         var x = w - tw;
42116         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42117             
42118         this.combo.trigger.setStyle('left', '0px');
42119         
42120         if(this.list && this.listWidth === undefined){
42121             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42122             this.list.setWidth(lw);
42123             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42124         }
42125         
42126     
42127         
42128     },
42129     
42130     addItem: function(rec)
42131     {
42132         var valueField = this.combo.valueField;
42133         var displayField = this.combo.displayField;
42134         if (this.items.indexOfKey(rec[valueField]) > -1) {
42135             //console.log("GOT " + rec.data.id);
42136             return;
42137         }
42138         
42139         var x = new Roo.form.ComboBoxArray.Item({
42140             //id : rec[this.idField],
42141             data : rec,
42142             displayField : displayField ,
42143             tipField : displayField ,
42144             cb : this
42145         });
42146         // use the 
42147         this.items.add(rec[valueField],x);
42148         // add it before the element..
42149         this.updateHiddenEl();
42150         x.render(this.outerWrap, this.wrap.dom);
42151         // add the image handler..
42152     },
42153     
42154     updateHiddenEl : function()
42155     {
42156         this.validate();
42157         if (!this.hiddenEl) {
42158             return;
42159         }
42160         var ar = [];
42161         var idField = this.combo.valueField;
42162         
42163         this.items.each(function(f) {
42164             ar.push(f.data[idField]);
42165            
42166         });
42167         this.hiddenEl.dom.value = ar.join(',');
42168         this.validate();
42169     },
42170     
42171     reset : function()
42172     {
42173         this.items.clear();
42174         
42175         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42176            el.remove();
42177         });
42178         
42179         this.el.dom.value = '';
42180         if (this.hiddenEl) {
42181             this.hiddenEl.dom.value = '';
42182         }
42183         
42184     },
42185     getValue: function()
42186     {
42187         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42188     },
42189     setValue: function(v) // not a valid action - must use addItems..
42190     {
42191          
42192         this.reset();
42193         
42194         
42195         
42196         if (this.store.isLocal && (typeof(v) == 'string')) {
42197             // then we can use the store to find the values..
42198             // comma seperated at present.. this needs to allow JSON based encoding..
42199             this.hiddenEl.value  = v;
42200             var v_ar = [];
42201             Roo.each(v.split(','), function(k) {
42202                 Roo.log("CHECK " + this.valueField + ',' + k);
42203                 var li = this.store.query(this.valueField, k);
42204                 if (!li.length) {
42205                     return;
42206                 }
42207                 var add = {};
42208                 add[this.valueField] = k;
42209                 add[this.displayField] = li.item(0).data[this.displayField];
42210                 
42211                 this.addItem(add);
42212             }, this) 
42213              
42214         }
42215         if (typeof(v) == 'object' ) {
42216             // then let's assume it's an array of objects..
42217             Roo.each(v, function(l) {
42218                 this.addItem(l);
42219             }, this);
42220              
42221         }
42222         
42223         
42224     },
42225     setFromData: function(v)
42226     {
42227         // this recieves an object, if setValues is called.
42228         this.reset();
42229         this.el.dom.value = v[this.displayField];
42230         this.hiddenEl.dom.value = v[this.valueField];
42231         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42232             return;
42233         }
42234         var kv = v[this.valueField];
42235         var dv = v[this.displayField];
42236         kv = typeof(kv) != 'string' ? '' : kv;
42237         dv = typeof(dv) != 'string' ? '' : dv;
42238         
42239         
42240         var keys = kv.split(',');
42241         var display = dv.split(',');
42242         for (var i = 0 ; i < keys.length; i++) {
42243             
42244             add = {};
42245             add[this.valueField] = keys[i];
42246             add[this.displayField] = display[i];
42247             this.addItem(add);
42248         }
42249       
42250         
42251     },
42252     
42253     /**
42254      * Validates the combox array value
42255      * @return {Boolean} True if the value is valid, else false
42256      */
42257     validate : function(){
42258         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42259             this.clearInvalid();
42260             return true;
42261         }
42262         return false;
42263     },
42264     
42265     validateValue : function(value){
42266         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42267         
42268     },
42269     
42270     /*@
42271      * overide
42272      * 
42273      */
42274     isDirty : function() {
42275         if(this.disabled) {
42276             return false;
42277         }
42278         
42279         try {
42280             var d = Roo.decode(String(this.originalValue));
42281         } catch (e) {
42282             return String(this.getValue()) !== String(this.originalValue);
42283         }
42284         
42285         var originalValue = [];
42286         
42287         for (var i = 0; i < d.length; i++){
42288             originalValue.push(d[i][this.valueField]);
42289         }
42290         
42291         return String(this.getValue()) !== String(originalValue.join(','));
42292         
42293     }
42294     
42295 });
42296
42297
42298
42299 /**
42300  * @class Roo.form.ComboBoxArray.Item
42301  * @extends Roo.BoxComponent
42302  * A selected item in the list
42303  *  Fred [x]  Brian [x]  [Pick another |v]
42304  * 
42305  * @constructor
42306  * Create a new item.
42307  * @param {Object} config Configuration options
42308  */
42309  
42310 Roo.form.ComboBoxArray.Item = function(config) {
42311     config.id = Roo.id();
42312     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42313 }
42314
42315 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42316     data : {},
42317     cb: false,
42318     displayField : false,
42319     tipField : false,
42320     
42321     
42322     defaultAutoCreate : {
42323         tag: 'div',
42324         cls: 'x-cbarray-item',
42325         cn : [ 
42326             { tag: 'div' },
42327             {
42328                 tag: 'img',
42329                 width:16,
42330                 height : 16,
42331                 src : Roo.BLANK_IMAGE_URL ,
42332                 align: 'center'
42333             }
42334         ]
42335         
42336     },
42337     
42338  
42339     onRender : function(ct, position)
42340     {
42341         Roo.form.Field.superclass.onRender.call(this, ct, position);
42342         
42343         if(!this.el){
42344             var cfg = this.getAutoCreate();
42345             this.el = ct.createChild(cfg, position);
42346         }
42347         
42348         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42349         
42350         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42351             this.cb.renderer(this.data) :
42352             String.format('{0}',this.data[this.displayField]);
42353         
42354             
42355         this.el.child('div').dom.setAttribute('qtip',
42356                         String.format('{0}',this.data[this.tipField])
42357         );
42358         
42359         this.el.child('img').on('click', this.remove, this);
42360         
42361     },
42362    
42363     remove : function()
42364     {
42365         if(this.cb.disabled){
42366             return;
42367         }
42368         
42369         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42370             this.cb.items.remove(this);
42371             this.el.child('img').un('click', this.remove, this);
42372             this.el.remove();
42373             this.cb.updateHiddenEl();
42374
42375             this.cb.fireEvent('remove', this.cb, this);
42376         }
42377         
42378     }
42379 });/*
42380  * Based on:
42381  * Ext JS Library 1.1.1
42382  * Copyright(c) 2006-2007, Ext JS, LLC.
42383  *
42384  * Originally Released Under LGPL - original licence link has changed is not relivant.
42385  *
42386  * Fork - LGPL
42387  * <script type="text/javascript">
42388  */
42389 /**
42390  * @class Roo.form.Checkbox
42391  * @extends Roo.form.Field
42392  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
42393  * @constructor
42394  * Creates a new Checkbox
42395  * @param {Object} config Configuration options
42396  */
42397 Roo.form.Checkbox = function(config){
42398     Roo.form.Checkbox.superclass.constructor.call(this, config);
42399     this.addEvents({
42400         /**
42401          * @event check
42402          * Fires when the checkbox is checked or unchecked.
42403              * @param {Roo.form.Checkbox} this This checkbox
42404              * @param {Boolean} checked The new checked value
42405              */
42406         check : true
42407     });
42408 };
42409
42410 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
42411     /**
42412      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
42413      */
42414     focusClass : undefined,
42415     /**
42416      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
42417      */
42418     fieldClass: "x-form-field",
42419     /**
42420      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
42421      */
42422     checked: false,
42423     /**
42424      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
42425      * {tag: "input", type: "checkbox", autocomplete: "off"})
42426      */
42427     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
42428     /**
42429      * @cfg {String} boxLabel The text that appears beside the checkbox
42430      */
42431     boxLabel : "",
42432     /**
42433      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
42434      */  
42435     inputValue : '1',
42436     /**
42437      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
42438      */
42439      valueOff: '0', // value when not checked..
42440
42441     actionMode : 'viewEl', 
42442     //
42443     // private
42444     itemCls : 'x-menu-check-item x-form-item',
42445     groupClass : 'x-menu-group-item',
42446     inputType : 'hidden',
42447     
42448     
42449     inSetChecked: false, // check that we are not calling self...
42450     
42451     inputElement: false, // real input element?
42452     basedOn: false, // ????
42453     
42454     isFormField: true, // not sure where this is needed!!!!
42455
42456     onResize : function(){
42457         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
42458         if(!this.boxLabel){
42459             this.el.alignTo(this.wrap, 'c-c');
42460         }
42461     },
42462
42463     initEvents : function(){
42464         Roo.form.Checkbox.superclass.initEvents.call(this);
42465         this.el.on("click", this.onClick,  this);
42466         this.el.on("change", this.onClick,  this);
42467     },
42468
42469
42470     getResizeEl : function(){
42471         return this.wrap;
42472     },
42473
42474     getPositionEl : function(){
42475         return this.wrap;
42476     },
42477
42478     // private
42479     onRender : function(ct, position){
42480         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
42481         /*
42482         if(this.inputValue !== undefined){
42483             this.el.dom.value = this.inputValue;
42484         }
42485         */
42486         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
42487         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
42488         var viewEl = this.wrap.createChild({ 
42489             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
42490         this.viewEl = viewEl;   
42491         this.wrap.on('click', this.onClick,  this); 
42492         
42493         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
42494         this.el.on('propertychange', this.setFromHidden,  this);  //ie
42495         
42496         
42497         
42498         if(this.boxLabel){
42499             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
42500         //    viewEl.on('click', this.onClick,  this); 
42501         }
42502         //if(this.checked){
42503             this.setChecked(this.checked);
42504         //}else{
42505             //this.checked = this.el.dom;
42506         //}
42507
42508     },
42509
42510     // private
42511     initValue : Roo.emptyFn,
42512
42513     /**
42514      * Returns the checked state of the checkbox.
42515      * @return {Boolean} True if checked, else false
42516      */
42517     getValue : function(){
42518         if(this.el){
42519             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
42520         }
42521         return this.valueOff;
42522         
42523     },
42524
42525         // private
42526     onClick : function(){ 
42527         if (this.disabled) {
42528             return;
42529         }
42530         this.setChecked(!this.checked);
42531
42532         //if(this.el.dom.checked != this.checked){
42533         //    this.setValue(this.el.dom.checked);
42534        // }
42535     },
42536
42537     /**
42538      * Sets the checked state of the checkbox.
42539      * On is always based on a string comparison between inputValue and the param.
42540      * @param {Boolean/String} value - the value to set 
42541      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
42542      */
42543     setValue : function(v,suppressEvent){
42544         
42545         
42546         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
42547         //if(this.el && this.el.dom){
42548         //    this.el.dom.checked = this.checked;
42549         //    this.el.dom.defaultChecked = this.checked;
42550         //}
42551         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
42552         //this.fireEvent("check", this, this.checked);
42553     },
42554     // private..
42555     setChecked : function(state,suppressEvent)
42556     {
42557         if (this.inSetChecked) {
42558             this.checked = state;
42559             return;
42560         }
42561         
42562     
42563         if(this.wrap){
42564             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
42565         }
42566         this.checked = state;
42567         if(suppressEvent !== true){
42568             this.fireEvent('check', this, state);
42569         }
42570         this.inSetChecked = true;
42571         this.el.dom.value = state ? this.inputValue : this.valueOff;
42572         this.inSetChecked = false;
42573         
42574     },
42575     // handle setting of hidden value by some other method!!?!?
42576     setFromHidden: function()
42577     {
42578         if(!this.el){
42579             return;
42580         }
42581         //console.log("SET FROM HIDDEN");
42582         //alert('setFrom hidden');
42583         this.setValue(this.el.dom.value);
42584     },
42585     
42586     onDestroy : function()
42587     {
42588         if(this.viewEl){
42589             Roo.get(this.viewEl).remove();
42590         }
42591          
42592         Roo.form.Checkbox.superclass.onDestroy.call(this);
42593     },
42594     
42595     setBoxLabel : function(str)
42596     {
42597         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
42598     }
42599
42600 });/*
42601  * Based on:
42602  * Ext JS Library 1.1.1
42603  * Copyright(c) 2006-2007, Ext JS, LLC.
42604  *
42605  * Originally Released Under LGPL - original licence link has changed is not relivant.
42606  *
42607  * Fork - LGPL
42608  * <script type="text/javascript">
42609  */
42610  
42611 /**
42612  * @class Roo.form.Radio
42613  * @extends Roo.form.Checkbox
42614  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
42615  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
42616  * @constructor
42617  * Creates a new Radio
42618  * @param {Object} config Configuration options
42619  */
42620 Roo.form.Radio = function(){
42621     Roo.form.Radio.superclass.constructor.apply(this, arguments);
42622 };
42623 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
42624     inputType: 'radio',
42625
42626     /**
42627      * If this radio is part of a group, it will return the selected value
42628      * @return {String}
42629      */
42630     getGroupValue : function(){
42631         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
42632     },
42633     
42634     
42635     onRender : function(ct, position){
42636         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
42637         
42638         if(this.inputValue !== undefined){
42639             this.el.dom.value = this.inputValue;
42640         }
42641          
42642         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
42643         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
42644         //var viewEl = this.wrap.createChild({ 
42645         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
42646         //this.viewEl = viewEl;   
42647         //this.wrap.on('click', this.onClick,  this); 
42648         
42649         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
42650         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
42651         
42652         
42653         
42654         if(this.boxLabel){
42655             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
42656         //    viewEl.on('click', this.onClick,  this); 
42657         }
42658          if(this.checked){
42659             this.el.dom.checked =   'checked' ;
42660         }
42661          
42662     } 
42663     
42664     
42665 });//<script type="text/javascript">
42666
42667 /*
42668  * Based  Ext JS Library 1.1.1
42669  * Copyright(c) 2006-2007, Ext JS, LLC.
42670  * LGPL
42671  *
42672  */
42673  
42674 /**
42675  * @class Roo.HtmlEditorCore
42676  * @extends Roo.Component
42677  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
42678  *
42679  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
42680  */
42681
42682 Roo.HtmlEditorCore = function(config){
42683     
42684     
42685     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
42686     
42687     
42688     this.addEvents({
42689         /**
42690          * @event initialize
42691          * Fires when the editor is fully initialized (including the iframe)
42692          * @param {Roo.HtmlEditorCore} this
42693          */
42694         initialize: true,
42695         /**
42696          * @event activate
42697          * Fires when the editor is first receives the focus. Any insertion must wait
42698          * until after this event.
42699          * @param {Roo.HtmlEditorCore} this
42700          */
42701         activate: true,
42702          /**
42703          * @event beforesync
42704          * Fires before the textarea is updated with content from the editor iframe. Return false
42705          * to cancel the sync.
42706          * @param {Roo.HtmlEditorCore} this
42707          * @param {String} html
42708          */
42709         beforesync: true,
42710          /**
42711          * @event beforepush
42712          * Fires before the iframe editor is updated with content from the textarea. Return false
42713          * to cancel the push.
42714          * @param {Roo.HtmlEditorCore} this
42715          * @param {String} html
42716          */
42717         beforepush: true,
42718          /**
42719          * @event sync
42720          * Fires when the textarea is updated with content from the editor iframe.
42721          * @param {Roo.HtmlEditorCore} this
42722          * @param {String} html
42723          */
42724         sync: true,
42725          /**
42726          * @event push
42727          * Fires when the iframe editor is updated with content from the textarea.
42728          * @param {Roo.HtmlEditorCore} this
42729          * @param {String} html
42730          */
42731         push: true,
42732         
42733         /**
42734          * @event editorevent
42735          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
42736          * @param {Roo.HtmlEditorCore} this
42737          */
42738         editorevent: true
42739         
42740     });
42741     
42742     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
42743     
42744     // defaults : white / black...
42745     this.applyBlacklists();
42746     
42747     
42748     
42749 };
42750
42751
42752 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
42753
42754
42755      /**
42756      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
42757      */
42758     
42759     owner : false,
42760     
42761      /**
42762      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
42763      *                        Roo.resizable.
42764      */
42765     resizable : false,
42766      /**
42767      * @cfg {Number} height (in pixels)
42768      */   
42769     height: 300,
42770    /**
42771      * @cfg {Number} width (in pixels)
42772      */   
42773     width: 500,
42774     
42775     /**
42776      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
42777      * 
42778      */
42779     stylesheets: false,
42780     
42781     // id of frame..
42782     frameId: false,
42783     
42784     // private properties
42785     validationEvent : false,
42786     deferHeight: true,
42787     initialized : false,
42788     activated : false,
42789     sourceEditMode : false,
42790     onFocus : Roo.emptyFn,
42791     iframePad:3,
42792     hideMode:'offsets',
42793     
42794     clearUp: true,
42795     
42796     // blacklist + whitelisted elements..
42797     black: false,
42798     white: false,
42799      
42800     
42801
42802     /**
42803      * Protected method that will not generally be called directly. It
42804      * is called when the editor initializes the iframe with HTML contents. Override this method if you
42805      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
42806      */
42807     getDocMarkup : function(){
42808         // body styles..
42809         var st = '';
42810         
42811         // inherit styels from page...?? 
42812         if (this.stylesheets === false) {
42813             
42814             Roo.get(document.head).select('style').each(function(node) {
42815                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
42816             });
42817             
42818             Roo.get(document.head).select('link').each(function(node) { 
42819                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
42820             });
42821             
42822         } else if (!this.stylesheets.length) {
42823                 // simple..
42824                 st = '<style type="text/css">' +
42825                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
42826                    '</style>';
42827         } else { 
42828             
42829         }
42830         
42831         st +=  '<style type="text/css">' +
42832             'IMG { cursor: pointer } ' +
42833         '</style>';
42834
42835         
42836         return '<html><head>' + st  +
42837             //<style type="text/css">' +
42838             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
42839             //'</style>' +
42840             ' </head><body class="roo-htmleditor-body"></body></html>';
42841     },
42842
42843     // private
42844     onRender : function(ct, position)
42845     {
42846         var _t = this;
42847         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
42848         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
42849         
42850         
42851         this.el.dom.style.border = '0 none';
42852         this.el.dom.setAttribute('tabIndex', -1);
42853         this.el.addClass('x-hidden hide');
42854         
42855         
42856         
42857         if(Roo.isIE){ // fix IE 1px bogus margin
42858             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
42859         }
42860        
42861         
42862         this.frameId = Roo.id();
42863         
42864          
42865         
42866         var iframe = this.owner.wrap.createChild({
42867             tag: 'iframe',
42868             cls: 'form-control', // bootstrap..
42869             id: this.frameId,
42870             name: this.frameId,
42871             frameBorder : 'no',
42872             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
42873         }, this.el
42874         );
42875         
42876         
42877         this.iframe = iframe.dom;
42878
42879          this.assignDocWin();
42880         
42881         this.doc.designMode = 'on';
42882        
42883         this.doc.open();
42884         this.doc.write(this.getDocMarkup());
42885         this.doc.close();
42886
42887         
42888         var task = { // must defer to wait for browser to be ready
42889             run : function(){
42890                 //console.log("run task?" + this.doc.readyState);
42891                 this.assignDocWin();
42892                 if(this.doc.body || this.doc.readyState == 'complete'){
42893                     try {
42894                         this.doc.designMode="on";
42895                     } catch (e) {
42896                         return;
42897                     }
42898                     Roo.TaskMgr.stop(task);
42899                     this.initEditor.defer(10, this);
42900                 }
42901             },
42902             interval : 10,
42903             duration: 10000,
42904             scope: this
42905         };
42906         Roo.TaskMgr.start(task);
42907
42908     },
42909
42910     // private
42911     onResize : function(w, h)
42912     {
42913          Roo.log('resize: ' +w + ',' + h );
42914         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
42915         if(!this.iframe){
42916             return;
42917         }
42918         if(typeof w == 'number'){
42919             
42920             this.iframe.style.width = w + 'px';
42921         }
42922         if(typeof h == 'number'){
42923             
42924             this.iframe.style.height = h + 'px';
42925             if(this.doc){
42926                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
42927             }
42928         }
42929         
42930     },
42931
42932     /**
42933      * Toggles the editor between standard and source edit mode.
42934      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
42935      */
42936     toggleSourceEdit : function(sourceEditMode){
42937         
42938         this.sourceEditMode = sourceEditMode === true;
42939         
42940         if(this.sourceEditMode){
42941  
42942             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
42943             
42944         }else{
42945             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
42946             //this.iframe.className = '';
42947             this.deferFocus();
42948         }
42949         //this.setSize(this.owner.wrap.getSize());
42950         //this.fireEvent('editmodechange', this, this.sourceEditMode);
42951     },
42952
42953     
42954   
42955
42956     /**
42957      * Protected method that will not generally be called directly. If you need/want
42958      * custom HTML cleanup, this is the method you should override.
42959      * @param {String} html The HTML to be cleaned
42960      * return {String} The cleaned HTML
42961      */
42962     cleanHtml : function(html){
42963         html = String(html);
42964         if(html.length > 5){
42965             if(Roo.isSafari){ // strip safari nonsense
42966                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
42967             }
42968         }
42969         if(html == '&nbsp;'){
42970             html = '';
42971         }
42972         return html;
42973     },
42974
42975     /**
42976      * HTML Editor -> Textarea
42977      * Protected method that will not generally be called directly. Syncs the contents
42978      * of the editor iframe with the textarea.
42979      */
42980     syncValue : function(){
42981         if(this.initialized){
42982             var bd = (this.doc.body || this.doc.documentElement);
42983             //this.cleanUpPaste(); -- this is done else where and causes havoc..
42984             var html = bd.innerHTML;
42985             if(Roo.isSafari){
42986                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
42987                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
42988                 if(m && m[1]){
42989                     html = '<div style="'+m[0]+'">' + html + '</div>';
42990                 }
42991             }
42992             html = this.cleanHtml(html);
42993             // fix up the special chars.. normaly like back quotes in word...
42994             // however we do not want to do this with chinese..
42995             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
42996                 var cc = b.charCodeAt();
42997                 if (
42998                     (cc >= 0x4E00 && cc < 0xA000 ) ||
42999                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43000                     (cc >= 0xf900 && cc < 0xfb00 )
43001                 ) {
43002                         return b;
43003                 }
43004                 return "&#"+cc+";" 
43005             });
43006             if(this.owner.fireEvent('beforesync', this, html) !== false){
43007                 this.el.dom.value = html;
43008                 this.owner.fireEvent('sync', this, html);
43009             }
43010         }
43011     },
43012
43013     /**
43014      * Protected method that will not generally be called directly. Pushes the value of the textarea
43015      * into the iframe editor.
43016      */
43017     pushValue : function(){
43018         if(this.initialized){
43019             var v = this.el.dom.value.trim();
43020             
43021 //            if(v.length < 1){
43022 //                v = '&#160;';
43023 //            }
43024             
43025             if(this.owner.fireEvent('beforepush', this, v) !== false){
43026                 var d = (this.doc.body || this.doc.documentElement);
43027                 d.innerHTML = v;
43028                 this.cleanUpPaste();
43029                 this.el.dom.value = d.innerHTML;
43030                 this.owner.fireEvent('push', this, v);
43031             }
43032         }
43033     },
43034
43035     // private
43036     deferFocus : function(){
43037         this.focus.defer(10, this);
43038     },
43039
43040     // doc'ed in Field
43041     focus : function(){
43042         if(this.win && !this.sourceEditMode){
43043             this.win.focus();
43044         }else{
43045             this.el.focus();
43046         }
43047     },
43048     
43049     assignDocWin: function()
43050     {
43051         var iframe = this.iframe;
43052         
43053          if(Roo.isIE){
43054             this.doc = iframe.contentWindow.document;
43055             this.win = iframe.contentWindow;
43056         } else {
43057 //            if (!Roo.get(this.frameId)) {
43058 //                return;
43059 //            }
43060 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43061 //            this.win = Roo.get(this.frameId).dom.contentWindow;
43062             
43063             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
43064                 return;
43065             }
43066             
43067             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43068             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
43069         }
43070     },
43071     
43072     // private
43073     initEditor : function(){
43074         //console.log("INIT EDITOR");
43075         this.assignDocWin();
43076         
43077         
43078         
43079         this.doc.designMode="on";
43080         this.doc.open();
43081         this.doc.write(this.getDocMarkup());
43082         this.doc.close();
43083         
43084         var dbody = (this.doc.body || this.doc.documentElement);
43085         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
43086         // this copies styles from the containing element into thsi one..
43087         // not sure why we need all of this..
43088         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
43089         
43090         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
43091         //ss['background-attachment'] = 'fixed'; // w3c
43092         dbody.bgProperties = 'fixed'; // ie
43093         //Roo.DomHelper.applyStyles(dbody, ss);
43094         Roo.EventManager.on(this.doc, {
43095             //'mousedown': this.onEditorEvent,
43096             'mouseup': this.onEditorEvent,
43097             'dblclick': this.onEditorEvent,
43098             'click': this.onEditorEvent,
43099             'keyup': this.onEditorEvent,
43100             buffer:100,
43101             scope: this
43102         });
43103         if(Roo.isGecko){
43104             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
43105         }
43106         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
43107             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
43108         }
43109         this.initialized = true;
43110
43111         this.owner.fireEvent('initialize', this);
43112         this.pushValue();
43113     },
43114
43115     // private
43116     onDestroy : function(){
43117         
43118         
43119         
43120         if(this.rendered){
43121             
43122             //for (var i =0; i < this.toolbars.length;i++) {
43123             //    // fixme - ask toolbars for heights?
43124             //    this.toolbars[i].onDestroy();
43125            // }
43126             
43127             //this.wrap.dom.innerHTML = '';
43128             //this.wrap.remove();
43129         }
43130     },
43131
43132     // private
43133     onFirstFocus : function(){
43134         
43135         this.assignDocWin();
43136         
43137         
43138         this.activated = true;
43139          
43140     
43141         if(Roo.isGecko){ // prevent silly gecko errors
43142             this.win.focus();
43143             var s = this.win.getSelection();
43144             if(!s.focusNode || s.focusNode.nodeType != 3){
43145                 var r = s.getRangeAt(0);
43146                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
43147                 r.collapse(true);
43148                 this.deferFocus();
43149             }
43150             try{
43151                 this.execCmd('useCSS', true);
43152                 this.execCmd('styleWithCSS', false);
43153             }catch(e){}
43154         }
43155         this.owner.fireEvent('activate', this);
43156     },
43157
43158     // private
43159     adjustFont: function(btn){
43160         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
43161         //if(Roo.isSafari){ // safari
43162         //    adjust *= 2;
43163        // }
43164         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
43165         if(Roo.isSafari){ // safari
43166             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
43167             v =  (v < 10) ? 10 : v;
43168             v =  (v > 48) ? 48 : v;
43169             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
43170             
43171         }
43172         
43173         
43174         v = Math.max(1, v+adjust);
43175         
43176         this.execCmd('FontSize', v  );
43177     },
43178
43179     onEditorEvent : function(e)
43180     {
43181         this.owner.fireEvent('editorevent', this, e);
43182       //  this.updateToolbar();
43183         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
43184     },
43185
43186     insertTag : function(tg)
43187     {
43188         // could be a bit smarter... -> wrap the current selected tRoo..
43189         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
43190             
43191             range = this.createRange(this.getSelection());
43192             var wrappingNode = this.doc.createElement(tg.toLowerCase());
43193             wrappingNode.appendChild(range.extractContents());
43194             range.insertNode(wrappingNode);
43195
43196             return;
43197             
43198             
43199             
43200         }
43201         this.execCmd("formatblock",   tg);
43202         
43203     },
43204     
43205     insertText : function(txt)
43206     {
43207         
43208         
43209         var range = this.createRange();
43210         range.deleteContents();
43211                //alert(Sender.getAttribute('label'));
43212                
43213         range.insertNode(this.doc.createTextNode(txt));
43214     } ,
43215     
43216      
43217
43218     /**
43219      * Executes a Midas editor command on the editor document and performs necessary focus and
43220      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
43221      * @param {String} cmd The Midas command
43222      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
43223      */
43224     relayCmd : function(cmd, value){
43225         this.win.focus();
43226         this.execCmd(cmd, value);
43227         this.owner.fireEvent('editorevent', this);
43228         //this.updateToolbar();
43229         this.owner.deferFocus();
43230     },
43231
43232     /**
43233      * Executes a Midas editor command directly on the editor document.
43234      * For visual commands, you should use {@link #relayCmd} instead.
43235      * <b>This should only be called after the editor is initialized.</b>
43236      * @param {String} cmd The Midas command
43237      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
43238      */
43239     execCmd : function(cmd, value){
43240         this.doc.execCommand(cmd, false, value === undefined ? null : value);
43241         this.syncValue();
43242     },
43243  
43244  
43245    
43246     /**
43247      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
43248      * to insert tRoo.
43249      * @param {String} text | dom node.. 
43250      */
43251     insertAtCursor : function(text)
43252     {
43253         
43254         
43255         
43256         if(!this.activated){
43257             return;
43258         }
43259         /*
43260         if(Roo.isIE){
43261             this.win.focus();
43262             var r = this.doc.selection.createRange();
43263             if(r){
43264                 r.collapse(true);
43265                 r.pasteHTML(text);
43266                 this.syncValue();
43267                 this.deferFocus();
43268             
43269             }
43270             return;
43271         }
43272         */
43273         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
43274             this.win.focus();
43275             
43276             
43277             // from jquery ui (MIT licenced)
43278             var range, node;
43279             var win = this.win;
43280             
43281             if (win.getSelection && win.getSelection().getRangeAt) {
43282                 range = win.getSelection().getRangeAt(0);
43283                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
43284                 range.insertNode(node);
43285             } else if (win.document.selection && win.document.selection.createRange) {
43286                 // no firefox support
43287                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
43288                 win.document.selection.createRange().pasteHTML(txt);
43289             } else {
43290                 // no firefox support
43291                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
43292                 this.execCmd('InsertHTML', txt);
43293             } 
43294             
43295             this.syncValue();
43296             
43297             this.deferFocus();
43298         }
43299     },
43300  // private
43301     mozKeyPress : function(e){
43302         if(e.ctrlKey){
43303             var c = e.getCharCode(), cmd;
43304           
43305             if(c > 0){
43306                 c = String.fromCharCode(c).toLowerCase();
43307                 switch(c){
43308                     case 'b':
43309                         cmd = 'bold';
43310                         break;
43311                     case 'i':
43312                         cmd = 'italic';
43313                         break;
43314                     
43315                     case 'u':
43316                         cmd = 'underline';
43317                         break;
43318                     
43319                     case 'v':
43320                         this.cleanUpPaste.defer(100, this);
43321                         return;
43322                         
43323                 }
43324                 if(cmd){
43325                     this.win.focus();
43326                     this.execCmd(cmd);
43327                     this.deferFocus();
43328                     e.preventDefault();
43329                 }
43330                 
43331             }
43332         }
43333     },
43334
43335     // private
43336     fixKeys : function(){ // load time branching for fastest keydown performance
43337         if(Roo.isIE){
43338             return function(e){
43339                 var k = e.getKey(), r;
43340                 if(k == e.TAB){
43341                     e.stopEvent();
43342                     r = this.doc.selection.createRange();
43343                     if(r){
43344                         r.collapse(true);
43345                         r.pasteHTML('&#160;&#160;&#160;&#160;');
43346                         this.deferFocus();
43347                     }
43348                     return;
43349                 }
43350                 
43351                 if(k == e.ENTER){
43352                     r = this.doc.selection.createRange();
43353                     if(r){
43354                         var target = r.parentElement();
43355                         if(!target || target.tagName.toLowerCase() != 'li'){
43356                             e.stopEvent();
43357                             r.pasteHTML('<br />');
43358                             r.collapse(false);
43359                             r.select();
43360                         }
43361                     }
43362                 }
43363                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
43364                     this.cleanUpPaste.defer(100, this);
43365                     return;
43366                 }
43367                 
43368                 
43369             };
43370         }else if(Roo.isOpera){
43371             return function(e){
43372                 var k = e.getKey();
43373                 if(k == e.TAB){
43374                     e.stopEvent();
43375                     this.win.focus();
43376                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
43377                     this.deferFocus();
43378                 }
43379                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
43380                     this.cleanUpPaste.defer(100, this);
43381                     return;
43382                 }
43383                 
43384             };
43385         }else if(Roo.isSafari){
43386             return function(e){
43387                 var k = e.getKey();
43388                 
43389                 if(k == e.TAB){
43390                     e.stopEvent();
43391                     this.execCmd('InsertText','\t');
43392                     this.deferFocus();
43393                     return;
43394                 }
43395                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
43396                     this.cleanUpPaste.defer(100, this);
43397                     return;
43398                 }
43399                 
43400              };
43401         }
43402     }(),
43403     
43404     getAllAncestors: function()
43405     {
43406         var p = this.getSelectedNode();
43407         var a = [];
43408         if (!p) {
43409             a.push(p); // push blank onto stack..
43410             p = this.getParentElement();
43411         }
43412         
43413         
43414         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
43415             a.push(p);
43416             p = p.parentNode;
43417         }
43418         a.push(this.doc.body);
43419         return a;
43420     },
43421     lastSel : false,
43422     lastSelNode : false,
43423     
43424     
43425     getSelection : function() 
43426     {
43427         this.assignDocWin();
43428         return Roo.isIE ? this.doc.selection : this.win.getSelection();
43429     },
43430     
43431     getSelectedNode: function() 
43432     {
43433         // this may only work on Gecko!!!
43434         
43435         // should we cache this!!!!
43436         
43437         
43438         
43439          
43440         var range = this.createRange(this.getSelection()).cloneRange();
43441         
43442         if (Roo.isIE) {
43443             var parent = range.parentElement();
43444             while (true) {
43445                 var testRange = range.duplicate();
43446                 testRange.moveToElementText(parent);
43447                 if (testRange.inRange(range)) {
43448                     break;
43449                 }
43450                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
43451                     break;
43452                 }
43453                 parent = parent.parentElement;
43454             }
43455             return parent;
43456         }
43457         
43458         // is ancestor a text element.
43459         var ac =  range.commonAncestorContainer;
43460         if (ac.nodeType == 3) {
43461             ac = ac.parentNode;
43462         }
43463         
43464         var ar = ac.childNodes;
43465          
43466         var nodes = [];
43467         var other_nodes = [];
43468         var has_other_nodes = false;
43469         for (var i=0;i<ar.length;i++) {
43470             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
43471                 continue;
43472             }
43473             // fullly contained node.
43474             
43475             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
43476                 nodes.push(ar[i]);
43477                 continue;
43478             }
43479             
43480             // probably selected..
43481             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
43482                 other_nodes.push(ar[i]);
43483                 continue;
43484             }
43485             // outer..
43486             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
43487                 continue;
43488             }
43489             
43490             
43491             has_other_nodes = true;
43492         }
43493         if (!nodes.length && other_nodes.length) {
43494             nodes= other_nodes;
43495         }
43496         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
43497             return false;
43498         }
43499         
43500         return nodes[0];
43501     },
43502     createRange: function(sel)
43503     {
43504         // this has strange effects when using with 
43505         // top toolbar - not sure if it's a great idea.
43506         //this.editor.contentWindow.focus();
43507         if (typeof sel != "undefined") {
43508             try {
43509                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
43510             } catch(e) {
43511                 return this.doc.createRange();
43512             }
43513         } else {
43514             return this.doc.createRange();
43515         }
43516     },
43517     getParentElement: function()
43518     {
43519         
43520         this.assignDocWin();
43521         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
43522         
43523         var range = this.createRange(sel);
43524          
43525         try {
43526             var p = range.commonAncestorContainer;
43527             while (p.nodeType == 3) { // text node
43528                 p = p.parentNode;
43529             }
43530             return p;
43531         } catch (e) {
43532             return null;
43533         }
43534     
43535     },
43536     /***
43537      *
43538      * Range intersection.. the hard stuff...
43539      *  '-1' = before
43540      *  '0' = hits..
43541      *  '1' = after.
43542      *         [ -- selected range --- ]
43543      *   [fail]                        [fail]
43544      *
43545      *    basically..
43546      *      if end is before start or  hits it. fail.
43547      *      if start is after end or hits it fail.
43548      *
43549      *   if either hits (but other is outside. - then it's not 
43550      *   
43551      *    
43552      **/
43553     
43554     
43555     // @see http://www.thismuchiknow.co.uk/?p=64.
43556     rangeIntersectsNode : function(range, node)
43557     {
43558         var nodeRange = node.ownerDocument.createRange();
43559         try {
43560             nodeRange.selectNode(node);
43561         } catch (e) {
43562             nodeRange.selectNodeContents(node);
43563         }
43564     
43565         var rangeStartRange = range.cloneRange();
43566         rangeStartRange.collapse(true);
43567     
43568         var rangeEndRange = range.cloneRange();
43569         rangeEndRange.collapse(false);
43570     
43571         var nodeStartRange = nodeRange.cloneRange();
43572         nodeStartRange.collapse(true);
43573     
43574         var nodeEndRange = nodeRange.cloneRange();
43575         nodeEndRange.collapse(false);
43576     
43577         return rangeStartRange.compareBoundaryPoints(
43578                  Range.START_TO_START, nodeEndRange) == -1 &&
43579                rangeEndRange.compareBoundaryPoints(
43580                  Range.START_TO_START, nodeStartRange) == 1;
43581         
43582          
43583     },
43584     rangeCompareNode : function(range, node)
43585     {
43586         var nodeRange = node.ownerDocument.createRange();
43587         try {
43588             nodeRange.selectNode(node);
43589         } catch (e) {
43590             nodeRange.selectNodeContents(node);
43591         }
43592         
43593         
43594         range.collapse(true);
43595     
43596         nodeRange.collapse(true);
43597      
43598         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
43599         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
43600          
43601         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
43602         
43603         var nodeIsBefore   =  ss == 1;
43604         var nodeIsAfter    = ee == -1;
43605         
43606         if (nodeIsBefore && nodeIsAfter) {
43607             return 0; // outer
43608         }
43609         if (!nodeIsBefore && nodeIsAfter) {
43610             return 1; //right trailed.
43611         }
43612         
43613         if (nodeIsBefore && !nodeIsAfter) {
43614             return 2;  // left trailed.
43615         }
43616         // fully contined.
43617         return 3;
43618     },
43619
43620     // private? - in a new class?
43621     cleanUpPaste :  function()
43622     {
43623         // cleans up the whole document..
43624         Roo.log('cleanuppaste');
43625         
43626         this.cleanUpChildren(this.doc.body);
43627         var clean = this.cleanWordChars(this.doc.body.innerHTML);
43628         if (clean != this.doc.body.innerHTML) {
43629             this.doc.body.innerHTML = clean;
43630         }
43631         
43632     },
43633     
43634     cleanWordChars : function(input) {// change the chars to hex code
43635         var he = Roo.HtmlEditorCore;
43636         
43637         var output = input;
43638         Roo.each(he.swapCodes, function(sw) { 
43639             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
43640             
43641             output = output.replace(swapper, sw[1]);
43642         });
43643         
43644         return output;
43645     },
43646     
43647     
43648     cleanUpChildren : function (n)
43649     {
43650         if (!n.childNodes.length) {
43651             return;
43652         }
43653         for (var i = n.childNodes.length-1; i > -1 ; i--) {
43654            this.cleanUpChild(n.childNodes[i]);
43655         }
43656     },
43657     
43658     
43659         
43660     
43661     cleanUpChild : function (node)
43662     {
43663         var ed = this;
43664         //console.log(node);
43665         if (node.nodeName == "#text") {
43666             // clean up silly Windows -- stuff?
43667             return; 
43668         }
43669         if (node.nodeName == "#comment") {
43670             node.parentNode.removeChild(node);
43671             // clean up silly Windows -- stuff?
43672             return; 
43673         }
43674         var lcname = node.tagName.toLowerCase();
43675         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
43676         // whitelist of tags..
43677         
43678         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
43679             // remove node.
43680             node.parentNode.removeChild(node);
43681             return;
43682             
43683         }
43684         
43685         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
43686         
43687         // remove <a name=....> as rendering on yahoo mailer is borked with this.
43688         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
43689         
43690         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
43691         //    remove_keep_children = true;
43692         //}
43693         
43694         if (remove_keep_children) {
43695             this.cleanUpChildren(node);
43696             // inserts everything just before this node...
43697             while (node.childNodes.length) {
43698                 var cn = node.childNodes[0];
43699                 node.removeChild(cn);
43700                 node.parentNode.insertBefore(cn, node);
43701             }
43702             node.parentNode.removeChild(node);
43703             return;
43704         }
43705         
43706         if (!node.attributes || !node.attributes.length) {
43707             this.cleanUpChildren(node);
43708             return;
43709         }
43710         
43711         function cleanAttr(n,v)
43712         {
43713             
43714             if (v.match(/^\./) || v.match(/^\//)) {
43715                 return;
43716             }
43717             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/)) {
43718                 return;
43719             }
43720             if (v.match(/^#/)) {
43721                 return;
43722             }
43723 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
43724             node.removeAttribute(n);
43725             
43726         }
43727         
43728         var cwhite = this.cwhite;
43729         var cblack = this.cblack;
43730             
43731         function cleanStyle(n,v)
43732         {
43733             if (v.match(/expression/)) { //XSS?? should we even bother..
43734                 node.removeAttribute(n);
43735                 return;
43736             }
43737             
43738             var parts = v.split(/;/);
43739             var clean = [];
43740             
43741             Roo.each(parts, function(p) {
43742                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
43743                 if (!p.length) {
43744                     return true;
43745                 }
43746                 var l = p.split(':').shift().replace(/\s+/g,'');
43747                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
43748                 
43749                 if ( cwhite.length && cblack.indexOf(l) > -1) {
43750 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
43751                     //node.removeAttribute(n);
43752                     return true;
43753                 }
43754                 //Roo.log()
43755                 // only allow 'c whitelisted system attributes'
43756                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
43757 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
43758                     //node.removeAttribute(n);
43759                     return true;
43760                 }
43761                 
43762                 
43763                  
43764                 
43765                 clean.push(p);
43766                 return true;
43767             });
43768             if (clean.length) { 
43769                 node.setAttribute(n, clean.join(';'));
43770             } else {
43771                 node.removeAttribute(n);
43772             }
43773             
43774         }
43775         
43776         
43777         for (var i = node.attributes.length-1; i > -1 ; i--) {
43778             var a = node.attributes[i];
43779             //console.log(a);
43780             
43781             if (a.name.toLowerCase().substr(0,2)=='on')  {
43782                 node.removeAttribute(a.name);
43783                 continue;
43784             }
43785             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
43786                 node.removeAttribute(a.name);
43787                 continue;
43788             }
43789             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
43790                 cleanAttr(a.name,a.value); // fixme..
43791                 continue;
43792             }
43793             if (a.name == 'style') {
43794                 cleanStyle(a.name,a.value);
43795                 continue;
43796             }
43797             /// clean up MS crap..
43798             // tecnically this should be a list of valid class'es..
43799             
43800             
43801             if (a.name == 'class') {
43802                 if (a.value.match(/^Mso/)) {
43803                     node.className = '';
43804                 }
43805                 
43806                 if (a.value.match(/body/)) {
43807                     node.className = '';
43808                 }
43809                 continue;
43810             }
43811             
43812             // style cleanup!?
43813             // class cleanup?
43814             
43815         }
43816         
43817         
43818         this.cleanUpChildren(node);
43819         
43820         
43821     },
43822     
43823     /**
43824      * Clean up MS wordisms...
43825      */
43826     cleanWord : function(node)
43827     {
43828         
43829         
43830         if (!node) {
43831             this.cleanWord(this.doc.body);
43832             return;
43833         }
43834         if (node.nodeName == "#text") {
43835             // clean up silly Windows -- stuff?
43836             return; 
43837         }
43838         if (node.nodeName == "#comment") {
43839             node.parentNode.removeChild(node);
43840             // clean up silly Windows -- stuff?
43841             return; 
43842         }
43843         
43844         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
43845             node.parentNode.removeChild(node);
43846             return;
43847         }
43848         
43849         // remove - but keep children..
43850         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
43851             while (node.childNodes.length) {
43852                 var cn = node.childNodes[0];
43853                 node.removeChild(cn);
43854                 node.parentNode.insertBefore(cn, node);
43855             }
43856             node.parentNode.removeChild(node);
43857             this.iterateChildren(node, this.cleanWord);
43858             return;
43859         }
43860         // clean styles
43861         if (node.className.length) {
43862             
43863             var cn = node.className.split(/\W+/);
43864             var cna = [];
43865             Roo.each(cn, function(cls) {
43866                 if (cls.match(/Mso[a-zA-Z]+/)) {
43867                     return;
43868                 }
43869                 cna.push(cls);
43870             });
43871             node.className = cna.length ? cna.join(' ') : '';
43872             if (!cna.length) {
43873                 node.removeAttribute("class");
43874             }
43875         }
43876         
43877         if (node.hasAttribute("lang")) {
43878             node.removeAttribute("lang");
43879         }
43880         
43881         if (node.hasAttribute("style")) {
43882             
43883             var styles = node.getAttribute("style").split(";");
43884             var nstyle = [];
43885             Roo.each(styles, function(s) {
43886                 if (!s.match(/:/)) {
43887                     return;
43888                 }
43889                 var kv = s.split(":");
43890                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
43891                     return;
43892                 }
43893                 // what ever is left... we allow.
43894                 nstyle.push(s);
43895             });
43896             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
43897             if (!nstyle.length) {
43898                 node.removeAttribute('style');
43899             }
43900         }
43901         this.iterateChildren(node, this.cleanWord);
43902         
43903         
43904         
43905     },
43906     /**
43907      * iterateChildren of a Node, calling fn each time, using this as the scole..
43908      * @param {DomNode} node node to iterate children of.
43909      * @param {Function} fn method of this class to call on each item.
43910      */
43911     iterateChildren : function(node, fn)
43912     {
43913         if (!node.childNodes.length) {
43914                 return;
43915         }
43916         for (var i = node.childNodes.length-1; i > -1 ; i--) {
43917            fn.call(this, node.childNodes[i])
43918         }
43919     },
43920     
43921     
43922     /**
43923      * cleanTableWidths.
43924      *
43925      * Quite often pasting from word etc.. results in tables with column and widths.
43926      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
43927      *
43928      */
43929     cleanTableWidths : function(node)
43930     {
43931          
43932          
43933         if (!node) {
43934             this.cleanTableWidths(this.doc.body);
43935             return;
43936         }
43937         
43938         // ignore list...
43939         if (node.nodeName == "#text" || node.nodeName == "#comment") {
43940             return; 
43941         }
43942         Roo.log(node.tagName);
43943         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
43944             this.iterateChildren(node, this.cleanTableWidths);
43945             return;
43946         }
43947         if (node.hasAttribute('width')) {
43948             node.removeAttribute('width');
43949         }
43950         
43951          
43952         if (node.hasAttribute("style")) {
43953             // pretty basic...
43954             
43955             var styles = node.getAttribute("style").split(";");
43956             var nstyle = [];
43957             Roo.each(styles, function(s) {
43958                 if (!s.match(/:/)) {
43959                     return;
43960                 }
43961                 var kv = s.split(":");
43962                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
43963                     return;
43964                 }
43965                 // what ever is left... we allow.
43966                 nstyle.push(s);
43967             });
43968             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
43969             if (!nstyle.length) {
43970                 node.removeAttribute('style');
43971             }
43972         }
43973         
43974         this.iterateChildren(node, this.cleanTableWidths);
43975         
43976         
43977     },
43978     
43979     
43980     
43981     
43982     domToHTML : function(currentElement, depth, nopadtext) {
43983         
43984         depth = depth || 0;
43985         nopadtext = nopadtext || false;
43986     
43987         if (!currentElement) {
43988             return this.domToHTML(this.doc.body);
43989         }
43990         
43991         //Roo.log(currentElement);
43992         var j;
43993         var allText = false;
43994         var nodeName = currentElement.nodeName;
43995         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
43996         
43997         if  (nodeName == '#text') {
43998             
43999             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44000         }
44001         
44002         
44003         var ret = '';
44004         if (nodeName != 'BODY') {
44005              
44006             var i = 0;
44007             // Prints the node tagName, such as <A>, <IMG>, etc
44008             if (tagName) {
44009                 var attr = [];
44010                 for(i = 0; i < currentElement.attributes.length;i++) {
44011                     // quoting?
44012                     var aname = currentElement.attributes.item(i).name;
44013                     if (!currentElement.attributes.item(i).value.length) {
44014                         continue;
44015                     }
44016                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44017                 }
44018                 
44019                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44020             } 
44021             else {
44022                 
44023                 // eack
44024             }
44025         } else {
44026             tagName = false;
44027         }
44028         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
44029             return ret;
44030         }
44031         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
44032             nopadtext = true;
44033         }
44034         
44035         
44036         // Traverse the tree
44037         i = 0;
44038         var currentElementChild = currentElement.childNodes.item(i);
44039         var allText = true;
44040         var innerHTML  = '';
44041         lastnode = '';
44042         while (currentElementChild) {
44043             // Formatting code (indent the tree so it looks nice on the screen)
44044             var nopad = nopadtext;
44045             if (lastnode == 'SPAN') {
44046                 nopad  = true;
44047             }
44048             // text
44049             if  (currentElementChild.nodeName == '#text') {
44050                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
44051                 toadd = nopadtext ? toadd : toadd.trim();
44052                 if (!nopad && toadd.length > 80) {
44053                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
44054                 }
44055                 innerHTML  += toadd;
44056                 
44057                 i++;
44058                 currentElementChild = currentElement.childNodes.item(i);
44059                 lastNode = '';
44060                 continue;
44061             }
44062             allText = false;
44063             
44064             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
44065                 
44066             // Recursively traverse the tree structure of the child node
44067             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
44068             lastnode = currentElementChild.nodeName;
44069             i++;
44070             currentElementChild=currentElement.childNodes.item(i);
44071         }
44072         
44073         ret += innerHTML;
44074         
44075         if (!allText) {
44076                 // The remaining code is mostly for formatting the tree
44077             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
44078         }
44079         
44080         
44081         if (tagName) {
44082             ret+= "</"+tagName+">";
44083         }
44084         return ret;
44085         
44086     },
44087         
44088     applyBlacklists : function()
44089     {
44090         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
44091         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
44092         
44093         this.white = [];
44094         this.black = [];
44095         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
44096             if (b.indexOf(tag) > -1) {
44097                 return;
44098             }
44099             this.white.push(tag);
44100             
44101         }, this);
44102         
44103         Roo.each(w, function(tag) {
44104             if (b.indexOf(tag) > -1) {
44105                 return;
44106             }
44107             if (this.white.indexOf(tag) > -1) {
44108                 return;
44109             }
44110             this.white.push(tag);
44111             
44112         }, this);
44113         
44114         
44115         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
44116             if (w.indexOf(tag) > -1) {
44117                 return;
44118             }
44119             this.black.push(tag);
44120             
44121         }, this);
44122         
44123         Roo.each(b, function(tag) {
44124             if (w.indexOf(tag) > -1) {
44125                 return;
44126             }
44127             if (this.black.indexOf(tag) > -1) {
44128                 return;
44129             }
44130             this.black.push(tag);
44131             
44132         }, this);
44133         
44134         
44135         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
44136         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
44137         
44138         this.cwhite = [];
44139         this.cblack = [];
44140         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
44141             if (b.indexOf(tag) > -1) {
44142                 return;
44143             }
44144             this.cwhite.push(tag);
44145             
44146         }, this);
44147         
44148         Roo.each(w, function(tag) {
44149             if (b.indexOf(tag) > -1) {
44150                 return;
44151             }
44152             if (this.cwhite.indexOf(tag) > -1) {
44153                 return;
44154             }
44155             this.cwhite.push(tag);
44156             
44157         }, this);
44158         
44159         
44160         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
44161             if (w.indexOf(tag) > -1) {
44162                 return;
44163             }
44164             this.cblack.push(tag);
44165             
44166         }, this);
44167         
44168         Roo.each(b, function(tag) {
44169             if (w.indexOf(tag) > -1) {
44170                 return;
44171             }
44172             if (this.cblack.indexOf(tag) > -1) {
44173                 return;
44174             }
44175             this.cblack.push(tag);
44176             
44177         }, this);
44178     },
44179     
44180     setStylesheets : function(stylesheets)
44181     {
44182         if(typeof(stylesheets) == 'string'){
44183             Roo.get(this.iframe.contentDocument.head).createChild({
44184                 tag : 'link',
44185                 rel : 'stylesheet',
44186                 type : 'text/css',
44187                 href : stylesheets
44188             });
44189             
44190             return;
44191         }
44192         var _this = this;
44193      
44194         Roo.each(stylesheets, function(s) {
44195             if(!s.length){
44196                 return;
44197             }
44198             
44199             Roo.get(_this.iframe.contentDocument.head).createChild({
44200                 tag : 'link',
44201                 rel : 'stylesheet',
44202                 type : 'text/css',
44203                 href : s
44204             });
44205         });
44206
44207         
44208     },
44209     
44210     removeStylesheets : function()
44211     {
44212         var _this = this;
44213         
44214         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
44215             s.remove();
44216         });
44217     }
44218     
44219     // hide stuff that is not compatible
44220     /**
44221      * @event blur
44222      * @hide
44223      */
44224     /**
44225      * @event change
44226      * @hide
44227      */
44228     /**
44229      * @event focus
44230      * @hide
44231      */
44232     /**
44233      * @event specialkey
44234      * @hide
44235      */
44236     /**
44237      * @cfg {String} fieldClass @hide
44238      */
44239     /**
44240      * @cfg {String} focusClass @hide
44241      */
44242     /**
44243      * @cfg {String} autoCreate @hide
44244      */
44245     /**
44246      * @cfg {String} inputType @hide
44247      */
44248     /**
44249      * @cfg {String} invalidClass @hide
44250      */
44251     /**
44252      * @cfg {String} invalidText @hide
44253      */
44254     /**
44255      * @cfg {String} msgFx @hide
44256      */
44257     /**
44258      * @cfg {String} validateOnBlur @hide
44259      */
44260 });
44261
44262 Roo.HtmlEditorCore.white = [
44263         'area', 'br', 'img', 'input', 'hr', 'wbr',
44264         
44265        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
44266        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
44267        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
44268        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
44269        'table',   'ul',         'xmp', 
44270        
44271        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
44272       'thead',   'tr', 
44273      
44274       'dir', 'menu', 'ol', 'ul', 'dl',
44275        
44276       'embed',  'object'
44277 ];
44278
44279
44280 Roo.HtmlEditorCore.black = [
44281     //    'embed',  'object', // enable - backend responsiblity to clean thiese
44282         'applet', // 
44283         'base',   'basefont', 'bgsound', 'blink',  'body', 
44284         'frame',  'frameset', 'head',    'html',   'ilayer', 
44285         'iframe', 'layer',  'link',     'meta',    'object',   
44286         'script', 'style' ,'title',  'xml' // clean later..
44287 ];
44288 Roo.HtmlEditorCore.clean = [
44289     'script', 'style', 'title', 'xml'
44290 ];
44291 Roo.HtmlEditorCore.remove = [
44292     'font'
44293 ];
44294 // attributes..
44295
44296 Roo.HtmlEditorCore.ablack = [
44297     'on'
44298 ];
44299     
44300 Roo.HtmlEditorCore.aclean = [ 
44301     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
44302 ];
44303
44304 // protocols..
44305 Roo.HtmlEditorCore.pwhite= [
44306         'http',  'https',  'mailto'
44307 ];
44308
44309 // white listed style attributes.
44310 Roo.HtmlEditorCore.cwhite= [
44311       //  'text-align', /// default is to allow most things..
44312       
44313          
44314 //        'font-size'//??
44315 ];
44316
44317 // black listed style attributes.
44318 Roo.HtmlEditorCore.cblack= [
44319       //  'font-size' -- this can be set by the project 
44320 ];
44321
44322
44323 Roo.HtmlEditorCore.swapCodes   =[ 
44324     [    8211, "--" ], 
44325     [    8212, "--" ], 
44326     [    8216,  "'" ],  
44327     [    8217, "'" ],  
44328     [    8220, '"' ],  
44329     [    8221, '"' ],  
44330     [    8226, "*" ],  
44331     [    8230, "..." ]
44332 ]; 
44333
44334     //<script type="text/javascript">
44335
44336 /*
44337  * Ext JS Library 1.1.1
44338  * Copyright(c) 2006-2007, Ext JS, LLC.
44339  * Licence LGPL
44340  * 
44341  */
44342  
44343  
44344 Roo.form.HtmlEditor = function(config){
44345     
44346     
44347     
44348     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
44349     
44350     if (!this.toolbars) {
44351         this.toolbars = [];
44352     }
44353     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
44354     
44355     
44356 };
44357
44358 /**
44359  * @class Roo.form.HtmlEditor
44360  * @extends Roo.form.Field
44361  * Provides a lightweight HTML Editor component.
44362  *
44363  * This has been tested on Fireforx / Chrome.. IE may not be so great..
44364  * 
44365  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
44366  * supported by this editor.</b><br/><br/>
44367  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
44368  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
44369  */
44370 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
44371     /**
44372      * @cfg {Boolean} clearUp
44373      */
44374     clearUp : true,
44375       /**
44376      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
44377      */
44378     toolbars : false,
44379    
44380      /**
44381      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
44382      *                        Roo.resizable.
44383      */
44384     resizable : false,
44385      /**
44386      * @cfg {Number} height (in pixels)
44387      */   
44388     height: 300,
44389    /**
44390      * @cfg {Number} width (in pixels)
44391      */   
44392     width: 500,
44393     
44394     /**
44395      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
44396      * 
44397      */
44398     stylesheets: false,
44399     
44400     
44401      /**
44402      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
44403      * 
44404      */
44405     cblack: false,
44406     /**
44407      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
44408      * 
44409      */
44410     cwhite: false,
44411     
44412      /**
44413      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
44414      * 
44415      */
44416     black: false,
44417     /**
44418      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
44419      * 
44420      */
44421     white: false,
44422     
44423     // id of frame..
44424     frameId: false,
44425     
44426     // private properties
44427     validationEvent : false,
44428     deferHeight: true,
44429     initialized : false,
44430     activated : false,
44431     
44432     onFocus : Roo.emptyFn,
44433     iframePad:3,
44434     hideMode:'offsets',
44435     
44436     actionMode : 'container', // defaults to hiding it...
44437     
44438     defaultAutoCreate : { // modified by initCompnoent..
44439         tag: "textarea",
44440         style:"width:500px;height:300px;",
44441         autocomplete: "new-password"
44442     },
44443
44444     // private
44445     initComponent : function(){
44446         this.addEvents({
44447             /**
44448              * @event initialize
44449              * Fires when the editor is fully initialized (including the iframe)
44450              * @param {HtmlEditor} this
44451              */
44452             initialize: true,
44453             /**
44454              * @event activate
44455              * Fires when the editor is first receives the focus. Any insertion must wait
44456              * until after this event.
44457              * @param {HtmlEditor} this
44458              */
44459             activate: true,
44460              /**
44461              * @event beforesync
44462              * Fires before the textarea is updated with content from the editor iframe. Return false
44463              * to cancel the sync.
44464              * @param {HtmlEditor} this
44465              * @param {String} html
44466              */
44467             beforesync: true,
44468              /**
44469              * @event beforepush
44470              * Fires before the iframe editor is updated with content from the textarea. Return false
44471              * to cancel the push.
44472              * @param {HtmlEditor} this
44473              * @param {String} html
44474              */
44475             beforepush: true,
44476              /**
44477              * @event sync
44478              * Fires when the textarea is updated with content from the editor iframe.
44479              * @param {HtmlEditor} this
44480              * @param {String} html
44481              */
44482             sync: true,
44483              /**
44484              * @event push
44485              * Fires when the iframe editor is updated with content from the textarea.
44486              * @param {HtmlEditor} this
44487              * @param {String} html
44488              */
44489             push: true,
44490              /**
44491              * @event editmodechange
44492              * Fires when the editor switches edit modes
44493              * @param {HtmlEditor} this
44494              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
44495              */
44496             editmodechange: true,
44497             /**
44498              * @event editorevent
44499              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
44500              * @param {HtmlEditor} this
44501              */
44502             editorevent: true,
44503             /**
44504              * @event firstfocus
44505              * Fires when on first focus - needed by toolbars..
44506              * @param {HtmlEditor} this
44507              */
44508             firstfocus: true,
44509             /**
44510              * @event autosave
44511              * Auto save the htmlEditor value as a file into Events
44512              * @param {HtmlEditor} this
44513              */
44514             autosave: true,
44515             /**
44516              * @event savedpreview
44517              * preview the saved version of htmlEditor
44518              * @param {HtmlEditor} this
44519              */
44520             savedpreview: true,
44521             
44522             /**
44523             * @event stylesheetsclick
44524             * Fires when press the Sytlesheets button
44525             * @param {Roo.HtmlEditorCore} this
44526             */
44527             stylesheetsclick: true
44528         });
44529         this.defaultAutoCreate =  {
44530             tag: "textarea",
44531             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
44532             autocomplete: "new-password"
44533         };
44534     },
44535
44536     /**
44537      * Protected method that will not generally be called directly. It
44538      * is called when the editor creates its toolbar. Override this method if you need to
44539      * add custom toolbar buttons.
44540      * @param {HtmlEditor} editor
44541      */
44542     createToolbar : function(editor){
44543         Roo.log("create toolbars");
44544         if (!editor.toolbars || !editor.toolbars.length) {
44545             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
44546         }
44547         
44548         for (var i =0 ; i < editor.toolbars.length;i++) {
44549             editor.toolbars[i] = Roo.factory(
44550                     typeof(editor.toolbars[i]) == 'string' ?
44551                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
44552                 Roo.form.HtmlEditor);
44553             editor.toolbars[i].init(editor);
44554         }
44555          
44556         
44557     },
44558
44559      
44560     // private
44561     onRender : function(ct, position)
44562     {
44563         var _t = this;
44564         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
44565         
44566         this.wrap = this.el.wrap({
44567             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
44568         });
44569         
44570         this.editorcore.onRender(ct, position);
44571          
44572         if (this.resizable) {
44573             this.resizeEl = new Roo.Resizable(this.wrap, {
44574                 pinned : true,
44575                 wrap: true,
44576                 dynamic : true,
44577                 minHeight : this.height,
44578                 height: this.height,
44579                 handles : this.resizable,
44580                 width: this.width,
44581                 listeners : {
44582                     resize : function(r, w, h) {
44583                         _t.onResize(w,h); // -something
44584                     }
44585                 }
44586             });
44587             
44588         }
44589         this.createToolbar(this);
44590        
44591         
44592         if(!this.width){
44593             this.setSize(this.wrap.getSize());
44594         }
44595         if (this.resizeEl) {
44596             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
44597             // should trigger onReize..
44598         }
44599         
44600         this.keyNav = new Roo.KeyNav(this.el, {
44601             
44602             "tab" : function(e){
44603                 e.preventDefault();
44604                 
44605                 var value = this.getValue();
44606                 
44607                 var start = this.el.dom.selectionStart;
44608                 var end = this.el.dom.selectionEnd;
44609                 
44610                 if(!e.shiftKey){
44611                     
44612                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
44613                     this.el.dom.setSelectionRange(end + 1, end + 1);
44614                     return;
44615                 }
44616                 
44617                 var f = value.substring(0, start).split("\t");
44618                 
44619                 if(f.pop().length != 0){
44620                     return;
44621                 }
44622                 
44623                 this.setValue(f.join("\t") + value.substring(end));
44624                 this.el.dom.setSelectionRange(start - 1, start - 1);
44625                 
44626             },
44627             
44628             "home" : function(e){
44629                 e.preventDefault();
44630                 
44631                 var curr = this.el.dom.selectionStart;
44632                 var lines = this.getValue().split("\n");
44633                 
44634                 if(!lines.length){
44635                     return;
44636                 }
44637                 
44638                 if(e.ctrlKey){
44639                     this.el.dom.setSelectionRange(0, 0);
44640                     return;
44641                 }
44642                 
44643                 var pos = 0;
44644                 
44645                 for (var i = 0; i < lines.length;i++) {
44646                     pos += lines[i].length;
44647                     
44648                     if(i != 0){
44649                         pos += 1;
44650                     }
44651                     
44652                     if(pos < curr){
44653                         continue;
44654                     }
44655                     
44656                     pos -= lines[i].length;
44657                     
44658                     break;
44659                 }
44660                 
44661                 if(!e.shiftKey){
44662                     this.el.dom.setSelectionRange(pos, pos);
44663                     return;
44664                 }
44665                 
44666                 this.el.dom.selectionStart = pos;
44667                 this.el.dom.selectionEnd = curr;
44668             },
44669             
44670             "end" : function(e){
44671                 e.preventDefault();
44672                 
44673                 var curr = this.el.dom.selectionStart;
44674                 var lines = this.getValue().split("\n");
44675                 
44676                 if(!lines.length){
44677                     return;
44678                 }
44679                 
44680                 if(e.ctrlKey){
44681                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
44682                     return;
44683                 }
44684                 
44685                 var pos = 0;
44686                 
44687                 for (var i = 0; i < lines.length;i++) {
44688                     
44689                     pos += lines[i].length;
44690                     
44691                     if(i != 0){
44692                         pos += 1;
44693                     }
44694                     
44695                     if(pos < curr){
44696                         continue;
44697                     }
44698                     
44699                     break;
44700                 }
44701                 
44702                 if(!e.shiftKey){
44703                     this.el.dom.setSelectionRange(pos, pos);
44704                     return;
44705                 }
44706                 
44707                 this.el.dom.selectionStart = curr;
44708                 this.el.dom.selectionEnd = pos;
44709             },
44710
44711             scope : this,
44712
44713             doRelay : function(foo, bar, hname){
44714                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
44715             },
44716
44717             forceKeyDown: true
44718         });
44719         
44720 //        if(this.autosave && this.w){
44721 //            this.autoSaveFn = setInterval(this.autosave, 1000);
44722 //        }
44723     },
44724
44725     // private
44726     onResize : function(w, h)
44727     {
44728         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
44729         var ew = false;
44730         var eh = false;
44731         
44732         if(this.el ){
44733             if(typeof w == 'number'){
44734                 var aw = w - this.wrap.getFrameWidth('lr');
44735                 this.el.setWidth(this.adjustWidth('textarea', aw));
44736                 ew = aw;
44737             }
44738             if(typeof h == 'number'){
44739                 var tbh = 0;
44740                 for (var i =0; i < this.toolbars.length;i++) {
44741                     // fixme - ask toolbars for heights?
44742                     tbh += this.toolbars[i].tb.el.getHeight();
44743                     if (this.toolbars[i].footer) {
44744                         tbh += this.toolbars[i].footer.el.getHeight();
44745                     }
44746                 }
44747                 
44748                 
44749                 
44750                 
44751                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
44752                 ah -= 5; // knock a few pixes off for look..
44753 //                Roo.log(ah);
44754                 this.el.setHeight(this.adjustWidth('textarea', ah));
44755                 var eh = ah;
44756             }
44757         }
44758         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
44759         this.editorcore.onResize(ew,eh);
44760         
44761     },
44762
44763     /**
44764      * Toggles the editor between standard and source edit mode.
44765      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
44766      */
44767     toggleSourceEdit : function(sourceEditMode)
44768     {
44769         this.editorcore.toggleSourceEdit(sourceEditMode);
44770         
44771         if(this.editorcore.sourceEditMode){
44772             Roo.log('editor - showing textarea');
44773             
44774 //            Roo.log('in');
44775 //            Roo.log(this.syncValue());
44776             this.editorcore.syncValue();
44777             this.el.removeClass('x-hidden');
44778             this.el.dom.removeAttribute('tabIndex');
44779             this.el.focus();
44780             
44781             for (var i = 0; i < this.toolbars.length; i++) {
44782                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
44783                     this.toolbars[i].tb.hide();
44784                     this.toolbars[i].footer.hide();
44785                 }
44786             }
44787             
44788         }else{
44789             Roo.log('editor - hiding textarea');
44790 //            Roo.log('out')
44791 //            Roo.log(this.pushValue()); 
44792             this.editorcore.pushValue();
44793             
44794             this.el.addClass('x-hidden');
44795             this.el.dom.setAttribute('tabIndex', -1);
44796             
44797             for (var i = 0; i < this.toolbars.length; i++) {
44798                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
44799                     this.toolbars[i].tb.show();
44800                     this.toolbars[i].footer.show();
44801                 }
44802             }
44803             
44804             //this.deferFocus();
44805         }
44806         
44807         this.setSize(this.wrap.getSize());
44808         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
44809         
44810         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
44811     },
44812  
44813     // private (for BoxComponent)
44814     adjustSize : Roo.BoxComponent.prototype.adjustSize,
44815
44816     // private (for BoxComponent)
44817     getResizeEl : function(){
44818         return this.wrap;
44819     },
44820
44821     // private (for BoxComponent)
44822     getPositionEl : function(){
44823         return this.wrap;
44824     },
44825
44826     // private
44827     initEvents : function(){
44828         this.originalValue = this.getValue();
44829     },
44830
44831     /**
44832      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
44833      * @method
44834      */
44835     markInvalid : Roo.emptyFn,
44836     /**
44837      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
44838      * @method
44839      */
44840     clearInvalid : Roo.emptyFn,
44841
44842     setValue : function(v){
44843         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
44844         this.editorcore.pushValue();
44845     },
44846
44847      
44848     // private
44849     deferFocus : function(){
44850         this.focus.defer(10, this);
44851     },
44852
44853     // doc'ed in Field
44854     focus : function(){
44855         this.editorcore.focus();
44856         
44857     },
44858       
44859
44860     // private
44861     onDestroy : function(){
44862         
44863         
44864         
44865         if(this.rendered){
44866             
44867             for (var i =0; i < this.toolbars.length;i++) {
44868                 // fixme - ask toolbars for heights?
44869                 this.toolbars[i].onDestroy();
44870             }
44871             
44872             this.wrap.dom.innerHTML = '';
44873             this.wrap.remove();
44874         }
44875     },
44876
44877     // private
44878     onFirstFocus : function(){
44879         //Roo.log("onFirstFocus");
44880         this.editorcore.onFirstFocus();
44881          for (var i =0; i < this.toolbars.length;i++) {
44882             this.toolbars[i].onFirstFocus();
44883         }
44884         
44885     },
44886     
44887     // private
44888     syncValue : function()
44889     {
44890         this.editorcore.syncValue();
44891     },
44892     
44893     pushValue : function()
44894     {
44895         this.editorcore.pushValue();
44896     },
44897     
44898     setStylesheets : function(stylesheets)
44899     {
44900         this.editorcore.setStylesheets(stylesheets);
44901     },
44902     
44903     removeStylesheets : function()
44904     {
44905         this.editorcore.removeStylesheets();
44906     }
44907      
44908     
44909     // hide stuff that is not compatible
44910     /**
44911      * @event blur
44912      * @hide
44913      */
44914     /**
44915      * @event change
44916      * @hide
44917      */
44918     /**
44919      * @event focus
44920      * @hide
44921      */
44922     /**
44923      * @event specialkey
44924      * @hide
44925      */
44926     /**
44927      * @cfg {String} fieldClass @hide
44928      */
44929     /**
44930      * @cfg {String} focusClass @hide
44931      */
44932     /**
44933      * @cfg {String} autoCreate @hide
44934      */
44935     /**
44936      * @cfg {String} inputType @hide
44937      */
44938     /**
44939      * @cfg {String} invalidClass @hide
44940      */
44941     /**
44942      * @cfg {String} invalidText @hide
44943      */
44944     /**
44945      * @cfg {String} msgFx @hide
44946      */
44947     /**
44948      * @cfg {String} validateOnBlur @hide
44949      */
44950 });
44951  
44952     // <script type="text/javascript">
44953 /*
44954  * Based on
44955  * Ext JS Library 1.1.1
44956  * Copyright(c) 2006-2007, Ext JS, LLC.
44957  *  
44958  
44959  */
44960
44961 /**
44962  * @class Roo.form.HtmlEditorToolbar1
44963  * Basic Toolbar
44964  * 
44965  * Usage:
44966  *
44967  new Roo.form.HtmlEditor({
44968     ....
44969     toolbars : [
44970         new Roo.form.HtmlEditorToolbar1({
44971             disable : { fonts: 1 , format: 1, ..., ... , ...],
44972             btns : [ .... ]
44973         })
44974     }
44975      
44976  * 
44977  * @cfg {Object} disable List of elements to disable..
44978  * @cfg {Array} btns List of additional buttons.
44979  * 
44980  * 
44981  * NEEDS Extra CSS? 
44982  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
44983  */
44984  
44985 Roo.form.HtmlEditor.ToolbarStandard = function(config)
44986 {
44987     
44988     Roo.apply(this, config);
44989     
44990     // default disabled, based on 'good practice'..
44991     this.disable = this.disable || {};
44992     Roo.applyIf(this.disable, {
44993         fontSize : true,
44994         colors : true,
44995         specialElements : true
44996     });
44997     
44998     
44999     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45000     // dont call parent... till later.
45001 }
45002
45003 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45004     
45005     tb: false,
45006     
45007     rendered: false,
45008     
45009     editor : false,
45010     editorcore : false,
45011     /**
45012      * @cfg {Object} disable  List of toolbar elements to disable
45013          
45014      */
45015     disable : false,
45016     
45017     
45018      /**
45019      * @cfg {String} createLinkText The default text for the create link prompt
45020      */
45021     createLinkText : 'Please enter the URL for the link:',
45022     /**
45023      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
45024      */
45025     defaultLinkValue : 'http:/'+'/',
45026    
45027     
45028       /**
45029      * @cfg {Array} fontFamilies An array of available font families
45030      */
45031     fontFamilies : [
45032         'Arial',
45033         'Courier New',
45034         'Tahoma',
45035         'Times New Roman',
45036         'Verdana'
45037     ],
45038     
45039     specialChars : [
45040            "&#169;",
45041           "&#174;",     
45042           "&#8482;",    
45043           "&#163;" ,    
45044          // "&#8212;",    
45045           "&#8230;",    
45046           "&#247;" ,    
45047         //  "&#225;" ,     ?? a acute?
45048            "&#8364;"    , //Euro
45049        //   "&#8220;"    ,
45050         //  "&#8221;"    ,
45051         //  "&#8226;"    ,
45052           "&#176;"  //   , // degrees
45053
45054          // "&#233;"     , // e ecute
45055          // "&#250;"     , // u ecute?
45056     ],
45057     
45058     specialElements : [
45059         {
45060             text: "Insert Table",
45061             xtype: 'MenuItem',
45062             xns : Roo.Menu,
45063             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
45064                 
45065         },
45066         {    
45067             text: "Insert Image",
45068             xtype: 'MenuItem',
45069             xns : Roo.Menu,
45070             ihtml : '<img src="about:blank"/>'
45071             
45072         }
45073         
45074          
45075     ],
45076     
45077     
45078     inputElements : [ 
45079             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
45080             "input:submit", "input:button", "select", "textarea", "label" ],
45081     formats : [
45082         ["p"] ,  
45083         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
45084         ["pre"],[ "code"], 
45085         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
45086         ['div'],['span']
45087     ],
45088     
45089     cleanStyles : [
45090         "font-size"
45091     ],
45092      /**
45093      * @cfg {String} defaultFont default font to use.
45094      */
45095     defaultFont: 'tahoma',
45096    
45097     fontSelect : false,
45098     
45099     
45100     formatCombo : false,
45101     
45102     init : function(editor)
45103     {
45104         this.editor = editor;
45105         this.editorcore = editor.editorcore ? editor.editorcore : editor;
45106         var editorcore = this.editorcore;
45107         
45108         var _t = this;
45109         
45110         var fid = editorcore.frameId;
45111         var etb = this;
45112         function btn(id, toggle, handler){
45113             var xid = fid + '-'+ id ;
45114             return {
45115                 id : xid,
45116                 cmd : id,
45117                 cls : 'x-btn-icon x-edit-'+id,
45118                 enableToggle:toggle !== false,
45119                 scope: _t, // was editor...
45120                 handler:handler||_t.relayBtnCmd,
45121                 clickEvent:'mousedown',
45122                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
45123                 tabIndex:-1
45124             };
45125         }
45126         
45127         
45128         
45129         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
45130         this.tb = tb;
45131          // stop form submits
45132         tb.el.on('click', function(e){
45133             e.preventDefault(); // what does this do?
45134         });
45135
45136         if(!this.disable.font) { // && !Roo.isSafari){
45137             /* why no safari for fonts 
45138             editor.fontSelect = tb.el.createChild({
45139                 tag:'select',
45140                 tabIndex: -1,
45141                 cls:'x-font-select',
45142                 html: this.createFontOptions()
45143             });
45144             
45145             editor.fontSelect.on('change', function(){
45146                 var font = editor.fontSelect.dom.value;
45147                 editor.relayCmd('fontname', font);
45148                 editor.deferFocus();
45149             }, editor);
45150             
45151             tb.add(
45152                 editor.fontSelect.dom,
45153                 '-'
45154             );
45155             */
45156             
45157         };
45158         if(!this.disable.formats){
45159             this.formatCombo = new Roo.form.ComboBox({
45160                 store: new Roo.data.SimpleStore({
45161                     id : 'tag',
45162                     fields: ['tag'],
45163                     data : this.formats // from states.js
45164                 }),
45165                 blockFocus : true,
45166                 name : '',
45167                 //autoCreate : {tag: "div",  size: "20"},
45168                 displayField:'tag',
45169                 typeAhead: false,
45170                 mode: 'local',
45171                 editable : false,
45172                 triggerAction: 'all',
45173                 emptyText:'Add tag',
45174                 selectOnFocus:true,
45175                 width:135,
45176                 listeners : {
45177                     'select': function(c, r, i) {
45178                         editorcore.insertTag(r.get('tag'));
45179                         editor.focus();
45180                     }
45181                 }
45182
45183             });
45184             tb.addField(this.formatCombo);
45185             
45186         }
45187         
45188         if(!this.disable.format){
45189             tb.add(
45190                 btn('bold'),
45191                 btn('italic'),
45192                 btn('underline'),
45193                 btn('strikethrough')
45194             );
45195         };
45196         if(!this.disable.fontSize){
45197             tb.add(
45198                 '-',
45199                 
45200                 
45201                 btn('increasefontsize', false, editorcore.adjustFont),
45202                 btn('decreasefontsize', false, editorcore.adjustFont)
45203             );
45204         };
45205         
45206         
45207         if(!this.disable.colors){
45208             tb.add(
45209                 '-', {
45210                     id:editorcore.frameId +'-forecolor',
45211                     cls:'x-btn-icon x-edit-forecolor',
45212                     clickEvent:'mousedown',
45213                     tooltip: this.buttonTips['forecolor'] || undefined,
45214                     tabIndex:-1,
45215                     menu : new Roo.menu.ColorMenu({
45216                         allowReselect: true,
45217                         focus: Roo.emptyFn,
45218                         value:'000000',
45219                         plain:true,
45220                         selectHandler: function(cp, color){
45221                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
45222                             editor.deferFocus();
45223                         },
45224                         scope: editorcore,
45225                         clickEvent:'mousedown'
45226                     })
45227                 }, {
45228                     id:editorcore.frameId +'backcolor',
45229                     cls:'x-btn-icon x-edit-backcolor',
45230                     clickEvent:'mousedown',
45231                     tooltip: this.buttonTips['backcolor'] || undefined,
45232                     tabIndex:-1,
45233                     menu : new Roo.menu.ColorMenu({
45234                         focus: Roo.emptyFn,
45235                         value:'FFFFFF',
45236                         plain:true,
45237                         allowReselect: true,
45238                         selectHandler: function(cp, color){
45239                             if(Roo.isGecko){
45240                                 editorcore.execCmd('useCSS', false);
45241                                 editorcore.execCmd('hilitecolor', color);
45242                                 editorcore.execCmd('useCSS', true);
45243                                 editor.deferFocus();
45244                             }else{
45245                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
45246                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
45247                                 editor.deferFocus();
45248                             }
45249                         },
45250                         scope:editorcore,
45251                         clickEvent:'mousedown'
45252                     })
45253                 }
45254             );
45255         };
45256         // now add all the items...
45257         
45258
45259         if(!this.disable.alignments){
45260             tb.add(
45261                 '-',
45262                 btn('justifyleft'),
45263                 btn('justifycenter'),
45264                 btn('justifyright')
45265             );
45266         };
45267
45268         //if(!Roo.isSafari){
45269             if(!this.disable.links){
45270                 tb.add(
45271                     '-',
45272                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
45273                 );
45274             };
45275
45276             if(!this.disable.lists){
45277                 tb.add(
45278                     '-',
45279                     btn('insertorderedlist'),
45280                     btn('insertunorderedlist')
45281                 );
45282             }
45283             if(!this.disable.sourceEdit){
45284                 tb.add(
45285                     '-',
45286                     btn('sourceedit', true, function(btn){
45287                         this.toggleSourceEdit(btn.pressed);
45288                     })
45289                 );
45290             }
45291         //}
45292         
45293         var smenu = { };
45294         // special menu.. - needs to be tidied up..
45295         if (!this.disable.special) {
45296             smenu = {
45297                 text: "&#169;",
45298                 cls: 'x-edit-none',
45299                 
45300                 menu : {
45301                     items : []
45302                 }
45303             };
45304             for (var i =0; i < this.specialChars.length; i++) {
45305                 smenu.menu.items.push({
45306                     
45307                     html: this.specialChars[i],
45308                     handler: function(a,b) {
45309                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
45310                         //editor.insertAtCursor(a.html);
45311                         
45312                     },
45313                     tabIndex:-1
45314                 });
45315             }
45316             
45317             
45318             tb.add(smenu);
45319             
45320             
45321         }
45322         
45323         var cmenu = { };
45324         if (!this.disable.cleanStyles) {
45325             cmenu = {
45326                 cls: 'x-btn-icon x-btn-clear',
45327                 
45328                 menu : {
45329                     items : []
45330                 }
45331             };
45332             for (var i =0; i < this.cleanStyles.length; i++) {
45333                 cmenu.menu.items.push({
45334                     actiontype : this.cleanStyles[i],
45335                     html: 'Remove ' + this.cleanStyles[i],
45336                     handler: function(a,b) {
45337 //                        Roo.log(a);
45338 //                        Roo.log(b);
45339                         var c = Roo.get(editorcore.doc.body);
45340                         c.select('[style]').each(function(s) {
45341                             s.dom.style.removeProperty(a.actiontype);
45342                         });
45343                         editorcore.syncValue();
45344                     },
45345                     tabIndex:-1
45346                 });
45347             }
45348              cmenu.menu.items.push({
45349                 actiontype : 'tablewidths',
45350                 html: 'Remove Table Widths',
45351                 handler: function(a,b) {
45352                     editorcore.cleanTableWidths();
45353                     editorcore.syncValue();
45354                 },
45355                 tabIndex:-1
45356             });
45357             cmenu.menu.items.push({
45358                 actiontype : 'word',
45359                 html: 'Remove MS Word Formating',
45360                 handler: function(a,b) {
45361                     editorcore.cleanWord();
45362                     editorcore.syncValue();
45363                 },
45364                 tabIndex:-1
45365             });
45366             
45367             cmenu.menu.items.push({
45368                 actiontype : 'all',
45369                 html: 'Remove All Styles',
45370                 handler: function(a,b) {
45371                     
45372                     var c = Roo.get(editorcore.doc.body);
45373                     c.select('[style]').each(function(s) {
45374                         s.dom.removeAttribute('style');
45375                     });
45376                     editorcore.syncValue();
45377                 },
45378                 tabIndex:-1
45379             });
45380             
45381             cmenu.menu.items.push({
45382                 actiontype : 'all',
45383                 html: 'Remove All CSS Classes',
45384                 handler: function(a,b) {
45385                     
45386                     var c = Roo.get(editorcore.doc.body);
45387                     c.select('[class]').each(function(s) {
45388                         s.dom.className = '';
45389                     });
45390                     editorcore.syncValue();
45391                 },
45392                 tabIndex:-1
45393             });
45394             
45395              cmenu.menu.items.push({
45396                 actiontype : 'tidy',
45397                 html: 'Tidy HTML Source',
45398                 handler: function(a,b) {
45399                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
45400                     editorcore.syncValue();
45401                 },
45402                 tabIndex:-1
45403             });
45404             
45405             
45406             tb.add(cmenu);
45407         }
45408          
45409         if (!this.disable.specialElements) {
45410             var semenu = {
45411                 text: "Other;",
45412                 cls: 'x-edit-none',
45413                 menu : {
45414                     items : []
45415                 }
45416             };
45417             for (var i =0; i < this.specialElements.length; i++) {
45418                 semenu.menu.items.push(
45419                     Roo.apply({ 
45420                         handler: function(a,b) {
45421                             editor.insertAtCursor(this.ihtml);
45422                         }
45423                     }, this.specialElements[i])
45424                 );
45425                     
45426             }
45427             
45428             tb.add(semenu);
45429             
45430             
45431         }
45432          
45433         
45434         if (this.btns) {
45435             for(var i =0; i< this.btns.length;i++) {
45436                 var b = Roo.factory(this.btns[i],Roo.form);
45437                 b.cls =  'x-edit-none';
45438                 
45439                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
45440                     b.cls += ' x-init-enable';
45441                 }
45442                 
45443                 b.scope = editorcore;
45444                 tb.add(b);
45445             }
45446         
45447         }
45448         
45449         
45450         
45451         // disable everything...
45452         
45453         this.tb.items.each(function(item){
45454             
45455            if(
45456                 item.id != editorcore.frameId+ '-sourceedit' && 
45457                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
45458             ){
45459                 
45460                 item.disable();
45461             }
45462         });
45463         this.rendered = true;
45464         
45465         // the all the btns;
45466         editor.on('editorevent', this.updateToolbar, this);
45467         // other toolbars need to implement this..
45468         //editor.on('editmodechange', this.updateToolbar, this);
45469     },
45470     
45471     
45472     relayBtnCmd : function(btn) {
45473         this.editorcore.relayCmd(btn.cmd);
45474     },
45475     // private used internally
45476     createLink : function(){
45477         Roo.log("create link?");
45478         var url = prompt(this.createLinkText, this.defaultLinkValue);
45479         if(url && url != 'http:/'+'/'){
45480             this.editorcore.relayCmd('createlink', url);
45481         }
45482     },
45483
45484     
45485     /**
45486      * Protected method that will not generally be called directly. It triggers
45487      * a toolbar update by reading the markup state of the current selection in the editor.
45488      */
45489     updateToolbar: function(){
45490
45491         if(!this.editorcore.activated){
45492             this.editor.onFirstFocus();
45493             return;
45494         }
45495
45496         var btns = this.tb.items.map, 
45497             doc = this.editorcore.doc,
45498             frameId = this.editorcore.frameId;
45499
45500         if(!this.disable.font && !Roo.isSafari){
45501             /*
45502             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
45503             if(name != this.fontSelect.dom.value){
45504                 this.fontSelect.dom.value = name;
45505             }
45506             */
45507         }
45508         if(!this.disable.format){
45509             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
45510             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
45511             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
45512             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
45513         }
45514         if(!this.disable.alignments){
45515             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
45516             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
45517             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
45518         }
45519         if(!Roo.isSafari && !this.disable.lists){
45520             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
45521             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
45522         }
45523         
45524         var ans = this.editorcore.getAllAncestors();
45525         if (this.formatCombo) {
45526             
45527             
45528             var store = this.formatCombo.store;
45529             this.formatCombo.setValue("");
45530             for (var i =0; i < ans.length;i++) {
45531                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
45532                     // select it..
45533                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
45534                     break;
45535                 }
45536             }
45537         }
45538         
45539         
45540         
45541         // hides menus... - so this cant be on a menu...
45542         Roo.menu.MenuMgr.hideAll();
45543
45544         //this.editorsyncValue();
45545     },
45546    
45547     
45548     createFontOptions : function(){
45549         var buf = [], fs = this.fontFamilies, ff, lc;
45550         
45551         
45552         
45553         for(var i = 0, len = fs.length; i< len; i++){
45554             ff = fs[i];
45555             lc = ff.toLowerCase();
45556             buf.push(
45557                 '<option value="',lc,'" style="font-family:',ff,';"',
45558                     (this.defaultFont == lc ? ' selected="true">' : '>'),
45559                     ff,
45560                 '</option>'
45561             );
45562         }
45563         return buf.join('');
45564     },
45565     
45566     toggleSourceEdit : function(sourceEditMode){
45567         
45568         Roo.log("toolbar toogle");
45569         if(sourceEditMode === undefined){
45570             sourceEditMode = !this.sourceEditMode;
45571         }
45572         this.sourceEditMode = sourceEditMode === true;
45573         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
45574         // just toggle the button?
45575         if(btn.pressed !== this.sourceEditMode){
45576             btn.toggle(this.sourceEditMode);
45577             return;
45578         }
45579         
45580         if(sourceEditMode){
45581             Roo.log("disabling buttons");
45582             this.tb.items.each(function(item){
45583                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
45584                     item.disable();
45585                 }
45586             });
45587           
45588         }else{
45589             Roo.log("enabling buttons");
45590             if(this.editorcore.initialized){
45591                 this.tb.items.each(function(item){
45592                     item.enable();
45593                 });
45594             }
45595             
45596         }
45597         Roo.log("calling toggole on editor");
45598         // tell the editor that it's been pressed..
45599         this.editor.toggleSourceEdit(sourceEditMode);
45600        
45601     },
45602      /**
45603      * Object collection of toolbar tooltips for the buttons in the editor. The key
45604      * is the command id associated with that button and the value is a valid QuickTips object.
45605      * For example:
45606 <pre><code>
45607 {
45608     bold : {
45609         title: 'Bold (Ctrl+B)',
45610         text: 'Make the selected text bold.',
45611         cls: 'x-html-editor-tip'
45612     },
45613     italic : {
45614         title: 'Italic (Ctrl+I)',
45615         text: 'Make the selected text italic.',
45616         cls: 'x-html-editor-tip'
45617     },
45618     ...
45619 </code></pre>
45620     * @type Object
45621      */
45622     buttonTips : {
45623         bold : {
45624             title: 'Bold (Ctrl+B)',
45625             text: 'Make the selected text bold.',
45626             cls: 'x-html-editor-tip'
45627         },
45628         italic : {
45629             title: 'Italic (Ctrl+I)',
45630             text: 'Make the selected text italic.',
45631             cls: 'x-html-editor-tip'
45632         },
45633         underline : {
45634             title: 'Underline (Ctrl+U)',
45635             text: 'Underline the selected text.',
45636             cls: 'x-html-editor-tip'
45637         },
45638         strikethrough : {
45639             title: 'Strikethrough',
45640             text: 'Strikethrough the selected text.',
45641             cls: 'x-html-editor-tip'
45642         },
45643         increasefontsize : {
45644             title: 'Grow Text',
45645             text: 'Increase the font size.',
45646             cls: 'x-html-editor-tip'
45647         },
45648         decreasefontsize : {
45649             title: 'Shrink Text',
45650             text: 'Decrease the font size.',
45651             cls: 'x-html-editor-tip'
45652         },
45653         backcolor : {
45654             title: 'Text Highlight Color',
45655             text: 'Change the background color of the selected text.',
45656             cls: 'x-html-editor-tip'
45657         },
45658         forecolor : {
45659             title: 'Font Color',
45660             text: 'Change the color of the selected text.',
45661             cls: 'x-html-editor-tip'
45662         },
45663         justifyleft : {
45664             title: 'Align Text Left',
45665             text: 'Align text to the left.',
45666             cls: 'x-html-editor-tip'
45667         },
45668         justifycenter : {
45669             title: 'Center Text',
45670             text: 'Center text in the editor.',
45671             cls: 'x-html-editor-tip'
45672         },
45673         justifyright : {
45674             title: 'Align Text Right',
45675             text: 'Align text to the right.',
45676             cls: 'x-html-editor-tip'
45677         },
45678         insertunorderedlist : {
45679             title: 'Bullet List',
45680             text: 'Start a bulleted list.',
45681             cls: 'x-html-editor-tip'
45682         },
45683         insertorderedlist : {
45684             title: 'Numbered List',
45685             text: 'Start a numbered list.',
45686             cls: 'x-html-editor-tip'
45687         },
45688         createlink : {
45689             title: 'Hyperlink',
45690             text: 'Make the selected text a hyperlink.',
45691             cls: 'x-html-editor-tip'
45692         },
45693         sourceedit : {
45694             title: 'Source Edit',
45695             text: 'Switch to source editing mode.',
45696             cls: 'x-html-editor-tip'
45697         }
45698     },
45699     // private
45700     onDestroy : function(){
45701         if(this.rendered){
45702             
45703             this.tb.items.each(function(item){
45704                 if(item.menu){
45705                     item.menu.removeAll();
45706                     if(item.menu.el){
45707                         item.menu.el.destroy();
45708                     }
45709                 }
45710                 item.destroy();
45711             });
45712              
45713         }
45714     },
45715     onFirstFocus: function() {
45716         this.tb.items.each(function(item){
45717            item.enable();
45718         });
45719     }
45720 });
45721
45722
45723
45724
45725 // <script type="text/javascript">
45726 /*
45727  * Based on
45728  * Ext JS Library 1.1.1
45729  * Copyright(c) 2006-2007, Ext JS, LLC.
45730  *  
45731  
45732  */
45733
45734  
45735 /**
45736  * @class Roo.form.HtmlEditor.ToolbarContext
45737  * Context Toolbar
45738  * 
45739  * Usage:
45740  *
45741  new Roo.form.HtmlEditor({
45742     ....
45743     toolbars : [
45744         { xtype: 'ToolbarStandard', styles : {} }
45745         { xtype: 'ToolbarContext', disable : {} }
45746     ]
45747 })
45748
45749      
45750  * 
45751  * @config : {Object} disable List of elements to disable.. (not done yet.)
45752  * @config : {Object} styles  Map of styles available.
45753  * 
45754  */
45755
45756 Roo.form.HtmlEditor.ToolbarContext = function(config)
45757 {
45758     
45759     Roo.apply(this, config);
45760     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45761     // dont call parent... till later.
45762     this.styles = this.styles || {};
45763 }
45764
45765  
45766
45767 Roo.form.HtmlEditor.ToolbarContext.types = {
45768     'IMG' : {
45769         width : {
45770             title: "Width",
45771             width: 40
45772         },
45773         height:  {
45774             title: "Height",
45775             width: 40
45776         },
45777         align: {
45778             title: "Align",
45779             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
45780             width : 80
45781             
45782         },
45783         border: {
45784             title: "Border",
45785             width: 40
45786         },
45787         alt: {
45788             title: "Alt",
45789             width: 120
45790         },
45791         src : {
45792             title: "Src",
45793             width: 220
45794         }
45795         
45796     },
45797     'A' : {
45798         name : {
45799             title: "Name",
45800             width: 50
45801         },
45802         target:  {
45803             title: "Target",
45804             width: 120
45805         },
45806         href:  {
45807             title: "Href",
45808             width: 220
45809         } // border?
45810         
45811     },
45812     'TABLE' : {
45813         rows : {
45814             title: "Rows",
45815             width: 20
45816         },
45817         cols : {
45818             title: "Cols",
45819             width: 20
45820         },
45821         width : {
45822             title: "Width",
45823             width: 40
45824         },
45825         height : {
45826             title: "Height",
45827             width: 40
45828         },
45829         border : {
45830             title: "Border",
45831             width: 20
45832         }
45833     },
45834     'TD' : {
45835         width : {
45836             title: "Width",
45837             width: 40
45838         },
45839         height : {
45840             title: "Height",
45841             width: 40
45842         },   
45843         align: {
45844             title: "Align",
45845             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
45846             width: 80
45847         },
45848         valign: {
45849             title: "Valign",
45850             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
45851             width: 80
45852         },
45853         colspan: {
45854             title: "Colspan",
45855             width: 20
45856             
45857         },
45858          'font-family'  : {
45859             title : "Font",
45860             style : 'fontFamily',
45861             displayField: 'display',
45862             optname : 'font-family',
45863             width: 140
45864         }
45865     },
45866     'INPUT' : {
45867         name : {
45868             title: "name",
45869             width: 120
45870         },
45871         value : {
45872             title: "Value",
45873             width: 120
45874         },
45875         width : {
45876             title: "Width",
45877             width: 40
45878         }
45879     },
45880     'LABEL' : {
45881         'for' : {
45882             title: "For",
45883             width: 120
45884         }
45885     },
45886     'TEXTAREA' : {
45887           name : {
45888             title: "name",
45889             width: 120
45890         },
45891         rows : {
45892             title: "Rows",
45893             width: 20
45894         },
45895         cols : {
45896             title: "Cols",
45897             width: 20
45898         }
45899     },
45900     'SELECT' : {
45901         name : {
45902             title: "name",
45903             width: 120
45904         },
45905         selectoptions : {
45906             title: "Options",
45907             width: 200
45908         }
45909     },
45910     
45911     // should we really allow this??
45912     // should this just be 
45913     'BODY' : {
45914         title : {
45915             title: "Title",
45916             width: 200,
45917             disabled : true
45918         }
45919     },
45920     'SPAN' : {
45921         'font-family'  : {
45922             title : "Font",
45923             style : 'fontFamily',
45924             displayField: 'display',
45925             optname : 'font-family',
45926             width: 140
45927         }
45928     },
45929     'DIV' : {
45930         'font-family'  : {
45931             title : "Font",
45932             style : 'fontFamily',
45933             displayField: 'display',
45934             optname : 'font-family',
45935             width: 140
45936         }
45937     },
45938      'P' : {
45939         'font-family'  : {
45940             title : "Font",
45941             style : 'fontFamily',
45942             displayField: 'display',
45943             optname : 'font-family',
45944             width: 140
45945         }
45946     },
45947     
45948     '*' : {
45949         // empty..
45950     }
45951
45952 };
45953
45954 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
45955 Roo.form.HtmlEditor.ToolbarContext.stores = false;
45956
45957 Roo.form.HtmlEditor.ToolbarContext.options = {
45958         'font-family'  : [ 
45959                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
45960                 [ 'Courier New', 'Courier New'],
45961                 [ 'Tahoma', 'Tahoma'],
45962                 [ 'Times New Roman,serif', 'Times'],
45963                 [ 'Verdana','Verdana' ]
45964         ]
45965 };
45966
45967 // fixme - these need to be configurable..
45968  
45969
45970 //Roo.form.HtmlEditor.ToolbarContext.types
45971
45972
45973 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
45974     
45975     tb: false,
45976     
45977     rendered: false,
45978     
45979     editor : false,
45980     editorcore : false,
45981     /**
45982      * @cfg {Object} disable  List of toolbar elements to disable
45983          
45984      */
45985     disable : false,
45986     /**
45987      * @cfg {Object} styles List of styles 
45988      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
45989      *
45990      * These must be defined in the page, so they get rendered correctly..
45991      * .headline { }
45992      * TD.underline { }
45993      * 
45994      */
45995     styles : false,
45996     
45997     options: false,
45998     
45999     toolbars : false,
46000     
46001     init : function(editor)
46002     {
46003         this.editor = editor;
46004         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46005         var editorcore = this.editorcore;
46006         
46007         var fid = editorcore.frameId;
46008         var etb = this;
46009         function btn(id, toggle, handler){
46010             var xid = fid + '-'+ id ;
46011             return {
46012                 id : xid,
46013                 cmd : id,
46014                 cls : 'x-btn-icon x-edit-'+id,
46015                 enableToggle:toggle !== false,
46016                 scope: editorcore, // was editor...
46017                 handler:handler||editorcore.relayBtnCmd,
46018                 clickEvent:'mousedown',
46019                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46020                 tabIndex:-1
46021             };
46022         }
46023         // create a new element.
46024         var wdiv = editor.wrap.createChild({
46025                 tag: 'div'
46026             }, editor.wrap.dom.firstChild.nextSibling, true);
46027         
46028         // can we do this more than once??
46029         
46030          // stop form submits
46031       
46032  
46033         // disable everything...
46034         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46035         this.toolbars = {};
46036            
46037         for (var i in  ty) {
46038           
46039             this.toolbars[i] = this.buildToolbar(ty[i],i);
46040         }
46041         this.tb = this.toolbars.BODY;
46042         this.tb.el.show();
46043         this.buildFooter();
46044         this.footer.show();
46045         editor.on('hide', function( ) { this.footer.hide() }, this);
46046         editor.on('show', function( ) { this.footer.show() }, this);
46047         
46048          
46049         this.rendered = true;
46050         
46051         // the all the btns;
46052         editor.on('editorevent', this.updateToolbar, this);
46053         // other toolbars need to implement this..
46054         //editor.on('editmodechange', this.updateToolbar, this);
46055     },
46056     
46057     
46058     
46059     /**
46060      * Protected method that will not generally be called directly. It triggers
46061      * a toolbar update by reading the markup state of the current selection in the editor.
46062      *
46063      * Note you can force an update by calling on('editorevent', scope, false)
46064      */
46065     updateToolbar: function(editor,ev,sel){
46066
46067         //Roo.log(ev);
46068         // capture mouse up - this is handy for selecting images..
46069         // perhaps should go somewhere else...
46070         if(!this.editorcore.activated){
46071              this.editor.onFirstFocus();
46072             return;
46073         }
46074         
46075         
46076         
46077         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
46078         // selectNode - might want to handle IE?
46079         if (ev &&
46080             (ev.type == 'mouseup' || ev.type == 'click' ) &&
46081             ev.target && ev.target.tagName == 'IMG') {
46082             // they have click on an image...
46083             // let's see if we can change the selection...
46084             sel = ev.target;
46085          
46086               var nodeRange = sel.ownerDocument.createRange();
46087             try {
46088                 nodeRange.selectNode(sel);
46089             } catch (e) {
46090                 nodeRange.selectNodeContents(sel);
46091             }
46092             //nodeRange.collapse(true);
46093             var s = this.editorcore.win.getSelection();
46094             s.removeAllRanges();
46095             s.addRange(nodeRange);
46096         }  
46097         
46098       
46099         var updateFooter = sel ? false : true;
46100         
46101         
46102         var ans = this.editorcore.getAllAncestors();
46103         
46104         // pick
46105         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46106         
46107         if (!sel) { 
46108             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
46109             sel = sel ? sel : this.editorcore.doc.body;
46110             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
46111             
46112         }
46113         // pick a menu that exists..
46114         var tn = sel.tagName.toUpperCase();
46115         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
46116         
46117         tn = sel.tagName.toUpperCase();
46118         
46119         var lastSel = this.tb.selectedNode;
46120         
46121         this.tb.selectedNode = sel;
46122         
46123         // if current menu does not match..
46124         
46125         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
46126                 
46127             this.tb.el.hide();
46128             ///console.log("show: " + tn);
46129             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
46130             this.tb.el.show();
46131             // update name
46132             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
46133             
46134             
46135             // update attributes
46136             if (this.tb.fields) {
46137                 this.tb.fields.each(function(e) {
46138                     if (e.stylename) {
46139                         e.setValue(sel.style[e.stylename]);
46140                         return;
46141                     } 
46142                    e.setValue(sel.getAttribute(e.attrname));
46143                 });
46144             }
46145             
46146             var hasStyles = false;
46147             for(var i in this.styles) {
46148                 hasStyles = true;
46149                 break;
46150             }
46151             
46152             // update styles
46153             if (hasStyles) { 
46154                 var st = this.tb.fields.item(0);
46155                 
46156                 st.store.removeAll();
46157                
46158                 
46159                 var cn = sel.className.split(/\s+/);
46160                 
46161                 var avs = [];
46162                 if (this.styles['*']) {
46163                     
46164                     Roo.each(this.styles['*'], function(v) {
46165                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
46166                     });
46167                 }
46168                 if (this.styles[tn]) { 
46169                     Roo.each(this.styles[tn], function(v) {
46170                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
46171                     });
46172                 }
46173                 
46174                 st.store.loadData(avs);
46175                 st.collapse();
46176                 st.setValue(cn);
46177             }
46178             // flag our selected Node.
46179             this.tb.selectedNode = sel;
46180            
46181            
46182             Roo.menu.MenuMgr.hideAll();
46183
46184         }
46185         
46186         if (!updateFooter) {
46187             //this.footDisp.dom.innerHTML = ''; 
46188             return;
46189         }
46190         // update the footer
46191         //
46192         var html = '';
46193         
46194         this.footerEls = ans.reverse();
46195         Roo.each(this.footerEls, function(a,i) {
46196             if (!a) { return; }
46197             html += html.length ? ' &gt; '  :  '';
46198             
46199             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
46200             
46201         });
46202        
46203         // 
46204         var sz = this.footDisp.up('td').getSize();
46205         this.footDisp.dom.style.width = (sz.width -10) + 'px';
46206         this.footDisp.dom.style.marginLeft = '5px';
46207         
46208         this.footDisp.dom.style.overflow = 'hidden';
46209         
46210         this.footDisp.dom.innerHTML = html;
46211             
46212         //this.editorsyncValue();
46213     },
46214      
46215     
46216    
46217        
46218     // private
46219     onDestroy : function(){
46220         if(this.rendered){
46221             
46222             this.tb.items.each(function(item){
46223                 if(item.menu){
46224                     item.menu.removeAll();
46225                     if(item.menu.el){
46226                         item.menu.el.destroy();
46227                     }
46228                 }
46229                 item.destroy();
46230             });
46231              
46232         }
46233     },
46234     onFirstFocus: function() {
46235         // need to do this for all the toolbars..
46236         this.tb.items.each(function(item){
46237            item.enable();
46238         });
46239     },
46240     buildToolbar: function(tlist, nm)
46241     {
46242         var editor = this.editor;
46243         var editorcore = this.editorcore;
46244          // create a new element.
46245         var wdiv = editor.wrap.createChild({
46246                 tag: 'div'
46247             }, editor.wrap.dom.firstChild.nextSibling, true);
46248         
46249        
46250         var tb = new Roo.Toolbar(wdiv);
46251         // add the name..
46252         
46253         tb.add(nm+ ":&nbsp;");
46254         
46255         var styles = [];
46256         for(var i in this.styles) {
46257             styles.push(i);
46258         }
46259         
46260         // styles...
46261         if (styles && styles.length) {
46262             
46263             // this needs a multi-select checkbox...
46264             tb.addField( new Roo.form.ComboBox({
46265                 store: new Roo.data.SimpleStore({
46266                     id : 'val',
46267                     fields: ['val', 'selected'],
46268                     data : [] 
46269                 }),
46270                 name : '-roo-edit-className',
46271                 attrname : 'className',
46272                 displayField: 'val',
46273                 typeAhead: false,
46274                 mode: 'local',
46275                 editable : false,
46276                 triggerAction: 'all',
46277                 emptyText:'Select Style',
46278                 selectOnFocus:true,
46279                 width: 130,
46280                 listeners : {
46281                     'select': function(c, r, i) {
46282                         // initial support only for on class per el..
46283                         tb.selectedNode.className =  r ? r.get('val') : '';
46284                         editorcore.syncValue();
46285                     }
46286                 }
46287     
46288             }));
46289         }
46290         
46291         var tbc = Roo.form.HtmlEditor.ToolbarContext;
46292         var tbops = tbc.options;
46293         
46294         for (var i in tlist) {
46295             
46296             var item = tlist[i];
46297             tb.add(item.title + ":&nbsp;");
46298             
46299             
46300             //optname == used so you can configure the options available..
46301             var opts = item.opts ? item.opts : false;
46302             if (item.optname) {
46303                 opts = tbops[item.optname];
46304            
46305             }
46306             
46307             if (opts) {
46308                 // opts == pulldown..
46309                 tb.addField( new Roo.form.ComboBox({
46310                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
46311                         id : 'val',
46312                         fields: ['val', 'display'],
46313                         data : opts  
46314                     }),
46315                     name : '-roo-edit-' + i,
46316                     attrname : i,
46317                     stylename : item.style ? item.style : false,
46318                     displayField: item.displayField ? item.displayField : 'val',
46319                     valueField :  'val',
46320                     typeAhead: false,
46321                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
46322                     editable : false,
46323                     triggerAction: 'all',
46324                     emptyText:'Select',
46325                     selectOnFocus:true,
46326                     width: item.width ? item.width  : 130,
46327                     listeners : {
46328                         'select': function(c, r, i) {
46329                             if (c.stylename) {
46330                                 tb.selectedNode.style[c.stylename] =  r.get('val');
46331                                 return;
46332                             }
46333                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
46334                         }
46335                     }
46336
46337                 }));
46338                 continue;
46339                     
46340                  
46341                 
46342                 tb.addField( new Roo.form.TextField({
46343                     name: i,
46344                     width: 100,
46345                     //allowBlank:false,
46346                     value: ''
46347                 }));
46348                 continue;
46349             }
46350             tb.addField( new Roo.form.TextField({
46351                 name: '-roo-edit-' + i,
46352                 attrname : i,
46353                 
46354                 width: item.width,
46355                 //allowBlank:true,
46356                 value: '',
46357                 listeners: {
46358                     'change' : function(f, nv, ov) {
46359                         tb.selectedNode.setAttribute(f.attrname, nv);
46360                         editorcore.syncValue();
46361                     }
46362                 }
46363             }));
46364              
46365         }
46366         
46367         var _this = this;
46368         
46369         if(nm == 'BODY'){
46370             tb.addSeparator();
46371         
46372             tb.addButton( {
46373                 text: 'Stylesheets',
46374
46375                 listeners : {
46376                     click : function ()
46377                     {
46378                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
46379                     }
46380                 }
46381             });
46382         }
46383         
46384         tb.addFill();
46385         tb.addButton( {
46386             text: 'Remove Tag',
46387     
46388             listeners : {
46389                 click : function ()
46390                 {
46391                     // remove
46392                     // undo does not work.
46393                      
46394                     var sn = tb.selectedNode;
46395                     
46396                     var pn = sn.parentNode;
46397                     
46398                     var stn =  sn.childNodes[0];
46399                     var en = sn.childNodes[sn.childNodes.length - 1 ];
46400                     while (sn.childNodes.length) {
46401                         var node = sn.childNodes[0];
46402                         sn.removeChild(node);
46403                         //Roo.log(node);
46404                         pn.insertBefore(node, sn);
46405                         
46406                     }
46407                     pn.removeChild(sn);
46408                     var range = editorcore.createRange();
46409         
46410                     range.setStart(stn,0);
46411                     range.setEnd(en,0); //????
46412                     //range.selectNode(sel);
46413                     
46414                     
46415                     var selection = editorcore.getSelection();
46416                     selection.removeAllRanges();
46417                     selection.addRange(range);
46418                     
46419                     
46420                     
46421                     //_this.updateToolbar(null, null, pn);
46422                     _this.updateToolbar(null, null, null);
46423                     _this.footDisp.dom.innerHTML = ''; 
46424                 }
46425             }
46426             
46427                     
46428                 
46429             
46430         });
46431         
46432         
46433         tb.el.on('click', function(e){
46434             e.preventDefault(); // what does this do?
46435         });
46436         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
46437         tb.el.hide();
46438         tb.name = nm;
46439         // dont need to disable them... as they will get hidden
46440         return tb;
46441          
46442         
46443     },
46444     buildFooter : function()
46445     {
46446         
46447         var fel = this.editor.wrap.createChild();
46448         this.footer = new Roo.Toolbar(fel);
46449         // toolbar has scrolly on left / right?
46450         var footDisp= new Roo.Toolbar.Fill();
46451         var _t = this;
46452         this.footer.add(
46453             {
46454                 text : '&lt;',
46455                 xtype: 'Button',
46456                 handler : function() {
46457                     _t.footDisp.scrollTo('left',0,true)
46458                 }
46459             }
46460         );
46461         this.footer.add( footDisp );
46462         this.footer.add( 
46463             {
46464                 text : '&gt;',
46465                 xtype: 'Button',
46466                 handler : function() {
46467                     // no animation..
46468                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
46469                 }
46470             }
46471         );
46472         var fel = Roo.get(footDisp.el);
46473         fel.addClass('x-editor-context');
46474         this.footDispWrap = fel; 
46475         this.footDispWrap.overflow  = 'hidden';
46476         
46477         this.footDisp = fel.createChild();
46478         this.footDispWrap.on('click', this.onContextClick, this)
46479         
46480         
46481     },
46482     onContextClick : function (ev,dom)
46483     {
46484         ev.preventDefault();
46485         var  cn = dom.className;
46486         //Roo.log(cn);
46487         if (!cn.match(/x-ed-loc-/)) {
46488             return;
46489         }
46490         var n = cn.split('-').pop();
46491         var ans = this.footerEls;
46492         var sel = ans[n];
46493         
46494          // pick
46495         var range = this.editorcore.createRange();
46496         
46497         range.selectNodeContents(sel);
46498         //range.selectNode(sel);
46499         
46500         
46501         var selection = this.editorcore.getSelection();
46502         selection.removeAllRanges();
46503         selection.addRange(range);
46504         
46505         
46506         
46507         this.updateToolbar(null, null, sel);
46508         
46509         
46510     }
46511     
46512     
46513     
46514     
46515     
46516 });
46517
46518
46519
46520
46521
46522 /*
46523  * Based on:
46524  * Ext JS Library 1.1.1
46525  * Copyright(c) 2006-2007, Ext JS, LLC.
46526  *
46527  * Originally Released Under LGPL - original licence link has changed is not relivant.
46528  *
46529  * Fork - LGPL
46530  * <script type="text/javascript">
46531  */
46532  
46533 /**
46534  * @class Roo.form.BasicForm
46535  * @extends Roo.util.Observable
46536  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
46537  * @constructor
46538  * @param {String/HTMLElement/Roo.Element} el The form element or its id
46539  * @param {Object} config Configuration options
46540  */
46541 Roo.form.BasicForm = function(el, config){
46542     this.allItems = [];
46543     this.childForms = [];
46544     Roo.apply(this, config);
46545     /*
46546      * The Roo.form.Field items in this form.
46547      * @type MixedCollection
46548      */
46549      
46550      
46551     this.items = new Roo.util.MixedCollection(false, function(o){
46552         return o.id || (o.id = Roo.id());
46553     });
46554     this.addEvents({
46555         /**
46556          * @event beforeaction
46557          * Fires before any action is performed. Return false to cancel the action.
46558          * @param {Form} this
46559          * @param {Action} action The action to be performed
46560          */
46561         beforeaction: true,
46562         /**
46563          * @event actionfailed
46564          * Fires when an action fails.
46565          * @param {Form} this
46566          * @param {Action} action The action that failed
46567          */
46568         actionfailed : true,
46569         /**
46570          * @event actioncomplete
46571          * Fires when an action is completed.
46572          * @param {Form} this
46573          * @param {Action} action The action that completed
46574          */
46575         actioncomplete : true
46576     });
46577     if(el){
46578         this.initEl(el);
46579     }
46580     Roo.form.BasicForm.superclass.constructor.call(this);
46581 };
46582
46583 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
46584     /**
46585      * @cfg {String} method
46586      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
46587      */
46588     /**
46589      * @cfg {DataReader} reader
46590      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
46591      * This is optional as there is built-in support for processing JSON.
46592      */
46593     /**
46594      * @cfg {DataReader} errorReader
46595      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
46596      * This is completely optional as there is built-in support for processing JSON.
46597      */
46598     /**
46599      * @cfg {String} url
46600      * The URL to use for form actions if one isn't supplied in the action options.
46601      */
46602     /**
46603      * @cfg {Boolean} fileUpload
46604      * Set to true if this form is a file upload.
46605      */
46606      
46607     /**
46608      * @cfg {Object} baseParams
46609      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
46610      */
46611      /**
46612      
46613     /**
46614      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
46615      */
46616     timeout: 30,
46617
46618     // private
46619     activeAction : null,
46620
46621     /**
46622      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
46623      * or setValues() data instead of when the form was first created.
46624      */
46625     trackResetOnLoad : false,
46626     
46627     
46628     /**
46629      * childForms - used for multi-tab forms
46630      * @type {Array}
46631      */
46632     childForms : false,
46633     
46634     /**
46635      * allItems - full list of fields.
46636      * @type {Array}
46637      */
46638     allItems : false,
46639     
46640     /**
46641      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
46642      * element by passing it or its id or mask the form itself by passing in true.
46643      * @type Mixed
46644      */
46645     waitMsgTarget : false,
46646
46647     // private
46648     initEl : function(el){
46649         this.el = Roo.get(el);
46650         this.id = this.el.id || Roo.id();
46651         this.el.on('submit', this.onSubmit, this);
46652         this.el.addClass('x-form');
46653     },
46654
46655     // private
46656     onSubmit : function(e){
46657         e.stopEvent();
46658     },
46659
46660     /**
46661      * Returns true if client-side validation on the form is successful.
46662      * @return Boolean
46663      */
46664     isValid : function(){
46665         var valid = true;
46666         this.items.each(function(f){
46667            if(!f.validate()){
46668                valid = false;
46669            }
46670         });
46671         return valid;
46672     },
46673
46674     /**
46675      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
46676      * @return Boolean
46677      */
46678     isDirty : function(){
46679         var dirty = false;
46680         this.items.each(function(f){
46681            if(f.isDirty()){
46682                dirty = true;
46683                return false;
46684            }
46685         });
46686         return dirty;
46687     },
46688     
46689     /**
46690      * Returns true if any fields in this form have changed since their original load. (New version)
46691      * @return Boolean
46692      */
46693     
46694     hasChanged : function()
46695     {
46696         var dirty = false;
46697         this.items.each(function(f){
46698            if(f.hasChanged()){
46699                dirty = true;
46700                return false;
46701            }
46702         });
46703         return dirty;
46704         
46705     },
46706     /**
46707      * Resets all hasChanged to 'false' -
46708      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
46709      * So hasChanged storage is only to be used for this purpose
46710      * @return Boolean
46711      */
46712     resetHasChanged : function()
46713     {
46714         this.items.each(function(f){
46715            f.resetHasChanged();
46716         });
46717         
46718     },
46719     
46720     
46721     /**
46722      * Performs a predefined action (submit or load) or custom actions you define on this form.
46723      * @param {String} actionName The name of the action type
46724      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
46725      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
46726      * accept other config options):
46727      * <pre>
46728 Property          Type             Description
46729 ----------------  ---------------  ----------------------------------------------------------------------------------
46730 url               String           The url for the action (defaults to the form's url)
46731 method            String           The form method to use (defaults to the form's method, or POST if not defined)
46732 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
46733 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
46734                                    validate the form on the client (defaults to false)
46735      * </pre>
46736      * @return {BasicForm} this
46737      */
46738     doAction : function(action, options){
46739         if(typeof action == 'string'){
46740             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
46741         }
46742         if(this.fireEvent('beforeaction', this, action) !== false){
46743             this.beforeAction(action);
46744             action.run.defer(100, action);
46745         }
46746         return this;
46747     },
46748
46749     /**
46750      * Shortcut to do a submit action.
46751      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
46752      * @return {BasicForm} this
46753      */
46754     submit : function(options){
46755         this.doAction('submit', options);
46756         return this;
46757     },
46758
46759     /**
46760      * Shortcut to do a load action.
46761      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
46762      * @return {BasicForm} this
46763      */
46764     load : function(options){
46765         this.doAction('load', options);
46766         return this;
46767     },
46768
46769     /**
46770      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
46771      * @param {Record} record The record to edit
46772      * @return {BasicForm} this
46773      */
46774     updateRecord : function(record){
46775         record.beginEdit();
46776         var fs = record.fields;
46777         fs.each(function(f){
46778             var field = this.findField(f.name);
46779             if(field){
46780                 record.set(f.name, field.getValue());
46781             }
46782         }, this);
46783         record.endEdit();
46784         return this;
46785     },
46786
46787     /**
46788      * Loads an Roo.data.Record into this form.
46789      * @param {Record} record The record to load
46790      * @return {BasicForm} this
46791      */
46792     loadRecord : function(record){
46793         this.setValues(record.data);
46794         return this;
46795     },
46796
46797     // private
46798     beforeAction : function(action){
46799         var o = action.options;
46800         
46801        
46802         if(this.waitMsgTarget === true){
46803             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
46804         }else if(this.waitMsgTarget){
46805             this.waitMsgTarget = Roo.get(this.waitMsgTarget);
46806             this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
46807         }else {
46808             Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
46809         }
46810          
46811     },
46812
46813     // private
46814     afterAction : function(action, success){
46815         this.activeAction = null;
46816         var o = action.options;
46817         
46818         if(this.waitMsgTarget === true){
46819             this.el.unmask();
46820         }else if(this.waitMsgTarget){
46821             this.waitMsgTarget.unmask();
46822         }else{
46823             Roo.MessageBox.updateProgress(1);
46824             Roo.MessageBox.hide();
46825         }
46826          
46827         if(success){
46828             if(o.reset){
46829                 this.reset();
46830             }
46831             Roo.callback(o.success, o.scope, [this, action]);
46832             this.fireEvent('actioncomplete', this, action);
46833             
46834         }else{
46835             
46836             // failure condition..
46837             // we have a scenario where updates need confirming.
46838             // eg. if a locking scenario exists..
46839             // we look for { errors : { needs_confirm : true }} in the response.
46840             if (
46841                 (typeof(action.result) != 'undefined')  &&
46842                 (typeof(action.result.errors) != 'undefined')  &&
46843                 (typeof(action.result.errors.needs_confirm) != 'undefined')
46844            ){
46845                 var _t = this;
46846                 Roo.MessageBox.confirm(
46847                     "Change requires confirmation",
46848                     action.result.errorMsg,
46849                     function(r) {
46850                         if (r != 'yes') {
46851                             return;
46852                         }
46853                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
46854                     }
46855                     
46856                 );
46857                 
46858                 
46859                 
46860                 return;
46861             }
46862             
46863             Roo.callback(o.failure, o.scope, [this, action]);
46864             // show an error message if no failed handler is set..
46865             if (!this.hasListener('actionfailed')) {
46866                 Roo.MessageBox.alert("Error",
46867                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
46868                         action.result.errorMsg :
46869                         "Saving Failed, please check your entries or try again"
46870                 );
46871             }
46872             
46873             this.fireEvent('actionfailed', this, action);
46874         }
46875         
46876     },
46877
46878     /**
46879      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
46880      * @param {String} id The value to search for
46881      * @return Field
46882      */
46883     findField : function(id){
46884         var field = this.items.get(id);
46885         if(!field){
46886             this.items.each(function(f){
46887                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
46888                     field = f;
46889                     return false;
46890                 }
46891             });
46892         }
46893         return field || null;
46894     },
46895
46896     /**
46897      * Add a secondary form to this one, 
46898      * Used to provide tabbed forms. One form is primary, with hidden values 
46899      * which mirror the elements from the other forms.
46900      * 
46901      * @param {Roo.form.Form} form to add.
46902      * 
46903      */
46904     addForm : function(form)
46905     {
46906        
46907         if (this.childForms.indexOf(form) > -1) {
46908             // already added..
46909             return;
46910         }
46911         this.childForms.push(form);
46912         var n = '';
46913         Roo.each(form.allItems, function (fe) {
46914             
46915             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
46916             if (this.findField(n)) { // already added..
46917                 return;
46918             }
46919             var add = new Roo.form.Hidden({
46920                 name : n
46921             });
46922             add.render(this.el);
46923             
46924             this.add( add );
46925         }, this);
46926         
46927     },
46928     /**
46929      * Mark fields in this form invalid in bulk.
46930      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
46931      * @return {BasicForm} this
46932      */
46933     markInvalid : function(errors){
46934         if(errors instanceof Array){
46935             for(var i = 0, len = errors.length; i < len; i++){
46936                 var fieldError = errors[i];
46937                 var f = this.findField(fieldError.id);
46938                 if(f){
46939                     f.markInvalid(fieldError.msg);
46940                 }
46941             }
46942         }else{
46943             var field, id;
46944             for(id in errors){
46945                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
46946                     field.markInvalid(errors[id]);
46947                 }
46948             }
46949         }
46950         Roo.each(this.childForms || [], function (f) {
46951             f.markInvalid(errors);
46952         });
46953         
46954         return this;
46955     },
46956
46957     /**
46958      * Set values for fields in this form in bulk.
46959      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
46960      * @return {BasicForm} this
46961      */
46962     setValues : function(values){
46963         if(values instanceof Array){ // array of objects
46964             for(var i = 0, len = values.length; i < len; i++){
46965                 var v = values[i];
46966                 var f = this.findField(v.id);
46967                 if(f){
46968                     f.setValue(v.value);
46969                     if(this.trackResetOnLoad){
46970                         f.originalValue = f.getValue();
46971                     }
46972                 }
46973             }
46974         }else{ // object hash
46975             var field, id;
46976             for(id in values){
46977                 if(typeof values[id] != 'function' && (field = this.findField(id))){
46978                     
46979                     if (field.setFromData && 
46980                         field.valueField && 
46981                         field.displayField &&
46982                         // combos' with local stores can 
46983                         // be queried via setValue()
46984                         // to set their value..
46985                         (field.store && !field.store.isLocal)
46986                         ) {
46987                         // it's a combo
46988                         var sd = { };
46989                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
46990                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
46991                         field.setFromData(sd);
46992                         
46993                     } else {
46994                         field.setValue(values[id]);
46995                     }
46996                     
46997                     
46998                     if(this.trackResetOnLoad){
46999                         field.originalValue = field.getValue();
47000                     }
47001                 }
47002             }
47003         }
47004         this.resetHasChanged();
47005         
47006         
47007         Roo.each(this.childForms || [], function (f) {
47008             f.setValues(values);
47009             f.resetHasChanged();
47010         });
47011                 
47012         return this;
47013     },
47014
47015     /**
47016      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
47017      * they are returned as an array.
47018      * @param {Boolean} asString
47019      * @return {Object}
47020      */
47021     getValues : function(asString){
47022         if (this.childForms) {
47023             // copy values from the child forms
47024             Roo.each(this.childForms, function (f) {
47025                 this.setValues(f.getValues());
47026             }, this);
47027         }
47028         
47029         
47030         
47031         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
47032         if(asString === true){
47033             return fs;
47034         }
47035         return Roo.urlDecode(fs);
47036     },
47037     
47038     /**
47039      * Returns the fields in this form as an object with key/value pairs. 
47040      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
47041      * @return {Object}
47042      */
47043     getFieldValues : function(with_hidden)
47044     {
47045         if (this.childForms) {
47046             // copy values from the child forms
47047             // should this call getFieldValues - probably not as we do not currently copy
47048             // hidden fields when we generate..
47049             Roo.each(this.childForms, function (f) {
47050                 this.setValues(f.getValues());
47051             }, this);
47052         }
47053         
47054         var ret = {};
47055         this.items.each(function(f){
47056             if (!f.getName()) {
47057                 return;
47058             }
47059             var v = f.getValue();
47060             if (f.inputType =='radio') {
47061                 if (typeof(ret[f.getName()]) == 'undefined') {
47062                     ret[f.getName()] = ''; // empty..
47063                 }
47064                 
47065                 if (!f.el.dom.checked) {
47066                     return;
47067                     
47068                 }
47069                 v = f.el.dom.value;
47070                 
47071             }
47072             
47073             // not sure if this supported any more..
47074             if ((typeof(v) == 'object') && f.getRawValue) {
47075                 v = f.getRawValue() ; // dates..
47076             }
47077             // combo boxes where name != hiddenName...
47078             if (f.name != f.getName()) {
47079                 ret[f.name] = f.getRawValue();
47080             }
47081             ret[f.getName()] = v;
47082         });
47083         
47084         return ret;
47085     },
47086
47087     /**
47088      * Clears all invalid messages in this form.
47089      * @return {BasicForm} this
47090      */
47091     clearInvalid : function(){
47092         this.items.each(function(f){
47093            f.clearInvalid();
47094         });
47095         
47096         Roo.each(this.childForms || [], function (f) {
47097             f.clearInvalid();
47098         });
47099         
47100         
47101         return this;
47102     },
47103
47104     /**
47105      * Resets this form.
47106      * @return {BasicForm} this
47107      */
47108     reset : function(){
47109         this.items.each(function(f){
47110             f.reset();
47111         });
47112         
47113         Roo.each(this.childForms || [], function (f) {
47114             f.reset();
47115         });
47116         this.resetHasChanged();
47117         
47118         return this;
47119     },
47120
47121     /**
47122      * Add Roo.form components to this form.
47123      * @param {Field} field1
47124      * @param {Field} field2 (optional)
47125      * @param {Field} etc (optional)
47126      * @return {BasicForm} this
47127      */
47128     add : function(){
47129         this.items.addAll(Array.prototype.slice.call(arguments, 0));
47130         return this;
47131     },
47132
47133
47134     /**
47135      * Removes a field from the items collection (does NOT remove its markup).
47136      * @param {Field} field
47137      * @return {BasicForm} this
47138      */
47139     remove : function(field){
47140         this.items.remove(field);
47141         return this;
47142     },
47143
47144     /**
47145      * Looks at the fields in this form, checks them for an id attribute,
47146      * and calls applyTo on the existing dom element with that id.
47147      * @return {BasicForm} this
47148      */
47149     render : function(){
47150         this.items.each(function(f){
47151             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
47152                 f.applyTo(f.id);
47153             }
47154         });
47155         return this;
47156     },
47157
47158     /**
47159      * Calls {@link Ext#apply} for all fields in this form with the passed object.
47160      * @param {Object} values
47161      * @return {BasicForm} this
47162      */
47163     applyToFields : function(o){
47164         this.items.each(function(f){
47165            Roo.apply(f, o);
47166         });
47167         return this;
47168     },
47169
47170     /**
47171      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
47172      * @param {Object} values
47173      * @return {BasicForm} this
47174      */
47175     applyIfToFields : function(o){
47176         this.items.each(function(f){
47177            Roo.applyIf(f, o);
47178         });
47179         return this;
47180     }
47181 });
47182
47183 // back compat
47184 Roo.BasicForm = Roo.form.BasicForm;/*
47185  * Based on:
47186  * Ext JS Library 1.1.1
47187  * Copyright(c) 2006-2007, Ext JS, LLC.
47188  *
47189  * Originally Released Under LGPL - original licence link has changed is not relivant.
47190  *
47191  * Fork - LGPL
47192  * <script type="text/javascript">
47193  */
47194
47195 /**
47196  * @class Roo.form.Form
47197  * @extends Roo.form.BasicForm
47198  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
47199  * @constructor
47200  * @param {Object} config Configuration options
47201  */
47202 Roo.form.Form = function(config){
47203     var xitems =  [];
47204     if (config.items) {
47205         xitems = config.items;
47206         delete config.items;
47207     }
47208    
47209     
47210     Roo.form.Form.superclass.constructor.call(this, null, config);
47211     this.url = this.url || this.action;
47212     if(!this.root){
47213         this.root = new Roo.form.Layout(Roo.applyIf({
47214             id: Roo.id()
47215         }, config));
47216     }
47217     this.active = this.root;
47218     /**
47219      * Array of all the buttons that have been added to this form via {@link addButton}
47220      * @type Array
47221      */
47222     this.buttons = [];
47223     this.allItems = [];
47224     this.addEvents({
47225         /**
47226          * @event clientvalidation
47227          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
47228          * @param {Form} this
47229          * @param {Boolean} valid true if the form has passed client-side validation
47230          */
47231         clientvalidation: true,
47232         /**
47233          * @event rendered
47234          * Fires when the form is rendered
47235          * @param {Roo.form.Form} form
47236          */
47237         rendered : true
47238     });
47239     
47240     if (this.progressUrl) {
47241             // push a hidden field onto the list of fields..
47242             this.addxtype( {
47243                     xns: Roo.form, 
47244                     xtype : 'Hidden', 
47245                     name : 'UPLOAD_IDENTIFIER' 
47246             });
47247         }
47248         
47249     
47250     Roo.each(xitems, this.addxtype, this);
47251     
47252     
47253     
47254 };
47255
47256 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
47257     /**
47258      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
47259      */
47260     /**
47261      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
47262      */
47263     /**
47264      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
47265      */
47266     buttonAlign:'center',
47267
47268     /**
47269      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
47270      */
47271     minButtonWidth:75,
47272
47273     /**
47274      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
47275      * This property cascades to child containers if not set.
47276      */
47277     labelAlign:'left',
47278
47279     /**
47280      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
47281      * fires a looping event with that state. This is required to bind buttons to the valid
47282      * state using the config value formBind:true on the button.
47283      */
47284     monitorValid : false,
47285
47286     /**
47287      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
47288      */
47289     monitorPoll : 200,
47290     
47291     /**
47292      * @cfg {String} progressUrl - Url to return progress data 
47293      */
47294     
47295     progressUrl : false,
47296   
47297     /**
47298      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
47299      * fields are added and the column is closed. If no fields are passed the column remains open
47300      * until end() is called.
47301      * @param {Object} config The config to pass to the column
47302      * @param {Field} field1 (optional)
47303      * @param {Field} field2 (optional)
47304      * @param {Field} etc (optional)
47305      * @return Column The column container object
47306      */
47307     column : function(c){
47308         var col = new Roo.form.Column(c);
47309         this.start(col);
47310         if(arguments.length > 1){ // duplicate code required because of Opera
47311             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
47312             this.end();
47313         }
47314         return col;
47315     },
47316
47317     /**
47318      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
47319      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
47320      * until end() is called.
47321      * @param {Object} config The config to pass to the fieldset
47322      * @param {Field} field1 (optional)
47323      * @param {Field} field2 (optional)
47324      * @param {Field} etc (optional)
47325      * @return FieldSet The fieldset container object
47326      */
47327     fieldset : function(c){
47328         var fs = new Roo.form.FieldSet(c);
47329         this.start(fs);
47330         if(arguments.length > 1){ // duplicate code required because of Opera
47331             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
47332             this.end();
47333         }
47334         return fs;
47335     },
47336
47337     /**
47338      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
47339      * fields are added and the container is closed. If no fields are passed the container remains open
47340      * until end() is called.
47341      * @param {Object} config The config to pass to the Layout
47342      * @param {Field} field1 (optional)
47343      * @param {Field} field2 (optional)
47344      * @param {Field} etc (optional)
47345      * @return Layout The container object
47346      */
47347     container : function(c){
47348         var l = new Roo.form.Layout(c);
47349         this.start(l);
47350         if(arguments.length > 1){ // duplicate code required because of Opera
47351             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
47352             this.end();
47353         }
47354         return l;
47355     },
47356
47357     /**
47358      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
47359      * @param {Object} container A Roo.form.Layout or subclass of Layout
47360      * @return {Form} this
47361      */
47362     start : function(c){
47363         // cascade label info
47364         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
47365         this.active.stack.push(c);
47366         c.ownerCt = this.active;
47367         this.active = c;
47368         return this;
47369     },
47370
47371     /**
47372      * Closes the current open container
47373      * @return {Form} this
47374      */
47375     end : function(){
47376         if(this.active == this.root){
47377             return this;
47378         }
47379         this.active = this.active.ownerCt;
47380         return this;
47381     },
47382
47383     /**
47384      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
47385      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
47386      * as the label of the field.
47387      * @param {Field} field1
47388      * @param {Field} field2 (optional)
47389      * @param {Field} etc. (optional)
47390      * @return {Form} this
47391      */
47392     add : function(){
47393         this.active.stack.push.apply(this.active.stack, arguments);
47394         this.allItems.push.apply(this.allItems,arguments);
47395         var r = [];
47396         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
47397             if(a[i].isFormField){
47398                 r.push(a[i]);
47399             }
47400         }
47401         if(r.length > 0){
47402             Roo.form.Form.superclass.add.apply(this, r);
47403         }
47404         return this;
47405     },
47406     
47407
47408     
47409     
47410     
47411      /**
47412      * Find any element that has been added to a form, using it's ID or name
47413      * This can include framesets, columns etc. along with regular fields..
47414      * @param {String} id - id or name to find.
47415      
47416      * @return {Element} e - or false if nothing found.
47417      */
47418     findbyId : function(id)
47419     {
47420         var ret = false;
47421         if (!id) {
47422             return ret;
47423         }
47424         Roo.each(this.allItems, function(f){
47425             if (f.id == id || f.name == id ){
47426                 ret = f;
47427                 return false;
47428             }
47429         });
47430         return ret;
47431     },
47432
47433     
47434     
47435     /**
47436      * Render this form into the passed container. This should only be called once!
47437      * @param {String/HTMLElement/Element} container The element this component should be rendered into
47438      * @return {Form} this
47439      */
47440     render : function(ct)
47441     {
47442         
47443         
47444         
47445         ct = Roo.get(ct);
47446         var o = this.autoCreate || {
47447             tag: 'form',
47448             method : this.method || 'POST',
47449             id : this.id || Roo.id()
47450         };
47451         this.initEl(ct.createChild(o));
47452
47453         this.root.render(this.el);
47454         
47455        
47456              
47457         this.items.each(function(f){
47458             f.render('x-form-el-'+f.id);
47459         });
47460
47461         if(this.buttons.length > 0){
47462             // tables are required to maintain order and for correct IE layout
47463             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
47464                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
47465                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
47466             }}, null, true);
47467             var tr = tb.getElementsByTagName('tr')[0];
47468             for(var i = 0, len = this.buttons.length; i < len; i++) {
47469                 var b = this.buttons[i];
47470                 var td = document.createElement('td');
47471                 td.className = 'x-form-btn-td';
47472                 b.render(tr.appendChild(td));
47473             }
47474         }
47475         if(this.monitorValid){ // initialize after render
47476             this.startMonitoring();
47477         }
47478         this.fireEvent('rendered', this);
47479         return this;
47480     },
47481
47482     /**
47483      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
47484      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
47485      * object or a valid Roo.DomHelper element config
47486      * @param {Function} handler The function called when the button is clicked
47487      * @param {Object} scope (optional) The scope of the handler function
47488      * @return {Roo.Button}
47489      */
47490     addButton : function(config, handler, scope){
47491         var bc = {
47492             handler: handler,
47493             scope: scope,
47494             minWidth: this.minButtonWidth,
47495             hideParent:true
47496         };
47497         if(typeof config == "string"){
47498             bc.text = config;
47499         }else{
47500             Roo.apply(bc, config);
47501         }
47502         var btn = new Roo.Button(null, bc);
47503         this.buttons.push(btn);
47504         return btn;
47505     },
47506
47507      /**
47508      * Adds a series of form elements (using the xtype property as the factory method.
47509      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
47510      * @param {Object} config 
47511      */
47512     
47513     addxtype : function()
47514     {
47515         var ar = Array.prototype.slice.call(arguments, 0);
47516         var ret = false;
47517         for(var i = 0; i < ar.length; i++) {
47518             if (!ar[i]) {
47519                 continue; // skip -- if this happends something invalid got sent, we 
47520                 // should ignore it, as basically that interface element will not show up
47521                 // and that should be pretty obvious!!
47522             }
47523             
47524             if (Roo.form[ar[i].xtype]) {
47525                 ar[i].form = this;
47526                 var fe = Roo.factory(ar[i], Roo.form);
47527                 if (!ret) {
47528                     ret = fe;
47529                 }
47530                 fe.form = this;
47531                 if (fe.store) {
47532                     fe.store.form = this;
47533                 }
47534                 if (fe.isLayout) {  
47535                          
47536                     this.start(fe);
47537                     this.allItems.push(fe);
47538                     if (fe.items && fe.addxtype) {
47539                         fe.addxtype.apply(fe, fe.items);
47540                         delete fe.items;
47541                     }
47542                      this.end();
47543                     continue;
47544                 }
47545                 
47546                 
47547                  
47548                 this.add(fe);
47549               //  console.log('adding ' + ar[i].xtype);
47550             }
47551             if (ar[i].xtype == 'Button') {  
47552                 //console.log('adding button');
47553                 //console.log(ar[i]);
47554                 this.addButton(ar[i]);
47555                 this.allItems.push(fe);
47556                 continue;
47557             }
47558             
47559             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
47560                 alert('end is not supported on xtype any more, use items');
47561             //    this.end();
47562             //    //console.log('adding end');
47563             }
47564             
47565         }
47566         return ret;
47567     },
47568     
47569     /**
47570      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
47571      * option "monitorValid"
47572      */
47573     startMonitoring : function(){
47574         if(!this.bound){
47575             this.bound = true;
47576             Roo.TaskMgr.start({
47577                 run : this.bindHandler,
47578                 interval : this.monitorPoll || 200,
47579                 scope: this
47580             });
47581         }
47582     },
47583
47584     /**
47585      * Stops monitoring of the valid state of this form
47586      */
47587     stopMonitoring : function(){
47588         this.bound = false;
47589     },
47590
47591     // private
47592     bindHandler : function(){
47593         if(!this.bound){
47594             return false; // stops binding
47595         }
47596         var valid = true;
47597         this.items.each(function(f){
47598             if(!f.isValid(true)){
47599                 valid = false;
47600                 return false;
47601             }
47602         });
47603         for(var i = 0, len = this.buttons.length; i < len; i++){
47604             var btn = this.buttons[i];
47605             if(btn.formBind === true && btn.disabled === valid){
47606                 btn.setDisabled(!valid);
47607             }
47608         }
47609         this.fireEvent('clientvalidation', this, valid);
47610     }
47611     
47612     
47613     
47614     
47615     
47616     
47617     
47618     
47619 });
47620
47621
47622 // back compat
47623 Roo.Form = Roo.form.Form;
47624 /*
47625  * Based on:
47626  * Ext JS Library 1.1.1
47627  * Copyright(c) 2006-2007, Ext JS, LLC.
47628  *
47629  * Originally Released Under LGPL - original licence link has changed is not relivant.
47630  *
47631  * Fork - LGPL
47632  * <script type="text/javascript">
47633  */
47634
47635 // as we use this in bootstrap.
47636 Roo.namespace('Roo.form');
47637  /**
47638  * @class Roo.form.Action
47639  * Internal Class used to handle form actions
47640  * @constructor
47641  * @param {Roo.form.BasicForm} el The form element or its id
47642  * @param {Object} config Configuration options
47643  */
47644
47645  
47646  
47647 // define the action interface
47648 Roo.form.Action = function(form, options){
47649     this.form = form;
47650     this.options = options || {};
47651 };
47652 /**
47653  * Client Validation Failed
47654  * @const 
47655  */
47656 Roo.form.Action.CLIENT_INVALID = 'client';
47657 /**
47658  * Server Validation Failed
47659  * @const 
47660  */
47661 Roo.form.Action.SERVER_INVALID = 'server';
47662  /**
47663  * Connect to Server Failed
47664  * @const 
47665  */
47666 Roo.form.Action.CONNECT_FAILURE = 'connect';
47667 /**
47668  * Reading Data from Server Failed
47669  * @const 
47670  */
47671 Roo.form.Action.LOAD_FAILURE = 'load';
47672
47673 Roo.form.Action.prototype = {
47674     type : 'default',
47675     failureType : undefined,
47676     response : undefined,
47677     result : undefined,
47678
47679     // interface method
47680     run : function(options){
47681
47682     },
47683
47684     // interface method
47685     success : function(response){
47686
47687     },
47688
47689     // interface method
47690     handleResponse : function(response){
47691
47692     },
47693
47694     // default connection failure
47695     failure : function(response){
47696         
47697         this.response = response;
47698         this.failureType = Roo.form.Action.CONNECT_FAILURE;
47699         this.form.afterAction(this, false);
47700     },
47701
47702     processResponse : function(response){
47703         this.response = response;
47704         if(!response.responseText){
47705             return true;
47706         }
47707         this.result = this.handleResponse(response);
47708         return this.result;
47709     },
47710
47711     // utility functions used internally
47712     getUrl : function(appendParams){
47713         var url = this.options.url || this.form.url || this.form.el.dom.action;
47714         if(appendParams){
47715             var p = this.getParams();
47716             if(p){
47717                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
47718             }
47719         }
47720         return url;
47721     },
47722
47723     getMethod : function(){
47724         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
47725     },
47726
47727     getParams : function(){
47728         var bp = this.form.baseParams;
47729         var p = this.options.params;
47730         if(p){
47731             if(typeof p == "object"){
47732                 p = Roo.urlEncode(Roo.applyIf(p, bp));
47733             }else if(typeof p == 'string' && bp){
47734                 p += '&' + Roo.urlEncode(bp);
47735             }
47736         }else if(bp){
47737             p = Roo.urlEncode(bp);
47738         }
47739         return p;
47740     },
47741
47742     createCallback : function(){
47743         return {
47744             success: this.success,
47745             failure: this.failure,
47746             scope: this,
47747             timeout: (this.form.timeout*1000),
47748             upload: this.form.fileUpload ? this.success : undefined
47749         };
47750     }
47751 };
47752
47753 Roo.form.Action.Submit = function(form, options){
47754     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
47755 };
47756
47757 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
47758     type : 'submit',
47759
47760     haveProgress : false,
47761     uploadComplete : false,
47762     
47763     // uploadProgress indicator.
47764     uploadProgress : function()
47765     {
47766         if (!this.form.progressUrl) {
47767             return;
47768         }
47769         
47770         if (!this.haveProgress) {
47771             Roo.MessageBox.progress("Uploading", "Uploading");
47772         }
47773         if (this.uploadComplete) {
47774            Roo.MessageBox.hide();
47775            return;
47776         }
47777         
47778         this.haveProgress = true;
47779    
47780         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
47781         
47782         var c = new Roo.data.Connection();
47783         c.request({
47784             url : this.form.progressUrl,
47785             params: {
47786                 id : uid
47787             },
47788             method: 'GET',
47789             success : function(req){
47790                //console.log(data);
47791                 var rdata = false;
47792                 var edata;
47793                 try  {
47794                    rdata = Roo.decode(req.responseText)
47795                 } catch (e) {
47796                     Roo.log("Invalid data from server..");
47797                     Roo.log(edata);
47798                     return;
47799                 }
47800                 if (!rdata || !rdata.success) {
47801                     Roo.log(rdata);
47802                     Roo.MessageBox.alert(Roo.encode(rdata));
47803                     return;
47804                 }
47805                 var data = rdata.data;
47806                 
47807                 if (this.uploadComplete) {
47808                    Roo.MessageBox.hide();
47809                    return;
47810                 }
47811                    
47812                 if (data){
47813                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
47814                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
47815                     );
47816                 }
47817                 this.uploadProgress.defer(2000,this);
47818             },
47819        
47820             failure: function(data) {
47821                 Roo.log('progress url failed ');
47822                 Roo.log(data);
47823             },
47824             scope : this
47825         });
47826            
47827     },
47828     
47829     
47830     run : function()
47831     {
47832         // run get Values on the form, so it syncs any secondary forms.
47833         this.form.getValues();
47834         
47835         var o = this.options;
47836         var method = this.getMethod();
47837         var isPost = method == 'POST';
47838         if(o.clientValidation === false || this.form.isValid()){
47839             
47840             if (this.form.progressUrl) {
47841                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
47842                     (new Date() * 1) + '' + Math.random());
47843                     
47844             } 
47845             
47846             
47847             Roo.Ajax.request(Roo.apply(this.createCallback(), {
47848                 form:this.form.el.dom,
47849                 url:this.getUrl(!isPost),
47850                 method: method,
47851                 params:isPost ? this.getParams() : null,
47852                 isUpload: this.form.fileUpload
47853             }));
47854             
47855             this.uploadProgress();
47856
47857         }else if (o.clientValidation !== false){ // client validation failed
47858             this.failureType = Roo.form.Action.CLIENT_INVALID;
47859             this.form.afterAction(this, false);
47860         }
47861     },
47862
47863     success : function(response)
47864     {
47865         this.uploadComplete= true;
47866         if (this.haveProgress) {
47867             Roo.MessageBox.hide();
47868         }
47869         
47870         
47871         var result = this.processResponse(response);
47872         if(result === true || result.success){
47873             this.form.afterAction(this, true);
47874             return;
47875         }
47876         if(result.errors){
47877             this.form.markInvalid(result.errors);
47878             this.failureType = Roo.form.Action.SERVER_INVALID;
47879         }
47880         this.form.afterAction(this, false);
47881     },
47882     failure : function(response)
47883     {
47884         this.uploadComplete= true;
47885         if (this.haveProgress) {
47886             Roo.MessageBox.hide();
47887         }
47888         
47889         this.response = response;
47890         this.failureType = Roo.form.Action.CONNECT_FAILURE;
47891         this.form.afterAction(this, false);
47892     },
47893     
47894     handleResponse : function(response){
47895         if(this.form.errorReader){
47896             var rs = this.form.errorReader.read(response);
47897             var errors = [];
47898             if(rs.records){
47899                 for(var i = 0, len = rs.records.length; i < len; i++) {
47900                     var r = rs.records[i];
47901                     errors[i] = r.data;
47902                 }
47903             }
47904             if(errors.length < 1){
47905                 errors = null;
47906             }
47907             return {
47908                 success : rs.success,
47909                 errors : errors
47910             };
47911         }
47912         var ret = false;
47913         try {
47914             ret = Roo.decode(response.responseText);
47915         } catch (e) {
47916             ret = {
47917                 success: false,
47918                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
47919                 errors : []
47920             };
47921         }
47922         return ret;
47923         
47924     }
47925 });
47926
47927
47928 Roo.form.Action.Load = function(form, options){
47929     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
47930     this.reader = this.form.reader;
47931 };
47932
47933 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
47934     type : 'load',
47935
47936     run : function(){
47937         
47938         Roo.Ajax.request(Roo.apply(
47939                 this.createCallback(), {
47940                     method:this.getMethod(),
47941                     url:this.getUrl(false),
47942                     params:this.getParams()
47943         }));
47944     },
47945
47946     success : function(response){
47947         
47948         var result = this.processResponse(response);
47949         if(result === true || !result.success || !result.data){
47950             this.failureType = Roo.form.Action.LOAD_FAILURE;
47951             this.form.afterAction(this, false);
47952             return;
47953         }
47954         this.form.clearInvalid();
47955         this.form.setValues(result.data);
47956         this.form.afterAction(this, true);
47957     },
47958
47959     handleResponse : function(response){
47960         if(this.form.reader){
47961             var rs = this.form.reader.read(response);
47962             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
47963             return {
47964                 success : rs.success,
47965                 data : data
47966             };
47967         }
47968         return Roo.decode(response.responseText);
47969     }
47970 });
47971
47972 Roo.form.Action.ACTION_TYPES = {
47973     'load' : Roo.form.Action.Load,
47974     'submit' : Roo.form.Action.Submit
47975 };/*
47976  * Based on:
47977  * Ext JS Library 1.1.1
47978  * Copyright(c) 2006-2007, Ext JS, LLC.
47979  *
47980  * Originally Released Under LGPL - original licence link has changed is not relivant.
47981  *
47982  * Fork - LGPL
47983  * <script type="text/javascript">
47984  */
47985  
47986 /**
47987  * @class Roo.form.Layout
47988  * @extends Roo.Component
47989  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
47990  * @constructor
47991  * @param {Object} config Configuration options
47992  */
47993 Roo.form.Layout = function(config){
47994     var xitems = [];
47995     if (config.items) {
47996         xitems = config.items;
47997         delete config.items;
47998     }
47999     Roo.form.Layout.superclass.constructor.call(this, config);
48000     this.stack = [];
48001     Roo.each(xitems, this.addxtype, this);
48002      
48003 };
48004
48005 Roo.extend(Roo.form.Layout, Roo.Component, {
48006     /**
48007      * @cfg {String/Object} autoCreate
48008      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
48009      */
48010     /**
48011      * @cfg {String/Object/Function} style
48012      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
48013      * a function which returns such a specification.
48014      */
48015     /**
48016      * @cfg {String} labelAlign
48017      * Valid values are "left," "top" and "right" (defaults to "left")
48018      */
48019     /**
48020      * @cfg {Number} labelWidth
48021      * Fixed width in pixels of all field labels (defaults to undefined)
48022      */
48023     /**
48024      * @cfg {Boolean} clear
48025      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
48026      */
48027     clear : true,
48028     /**
48029      * @cfg {String} labelSeparator
48030      * The separator to use after field labels (defaults to ':')
48031      */
48032     labelSeparator : ':',
48033     /**
48034      * @cfg {Boolean} hideLabels
48035      * True to suppress the display of field labels in this layout (defaults to false)
48036      */
48037     hideLabels : false,
48038
48039     // private
48040     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
48041     
48042     isLayout : true,
48043     
48044     // private
48045     onRender : function(ct, position){
48046         if(this.el){ // from markup
48047             this.el = Roo.get(this.el);
48048         }else {  // generate
48049             var cfg = this.getAutoCreate();
48050             this.el = ct.createChild(cfg, position);
48051         }
48052         if(this.style){
48053             this.el.applyStyles(this.style);
48054         }
48055         if(this.labelAlign){
48056             this.el.addClass('x-form-label-'+this.labelAlign);
48057         }
48058         if(this.hideLabels){
48059             this.labelStyle = "display:none";
48060             this.elementStyle = "padding-left:0;";
48061         }else{
48062             if(typeof this.labelWidth == 'number'){
48063                 this.labelStyle = "width:"+this.labelWidth+"px;";
48064                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
48065             }
48066             if(this.labelAlign == 'top'){
48067                 this.labelStyle = "width:auto;";
48068                 this.elementStyle = "padding-left:0;";
48069             }
48070         }
48071         var stack = this.stack;
48072         var slen = stack.length;
48073         if(slen > 0){
48074             if(!this.fieldTpl){
48075                 var t = new Roo.Template(
48076                     '<div class="x-form-item {5}">',
48077                         '<label for="{0}" style="{2}">{1}{4}</label>',
48078                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
48079                         '</div>',
48080                     '</div><div class="x-form-clear-left"></div>'
48081                 );
48082                 t.disableFormats = true;
48083                 t.compile();
48084                 Roo.form.Layout.prototype.fieldTpl = t;
48085             }
48086             for(var i = 0; i < slen; i++) {
48087                 if(stack[i].isFormField){
48088                     this.renderField(stack[i]);
48089                 }else{
48090                     this.renderComponent(stack[i]);
48091                 }
48092             }
48093         }
48094         if(this.clear){
48095             this.el.createChild({cls:'x-form-clear'});
48096         }
48097     },
48098
48099     // private
48100     renderField : function(f){
48101         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
48102                f.id, //0
48103                f.fieldLabel, //1
48104                f.labelStyle||this.labelStyle||'', //2
48105                this.elementStyle||'', //3
48106                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
48107                f.itemCls||this.itemCls||''  //5
48108        ], true).getPrevSibling());
48109     },
48110
48111     // private
48112     renderComponent : function(c){
48113         c.render(c.isLayout ? this.el : this.el.createChild());    
48114     },
48115     /**
48116      * Adds a object form elements (using the xtype property as the factory method.)
48117      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
48118      * @param {Object} config 
48119      */
48120     addxtype : function(o)
48121     {
48122         // create the lement.
48123         o.form = this.form;
48124         var fe = Roo.factory(o, Roo.form);
48125         this.form.allItems.push(fe);
48126         this.stack.push(fe);
48127         
48128         if (fe.isFormField) {
48129             this.form.items.add(fe);
48130         }
48131          
48132         return fe;
48133     }
48134 });
48135
48136 /**
48137  * @class Roo.form.Column
48138  * @extends Roo.form.Layout
48139  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
48140  * @constructor
48141  * @param {Object} config Configuration options
48142  */
48143 Roo.form.Column = function(config){
48144     Roo.form.Column.superclass.constructor.call(this, config);
48145 };
48146
48147 Roo.extend(Roo.form.Column, Roo.form.Layout, {
48148     /**
48149      * @cfg {Number/String} width
48150      * The fixed width of the column in pixels or CSS value (defaults to "auto")
48151      */
48152     /**
48153      * @cfg {String/Object} autoCreate
48154      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
48155      */
48156
48157     // private
48158     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
48159
48160     // private
48161     onRender : function(ct, position){
48162         Roo.form.Column.superclass.onRender.call(this, ct, position);
48163         if(this.width){
48164             this.el.setWidth(this.width);
48165         }
48166     }
48167 });
48168
48169
48170 /**
48171  * @class Roo.form.Row
48172  * @extends Roo.form.Layout
48173  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
48174  * @constructor
48175  * @param {Object} config Configuration options
48176  */
48177
48178  
48179 Roo.form.Row = function(config){
48180     Roo.form.Row.superclass.constructor.call(this, config);
48181 };
48182  
48183 Roo.extend(Roo.form.Row, Roo.form.Layout, {
48184       /**
48185      * @cfg {Number/String} width
48186      * The fixed width of the column in pixels or CSS value (defaults to "auto")
48187      */
48188     /**
48189      * @cfg {Number/String} height
48190      * The fixed height of the column in pixels or CSS value (defaults to "auto")
48191      */
48192     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
48193     
48194     padWidth : 20,
48195     // private
48196     onRender : function(ct, position){
48197         //console.log('row render');
48198         if(!this.rowTpl){
48199             var t = new Roo.Template(
48200                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
48201                     '<label for="{0}" style="{2}">{1}{4}</label>',
48202                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
48203                     '</div>',
48204                 '</div>'
48205             );
48206             t.disableFormats = true;
48207             t.compile();
48208             Roo.form.Layout.prototype.rowTpl = t;
48209         }
48210         this.fieldTpl = this.rowTpl;
48211         
48212         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
48213         var labelWidth = 100;
48214         
48215         if ((this.labelAlign != 'top')) {
48216             if (typeof this.labelWidth == 'number') {
48217                 labelWidth = this.labelWidth
48218             }
48219             this.padWidth =  20 + labelWidth;
48220             
48221         }
48222         
48223         Roo.form.Column.superclass.onRender.call(this, ct, position);
48224         if(this.width){
48225             this.el.setWidth(this.width);
48226         }
48227         if(this.height){
48228             this.el.setHeight(this.height);
48229         }
48230     },
48231     
48232     // private
48233     renderField : function(f){
48234         f.fieldEl = this.fieldTpl.append(this.el, [
48235                f.id, f.fieldLabel,
48236                f.labelStyle||this.labelStyle||'',
48237                this.elementStyle||'',
48238                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
48239                f.itemCls||this.itemCls||'',
48240                f.width ? f.width + this.padWidth : 160 + this.padWidth
48241        ],true);
48242     }
48243 });
48244  
48245
48246 /**
48247  * @class Roo.form.FieldSet
48248  * @extends Roo.form.Layout
48249  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
48250  * @constructor
48251  * @param {Object} config Configuration options
48252  */
48253 Roo.form.FieldSet = function(config){
48254     Roo.form.FieldSet.superclass.constructor.call(this, config);
48255 };
48256
48257 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
48258     /**
48259      * @cfg {String} legend
48260      * The text to display as the legend for the FieldSet (defaults to '')
48261      */
48262     /**
48263      * @cfg {String/Object} autoCreate
48264      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
48265      */
48266
48267     // private
48268     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
48269
48270     // private
48271     onRender : function(ct, position){
48272         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
48273         if(this.legend){
48274             this.setLegend(this.legend);
48275         }
48276     },
48277
48278     // private
48279     setLegend : function(text){
48280         if(this.rendered){
48281             this.el.child('legend').update(text);
48282         }
48283     }
48284 });/*
48285  * Based on:
48286  * Ext JS Library 1.1.1
48287  * Copyright(c) 2006-2007, Ext JS, LLC.
48288  *
48289  * Originally Released Under LGPL - original licence link has changed is not relivant.
48290  *
48291  * Fork - LGPL
48292  * <script type="text/javascript">
48293  */
48294 /**
48295  * @class Roo.form.VTypes
48296  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
48297  * @singleton
48298  */
48299 Roo.form.VTypes = function(){
48300     // closure these in so they are only created once.
48301     var alpha = /^[a-zA-Z_]+$/;
48302     var alphanum = /^[a-zA-Z0-9_]+$/;
48303     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
48304     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
48305
48306     // All these messages and functions are configurable
48307     return {
48308         /**
48309          * The function used to validate email addresses
48310          * @param {String} value The email address
48311          */
48312         'email' : function(v){
48313             return email.test(v);
48314         },
48315         /**
48316          * The error text to display when the email validation function returns false
48317          * @type String
48318          */
48319         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
48320         /**
48321          * The keystroke filter mask to be applied on email input
48322          * @type RegExp
48323          */
48324         'emailMask' : /[a-z0-9_\.\-@]/i,
48325
48326         /**
48327          * The function used to validate URLs
48328          * @param {String} value The URL
48329          */
48330         'url' : function(v){
48331             return url.test(v);
48332         },
48333         /**
48334          * The error text to display when the url validation function returns false
48335          * @type String
48336          */
48337         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
48338         
48339         /**
48340          * The function used to validate alpha values
48341          * @param {String} value The value
48342          */
48343         'alpha' : function(v){
48344             return alpha.test(v);
48345         },
48346         /**
48347          * The error text to display when the alpha validation function returns false
48348          * @type String
48349          */
48350         'alphaText' : 'This field should only contain letters and _',
48351         /**
48352          * The keystroke filter mask to be applied on alpha input
48353          * @type RegExp
48354          */
48355         'alphaMask' : /[a-z_]/i,
48356
48357         /**
48358          * The function used to validate alphanumeric values
48359          * @param {String} value The value
48360          */
48361         'alphanum' : function(v){
48362             return alphanum.test(v);
48363         },
48364         /**
48365          * The error text to display when the alphanumeric validation function returns false
48366          * @type String
48367          */
48368         'alphanumText' : 'This field should only contain letters, numbers and _',
48369         /**
48370          * The keystroke filter mask to be applied on alphanumeric input
48371          * @type RegExp
48372          */
48373         'alphanumMask' : /[a-z0-9_]/i
48374     };
48375 }();//<script type="text/javascript">
48376
48377 /**
48378  * @class Roo.form.FCKeditor
48379  * @extends Roo.form.TextArea
48380  * Wrapper around the FCKEditor http://www.fckeditor.net
48381  * @constructor
48382  * Creates a new FCKeditor
48383  * @param {Object} config Configuration options
48384  */
48385 Roo.form.FCKeditor = function(config){
48386     Roo.form.FCKeditor.superclass.constructor.call(this, config);
48387     this.addEvents({
48388          /**
48389          * @event editorinit
48390          * Fired when the editor is initialized - you can add extra handlers here..
48391          * @param {FCKeditor} this
48392          * @param {Object} the FCK object.
48393          */
48394         editorinit : true
48395     });
48396     
48397     
48398 };
48399 Roo.form.FCKeditor.editors = { };
48400 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
48401 {
48402     //defaultAutoCreate : {
48403     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
48404     //},
48405     // private
48406     /**
48407      * @cfg {Object} fck options - see fck manual for details.
48408      */
48409     fckconfig : false,
48410     
48411     /**
48412      * @cfg {Object} fck toolbar set (Basic or Default)
48413      */
48414     toolbarSet : 'Basic',
48415     /**
48416      * @cfg {Object} fck BasePath
48417      */ 
48418     basePath : '/fckeditor/',
48419     
48420     
48421     frame : false,
48422     
48423     value : '',
48424     
48425    
48426     onRender : function(ct, position)
48427     {
48428         if(!this.el){
48429             this.defaultAutoCreate = {
48430                 tag: "textarea",
48431                 style:"width:300px;height:60px;",
48432                 autocomplete: "new-password"
48433             };
48434         }
48435         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
48436         /*
48437         if(this.grow){
48438             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
48439             if(this.preventScrollbars){
48440                 this.el.setStyle("overflow", "hidden");
48441             }
48442             this.el.setHeight(this.growMin);
48443         }
48444         */
48445         //console.log('onrender' + this.getId() );
48446         Roo.form.FCKeditor.editors[this.getId()] = this;
48447          
48448
48449         this.replaceTextarea() ;
48450         
48451     },
48452     
48453     getEditor : function() {
48454         return this.fckEditor;
48455     },
48456     /**
48457      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
48458      * @param {Mixed} value The value to set
48459      */
48460     
48461     
48462     setValue : function(value)
48463     {
48464         //console.log('setValue: ' + value);
48465         
48466         if(typeof(value) == 'undefined') { // not sure why this is happending...
48467             return;
48468         }
48469         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
48470         
48471         //if(!this.el || !this.getEditor()) {
48472         //    this.value = value;
48473             //this.setValue.defer(100,this,[value]);    
48474         //    return;
48475         //} 
48476         
48477         if(!this.getEditor()) {
48478             return;
48479         }
48480         
48481         this.getEditor().SetData(value);
48482         
48483         //
48484
48485     },
48486
48487     /**
48488      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
48489      * @return {Mixed} value The field value
48490      */
48491     getValue : function()
48492     {
48493         
48494         if (this.frame && this.frame.dom.style.display == 'none') {
48495             return Roo.form.FCKeditor.superclass.getValue.call(this);
48496         }
48497         
48498         if(!this.el || !this.getEditor()) {
48499            
48500            // this.getValue.defer(100,this); 
48501             return this.value;
48502         }
48503        
48504         
48505         var value=this.getEditor().GetData();
48506         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
48507         return Roo.form.FCKeditor.superclass.getValue.call(this);
48508         
48509
48510     },
48511
48512     /**
48513      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
48514      * @return {Mixed} value The field value
48515      */
48516     getRawValue : function()
48517     {
48518         if (this.frame && this.frame.dom.style.display == 'none') {
48519             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
48520         }
48521         
48522         if(!this.el || !this.getEditor()) {
48523             //this.getRawValue.defer(100,this); 
48524             return this.value;
48525             return;
48526         }
48527         
48528         
48529         
48530         var value=this.getEditor().GetData();
48531         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
48532         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
48533          
48534     },
48535     
48536     setSize : function(w,h) {
48537         
48538         
48539         
48540         //if (this.frame && this.frame.dom.style.display == 'none') {
48541         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
48542         //    return;
48543         //}
48544         //if(!this.el || !this.getEditor()) {
48545         //    this.setSize.defer(100,this, [w,h]); 
48546         //    return;
48547         //}
48548         
48549         
48550         
48551         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
48552         
48553         this.frame.dom.setAttribute('width', w);
48554         this.frame.dom.setAttribute('height', h);
48555         this.frame.setSize(w,h);
48556         
48557     },
48558     
48559     toggleSourceEdit : function(value) {
48560         
48561       
48562          
48563         this.el.dom.style.display = value ? '' : 'none';
48564         this.frame.dom.style.display = value ?  'none' : '';
48565         
48566     },
48567     
48568     
48569     focus: function(tag)
48570     {
48571         if (this.frame.dom.style.display == 'none') {
48572             return Roo.form.FCKeditor.superclass.focus.call(this);
48573         }
48574         if(!this.el || !this.getEditor()) {
48575             this.focus.defer(100,this, [tag]); 
48576             return;
48577         }
48578         
48579         
48580         
48581         
48582         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
48583         this.getEditor().Focus();
48584         if (tgs.length) {
48585             if (!this.getEditor().Selection.GetSelection()) {
48586                 this.focus.defer(100,this, [tag]); 
48587                 return;
48588             }
48589             
48590             
48591             var r = this.getEditor().EditorDocument.createRange();
48592             r.setStart(tgs[0],0);
48593             r.setEnd(tgs[0],0);
48594             this.getEditor().Selection.GetSelection().removeAllRanges();
48595             this.getEditor().Selection.GetSelection().addRange(r);
48596             this.getEditor().Focus();
48597         }
48598         
48599     },
48600     
48601     
48602     
48603     replaceTextarea : function()
48604     {
48605         if ( document.getElementById( this.getId() + '___Frame' ) ) {
48606             return ;
48607         }
48608         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
48609         //{
48610             // We must check the elements firstly using the Id and then the name.
48611         var oTextarea = document.getElementById( this.getId() );
48612         
48613         var colElementsByName = document.getElementsByName( this.getId() ) ;
48614          
48615         oTextarea.style.display = 'none' ;
48616
48617         if ( oTextarea.tabIndex ) {            
48618             this.TabIndex = oTextarea.tabIndex ;
48619         }
48620         
48621         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
48622         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
48623         this.frame = Roo.get(this.getId() + '___Frame')
48624     },
48625     
48626     _getConfigHtml : function()
48627     {
48628         var sConfig = '' ;
48629
48630         for ( var o in this.fckconfig ) {
48631             sConfig += sConfig.length > 0  ? '&amp;' : '';
48632             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
48633         }
48634
48635         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
48636     },
48637     
48638     
48639     _getIFrameHtml : function()
48640     {
48641         var sFile = 'fckeditor.html' ;
48642         /* no idea what this is about..
48643         try
48644         {
48645             if ( (/fcksource=true/i).test( window.top.location.search ) )
48646                 sFile = 'fckeditor.original.html' ;
48647         }
48648         catch (e) { 
48649         */
48650
48651         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
48652         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
48653         
48654         
48655         var html = '<iframe id="' + this.getId() +
48656             '___Frame" src="' + sLink +
48657             '" width="' + this.width +
48658             '" height="' + this.height + '"' +
48659             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
48660             ' frameborder="0" scrolling="no"></iframe>' ;
48661
48662         return html ;
48663     },
48664     
48665     _insertHtmlBefore : function( html, element )
48666     {
48667         if ( element.insertAdjacentHTML )       {
48668             // IE
48669             element.insertAdjacentHTML( 'beforeBegin', html ) ;
48670         } else { // Gecko
48671             var oRange = document.createRange() ;
48672             oRange.setStartBefore( element ) ;
48673             var oFragment = oRange.createContextualFragment( html );
48674             element.parentNode.insertBefore( oFragment, element ) ;
48675         }
48676     }
48677     
48678     
48679   
48680     
48681     
48682     
48683     
48684
48685 });
48686
48687 //Roo.reg('fckeditor', Roo.form.FCKeditor);
48688
48689 function FCKeditor_OnComplete(editorInstance){
48690     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
48691     f.fckEditor = editorInstance;
48692     //console.log("loaded");
48693     f.fireEvent('editorinit', f, editorInstance);
48694
48695   
48696
48697  
48698
48699
48700
48701
48702
48703
48704
48705
48706
48707
48708
48709
48710
48711
48712
48713 //<script type="text/javascript">
48714 /**
48715  * @class Roo.form.GridField
48716  * @extends Roo.form.Field
48717  * Embed a grid (or editable grid into a form)
48718  * STATUS ALPHA
48719  * 
48720  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
48721  * it needs 
48722  * xgrid.store = Roo.data.Store
48723  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
48724  * xgrid.store.reader = Roo.data.JsonReader 
48725  * 
48726  * 
48727  * @constructor
48728  * Creates a new GridField
48729  * @param {Object} config Configuration options
48730  */
48731 Roo.form.GridField = function(config){
48732     Roo.form.GridField.superclass.constructor.call(this, config);
48733      
48734 };
48735
48736 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
48737     /**
48738      * @cfg {Number} width  - used to restrict width of grid..
48739      */
48740     width : 100,
48741     /**
48742      * @cfg {Number} height - used to restrict height of grid..
48743      */
48744     height : 50,
48745      /**
48746      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
48747          * 
48748          *}
48749      */
48750     xgrid : false, 
48751     /**
48752      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
48753      * {tag: "input", type: "checkbox", autocomplete: "off"})
48754      */
48755    // defaultAutoCreate : { tag: 'div' },
48756     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
48757     /**
48758      * @cfg {String} addTitle Text to include for adding a title.
48759      */
48760     addTitle : false,
48761     //
48762     onResize : function(){
48763         Roo.form.Field.superclass.onResize.apply(this, arguments);
48764     },
48765
48766     initEvents : function(){
48767         // Roo.form.Checkbox.superclass.initEvents.call(this);
48768         // has no events...
48769        
48770     },
48771
48772
48773     getResizeEl : function(){
48774         return this.wrap;
48775     },
48776
48777     getPositionEl : function(){
48778         return this.wrap;
48779     },
48780
48781     // private
48782     onRender : function(ct, position){
48783         
48784         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
48785         var style = this.style;
48786         delete this.style;
48787         
48788         Roo.form.GridField.superclass.onRender.call(this, ct, position);
48789         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
48790         this.viewEl = this.wrap.createChild({ tag: 'div' });
48791         if (style) {
48792             this.viewEl.applyStyles(style);
48793         }
48794         if (this.width) {
48795             this.viewEl.setWidth(this.width);
48796         }
48797         if (this.height) {
48798             this.viewEl.setHeight(this.height);
48799         }
48800         //if(this.inputValue !== undefined){
48801         //this.setValue(this.value);
48802         
48803         
48804         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
48805         
48806         
48807         this.grid.render();
48808         this.grid.getDataSource().on('remove', this.refreshValue, this);
48809         this.grid.getDataSource().on('update', this.refreshValue, this);
48810         this.grid.on('afteredit', this.refreshValue, this);
48811  
48812     },
48813      
48814     
48815     /**
48816      * Sets the value of the item. 
48817      * @param {String} either an object  or a string..
48818      */
48819     setValue : function(v){
48820         //this.value = v;
48821         v = v || []; // empty set..
48822         // this does not seem smart - it really only affects memoryproxy grids..
48823         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
48824             var ds = this.grid.getDataSource();
48825             // assumes a json reader..
48826             var data = {}
48827             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
48828             ds.loadData( data);
48829         }
48830         // clear selection so it does not get stale.
48831         if (this.grid.sm) { 
48832             this.grid.sm.clearSelections();
48833         }
48834         
48835         Roo.form.GridField.superclass.setValue.call(this, v);
48836         this.refreshValue();
48837         // should load data in the grid really....
48838     },
48839     
48840     // private
48841     refreshValue: function() {
48842          var val = [];
48843         this.grid.getDataSource().each(function(r) {
48844             val.push(r.data);
48845         });
48846         this.el.dom.value = Roo.encode(val);
48847     }
48848     
48849      
48850     
48851     
48852 });/*
48853  * Based on:
48854  * Ext JS Library 1.1.1
48855  * Copyright(c) 2006-2007, Ext JS, LLC.
48856  *
48857  * Originally Released Under LGPL - original licence link has changed is not relivant.
48858  *
48859  * Fork - LGPL
48860  * <script type="text/javascript">
48861  */
48862 /**
48863  * @class Roo.form.DisplayField
48864  * @extends Roo.form.Field
48865  * A generic Field to display non-editable data.
48866  * @cfg {Boolean} closable (true|false) default false
48867  * @constructor
48868  * Creates a new Display Field item.
48869  * @param {Object} config Configuration options
48870  */
48871 Roo.form.DisplayField = function(config){
48872     Roo.form.DisplayField.superclass.constructor.call(this, config);
48873     
48874     this.addEvents({
48875         /**
48876          * @event close
48877          * Fires after the click the close btn
48878              * @param {Roo.form.DisplayField} this
48879              */
48880         close : true
48881     });
48882 };
48883
48884 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
48885     inputType:      'hidden',
48886     allowBlank:     true,
48887     readOnly:         true,
48888     
48889  
48890     /**
48891      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
48892      */
48893     focusClass : undefined,
48894     /**
48895      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
48896      */
48897     fieldClass: 'x-form-field',
48898     
48899      /**
48900      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
48901      */
48902     valueRenderer: undefined,
48903     
48904     width: 100,
48905     /**
48906      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
48907      * {tag: "input", type: "checkbox", autocomplete: "off"})
48908      */
48909      
48910  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
48911  
48912     closable : false,
48913     
48914     onResize : function(){
48915         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
48916         
48917     },
48918
48919     initEvents : function(){
48920         // Roo.form.Checkbox.superclass.initEvents.call(this);
48921         // has no events...
48922         
48923         if(this.closable){
48924             this.closeEl.on('click', this.onClose, this);
48925         }
48926        
48927     },
48928
48929
48930     getResizeEl : function(){
48931         return this.wrap;
48932     },
48933
48934     getPositionEl : function(){
48935         return this.wrap;
48936     },
48937
48938     // private
48939     onRender : function(ct, position){
48940         
48941         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
48942         //if(this.inputValue !== undefined){
48943         this.wrap = this.el.wrap();
48944         
48945         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
48946         
48947         if(this.closable){
48948             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
48949         }
48950         
48951         if (this.bodyStyle) {
48952             this.viewEl.applyStyles(this.bodyStyle);
48953         }
48954         //this.viewEl.setStyle('padding', '2px');
48955         
48956         this.setValue(this.value);
48957         
48958     },
48959 /*
48960     // private
48961     initValue : Roo.emptyFn,
48962
48963   */
48964
48965         // private
48966     onClick : function(){
48967         
48968     },
48969
48970     /**
48971      * Sets the checked state of the checkbox.
48972      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
48973      */
48974     setValue : function(v){
48975         this.value = v;
48976         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
48977         // this might be called before we have a dom element..
48978         if (!this.viewEl) {
48979             return;
48980         }
48981         this.viewEl.dom.innerHTML = html;
48982         Roo.form.DisplayField.superclass.setValue.call(this, v);
48983
48984     },
48985     
48986     onClose : function(e)
48987     {
48988         e.preventDefault();
48989         
48990         this.fireEvent('close', this);
48991     }
48992 });/*
48993  * 
48994  * Licence- LGPL
48995  * 
48996  */
48997
48998 /**
48999  * @class Roo.form.DayPicker
49000  * @extends Roo.form.Field
49001  * A Day picker show [M] [T] [W] ....
49002  * @constructor
49003  * Creates a new Day Picker
49004  * @param {Object} config Configuration options
49005  */
49006 Roo.form.DayPicker= function(config){
49007     Roo.form.DayPicker.superclass.constructor.call(this, config);
49008      
49009 };
49010
49011 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
49012     /**
49013      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
49014      */
49015     focusClass : undefined,
49016     /**
49017      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
49018      */
49019     fieldClass: "x-form-field",
49020    
49021     /**
49022      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49023      * {tag: "input", type: "checkbox", autocomplete: "off"})
49024      */
49025     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
49026     
49027    
49028     actionMode : 'viewEl', 
49029     //
49030     // private
49031  
49032     inputType : 'hidden',
49033     
49034      
49035     inputElement: false, // real input element?
49036     basedOn: false, // ????
49037     
49038     isFormField: true, // not sure where this is needed!!!!
49039
49040     onResize : function(){
49041         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
49042         if(!this.boxLabel){
49043             this.el.alignTo(this.wrap, 'c-c');
49044         }
49045     },
49046
49047     initEvents : function(){
49048         Roo.form.Checkbox.superclass.initEvents.call(this);
49049         this.el.on("click", this.onClick,  this);
49050         this.el.on("change", this.onClick,  this);
49051     },
49052
49053
49054     getResizeEl : function(){
49055         return this.wrap;
49056     },
49057
49058     getPositionEl : function(){
49059         return this.wrap;
49060     },
49061
49062     
49063     // private
49064     onRender : function(ct, position){
49065         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
49066        
49067         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
49068         
49069         var r1 = '<table><tr>';
49070         var r2 = '<tr class="x-form-daypick-icons">';
49071         for (var i=0; i < 7; i++) {
49072             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
49073             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
49074         }
49075         
49076         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
49077         viewEl.select('img').on('click', this.onClick, this);
49078         this.viewEl = viewEl;   
49079         
49080         
49081         // this will not work on Chrome!!!
49082         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
49083         this.el.on('propertychange', this.setFromHidden,  this);  //ie
49084         
49085         
49086           
49087
49088     },
49089
49090     // private
49091     initValue : Roo.emptyFn,
49092
49093     /**
49094      * Returns the checked state of the checkbox.
49095      * @return {Boolean} True if checked, else false
49096      */
49097     getValue : function(){
49098         return this.el.dom.value;
49099         
49100     },
49101
49102         // private
49103     onClick : function(e){ 
49104         //this.setChecked(!this.checked);
49105         Roo.get(e.target).toggleClass('x-menu-item-checked');
49106         this.refreshValue();
49107         //if(this.el.dom.checked != this.checked){
49108         //    this.setValue(this.el.dom.checked);
49109        // }
49110     },
49111     
49112     // private
49113     refreshValue : function()
49114     {
49115         var val = '';
49116         this.viewEl.select('img',true).each(function(e,i,n)  {
49117             val += e.is(".x-menu-item-checked") ? String(n) : '';
49118         });
49119         this.setValue(val, true);
49120     },
49121
49122     /**
49123      * Sets the checked state of the checkbox.
49124      * On is always based on a string comparison between inputValue and the param.
49125      * @param {Boolean/String} value - the value to set 
49126      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
49127      */
49128     setValue : function(v,suppressEvent){
49129         if (!this.el.dom) {
49130             return;
49131         }
49132         var old = this.el.dom.value ;
49133         this.el.dom.value = v;
49134         if (suppressEvent) {
49135             return ;
49136         }
49137          
49138         // update display..
49139         this.viewEl.select('img',true).each(function(e,i,n)  {
49140             
49141             var on = e.is(".x-menu-item-checked");
49142             var newv = v.indexOf(String(n)) > -1;
49143             if (on != newv) {
49144                 e.toggleClass('x-menu-item-checked');
49145             }
49146             
49147         });
49148         
49149         
49150         this.fireEvent('change', this, v, old);
49151         
49152         
49153     },
49154    
49155     // handle setting of hidden value by some other method!!?!?
49156     setFromHidden: function()
49157     {
49158         if(!this.el){
49159             return;
49160         }
49161         //console.log("SET FROM HIDDEN");
49162         //alert('setFrom hidden');
49163         this.setValue(this.el.dom.value);
49164     },
49165     
49166     onDestroy : function()
49167     {
49168         if(this.viewEl){
49169             Roo.get(this.viewEl).remove();
49170         }
49171          
49172         Roo.form.DayPicker.superclass.onDestroy.call(this);
49173     }
49174
49175 });/*
49176  * RooJS Library 1.1.1
49177  * Copyright(c) 2008-2011  Alan Knowles
49178  *
49179  * License - LGPL
49180  */
49181  
49182
49183 /**
49184  * @class Roo.form.ComboCheck
49185  * @extends Roo.form.ComboBox
49186  * A combobox for multiple select items.
49187  *
49188  * FIXME - could do with a reset button..
49189  * 
49190  * @constructor
49191  * Create a new ComboCheck
49192  * @param {Object} config Configuration options
49193  */
49194 Roo.form.ComboCheck = function(config){
49195     Roo.form.ComboCheck.superclass.constructor.call(this, config);
49196     // should verify some data...
49197     // like
49198     // hiddenName = required..
49199     // displayField = required
49200     // valudField == required
49201     var req= [ 'hiddenName', 'displayField', 'valueField' ];
49202     var _t = this;
49203     Roo.each(req, function(e) {
49204         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
49205             throw "Roo.form.ComboCheck : missing value for: " + e;
49206         }
49207     });
49208     
49209     
49210 };
49211
49212 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
49213      
49214      
49215     editable : false,
49216      
49217     selectedClass: 'x-menu-item-checked', 
49218     
49219     // private
49220     onRender : function(ct, position){
49221         var _t = this;
49222         
49223         
49224         
49225         if(!this.tpl){
49226             var cls = 'x-combo-list';
49227
49228             
49229             this.tpl =  new Roo.Template({
49230                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
49231                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
49232                    '<span>{' + this.displayField + '}</span>' +
49233                     '</div>' 
49234                 
49235             });
49236         }
49237  
49238         
49239         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
49240         this.view.singleSelect = false;
49241         this.view.multiSelect = true;
49242         this.view.toggleSelect = true;
49243         this.pageTb.add(new Roo.Toolbar.Fill(), {
49244             
49245             text: 'Done',
49246             handler: function()
49247             {
49248                 _t.collapse();
49249             }
49250         });
49251     },
49252     
49253     onViewOver : function(e, t){
49254         // do nothing...
49255         return;
49256         
49257     },
49258     
49259     onViewClick : function(doFocus,index){
49260         return;
49261         
49262     },
49263     select: function () {
49264         //Roo.log("SELECT CALLED");
49265     },
49266      
49267     selectByValue : function(xv, scrollIntoView){
49268         var ar = this.getValueArray();
49269         var sels = [];
49270         
49271         Roo.each(ar, function(v) {
49272             if(v === undefined || v === null){
49273                 return;
49274             }
49275             var r = this.findRecord(this.valueField, v);
49276             if(r){
49277                 sels.push(this.store.indexOf(r))
49278                 
49279             }
49280         },this);
49281         this.view.select(sels);
49282         return false;
49283     },
49284     
49285     
49286     
49287     onSelect : function(record, index){
49288        // Roo.log("onselect Called");
49289        // this is only called by the clear button now..
49290         this.view.clearSelections();
49291         this.setValue('[]');
49292         if (this.value != this.valueBefore) {
49293             this.fireEvent('change', this, this.value, this.valueBefore);
49294             this.valueBefore = this.value;
49295         }
49296     },
49297     getValueArray : function()
49298     {
49299         var ar = [] ;
49300         
49301         try {
49302             //Roo.log(this.value);
49303             if (typeof(this.value) == 'undefined') {
49304                 return [];
49305             }
49306             var ar = Roo.decode(this.value);
49307             return  ar instanceof Array ? ar : []; //?? valid?
49308             
49309         } catch(e) {
49310             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
49311             return [];
49312         }
49313          
49314     },
49315     expand : function ()
49316     {
49317         
49318         Roo.form.ComboCheck.superclass.expand.call(this);
49319         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
49320         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
49321         
49322
49323     },
49324     
49325     collapse : function(){
49326         Roo.form.ComboCheck.superclass.collapse.call(this);
49327         var sl = this.view.getSelectedIndexes();
49328         var st = this.store;
49329         var nv = [];
49330         var tv = [];
49331         var r;
49332         Roo.each(sl, function(i) {
49333             r = st.getAt(i);
49334             nv.push(r.get(this.valueField));
49335         },this);
49336         this.setValue(Roo.encode(nv));
49337         if (this.value != this.valueBefore) {
49338
49339             this.fireEvent('change', this, this.value, this.valueBefore);
49340             this.valueBefore = this.value;
49341         }
49342         
49343     },
49344     
49345     setValue : function(v){
49346         // Roo.log(v);
49347         this.value = v;
49348         
49349         var vals = this.getValueArray();
49350         var tv = [];
49351         Roo.each(vals, function(k) {
49352             var r = this.findRecord(this.valueField, k);
49353             if(r){
49354                 tv.push(r.data[this.displayField]);
49355             }else if(this.valueNotFoundText !== undefined){
49356                 tv.push( this.valueNotFoundText );
49357             }
49358         },this);
49359        // Roo.log(tv);
49360         
49361         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
49362         this.hiddenField.value = v;
49363         this.value = v;
49364     }
49365     
49366 });/*
49367  * Based on:
49368  * Ext JS Library 1.1.1
49369  * Copyright(c) 2006-2007, Ext JS, LLC.
49370  *
49371  * Originally Released Under LGPL - original licence link has changed is not relivant.
49372  *
49373  * Fork - LGPL
49374  * <script type="text/javascript">
49375  */
49376  
49377 /**
49378  * @class Roo.form.Signature
49379  * @extends Roo.form.Field
49380  * Signature field.  
49381  * @constructor
49382  * 
49383  * @param {Object} config Configuration options
49384  */
49385
49386 Roo.form.Signature = function(config){
49387     Roo.form.Signature.superclass.constructor.call(this, config);
49388     
49389     this.addEvents({// not in used??
49390          /**
49391          * @event confirm
49392          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
49393              * @param {Roo.form.Signature} combo This combo box
49394              */
49395         'confirm' : true,
49396         /**
49397          * @event reset
49398          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
49399              * @param {Roo.form.ComboBox} combo This combo box
49400              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
49401              */
49402         'reset' : true
49403     });
49404 };
49405
49406 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
49407     /**
49408      * @cfg {Object} labels Label to use when rendering a form.
49409      * defaults to 
49410      * labels : { 
49411      *      clear : "Clear",
49412      *      confirm : "Confirm"
49413      *  }
49414      */
49415     labels : { 
49416         clear : "Clear",
49417         confirm : "Confirm"
49418     },
49419     /**
49420      * @cfg {Number} width The signature panel width (defaults to 300)
49421      */
49422     width: 300,
49423     /**
49424      * @cfg {Number} height The signature panel height (defaults to 100)
49425      */
49426     height : 100,
49427     /**
49428      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
49429      */
49430     allowBlank : false,
49431     
49432     //private
49433     // {Object} signPanel The signature SVG panel element (defaults to {})
49434     signPanel : {},
49435     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
49436     isMouseDown : false,
49437     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
49438     isConfirmed : false,
49439     // {String} signatureTmp SVG mapping string (defaults to empty string)
49440     signatureTmp : '',
49441     
49442     
49443     defaultAutoCreate : { // modified by initCompnoent..
49444         tag: "input",
49445         type:"hidden"
49446     },
49447
49448     // private
49449     onRender : function(ct, position){
49450         
49451         Roo.form.Signature.superclass.onRender.call(this, ct, position);
49452         
49453         this.wrap = this.el.wrap({
49454             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
49455         });
49456         
49457         this.createToolbar(this);
49458         this.signPanel = this.wrap.createChild({
49459                 tag: 'div',
49460                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
49461             }, this.el
49462         );
49463             
49464         this.svgID = Roo.id();
49465         this.svgEl = this.signPanel.createChild({
49466               xmlns : 'http://www.w3.org/2000/svg',
49467               tag : 'svg',
49468               id : this.svgID + "-svg",
49469               width: this.width,
49470               height: this.height,
49471               viewBox: '0 0 '+this.width+' '+this.height,
49472               cn : [
49473                 {
49474                     tag: "rect",
49475                     id: this.svgID + "-svg-r",
49476                     width: this.width,
49477                     height: this.height,
49478                     fill: "#ffa"
49479                 },
49480                 {
49481                     tag: "line",
49482                     id: this.svgID + "-svg-l",
49483                     x1: "0", // start
49484                     y1: (this.height*0.8), // start set the line in 80% of height
49485                     x2: this.width, // end
49486                     y2: (this.height*0.8), // end set the line in 80% of height
49487                     'stroke': "#666",
49488                     'stroke-width': "1",
49489                     'stroke-dasharray': "3",
49490                     'shape-rendering': "crispEdges",
49491                     'pointer-events': "none"
49492                 },
49493                 {
49494                     tag: "path",
49495                     id: this.svgID + "-svg-p",
49496                     'stroke': "navy",
49497                     'stroke-width': "3",
49498                     'fill': "none",
49499                     'pointer-events': 'none'
49500                 }
49501               ]
49502         });
49503         this.createSVG();
49504         this.svgBox = this.svgEl.dom.getScreenCTM();
49505     },
49506     createSVG : function(){ 
49507         var svg = this.signPanel;
49508         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
49509         var t = this;
49510
49511         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
49512         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
49513         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
49514         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
49515         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
49516         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
49517         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
49518         
49519     },
49520     isTouchEvent : function(e){
49521         return e.type.match(/^touch/);
49522     },
49523     getCoords : function (e) {
49524         var pt    = this.svgEl.dom.createSVGPoint();
49525         pt.x = e.clientX; 
49526         pt.y = e.clientY;
49527         if (this.isTouchEvent(e)) {
49528             pt.x =  e.targetTouches[0].clientX;
49529             pt.y = e.targetTouches[0].clientY;
49530         }
49531         var a = this.svgEl.dom.getScreenCTM();
49532         var b = a.inverse();
49533         var mx = pt.matrixTransform(b);
49534         return mx.x + ',' + mx.y;
49535     },
49536     //mouse event headler 
49537     down : function (e) {
49538         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
49539         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
49540         
49541         this.isMouseDown = true;
49542         
49543         e.preventDefault();
49544     },
49545     move : function (e) {
49546         if (this.isMouseDown) {
49547             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
49548             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
49549         }
49550         
49551         e.preventDefault();
49552     },
49553     up : function (e) {
49554         this.isMouseDown = false;
49555         var sp = this.signatureTmp.split(' ');
49556         
49557         if(sp.length > 1){
49558             if(!sp[sp.length-2].match(/^L/)){
49559                 sp.pop();
49560                 sp.pop();
49561                 sp.push("");
49562                 this.signatureTmp = sp.join(" ");
49563             }
49564         }
49565         if(this.getValue() != this.signatureTmp){
49566             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
49567             this.isConfirmed = false;
49568         }
49569         e.preventDefault();
49570     },
49571     
49572     /**
49573      * Protected method that will not generally be called directly. It
49574      * is called when the editor creates its toolbar. Override this method if you need to
49575      * add custom toolbar buttons.
49576      * @param {HtmlEditor} editor
49577      */
49578     createToolbar : function(editor){
49579          function btn(id, toggle, handler){
49580             var xid = fid + '-'+ id ;
49581             return {
49582                 id : xid,
49583                 cmd : id,
49584                 cls : 'x-btn-icon x-edit-'+id,
49585                 enableToggle:toggle !== false,
49586                 scope: editor, // was editor...
49587                 handler:handler||editor.relayBtnCmd,
49588                 clickEvent:'mousedown',
49589                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
49590                 tabIndex:-1
49591             };
49592         }
49593         
49594         
49595         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
49596         this.tb = tb;
49597         this.tb.add(
49598            {
49599                 cls : ' x-signature-btn x-signature-'+id,
49600                 scope: editor, // was editor...
49601                 handler: this.reset,
49602                 clickEvent:'mousedown',
49603                 text: this.labels.clear
49604             },
49605             {
49606                  xtype : 'Fill',
49607                  xns: Roo.Toolbar
49608             }, 
49609             {
49610                 cls : '  x-signature-btn x-signature-'+id,
49611                 scope: editor, // was editor...
49612                 handler: this.confirmHandler,
49613                 clickEvent:'mousedown',
49614                 text: this.labels.confirm
49615             }
49616         );
49617     
49618     },
49619     //public
49620     /**
49621      * when user is clicked confirm then show this image.....
49622      * 
49623      * @return {String} Image Data URI
49624      */
49625     getImageDataURI : function(){
49626         var svg = this.svgEl.dom.parentNode.innerHTML;
49627         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
49628         return src; 
49629     },
49630     /**
49631      * 
49632      * @return {Boolean} this.isConfirmed
49633      */
49634     getConfirmed : function(){
49635         return this.isConfirmed;
49636     },
49637     /**
49638      * 
49639      * @return {Number} this.width
49640      */
49641     getWidth : function(){
49642         return this.width;
49643     },
49644     /**
49645      * 
49646      * @return {Number} this.height
49647      */
49648     getHeight : function(){
49649         return this.height;
49650     },
49651     // private
49652     getSignature : function(){
49653         return this.signatureTmp;
49654     },
49655     // private
49656     reset : function(){
49657         this.signatureTmp = '';
49658         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
49659         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
49660         this.isConfirmed = false;
49661         Roo.form.Signature.superclass.reset.call(this);
49662     },
49663     setSignature : function(s){
49664         this.signatureTmp = s;
49665         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
49666         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
49667         this.setValue(s);
49668         this.isConfirmed = false;
49669         Roo.form.Signature.superclass.reset.call(this);
49670     }, 
49671     test : function(){
49672 //        Roo.log(this.signPanel.dom.contentWindow.up())
49673     },
49674     //private
49675     setConfirmed : function(){
49676         
49677         
49678         
49679 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
49680     },
49681     // private
49682     confirmHandler : function(){
49683         if(!this.getSignature()){
49684             return;
49685         }
49686         
49687         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
49688         this.setValue(this.getSignature());
49689         this.isConfirmed = true;
49690         
49691         this.fireEvent('confirm', this);
49692     },
49693     // private
49694     // Subclasses should provide the validation implementation by overriding this
49695     validateValue : function(value){
49696         if(this.allowBlank){
49697             return true;
49698         }
49699         
49700         if(this.isConfirmed){
49701             return true;
49702         }
49703         return false;
49704     }
49705 });/*
49706  * Based on:
49707  * Ext JS Library 1.1.1
49708  * Copyright(c) 2006-2007, Ext JS, LLC.
49709  *
49710  * Originally Released Under LGPL - original licence link has changed is not relivant.
49711  *
49712  * Fork - LGPL
49713  * <script type="text/javascript">
49714  */
49715  
49716
49717 /**
49718  * @class Roo.form.ComboBox
49719  * @extends Roo.form.TriggerField
49720  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
49721  * @constructor
49722  * Create a new ComboBox.
49723  * @param {Object} config Configuration options
49724  */
49725 Roo.form.Select = function(config){
49726     Roo.form.Select.superclass.constructor.call(this, config);
49727      
49728 };
49729
49730 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
49731     /**
49732      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
49733      */
49734     /**
49735      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
49736      * rendering into an Roo.Editor, defaults to false)
49737      */
49738     /**
49739      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
49740      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
49741      */
49742     /**
49743      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
49744      */
49745     /**
49746      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
49747      * the dropdown list (defaults to undefined, with no header element)
49748      */
49749
49750      /**
49751      * @cfg {String/Roo.Template} tpl The template to use to render the output
49752      */
49753      
49754     // private
49755     defaultAutoCreate : {tag: "select"  },
49756     /**
49757      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
49758      */
49759     listWidth: undefined,
49760     /**
49761      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
49762      * mode = 'remote' or 'text' if mode = 'local')
49763      */
49764     displayField: undefined,
49765     /**
49766      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
49767      * mode = 'remote' or 'value' if mode = 'local'). 
49768      * Note: use of a valueField requires the user make a selection
49769      * in order for a value to be mapped.
49770      */
49771     valueField: undefined,
49772     
49773     
49774     /**
49775      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
49776      * field's data value (defaults to the underlying DOM element's name)
49777      */
49778     hiddenName: undefined,
49779     /**
49780      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
49781      */
49782     listClass: '',
49783     /**
49784      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
49785      */
49786     selectedClass: 'x-combo-selected',
49787     /**
49788      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
49789      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
49790      * which displays a downward arrow icon).
49791      */
49792     triggerClass : 'x-form-arrow-trigger',
49793     /**
49794      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
49795      */
49796     shadow:'sides',
49797     /**
49798      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
49799      * anchor positions (defaults to 'tl-bl')
49800      */
49801     listAlign: 'tl-bl?',
49802     /**
49803      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
49804      */
49805     maxHeight: 300,
49806     /**
49807      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
49808      * query specified by the allQuery config option (defaults to 'query')
49809      */
49810     triggerAction: 'query',
49811     /**
49812      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
49813      * (defaults to 4, does not apply if editable = false)
49814      */
49815     minChars : 4,
49816     /**
49817      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
49818      * delay (typeAheadDelay) if it matches a known value (defaults to false)
49819      */
49820     typeAhead: false,
49821     /**
49822      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
49823      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
49824      */
49825     queryDelay: 500,
49826     /**
49827      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
49828      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
49829      */
49830     pageSize: 0,
49831     /**
49832      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
49833      * when editable = true (defaults to false)
49834      */
49835     selectOnFocus:false,
49836     /**
49837      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
49838      */
49839     queryParam: 'query',
49840     /**
49841      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
49842      * when mode = 'remote' (defaults to 'Loading...')
49843      */
49844     loadingText: 'Loading...',
49845     /**
49846      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
49847      */
49848     resizable: false,
49849     /**
49850      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
49851      */
49852     handleHeight : 8,
49853     /**
49854      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
49855      * traditional select (defaults to true)
49856      */
49857     editable: true,
49858     /**
49859      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
49860      */
49861     allQuery: '',
49862     /**
49863      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
49864      */
49865     mode: 'remote',
49866     /**
49867      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
49868      * listWidth has a higher value)
49869      */
49870     minListWidth : 70,
49871     /**
49872      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
49873      * allow the user to set arbitrary text into the field (defaults to false)
49874      */
49875     forceSelection:false,
49876     /**
49877      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
49878      * if typeAhead = true (defaults to 250)
49879      */
49880     typeAheadDelay : 250,
49881     /**
49882      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
49883      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
49884      */
49885     valueNotFoundText : undefined,
49886     
49887     /**
49888      * @cfg {String} defaultValue The value displayed after loading the store.
49889      */
49890     defaultValue: '',
49891     
49892     /**
49893      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
49894      */
49895     blockFocus : false,
49896     
49897     /**
49898      * @cfg {Boolean} disableClear Disable showing of clear button.
49899      */
49900     disableClear : false,
49901     /**
49902      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
49903      */
49904     alwaysQuery : false,
49905     
49906     //private
49907     addicon : false,
49908     editicon: false,
49909     
49910     // element that contains real text value.. (when hidden is used..)
49911      
49912     // private
49913     onRender : function(ct, position){
49914         Roo.form.Field.prototype.onRender.call(this, ct, position);
49915         
49916         if(this.store){
49917             this.store.on('beforeload', this.onBeforeLoad, this);
49918             this.store.on('load', this.onLoad, this);
49919             this.store.on('loadexception', this.onLoadException, this);
49920             this.store.load({});
49921         }
49922         
49923         
49924         
49925     },
49926
49927     // private
49928     initEvents : function(){
49929         //Roo.form.ComboBox.superclass.initEvents.call(this);
49930  
49931     },
49932
49933     onDestroy : function(){
49934        
49935         if(this.store){
49936             this.store.un('beforeload', this.onBeforeLoad, this);
49937             this.store.un('load', this.onLoad, this);
49938             this.store.un('loadexception', this.onLoadException, this);
49939         }
49940         //Roo.form.ComboBox.superclass.onDestroy.call(this);
49941     },
49942
49943     // private
49944     fireKey : function(e){
49945         if(e.isNavKeyPress() && !this.list.isVisible()){
49946             this.fireEvent("specialkey", this, e);
49947         }
49948     },
49949
49950     // private
49951     onResize: function(w, h){
49952         
49953         return; 
49954     
49955         
49956     },
49957
49958     /**
49959      * Allow or prevent the user from directly editing the field text.  If false is passed,
49960      * the user will only be able to select from the items defined in the dropdown list.  This method
49961      * is the runtime equivalent of setting the 'editable' config option at config time.
49962      * @param {Boolean} value True to allow the user to directly edit the field text
49963      */
49964     setEditable : function(value){
49965          
49966     },
49967
49968     // private
49969     onBeforeLoad : function(){
49970         
49971         Roo.log("Select before load");
49972         return;
49973     
49974         this.innerList.update(this.loadingText ?
49975                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
49976         //this.restrictHeight();
49977         this.selectedIndex = -1;
49978     },
49979
49980     // private
49981     onLoad : function(){
49982
49983     
49984         var dom = this.el.dom;
49985         dom.innerHTML = '';
49986          var od = dom.ownerDocument;
49987          
49988         if (this.emptyText) {
49989             var op = od.createElement('option');
49990             op.setAttribute('value', '');
49991             op.innerHTML = String.format('{0}', this.emptyText);
49992             dom.appendChild(op);
49993         }
49994         if(this.store.getCount() > 0){
49995            
49996             var vf = this.valueField;
49997             var df = this.displayField;
49998             this.store.data.each(function(r) {
49999                 // which colmsn to use... testing - cdoe / title..
50000                 var op = od.createElement('option');
50001                 op.setAttribute('value', r.data[vf]);
50002                 op.innerHTML = String.format('{0}', r.data[df]);
50003                 dom.appendChild(op);
50004             });
50005             if (typeof(this.defaultValue != 'undefined')) {
50006                 this.setValue(this.defaultValue);
50007             }
50008             
50009              
50010         }else{
50011             //this.onEmptyResults();
50012         }
50013         //this.el.focus();
50014     },
50015     // private
50016     onLoadException : function()
50017     {
50018         dom.innerHTML = '';
50019             
50020         Roo.log("Select on load exception");
50021         return;
50022     
50023         this.collapse();
50024         Roo.log(this.store.reader.jsonData);
50025         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
50026             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
50027         }
50028         
50029         
50030     },
50031     // private
50032     onTypeAhead : function(){
50033          
50034     },
50035
50036     // private
50037     onSelect : function(record, index){
50038         Roo.log('on select?');
50039         return;
50040         if(this.fireEvent('beforeselect', this, record, index) !== false){
50041             this.setFromData(index > -1 ? record.data : false);
50042             this.collapse();
50043             this.fireEvent('select', this, record, index);
50044         }
50045     },
50046
50047     /**
50048      * Returns the currently selected field value or empty string if no value is set.
50049      * @return {String} value The selected value
50050      */
50051     getValue : function(){
50052         var dom = this.el.dom;
50053         this.value = dom.options[dom.selectedIndex].value;
50054         return this.value;
50055         
50056     },
50057
50058     /**
50059      * Clears any text/value currently set in the field
50060      */
50061     clearValue : function(){
50062         this.value = '';
50063         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
50064         
50065     },
50066
50067     /**
50068      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
50069      * will be displayed in the field.  If the value does not match the data value of an existing item,
50070      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
50071      * Otherwise the field will be blank (although the value will still be set).
50072      * @param {String} value The value to match
50073      */
50074     setValue : function(v){
50075         var d = this.el.dom;
50076         for (var i =0; i < d.options.length;i++) {
50077             if (v == d.options[i].value) {
50078                 d.selectedIndex = i;
50079                 this.value = v;
50080                 return;
50081             }
50082         }
50083         this.clearValue();
50084     },
50085     /**
50086      * @property {Object} the last set data for the element
50087      */
50088     
50089     lastData : false,
50090     /**
50091      * Sets the value of the field based on a object which is related to the record format for the store.
50092      * @param {Object} value the value to set as. or false on reset?
50093      */
50094     setFromData : function(o){
50095         Roo.log('setfrom data?');
50096          
50097         
50098         
50099     },
50100     // private
50101     reset : function(){
50102         this.clearValue();
50103     },
50104     // private
50105     findRecord : function(prop, value){
50106         
50107         return false;
50108     
50109         var record;
50110         if(this.store.getCount() > 0){
50111             this.store.each(function(r){
50112                 if(r.data[prop] == value){
50113                     record = r;
50114                     return false;
50115                 }
50116                 return true;
50117             });
50118         }
50119         return record;
50120     },
50121     
50122     getName: function()
50123     {
50124         // returns hidden if it's set..
50125         if (!this.rendered) {return ''};
50126         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
50127         
50128     },
50129      
50130
50131     
50132
50133     // private
50134     onEmptyResults : function(){
50135         Roo.log('empty results');
50136         //this.collapse();
50137     },
50138
50139     /**
50140      * Returns true if the dropdown list is expanded, else false.
50141      */
50142     isExpanded : function(){
50143         return false;
50144     },
50145
50146     /**
50147      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
50148      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
50149      * @param {String} value The data value of the item to select
50150      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
50151      * selected item if it is not currently in view (defaults to true)
50152      * @return {Boolean} True if the value matched an item in the list, else false
50153      */
50154     selectByValue : function(v, scrollIntoView){
50155         Roo.log('select By Value');
50156         return false;
50157     
50158         if(v !== undefined && v !== null){
50159             var r = this.findRecord(this.valueField || this.displayField, v);
50160             if(r){
50161                 this.select(this.store.indexOf(r), scrollIntoView);
50162                 return true;
50163             }
50164         }
50165         return false;
50166     },
50167
50168     /**
50169      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
50170      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
50171      * @param {Number} index The zero-based index of the list item to select
50172      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
50173      * selected item if it is not currently in view (defaults to true)
50174      */
50175     select : function(index, scrollIntoView){
50176         Roo.log('select ');
50177         return  ;
50178         
50179         this.selectedIndex = index;
50180         this.view.select(index);
50181         if(scrollIntoView !== false){
50182             var el = this.view.getNode(index);
50183             if(el){
50184                 this.innerList.scrollChildIntoView(el, false);
50185             }
50186         }
50187     },
50188
50189       
50190
50191     // private
50192     validateBlur : function(){
50193         
50194         return;
50195         
50196     },
50197
50198     // private
50199     initQuery : function(){
50200         this.doQuery(this.getRawValue());
50201     },
50202
50203     // private
50204     doForce : function(){
50205         if(this.el.dom.value.length > 0){
50206             this.el.dom.value =
50207                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
50208              
50209         }
50210     },
50211
50212     /**
50213      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
50214      * query allowing the query action to be canceled if needed.
50215      * @param {String} query The SQL query to execute
50216      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
50217      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
50218      * saved in the current store (defaults to false)
50219      */
50220     doQuery : function(q, forceAll){
50221         
50222         Roo.log('doQuery?');
50223         if(q === undefined || q === null){
50224             q = '';
50225         }
50226         var qe = {
50227             query: q,
50228             forceAll: forceAll,
50229             combo: this,
50230             cancel:false
50231         };
50232         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
50233             return false;
50234         }
50235         q = qe.query;
50236         forceAll = qe.forceAll;
50237         if(forceAll === true || (q.length >= this.minChars)){
50238             if(this.lastQuery != q || this.alwaysQuery){
50239                 this.lastQuery = q;
50240                 if(this.mode == 'local'){
50241                     this.selectedIndex = -1;
50242                     if(forceAll){
50243                         this.store.clearFilter();
50244                     }else{
50245                         this.store.filter(this.displayField, q);
50246                     }
50247                     this.onLoad();
50248                 }else{
50249                     this.store.baseParams[this.queryParam] = q;
50250                     this.store.load({
50251                         params: this.getParams(q)
50252                     });
50253                     this.expand();
50254                 }
50255             }else{
50256                 this.selectedIndex = -1;
50257                 this.onLoad();   
50258             }
50259         }
50260     },
50261
50262     // private
50263     getParams : function(q){
50264         var p = {};
50265         //p[this.queryParam] = q;
50266         if(this.pageSize){
50267             p.start = 0;
50268             p.limit = this.pageSize;
50269         }
50270         return p;
50271     },
50272
50273     /**
50274      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
50275      */
50276     collapse : function(){
50277         
50278     },
50279
50280     // private
50281     collapseIf : function(e){
50282         
50283     },
50284
50285     /**
50286      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
50287      */
50288     expand : function(){
50289         
50290     } ,
50291
50292     // private
50293      
50294
50295     /** 
50296     * @cfg {Boolean} grow 
50297     * @hide 
50298     */
50299     /** 
50300     * @cfg {Number} growMin 
50301     * @hide 
50302     */
50303     /** 
50304     * @cfg {Number} growMax 
50305     * @hide 
50306     */
50307     /**
50308      * @hide
50309      * @method autoSize
50310      */
50311     
50312     setWidth : function()
50313     {
50314         
50315     },
50316     getResizeEl : function(){
50317         return this.el;
50318     }
50319 });//<script type="text/javasscript">
50320  
50321
50322 /**
50323  * @class Roo.DDView
50324  * A DnD enabled version of Roo.View.
50325  * @param {Element/String} container The Element in which to create the View.
50326  * @param {String} tpl The template string used to create the markup for each element of the View
50327  * @param {Object} config The configuration properties. These include all the config options of
50328  * {@link Roo.View} plus some specific to this class.<br>
50329  * <p>
50330  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
50331  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
50332  * <p>
50333  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
50334 .x-view-drag-insert-above {
50335         border-top:1px dotted #3366cc;
50336 }
50337 .x-view-drag-insert-below {
50338         border-bottom:1px dotted #3366cc;
50339 }
50340 </code></pre>
50341  * 
50342  */
50343  
50344 Roo.DDView = function(container, tpl, config) {
50345     Roo.DDView.superclass.constructor.apply(this, arguments);
50346     this.getEl().setStyle("outline", "0px none");
50347     this.getEl().unselectable();
50348     if (this.dragGroup) {
50349                 this.setDraggable(this.dragGroup.split(","));
50350     }
50351     if (this.dropGroup) {
50352                 this.setDroppable(this.dropGroup.split(","));
50353     }
50354     if (this.deletable) {
50355         this.setDeletable();
50356     }
50357     this.isDirtyFlag = false;
50358         this.addEvents({
50359                 "drop" : true
50360         });
50361 };
50362
50363 Roo.extend(Roo.DDView, Roo.View, {
50364 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
50365 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
50366 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
50367 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
50368
50369         isFormField: true,
50370
50371         reset: Roo.emptyFn,
50372         
50373         clearInvalid: Roo.form.Field.prototype.clearInvalid,
50374
50375         validate: function() {
50376                 return true;
50377         },
50378         
50379         destroy: function() {
50380                 this.purgeListeners();
50381                 this.getEl.removeAllListeners();
50382                 this.getEl().remove();
50383                 if (this.dragZone) {
50384                         if (this.dragZone.destroy) {
50385                                 this.dragZone.destroy();
50386                         }
50387                 }
50388                 if (this.dropZone) {
50389                         if (this.dropZone.destroy) {
50390                                 this.dropZone.destroy();
50391                         }
50392                 }
50393         },
50394
50395 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
50396         getName: function() {
50397                 return this.name;
50398         },
50399
50400 /**     Loads the View from a JSON string representing the Records to put into the Store. */
50401         setValue: function(v) {
50402                 if (!this.store) {
50403                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
50404                 }
50405                 var data = {};
50406                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
50407                 this.store.proxy = new Roo.data.MemoryProxy(data);
50408                 this.store.load();
50409         },
50410
50411 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
50412         getValue: function() {
50413                 var result = '(';
50414                 this.store.each(function(rec) {
50415                         result += rec.id + ',';
50416                 });
50417                 return result.substr(0, result.length - 1) + ')';
50418         },
50419         
50420         getIds: function() {
50421                 var i = 0, result = new Array(this.store.getCount());
50422                 this.store.each(function(rec) {
50423                         result[i++] = rec.id;
50424                 });
50425                 return result;
50426         },
50427         
50428         isDirty: function() {
50429                 return this.isDirtyFlag;
50430         },
50431
50432 /**
50433  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
50434  *      whole Element becomes the target, and this causes the drop gesture to append.
50435  */
50436     getTargetFromEvent : function(e) {
50437                 var target = e.getTarget();
50438                 while ((target !== null) && (target.parentNode != this.el.dom)) {
50439                 target = target.parentNode;
50440                 }
50441                 if (!target) {
50442                         target = this.el.dom.lastChild || this.el.dom;
50443                 }
50444                 return target;
50445     },
50446
50447 /**
50448  *      Create the drag data which consists of an object which has the property "ddel" as
50449  *      the drag proxy element. 
50450  */
50451     getDragData : function(e) {
50452         var target = this.findItemFromChild(e.getTarget());
50453                 if(target) {
50454                         this.handleSelection(e);
50455                         var selNodes = this.getSelectedNodes();
50456             var dragData = {
50457                 source: this,
50458                 copy: this.copy || (this.allowCopy && e.ctrlKey),
50459                 nodes: selNodes,
50460                 records: []
50461                         };
50462                         var selectedIndices = this.getSelectedIndexes();
50463                         for (var i = 0; i < selectedIndices.length; i++) {
50464                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
50465                         }
50466                         if (selNodes.length == 1) {
50467                                 dragData.ddel = target.cloneNode(true); // the div element
50468                         } else {
50469                                 var div = document.createElement('div'); // create the multi element drag "ghost"
50470                                 div.className = 'multi-proxy';
50471                                 for (var i = 0, len = selNodes.length; i < len; i++) {
50472                                         div.appendChild(selNodes[i].cloneNode(true));
50473                                 }
50474                                 dragData.ddel = div;
50475                         }
50476             //console.log(dragData)
50477             //console.log(dragData.ddel.innerHTML)
50478                         return dragData;
50479                 }
50480         //console.log('nodragData')
50481                 return false;
50482     },
50483     
50484 /**     Specify to which ddGroup items in this DDView may be dragged. */
50485     setDraggable: function(ddGroup) {
50486         if (ddGroup instanceof Array) {
50487                 Roo.each(ddGroup, this.setDraggable, this);
50488                 return;
50489         }
50490         if (this.dragZone) {
50491                 this.dragZone.addToGroup(ddGroup);
50492         } else {
50493                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
50494                                 containerScroll: true,
50495                                 ddGroup: ddGroup 
50496
50497                         });
50498 //                      Draggability implies selection. DragZone's mousedown selects the element.
50499                         if (!this.multiSelect) { this.singleSelect = true; }
50500
50501 //                      Wire the DragZone's handlers up to methods in *this*
50502                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
50503                 }
50504     },
50505
50506 /**     Specify from which ddGroup this DDView accepts drops. */
50507     setDroppable: function(ddGroup) {
50508         if (ddGroup instanceof Array) {
50509                 Roo.each(ddGroup, this.setDroppable, this);
50510                 return;
50511         }
50512         if (this.dropZone) {
50513                 this.dropZone.addToGroup(ddGroup);
50514         } else {
50515                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
50516                                 containerScroll: true,
50517                                 ddGroup: ddGroup
50518                         });
50519
50520 //                      Wire the DropZone's handlers up to methods in *this*
50521                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
50522                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
50523                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
50524                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
50525                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
50526                 }
50527     },
50528
50529 /**     Decide whether to drop above or below a View node. */
50530     getDropPoint : function(e, n, dd){
50531         if (n == this.el.dom) { return "above"; }
50532                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
50533                 var c = t + (b - t) / 2;
50534                 var y = Roo.lib.Event.getPageY(e);
50535                 if(y <= c) {
50536                         return "above";
50537                 }else{
50538                         return "below";
50539                 }
50540     },
50541
50542     onNodeEnter : function(n, dd, e, data){
50543                 return false;
50544     },
50545     
50546     onNodeOver : function(n, dd, e, data){
50547                 var pt = this.getDropPoint(e, n, dd);
50548                 // set the insert point style on the target node
50549                 var dragElClass = this.dropNotAllowed;
50550                 if (pt) {
50551                         var targetElClass;
50552                         if (pt == "above"){
50553                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
50554                                 targetElClass = "x-view-drag-insert-above";
50555                         } else {
50556                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
50557                                 targetElClass = "x-view-drag-insert-below";
50558                         }
50559                         if (this.lastInsertClass != targetElClass){
50560                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
50561                                 this.lastInsertClass = targetElClass;
50562                         }
50563                 }
50564                 return dragElClass;
50565         },
50566
50567     onNodeOut : function(n, dd, e, data){
50568                 this.removeDropIndicators(n);
50569     },
50570
50571     onNodeDrop : function(n, dd, e, data){
50572         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
50573                 return false;
50574         }
50575         var pt = this.getDropPoint(e, n, dd);
50576                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
50577                 if (pt == "below") { insertAt++; }
50578                 for (var i = 0; i < data.records.length; i++) {
50579                         var r = data.records[i];
50580                         var dup = this.store.getById(r.id);
50581                         if (dup && (dd != this.dragZone)) {
50582                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
50583                         } else {
50584                                 if (data.copy) {
50585                                         this.store.insert(insertAt++, r.copy());
50586                                 } else {
50587                                         data.source.isDirtyFlag = true;
50588                                         r.store.remove(r);
50589                                         this.store.insert(insertAt++, r);
50590                                 }
50591                                 this.isDirtyFlag = true;
50592                         }
50593                 }
50594                 this.dragZone.cachedTarget = null;
50595                 return true;
50596     },
50597
50598     removeDropIndicators : function(n){
50599                 if(n){
50600                         Roo.fly(n).removeClass([
50601                                 "x-view-drag-insert-above",
50602                                 "x-view-drag-insert-below"]);
50603                         this.lastInsertClass = "_noclass";
50604                 }
50605     },
50606
50607 /**
50608  *      Utility method. Add a delete option to the DDView's context menu.
50609  *      @param {String} imageUrl The URL of the "delete" icon image.
50610  */
50611         setDeletable: function(imageUrl) {
50612                 if (!this.singleSelect && !this.multiSelect) {
50613                         this.singleSelect = true;
50614                 }
50615                 var c = this.getContextMenu();
50616                 this.contextMenu.on("itemclick", function(item) {
50617                         switch (item.id) {
50618                                 case "delete":
50619                                         this.remove(this.getSelectedIndexes());
50620                                         break;
50621                         }
50622                 }, this);
50623                 this.contextMenu.add({
50624                         icon: imageUrl,
50625                         id: "delete",
50626                         text: 'Delete'
50627                 });
50628         },
50629         
50630 /**     Return the context menu for this DDView. */
50631         getContextMenu: function() {
50632                 if (!this.contextMenu) {
50633 //                      Create the View's context menu
50634                         this.contextMenu = new Roo.menu.Menu({
50635                                 id: this.id + "-contextmenu"
50636                         });
50637                         this.el.on("contextmenu", this.showContextMenu, this);
50638                 }
50639                 return this.contextMenu;
50640         },
50641         
50642         disableContextMenu: function() {
50643                 if (this.contextMenu) {
50644                         this.el.un("contextmenu", this.showContextMenu, this);
50645                 }
50646         },
50647
50648         showContextMenu: function(e, item) {
50649         item = this.findItemFromChild(e.getTarget());
50650                 if (item) {
50651                         e.stopEvent();
50652                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
50653                         this.contextMenu.showAt(e.getXY());
50654             }
50655     },
50656
50657 /**
50658  *      Remove {@link Roo.data.Record}s at the specified indices.
50659  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
50660  */
50661     remove: function(selectedIndices) {
50662                 selectedIndices = [].concat(selectedIndices);
50663                 for (var i = 0; i < selectedIndices.length; i++) {
50664                         var rec = this.store.getAt(selectedIndices[i]);
50665                         this.store.remove(rec);
50666                 }
50667     },
50668
50669 /**
50670  *      Double click fires the event, but also, if this is draggable, and there is only one other
50671  *      related DropZone, it transfers the selected node.
50672  */
50673     onDblClick : function(e){
50674         var item = this.findItemFromChild(e.getTarget());
50675         if(item){
50676             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
50677                 return false;
50678             }
50679             if (this.dragGroup) {
50680                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
50681                     while (targets.indexOf(this.dropZone) > -1) {
50682                             targets.remove(this.dropZone);
50683                                 }
50684                     if (targets.length == 1) {
50685                                         this.dragZone.cachedTarget = null;
50686                         var el = Roo.get(targets[0].getEl());
50687                         var box = el.getBox(true);
50688                         targets[0].onNodeDrop(el.dom, {
50689                                 target: el.dom,
50690                                 xy: [box.x, box.y + box.height - 1]
50691                         }, null, this.getDragData(e));
50692                     }
50693                 }
50694         }
50695     },
50696     
50697     handleSelection: function(e) {
50698                 this.dragZone.cachedTarget = null;
50699         var item = this.findItemFromChild(e.getTarget());
50700         if (!item) {
50701                 this.clearSelections(true);
50702                 return;
50703         }
50704                 if (item && (this.multiSelect || this.singleSelect)){
50705                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
50706                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
50707                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
50708                                 this.unselect(item);
50709                         } else {
50710                                 this.select(item, this.multiSelect && e.ctrlKey);
50711                                 this.lastSelection = item;
50712                         }
50713                 }
50714     },
50715
50716     onItemClick : function(item, index, e){
50717                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
50718                         return false;
50719                 }
50720                 return true;
50721     },
50722
50723     unselect : function(nodeInfo, suppressEvent){
50724                 var node = this.getNode(nodeInfo);
50725                 if(node && this.isSelected(node)){
50726                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
50727                                 Roo.fly(node).removeClass(this.selectedClass);
50728                                 this.selections.remove(node);
50729                                 if(!suppressEvent){
50730                                         this.fireEvent("selectionchange", this, this.selections);
50731                                 }
50732                         }
50733                 }
50734     }
50735 });
50736 /*
50737  * Based on:
50738  * Ext JS Library 1.1.1
50739  * Copyright(c) 2006-2007, Ext JS, LLC.
50740  *
50741  * Originally Released Under LGPL - original licence link has changed is not relivant.
50742  *
50743  * Fork - LGPL
50744  * <script type="text/javascript">
50745  */
50746  
50747 /**
50748  * @class Roo.LayoutManager
50749  * @extends Roo.util.Observable
50750  * Base class for layout managers.
50751  */
50752 Roo.LayoutManager = function(container, config){
50753     Roo.LayoutManager.superclass.constructor.call(this);
50754     this.el = Roo.get(container);
50755     // ie scrollbar fix
50756     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
50757         document.body.scroll = "no";
50758     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
50759         this.el.position('relative');
50760     }
50761     this.id = this.el.id;
50762     this.el.addClass("x-layout-container");
50763     /** false to disable window resize monitoring @type Boolean */
50764     this.monitorWindowResize = true;
50765     this.regions = {};
50766     this.addEvents({
50767         /**
50768          * @event layout
50769          * Fires when a layout is performed. 
50770          * @param {Roo.LayoutManager} this
50771          */
50772         "layout" : true,
50773         /**
50774          * @event regionresized
50775          * Fires when the user resizes a region. 
50776          * @param {Roo.LayoutRegion} region The resized region
50777          * @param {Number} newSize The new size (width for east/west, height for north/south)
50778          */
50779         "regionresized" : true,
50780         /**
50781          * @event regioncollapsed
50782          * Fires when a region is collapsed. 
50783          * @param {Roo.LayoutRegion} region The collapsed region
50784          */
50785         "regioncollapsed" : true,
50786         /**
50787          * @event regionexpanded
50788          * Fires when a region is expanded.  
50789          * @param {Roo.LayoutRegion} region The expanded region
50790          */
50791         "regionexpanded" : true
50792     });
50793     this.updating = false;
50794     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
50795 };
50796
50797 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
50798     /**
50799      * Returns true if this layout is currently being updated
50800      * @return {Boolean}
50801      */
50802     isUpdating : function(){
50803         return this.updating; 
50804     },
50805     
50806     /**
50807      * Suspend the LayoutManager from doing auto-layouts while
50808      * making multiple add or remove calls
50809      */
50810     beginUpdate : function(){
50811         this.updating = true;    
50812     },
50813     
50814     /**
50815      * Restore auto-layouts and optionally disable the manager from performing a layout
50816      * @param {Boolean} noLayout true to disable a layout update 
50817      */
50818     endUpdate : function(noLayout){
50819         this.updating = false;
50820         if(!noLayout){
50821             this.layout();
50822         }    
50823     },
50824     
50825     layout: function(){
50826         
50827     },
50828     
50829     onRegionResized : function(region, newSize){
50830         this.fireEvent("regionresized", region, newSize);
50831         this.layout();
50832     },
50833     
50834     onRegionCollapsed : function(region){
50835         this.fireEvent("regioncollapsed", region);
50836     },
50837     
50838     onRegionExpanded : function(region){
50839         this.fireEvent("regionexpanded", region);
50840     },
50841         
50842     /**
50843      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
50844      * performs box-model adjustments.
50845      * @return {Object} The size as an object {width: (the width), height: (the height)}
50846      */
50847     getViewSize : function(){
50848         var size;
50849         if(this.el.dom != document.body){
50850             size = this.el.getSize();
50851         }else{
50852             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
50853         }
50854         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
50855         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
50856         return size;
50857     },
50858     
50859     /**
50860      * Returns the Element this layout is bound to.
50861      * @return {Roo.Element}
50862      */
50863     getEl : function(){
50864         return this.el;
50865     },
50866     
50867     /**
50868      * Returns the specified region.
50869      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
50870      * @return {Roo.LayoutRegion}
50871      */
50872     getRegion : function(target){
50873         return this.regions[target.toLowerCase()];
50874     },
50875     
50876     onWindowResize : function(){
50877         if(this.monitorWindowResize){
50878             this.layout();
50879         }
50880     }
50881 });/*
50882  * Based on:
50883  * Ext JS Library 1.1.1
50884  * Copyright(c) 2006-2007, Ext JS, LLC.
50885  *
50886  * Originally Released Under LGPL - original licence link has changed is not relivant.
50887  *
50888  * Fork - LGPL
50889  * <script type="text/javascript">
50890  */
50891 /**
50892  * @class Roo.BorderLayout
50893  * @extends Roo.LayoutManager
50894  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
50895  * please see: <br><br>
50896  * <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>
50897  * <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>
50898  * Example:
50899  <pre><code>
50900  var layout = new Roo.BorderLayout(document.body, {
50901     north: {
50902         initialSize: 25,
50903         titlebar: false
50904     },
50905     west: {
50906         split:true,
50907         initialSize: 200,
50908         minSize: 175,
50909         maxSize: 400,
50910         titlebar: true,
50911         collapsible: true
50912     },
50913     east: {
50914         split:true,
50915         initialSize: 202,
50916         minSize: 175,
50917         maxSize: 400,
50918         titlebar: true,
50919         collapsible: true
50920     },
50921     south: {
50922         split:true,
50923         initialSize: 100,
50924         minSize: 100,
50925         maxSize: 200,
50926         titlebar: true,
50927         collapsible: true
50928     },
50929     center: {
50930         titlebar: true,
50931         autoScroll:true,
50932         resizeTabs: true,
50933         minTabWidth: 50,
50934         preferredTabWidth: 150
50935     }
50936 });
50937
50938 // shorthand
50939 var CP = Roo.ContentPanel;
50940
50941 layout.beginUpdate();
50942 layout.add("north", new CP("north", "North"));
50943 layout.add("south", new CP("south", {title: "South", closable: true}));
50944 layout.add("west", new CP("west", {title: "West"}));
50945 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
50946 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
50947 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
50948 layout.getRegion("center").showPanel("center1");
50949 layout.endUpdate();
50950 </code></pre>
50951
50952 <b>The container the layout is rendered into can be either the body element or any other element.
50953 If it is not the body element, the container needs to either be an absolute positioned element,
50954 or you will need to add "position:relative" to the css of the container.  You will also need to specify
50955 the container size if it is not the body element.</b>
50956
50957 * @constructor
50958 * Create a new BorderLayout
50959 * @param {String/HTMLElement/Element} container The container this layout is bound to
50960 * @param {Object} config Configuration options
50961  */
50962 Roo.BorderLayout = function(container, config){
50963     config = config || {};
50964     Roo.BorderLayout.superclass.constructor.call(this, container, config);
50965     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
50966     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
50967         var target = this.factory.validRegions[i];
50968         if(config[target]){
50969             this.addRegion(target, config[target]);
50970         }
50971     }
50972 };
50973
50974 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
50975     /**
50976      * Creates and adds a new region if it doesn't already exist.
50977      * @param {String} target The target region key (north, south, east, west or center).
50978      * @param {Object} config The regions config object
50979      * @return {BorderLayoutRegion} The new region
50980      */
50981     addRegion : function(target, config){
50982         if(!this.regions[target]){
50983             var r = this.factory.create(target, this, config);
50984             this.bindRegion(target, r);
50985         }
50986         return this.regions[target];
50987     },
50988
50989     // private (kinda)
50990     bindRegion : function(name, r){
50991         this.regions[name] = r;
50992         r.on("visibilitychange", this.layout, this);
50993         r.on("paneladded", this.layout, this);
50994         r.on("panelremoved", this.layout, this);
50995         r.on("invalidated", this.layout, this);
50996         r.on("resized", this.onRegionResized, this);
50997         r.on("collapsed", this.onRegionCollapsed, this);
50998         r.on("expanded", this.onRegionExpanded, this);
50999     },
51000
51001     /**
51002      * Performs a layout update.
51003      */
51004     layout : function(){
51005         if(this.updating) {
51006             return;
51007         }
51008         var size = this.getViewSize();
51009         var w = size.width;
51010         var h = size.height;
51011         var centerW = w;
51012         var centerH = h;
51013         var centerY = 0;
51014         var centerX = 0;
51015         //var x = 0, y = 0;
51016
51017         var rs = this.regions;
51018         var north = rs["north"];
51019         var south = rs["south"]; 
51020         var west = rs["west"];
51021         var east = rs["east"];
51022         var center = rs["center"];
51023         //if(this.hideOnLayout){ // not supported anymore
51024             //c.el.setStyle("display", "none");
51025         //}
51026         if(north && north.isVisible()){
51027             var b = north.getBox();
51028             var m = north.getMargins();
51029             b.width = w - (m.left+m.right);
51030             b.x = m.left;
51031             b.y = m.top;
51032             centerY = b.height + b.y + m.bottom;
51033             centerH -= centerY;
51034             north.updateBox(this.safeBox(b));
51035         }
51036         if(south && south.isVisible()){
51037             var b = south.getBox();
51038             var m = south.getMargins();
51039             b.width = w - (m.left+m.right);
51040             b.x = m.left;
51041             var totalHeight = (b.height + m.top + m.bottom);
51042             b.y = h - totalHeight + m.top;
51043             centerH -= totalHeight;
51044             south.updateBox(this.safeBox(b));
51045         }
51046         if(west && west.isVisible()){
51047             var b = west.getBox();
51048             var m = west.getMargins();
51049             b.height = centerH - (m.top+m.bottom);
51050             b.x = m.left;
51051             b.y = centerY + m.top;
51052             var totalWidth = (b.width + m.left + m.right);
51053             centerX += totalWidth;
51054             centerW -= totalWidth;
51055             west.updateBox(this.safeBox(b));
51056         }
51057         if(east && east.isVisible()){
51058             var b = east.getBox();
51059             var m = east.getMargins();
51060             b.height = centerH - (m.top+m.bottom);
51061             var totalWidth = (b.width + m.left + m.right);
51062             b.x = w - totalWidth + m.left;
51063             b.y = centerY + m.top;
51064             centerW -= totalWidth;
51065             east.updateBox(this.safeBox(b));
51066         }
51067         if(center){
51068             var m = center.getMargins();
51069             var centerBox = {
51070                 x: centerX + m.left,
51071                 y: centerY + m.top,
51072                 width: centerW - (m.left+m.right),
51073                 height: centerH - (m.top+m.bottom)
51074             };
51075             //if(this.hideOnLayout){
51076                 //center.el.setStyle("display", "block");
51077             //}
51078             center.updateBox(this.safeBox(centerBox));
51079         }
51080         this.el.repaint();
51081         this.fireEvent("layout", this);
51082     },
51083
51084     // private
51085     safeBox : function(box){
51086         box.width = Math.max(0, box.width);
51087         box.height = Math.max(0, box.height);
51088         return box;
51089     },
51090
51091     /**
51092      * Adds a ContentPanel (or subclass) to this layout.
51093      * @param {String} target The target region key (north, south, east, west or center).
51094      * @param {Roo.ContentPanel} panel The panel to add
51095      * @return {Roo.ContentPanel} The added panel
51096      */
51097     add : function(target, panel){
51098          
51099         target = target.toLowerCase();
51100         return this.regions[target].add(panel);
51101     },
51102
51103     /**
51104      * Remove a ContentPanel (or subclass) to this layout.
51105      * @param {String} target The target region key (north, south, east, west or center).
51106      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
51107      * @return {Roo.ContentPanel} The removed panel
51108      */
51109     remove : function(target, panel){
51110         target = target.toLowerCase();
51111         return this.regions[target].remove(panel);
51112     },
51113
51114     /**
51115      * Searches all regions for a panel with the specified id
51116      * @param {String} panelId
51117      * @return {Roo.ContentPanel} The panel or null if it wasn't found
51118      */
51119     findPanel : function(panelId){
51120         var rs = this.regions;
51121         for(var target in rs){
51122             if(typeof rs[target] != "function"){
51123                 var p = rs[target].getPanel(panelId);
51124                 if(p){
51125                     return p;
51126                 }
51127             }
51128         }
51129         return null;
51130     },
51131
51132     /**
51133      * Searches all regions for a panel with the specified id and activates (shows) it.
51134      * @param {String/ContentPanel} panelId The panels id or the panel itself
51135      * @return {Roo.ContentPanel} The shown panel or null
51136      */
51137     showPanel : function(panelId) {
51138       var rs = this.regions;
51139       for(var target in rs){
51140          var r = rs[target];
51141          if(typeof r != "function"){
51142             if(r.hasPanel(panelId)){
51143                return r.showPanel(panelId);
51144             }
51145          }
51146       }
51147       return null;
51148    },
51149
51150    /**
51151      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
51152      * @param {Roo.state.Provider} provider (optional) An alternate state provider
51153      */
51154     restoreState : function(provider){
51155         if(!provider){
51156             provider = Roo.state.Manager;
51157         }
51158         var sm = new Roo.LayoutStateManager();
51159         sm.init(this, provider);
51160     },
51161
51162     /**
51163      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
51164      * object should contain properties for each region to add ContentPanels to, and each property's value should be
51165      * a valid ContentPanel config object.  Example:
51166      * <pre><code>
51167 // Create the main layout
51168 var layout = new Roo.BorderLayout('main-ct', {
51169     west: {
51170         split:true,
51171         minSize: 175,
51172         titlebar: true
51173     },
51174     center: {
51175         title:'Components'
51176     }
51177 }, 'main-ct');
51178
51179 // Create and add multiple ContentPanels at once via configs
51180 layout.batchAdd({
51181    west: {
51182        id: 'source-files',
51183        autoCreate:true,
51184        title:'Ext Source Files',
51185        autoScroll:true,
51186        fitToFrame:true
51187    },
51188    center : {
51189        el: cview,
51190        autoScroll:true,
51191        fitToFrame:true,
51192        toolbar: tb,
51193        resizeEl:'cbody'
51194    }
51195 });
51196 </code></pre>
51197      * @param {Object} regions An object containing ContentPanel configs by region name
51198      */
51199     batchAdd : function(regions){
51200         this.beginUpdate();
51201         for(var rname in regions){
51202             var lr = this.regions[rname];
51203             if(lr){
51204                 this.addTypedPanels(lr, regions[rname]);
51205             }
51206         }
51207         this.endUpdate();
51208     },
51209
51210     // private
51211     addTypedPanels : function(lr, ps){
51212         if(typeof ps == 'string'){
51213             lr.add(new Roo.ContentPanel(ps));
51214         }
51215         else if(ps instanceof Array){
51216             for(var i =0, len = ps.length; i < len; i++){
51217                 this.addTypedPanels(lr, ps[i]);
51218             }
51219         }
51220         else if(!ps.events){ // raw config?
51221             var el = ps.el;
51222             delete ps.el; // prevent conflict
51223             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
51224         }
51225         else {  // panel object assumed!
51226             lr.add(ps);
51227         }
51228     },
51229     /**
51230      * Adds a xtype elements to the layout.
51231      * <pre><code>
51232
51233 layout.addxtype({
51234        xtype : 'ContentPanel',
51235        region: 'west',
51236        items: [ .... ]
51237    }
51238 );
51239
51240 layout.addxtype({
51241         xtype : 'NestedLayoutPanel',
51242         region: 'west',
51243         layout: {
51244            center: { },
51245            west: { }   
51246         },
51247         items : [ ... list of content panels or nested layout panels.. ]
51248    }
51249 );
51250 </code></pre>
51251      * @param {Object} cfg Xtype definition of item to add.
51252      */
51253     addxtype : function(cfg)
51254     {
51255         // basically accepts a pannel...
51256         // can accept a layout region..!?!?
51257         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
51258         
51259         if (!cfg.xtype.match(/Panel$/)) {
51260             return false;
51261         }
51262         var ret = false;
51263         
51264         if (typeof(cfg.region) == 'undefined') {
51265             Roo.log("Failed to add Panel, region was not set");
51266             Roo.log(cfg);
51267             return false;
51268         }
51269         var region = cfg.region;
51270         delete cfg.region;
51271         
51272           
51273         var xitems = [];
51274         if (cfg.items) {
51275             xitems = cfg.items;
51276             delete cfg.items;
51277         }
51278         var nb = false;
51279         
51280         switch(cfg.xtype) 
51281         {
51282             case 'ContentPanel':  // ContentPanel (el, cfg)
51283             case 'ScrollPanel':  // ContentPanel (el, cfg)
51284             case 'ViewPanel': 
51285                 if(cfg.autoCreate) {
51286                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
51287                 } else {
51288                     var el = this.el.createChild();
51289                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
51290                 }
51291                 
51292                 this.add(region, ret);
51293                 break;
51294             
51295             
51296             case 'TreePanel': // our new panel!
51297                 cfg.el = this.el.createChild();
51298                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
51299                 this.add(region, ret);
51300                 break;
51301             
51302             case 'NestedLayoutPanel': 
51303                 // create a new Layout (which is  a Border Layout...
51304                 var el = this.el.createChild();
51305                 var clayout = cfg.layout;
51306                 delete cfg.layout;
51307                 clayout.items   = clayout.items  || [];
51308                 // replace this exitems with the clayout ones..
51309                 xitems = clayout.items;
51310                  
51311                 
51312                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
51313                     cfg.background = false;
51314                 }
51315                 var layout = new Roo.BorderLayout(el, clayout);
51316                 
51317                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
51318                 //console.log('adding nested layout panel '  + cfg.toSource());
51319                 this.add(region, ret);
51320                 nb = {}; /// find first...
51321                 break;
51322                 
51323             case 'GridPanel': 
51324             
51325                 // needs grid and region
51326                 
51327                 //var el = this.getRegion(region).el.createChild();
51328                 var el = this.el.createChild();
51329                 // create the grid first...
51330                 
51331                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
51332                 delete cfg.grid;
51333                 if (region == 'center' && this.active ) {
51334                     cfg.background = false;
51335                 }
51336                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
51337                 
51338                 this.add(region, ret);
51339                 if (cfg.background) {
51340                     ret.on('activate', function(gp) {
51341                         if (!gp.grid.rendered) {
51342                             gp.grid.render();
51343                         }
51344                     });
51345                 } else {
51346                     grid.render();
51347                 }
51348                 break;
51349            
51350            
51351            
51352                 
51353                 
51354                 
51355             default:
51356                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
51357                     
51358                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
51359                     this.add(region, ret);
51360                 } else {
51361                 
51362                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
51363                     return null;
51364                 }
51365                 
51366              // GridPanel (grid, cfg)
51367             
51368         }
51369         this.beginUpdate();
51370         // add children..
51371         var region = '';
51372         var abn = {};
51373         Roo.each(xitems, function(i)  {
51374             region = nb && i.region ? i.region : false;
51375             
51376             var add = ret.addxtype(i);
51377            
51378             if (region) {
51379                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
51380                 if (!i.background) {
51381                     abn[region] = nb[region] ;
51382                 }
51383             }
51384             
51385         });
51386         this.endUpdate();
51387
51388         // make the last non-background panel active..
51389         //if (nb) { Roo.log(abn); }
51390         if (nb) {
51391             
51392             for(var r in abn) {
51393                 region = this.getRegion(r);
51394                 if (region) {
51395                     // tried using nb[r], but it does not work..
51396                      
51397                     region.showPanel(abn[r]);
51398                    
51399                 }
51400             }
51401         }
51402         return ret;
51403         
51404     }
51405 });
51406
51407 /**
51408  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
51409  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
51410  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
51411  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
51412  * <pre><code>
51413 // shorthand
51414 var CP = Roo.ContentPanel;
51415
51416 var layout = Roo.BorderLayout.create({
51417     north: {
51418         initialSize: 25,
51419         titlebar: false,
51420         panels: [new CP("north", "North")]
51421     },
51422     west: {
51423         split:true,
51424         initialSize: 200,
51425         minSize: 175,
51426         maxSize: 400,
51427         titlebar: true,
51428         collapsible: true,
51429         panels: [new CP("west", {title: "West"})]
51430     },
51431     east: {
51432         split:true,
51433         initialSize: 202,
51434         minSize: 175,
51435         maxSize: 400,
51436         titlebar: true,
51437         collapsible: true,
51438         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
51439     },
51440     south: {
51441         split:true,
51442         initialSize: 100,
51443         minSize: 100,
51444         maxSize: 200,
51445         titlebar: true,
51446         collapsible: true,
51447         panels: [new CP("south", {title: "South", closable: true})]
51448     },
51449     center: {
51450         titlebar: true,
51451         autoScroll:true,
51452         resizeTabs: true,
51453         minTabWidth: 50,
51454         preferredTabWidth: 150,
51455         panels: [
51456             new CP("center1", {title: "Close Me", closable: true}),
51457             new CP("center2", {title: "Center Panel", closable: false})
51458         ]
51459     }
51460 }, document.body);
51461
51462 layout.getRegion("center").showPanel("center1");
51463 </code></pre>
51464  * @param config
51465  * @param targetEl
51466  */
51467 Roo.BorderLayout.create = function(config, targetEl){
51468     var layout = new Roo.BorderLayout(targetEl || document.body, config);
51469     layout.beginUpdate();
51470     var regions = Roo.BorderLayout.RegionFactory.validRegions;
51471     for(var j = 0, jlen = regions.length; j < jlen; j++){
51472         var lr = regions[j];
51473         if(layout.regions[lr] && config[lr].panels){
51474             var r = layout.regions[lr];
51475             var ps = config[lr].panels;
51476             layout.addTypedPanels(r, ps);
51477         }
51478     }
51479     layout.endUpdate();
51480     return layout;
51481 };
51482
51483 // private
51484 Roo.BorderLayout.RegionFactory = {
51485     // private
51486     validRegions : ["north","south","east","west","center"],
51487
51488     // private
51489     create : function(target, mgr, config){
51490         target = target.toLowerCase();
51491         if(config.lightweight || config.basic){
51492             return new Roo.BasicLayoutRegion(mgr, config, target);
51493         }
51494         switch(target){
51495             case "north":
51496                 return new Roo.NorthLayoutRegion(mgr, config);
51497             case "south":
51498                 return new Roo.SouthLayoutRegion(mgr, config);
51499             case "east":
51500                 return new Roo.EastLayoutRegion(mgr, config);
51501             case "west":
51502                 return new Roo.WestLayoutRegion(mgr, config);
51503             case "center":
51504                 return new Roo.CenterLayoutRegion(mgr, config);
51505         }
51506         throw 'Layout region "'+target+'" not supported.';
51507     }
51508 };/*
51509  * Based on:
51510  * Ext JS Library 1.1.1
51511  * Copyright(c) 2006-2007, Ext JS, LLC.
51512  *
51513  * Originally Released Under LGPL - original licence link has changed is not relivant.
51514  *
51515  * Fork - LGPL
51516  * <script type="text/javascript">
51517  */
51518  
51519 /**
51520  * @class Roo.BasicLayoutRegion
51521  * @extends Roo.util.Observable
51522  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
51523  * and does not have a titlebar, tabs or any other features. All it does is size and position 
51524  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
51525  */
51526 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
51527     this.mgr = mgr;
51528     this.position  = pos;
51529     this.events = {
51530         /**
51531          * @scope Roo.BasicLayoutRegion
51532          */
51533         
51534         /**
51535          * @event beforeremove
51536          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
51537          * @param {Roo.LayoutRegion} this
51538          * @param {Roo.ContentPanel} panel The panel
51539          * @param {Object} e The cancel event object
51540          */
51541         "beforeremove" : true,
51542         /**
51543          * @event invalidated
51544          * Fires when the layout for this region is changed.
51545          * @param {Roo.LayoutRegion} this
51546          */
51547         "invalidated" : true,
51548         /**
51549          * @event visibilitychange
51550          * Fires when this region is shown or hidden 
51551          * @param {Roo.LayoutRegion} this
51552          * @param {Boolean} visibility true or false
51553          */
51554         "visibilitychange" : true,
51555         /**
51556          * @event paneladded
51557          * Fires when a panel is added. 
51558          * @param {Roo.LayoutRegion} this
51559          * @param {Roo.ContentPanel} panel The panel
51560          */
51561         "paneladded" : true,
51562         /**
51563          * @event panelremoved
51564          * Fires when a panel is removed. 
51565          * @param {Roo.LayoutRegion} this
51566          * @param {Roo.ContentPanel} panel The panel
51567          */
51568         "panelremoved" : true,
51569         /**
51570          * @event beforecollapse
51571          * Fires when this region before collapse.
51572          * @param {Roo.LayoutRegion} this
51573          */
51574         "beforecollapse" : true,
51575         /**
51576          * @event collapsed
51577          * Fires when this region is collapsed.
51578          * @param {Roo.LayoutRegion} this
51579          */
51580         "collapsed" : true,
51581         /**
51582          * @event expanded
51583          * Fires when this region is expanded.
51584          * @param {Roo.LayoutRegion} this
51585          */
51586         "expanded" : true,
51587         /**
51588          * @event slideshow
51589          * Fires when this region is slid into view.
51590          * @param {Roo.LayoutRegion} this
51591          */
51592         "slideshow" : true,
51593         /**
51594          * @event slidehide
51595          * Fires when this region slides out of view. 
51596          * @param {Roo.LayoutRegion} this
51597          */
51598         "slidehide" : true,
51599         /**
51600          * @event panelactivated
51601          * Fires when a panel is activated. 
51602          * @param {Roo.LayoutRegion} this
51603          * @param {Roo.ContentPanel} panel The activated panel
51604          */
51605         "panelactivated" : true,
51606         /**
51607          * @event resized
51608          * Fires when the user resizes this region. 
51609          * @param {Roo.LayoutRegion} this
51610          * @param {Number} newSize The new size (width for east/west, height for north/south)
51611          */
51612         "resized" : true
51613     };
51614     /** A collection of panels in this region. @type Roo.util.MixedCollection */
51615     this.panels = new Roo.util.MixedCollection();
51616     this.panels.getKey = this.getPanelId.createDelegate(this);
51617     this.box = null;
51618     this.activePanel = null;
51619     // ensure listeners are added...
51620     
51621     if (config.listeners || config.events) {
51622         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
51623             listeners : config.listeners || {},
51624             events : config.events || {}
51625         });
51626     }
51627     
51628     if(skipConfig !== true){
51629         this.applyConfig(config);
51630     }
51631 };
51632
51633 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
51634     getPanelId : function(p){
51635         return p.getId();
51636     },
51637     
51638     applyConfig : function(config){
51639         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
51640         this.config = config;
51641         
51642     },
51643     
51644     /**
51645      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
51646      * the width, for horizontal (north, south) the height.
51647      * @param {Number} newSize The new width or height
51648      */
51649     resizeTo : function(newSize){
51650         var el = this.el ? this.el :
51651                  (this.activePanel ? this.activePanel.getEl() : null);
51652         if(el){
51653             switch(this.position){
51654                 case "east":
51655                 case "west":
51656                     el.setWidth(newSize);
51657                     this.fireEvent("resized", this, newSize);
51658                 break;
51659                 case "north":
51660                 case "south":
51661                     el.setHeight(newSize);
51662                     this.fireEvent("resized", this, newSize);
51663                 break;                
51664             }
51665         }
51666     },
51667     
51668     getBox : function(){
51669         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
51670     },
51671     
51672     getMargins : function(){
51673         return this.margins;
51674     },
51675     
51676     updateBox : function(box){
51677         this.box = box;
51678         var el = this.activePanel.getEl();
51679         el.dom.style.left = box.x + "px";
51680         el.dom.style.top = box.y + "px";
51681         this.activePanel.setSize(box.width, box.height);
51682     },
51683     
51684     /**
51685      * Returns the container element for this region.
51686      * @return {Roo.Element}
51687      */
51688     getEl : function(){
51689         return this.activePanel;
51690     },
51691     
51692     /**
51693      * Returns true if this region is currently visible.
51694      * @return {Boolean}
51695      */
51696     isVisible : function(){
51697         return this.activePanel ? true : false;
51698     },
51699     
51700     setActivePanel : function(panel){
51701         panel = this.getPanel(panel);
51702         if(this.activePanel && this.activePanel != panel){
51703             this.activePanel.setActiveState(false);
51704             this.activePanel.getEl().setLeftTop(-10000,-10000);
51705         }
51706         this.activePanel = panel;
51707         panel.setActiveState(true);
51708         if(this.box){
51709             panel.setSize(this.box.width, this.box.height);
51710         }
51711         this.fireEvent("panelactivated", this, panel);
51712         this.fireEvent("invalidated");
51713     },
51714     
51715     /**
51716      * Show the specified panel.
51717      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
51718      * @return {Roo.ContentPanel} The shown panel or null
51719      */
51720     showPanel : function(panel){
51721         if(panel = this.getPanel(panel)){
51722             this.setActivePanel(panel);
51723         }
51724         return panel;
51725     },
51726     
51727     /**
51728      * Get the active panel for this region.
51729      * @return {Roo.ContentPanel} The active panel or null
51730      */
51731     getActivePanel : function(){
51732         return this.activePanel;
51733     },
51734     
51735     /**
51736      * Add the passed ContentPanel(s)
51737      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
51738      * @return {Roo.ContentPanel} The panel added (if only one was added)
51739      */
51740     add : function(panel){
51741         if(arguments.length > 1){
51742             for(var i = 0, len = arguments.length; i < len; i++) {
51743                 this.add(arguments[i]);
51744             }
51745             return null;
51746         }
51747         if(this.hasPanel(panel)){
51748             this.showPanel(panel);
51749             return panel;
51750         }
51751         var el = panel.getEl();
51752         if(el.dom.parentNode != this.mgr.el.dom){
51753             this.mgr.el.dom.appendChild(el.dom);
51754         }
51755         if(panel.setRegion){
51756             panel.setRegion(this);
51757         }
51758         this.panels.add(panel);
51759         el.setStyle("position", "absolute");
51760         if(!panel.background){
51761             this.setActivePanel(panel);
51762             if(this.config.initialSize && this.panels.getCount()==1){
51763                 this.resizeTo(this.config.initialSize);
51764             }
51765         }
51766         this.fireEvent("paneladded", this, panel);
51767         return panel;
51768     },
51769     
51770     /**
51771      * Returns true if the panel is in this region.
51772      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
51773      * @return {Boolean}
51774      */
51775     hasPanel : function(panel){
51776         if(typeof panel == "object"){ // must be panel obj
51777             panel = panel.getId();
51778         }
51779         return this.getPanel(panel) ? true : false;
51780     },
51781     
51782     /**
51783      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
51784      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
51785      * @param {Boolean} preservePanel Overrides the config preservePanel option
51786      * @return {Roo.ContentPanel} The panel that was removed
51787      */
51788     remove : function(panel, preservePanel){
51789         panel = this.getPanel(panel);
51790         if(!panel){
51791             return null;
51792         }
51793         var e = {};
51794         this.fireEvent("beforeremove", this, panel, e);
51795         if(e.cancel === true){
51796             return null;
51797         }
51798         var panelId = panel.getId();
51799         this.panels.removeKey(panelId);
51800         return panel;
51801     },
51802     
51803     /**
51804      * Returns the panel specified or null if it's not in this region.
51805      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
51806      * @return {Roo.ContentPanel}
51807      */
51808     getPanel : function(id){
51809         if(typeof id == "object"){ // must be panel obj
51810             return id;
51811         }
51812         return this.panels.get(id);
51813     },
51814     
51815     /**
51816      * Returns this regions position (north/south/east/west/center).
51817      * @return {String} 
51818      */
51819     getPosition: function(){
51820         return this.position;    
51821     }
51822 });/*
51823  * Based on:
51824  * Ext JS Library 1.1.1
51825  * Copyright(c) 2006-2007, Ext JS, LLC.
51826  *
51827  * Originally Released Under LGPL - original licence link has changed is not relivant.
51828  *
51829  * Fork - LGPL
51830  * <script type="text/javascript">
51831  */
51832  
51833 /**
51834  * @class Roo.LayoutRegion
51835  * @extends Roo.BasicLayoutRegion
51836  * This class represents a region in a layout manager.
51837  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
51838  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
51839  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
51840  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
51841  * @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})
51842  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
51843  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
51844  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
51845  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
51846  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
51847  * @cfg {String}    title           The title for the region (overrides panel titles)
51848  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
51849  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
51850  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
51851  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
51852  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
51853  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
51854  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
51855  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
51856  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
51857  * @cfg {Boolean}   showPin         True to show a pin button
51858  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
51859  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
51860  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
51861  * @cfg {Number}    width           For East/West panels
51862  * @cfg {Number}    height          For North/South panels
51863  * @cfg {Boolean}   split           To show the splitter
51864  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
51865  */
51866 Roo.LayoutRegion = function(mgr, config, pos){
51867     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
51868     var dh = Roo.DomHelper;
51869     /** This region's container element 
51870     * @type Roo.Element */
51871     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
51872     /** This region's title element 
51873     * @type Roo.Element */
51874
51875     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
51876         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
51877         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
51878     ]}, true);
51879     this.titleEl.enableDisplayMode();
51880     /** This region's title text element 
51881     * @type HTMLElement */
51882     this.titleTextEl = this.titleEl.dom.firstChild;
51883     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
51884     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
51885     this.closeBtn.enableDisplayMode();
51886     this.closeBtn.on("click", this.closeClicked, this);
51887     this.closeBtn.hide();
51888
51889     this.createBody(config);
51890     this.visible = true;
51891     this.collapsed = false;
51892
51893     if(config.hideWhenEmpty){
51894         this.hide();
51895         this.on("paneladded", this.validateVisibility, this);
51896         this.on("panelremoved", this.validateVisibility, this);
51897     }
51898     this.applyConfig(config);
51899 };
51900
51901 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
51902
51903     createBody : function(){
51904         /** This region's body element 
51905         * @type Roo.Element */
51906         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
51907     },
51908
51909     applyConfig : function(c){
51910         if(c.collapsible && this.position != "center" && !this.collapsedEl){
51911             var dh = Roo.DomHelper;
51912             if(c.titlebar !== false){
51913                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
51914                 this.collapseBtn.on("click", this.collapse, this);
51915                 this.collapseBtn.enableDisplayMode();
51916
51917                 if(c.showPin === true || this.showPin){
51918                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
51919                     this.stickBtn.enableDisplayMode();
51920                     this.stickBtn.on("click", this.expand, this);
51921                     this.stickBtn.hide();
51922                 }
51923             }
51924             /** This region's collapsed element
51925             * @type Roo.Element */
51926             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
51927                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
51928             ]}, true);
51929             if(c.floatable !== false){
51930                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
51931                this.collapsedEl.on("click", this.collapseClick, this);
51932             }
51933
51934             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
51935                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
51936                    id: "message", unselectable: "on", style:{"float":"left"}});
51937                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
51938              }
51939             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
51940             this.expandBtn.on("click", this.expand, this);
51941         }
51942         if(this.collapseBtn){
51943             this.collapseBtn.setVisible(c.collapsible == true);
51944         }
51945         this.cmargins = c.cmargins || this.cmargins ||
51946                          (this.position == "west" || this.position == "east" ?
51947                              {top: 0, left: 2, right:2, bottom: 0} :
51948                              {top: 2, left: 0, right:0, bottom: 2});
51949         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
51950         this.bottomTabs = c.tabPosition != "top";
51951         this.autoScroll = c.autoScroll || false;
51952         if(this.autoScroll){
51953             this.bodyEl.setStyle("overflow", "auto");
51954         }else{
51955             this.bodyEl.setStyle("overflow", "hidden");
51956         }
51957         //if(c.titlebar !== false){
51958             if((!c.titlebar && !c.title) || c.titlebar === false){
51959                 this.titleEl.hide();
51960             }else{
51961                 this.titleEl.show();
51962                 if(c.title){
51963                     this.titleTextEl.innerHTML = c.title;
51964                 }
51965             }
51966         //}
51967         this.duration = c.duration || .30;
51968         this.slideDuration = c.slideDuration || .45;
51969         this.config = c;
51970         if(c.collapsed){
51971             this.collapse(true);
51972         }
51973         if(c.hidden){
51974             this.hide();
51975         }
51976     },
51977     /**
51978      * Returns true if this region is currently visible.
51979      * @return {Boolean}
51980      */
51981     isVisible : function(){
51982         return this.visible;
51983     },
51984
51985     /**
51986      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
51987      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
51988      */
51989     setCollapsedTitle : function(title){
51990         title = title || "&#160;";
51991         if(this.collapsedTitleTextEl){
51992             this.collapsedTitleTextEl.innerHTML = title;
51993         }
51994     },
51995
51996     getBox : function(){
51997         var b;
51998         if(!this.collapsed){
51999             b = this.el.getBox(false, true);
52000         }else{
52001             b = this.collapsedEl.getBox(false, true);
52002         }
52003         return b;
52004     },
52005
52006     getMargins : function(){
52007         return this.collapsed ? this.cmargins : this.margins;
52008     },
52009
52010     highlight : function(){
52011         this.el.addClass("x-layout-panel-dragover");
52012     },
52013
52014     unhighlight : function(){
52015         this.el.removeClass("x-layout-panel-dragover");
52016     },
52017
52018     updateBox : function(box){
52019         this.box = box;
52020         if(!this.collapsed){
52021             this.el.dom.style.left = box.x + "px";
52022             this.el.dom.style.top = box.y + "px";
52023             this.updateBody(box.width, box.height);
52024         }else{
52025             this.collapsedEl.dom.style.left = box.x + "px";
52026             this.collapsedEl.dom.style.top = box.y + "px";
52027             this.collapsedEl.setSize(box.width, box.height);
52028         }
52029         if(this.tabs){
52030             this.tabs.autoSizeTabs();
52031         }
52032     },
52033
52034     updateBody : function(w, h){
52035         if(w !== null){
52036             this.el.setWidth(w);
52037             w -= this.el.getBorderWidth("rl");
52038             if(this.config.adjustments){
52039                 w += this.config.adjustments[0];
52040             }
52041         }
52042         if(h !== null){
52043             this.el.setHeight(h);
52044             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
52045             h -= this.el.getBorderWidth("tb");
52046             if(this.config.adjustments){
52047                 h += this.config.adjustments[1];
52048             }
52049             this.bodyEl.setHeight(h);
52050             if(this.tabs){
52051                 h = this.tabs.syncHeight(h);
52052             }
52053         }
52054         if(this.panelSize){
52055             w = w !== null ? w : this.panelSize.width;
52056             h = h !== null ? h : this.panelSize.height;
52057         }
52058         if(this.activePanel){
52059             var el = this.activePanel.getEl();
52060             w = w !== null ? w : el.getWidth();
52061             h = h !== null ? h : el.getHeight();
52062             this.panelSize = {width: w, height: h};
52063             this.activePanel.setSize(w, h);
52064         }
52065         if(Roo.isIE && this.tabs){
52066             this.tabs.el.repaint();
52067         }
52068     },
52069
52070     /**
52071      * Returns the container element for this region.
52072      * @return {Roo.Element}
52073      */
52074     getEl : function(){
52075         return this.el;
52076     },
52077
52078     /**
52079      * Hides this region.
52080      */
52081     hide : function(){
52082         if(!this.collapsed){
52083             this.el.dom.style.left = "-2000px";
52084             this.el.hide();
52085         }else{
52086             this.collapsedEl.dom.style.left = "-2000px";
52087             this.collapsedEl.hide();
52088         }
52089         this.visible = false;
52090         this.fireEvent("visibilitychange", this, false);
52091     },
52092
52093     /**
52094      * Shows this region if it was previously hidden.
52095      */
52096     show : function(){
52097         if(!this.collapsed){
52098             this.el.show();
52099         }else{
52100             this.collapsedEl.show();
52101         }
52102         this.visible = true;
52103         this.fireEvent("visibilitychange", this, true);
52104     },
52105
52106     closeClicked : function(){
52107         if(this.activePanel){
52108             this.remove(this.activePanel);
52109         }
52110     },
52111
52112     collapseClick : function(e){
52113         if(this.isSlid){
52114            e.stopPropagation();
52115            this.slideIn();
52116         }else{
52117            e.stopPropagation();
52118            this.slideOut();
52119         }
52120     },
52121
52122     /**
52123      * Collapses this region.
52124      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
52125      */
52126     collapse : function(skipAnim, skipCheck = false){
52127         if(this.collapsed) {
52128             return;
52129         }
52130         
52131         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
52132             
52133             this.collapsed = true;
52134             if(this.split){
52135                 this.split.el.hide();
52136             }
52137             if(this.config.animate && skipAnim !== true){
52138                 this.fireEvent("invalidated", this);
52139                 this.animateCollapse();
52140             }else{
52141                 this.el.setLocation(-20000,-20000);
52142                 this.el.hide();
52143                 this.collapsedEl.show();
52144                 this.fireEvent("collapsed", this);
52145                 this.fireEvent("invalidated", this);
52146             }
52147         }
52148         
52149     },
52150
52151     animateCollapse : function(){
52152         // overridden
52153     },
52154
52155     /**
52156      * Expands this region if it was previously collapsed.
52157      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
52158      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
52159      */
52160     expand : function(e, skipAnim){
52161         if(e) {
52162             e.stopPropagation();
52163         }
52164         if(!this.collapsed || this.el.hasActiveFx()) {
52165             return;
52166         }
52167         if(this.isSlid){
52168             this.afterSlideIn();
52169             skipAnim = true;
52170         }
52171         this.collapsed = false;
52172         if(this.config.animate && skipAnim !== true){
52173             this.animateExpand();
52174         }else{
52175             this.el.show();
52176             if(this.split){
52177                 this.split.el.show();
52178             }
52179             this.collapsedEl.setLocation(-2000,-2000);
52180             this.collapsedEl.hide();
52181             this.fireEvent("invalidated", this);
52182             this.fireEvent("expanded", this);
52183         }
52184     },
52185
52186     animateExpand : function(){
52187         // overridden
52188     },
52189
52190     initTabs : function()
52191     {
52192         this.bodyEl.setStyle("overflow", "hidden");
52193         var ts = new Roo.TabPanel(
52194                 this.bodyEl.dom,
52195                 {
52196                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
52197                     disableTooltips: this.config.disableTabTips,
52198                     toolbar : this.config.toolbar
52199                 }
52200         );
52201         if(this.config.hideTabs){
52202             ts.stripWrap.setDisplayed(false);
52203         }
52204         this.tabs = ts;
52205         ts.resizeTabs = this.config.resizeTabs === true;
52206         ts.minTabWidth = this.config.minTabWidth || 40;
52207         ts.maxTabWidth = this.config.maxTabWidth || 250;
52208         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
52209         ts.monitorResize = false;
52210         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
52211         ts.bodyEl.addClass('x-layout-tabs-body');
52212         this.panels.each(this.initPanelAsTab, this);
52213     },
52214
52215     initPanelAsTab : function(panel){
52216         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
52217                     this.config.closeOnTab && panel.isClosable());
52218         if(panel.tabTip !== undefined){
52219             ti.setTooltip(panel.tabTip);
52220         }
52221         ti.on("activate", function(){
52222               this.setActivePanel(panel);
52223         }, this);
52224         if(this.config.closeOnTab){
52225             ti.on("beforeclose", function(t, e){
52226                 e.cancel = true;
52227                 this.remove(panel);
52228             }, this);
52229         }
52230         return ti;
52231     },
52232
52233     updatePanelTitle : function(panel, title){
52234         if(this.activePanel == panel){
52235             this.updateTitle(title);
52236         }
52237         if(this.tabs){
52238             var ti = this.tabs.getTab(panel.getEl().id);
52239             ti.setText(title);
52240             if(panel.tabTip !== undefined){
52241                 ti.setTooltip(panel.tabTip);
52242             }
52243         }
52244     },
52245
52246     updateTitle : function(title){
52247         if(this.titleTextEl && !this.config.title){
52248             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
52249         }
52250     },
52251
52252     setActivePanel : function(panel){
52253         panel = this.getPanel(panel);
52254         if(this.activePanel && this.activePanel != panel){
52255             this.activePanel.setActiveState(false);
52256         }
52257         this.activePanel = panel;
52258         panel.setActiveState(true);
52259         if(this.panelSize){
52260             panel.setSize(this.panelSize.width, this.panelSize.height);
52261         }
52262         if(this.closeBtn){
52263             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
52264         }
52265         this.updateTitle(panel.getTitle());
52266         if(this.tabs){
52267             this.fireEvent("invalidated", this);
52268         }
52269         this.fireEvent("panelactivated", this, panel);
52270     },
52271
52272     /**
52273      * Shows the specified panel.
52274      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
52275      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
52276      */
52277     showPanel : function(panel)
52278     {
52279         panel = this.getPanel(panel);
52280         if(panel){
52281             if(this.tabs){
52282                 var tab = this.tabs.getTab(panel.getEl().id);
52283                 if(tab.isHidden()){
52284                     this.tabs.unhideTab(tab.id);
52285                 }
52286                 tab.activate();
52287             }else{
52288                 this.setActivePanel(panel);
52289             }
52290         }
52291         return panel;
52292     },
52293
52294     /**
52295      * Get the active panel for this region.
52296      * @return {Roo.ContentPanel} The active panel or null
52297      */
52298     getActivePanel : function(){
52299         return this.activePanel;
52300     },
52301
52302     validateVisibility : function(){
52303         if(this.panels.getCount() < 1){
52304             this.updateTitle("&#160;");
52305             this.closeBtn.hide();
52306             this.hide();
52307         }else{
52308             if(!this.isVisible()){
52309                 this.show();
52310             }
52311         }
52312     },
52313
52314     /**
52315      * Adds the passed ContentPanel(s) to this region.
52316      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52317      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
52318      */
52319     add : function(panel){
52320         if(arguments.length > 1){
52321             for(var i = 0, len = arguments.length; i < len; i++) {
52322                 this.add(arguments[i]);
52323             }
52324             return null;
52325         }
52326         if(this.hasPanel(panel)){
52327             this.showPanel(panel);
52328             return panel;
52329         }
52330         panel.setRegion(this);
52331         this.panels.add(panel);
52332         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
52333             this.bodyEl.dom.appendChild(panel.getEl().dom);
52334             if(panel.background !== true){
52335                 this.setActivePanel(panel);
52336             }
52337             this.fireEvent("paneladded", this, panel);
52338             return panel;
52339         }
52340         if(!this.tabs){
52341             this.initTabs();
52342         }else{
52343             this.initPanelAsTab(panel);
52344         }
52345         if(panel.background !== true){
52346             this.tabs.activate(panel.getEl().id);
52347         }
52348         this.fireEvent("paneladded", this, panel);
52349         return panel;
52350     },
52351
52352     /**
52353      * Hides the tab for the specified panel.
52354      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
52355      */
52356     hidePanel : function(panel){
52357         if(this.tabs && (panel = this.getPanel(panel))){
52358             this.tabs.hideTab(panel.getEl().id);
52359         }
52360     },
52361
52362     /**
52363      * Unhides the tab for a previously hidden panel.
52364      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
52365      */
52366     unhidePanel : function(panel){
52367         if(this.tabs && (panel = this.getPanel(panel))){
52368             this.tabs.unhideTab(panel.getEl().id);
52369         }
52370     },
52371
52372     clearPanels : function(){
52373         while(this.panels.getCount() > 0){
52374              this.remove(this.panels.first());
52375         }
52376     },
52377
52378     /**
52379      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52380      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
52381      * @param {Boolean} preservePanel Overrides the config preservePanel option
52382      * @return {Roo.ContentPanel} The panel that was removed
52383      */
52384     remove : function(panel, preservePanel){
52385         panel = this.getPanel(panel);
52386         if(!panel){
52387             return null;
52388         }
52389         var e = {};
52390         this.fireEvent("beforeremove", this, panel, e);
52391         if(e.cancel === true){
52392             return null;
52393         }
52394         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
52395         var panelId = panel.getId();
52396         this.panels.removeKey(panelId);
52397         if(preservePanel){
52398             document.body.appendChild(panel.getEl().dom);
52399         }
52400         if(this.tabs){
52401             this.tabs.removeTab(panel.getEl().id);
52402         }else if (!preservePanel){
52403             this.bodyEl.dom.removeChild(panel.getEl().dom);
52404         }
52405         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
52406             var p = this.panels.first();
52407             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
52408             tempEl.appendChild(p.getEl().dom);
52409             this.bodyEl.update("");
52410             this.bodyEl.dom.appendChild(p.getEl().dom);
52411             tempEl = null;
52412             this.updateTitle(p.getTitle());
52413             this.tabs = null;
52414             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
52415             this.setActivePanel(p);
52416         }
52417         panel.setRegion(null);
52418         if(this.activePanel == panel){
52419             this.activePanel = null;
52420         }
52421         if(this.config.autoDestroy !== false && preservePanel !== true){
52422             try{panel.destroy();}catch(e){}
52423         }
52424         this.fireEvent("panelremoved", this, panel);
52425         return panel;
52426     },
52427
52428     /**
52429      * Returns the TabPanel component used by this region
52430      * @return {Roo.TabPanel}
52431      */
52432     getTabs : function(){
52433         return this.tabs;
52434     },
52435
52436     createTool : function(parentEl, className){
52437         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
52438             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
52439         btn.addClassOnOver("x-layout-tools-button-over");
52440         return btn;
52441     }
52442 });/*
52443  * Based on:
52444  * Ext JS Library 1.1.1
52445  * Copyright(c) 2006-2007, Ext JS, LLC.
52446  *
52447  * Originally Released Under LGPL - original licence link has changed is not relivant.
52448  *
52449  * Fork - LGPL
52450  * <script type="text/javascript">
52451  */
52452  
52453
52454
52455 /**
52456  * @class Roo.SplitLayoutRegion
52457  * @extends Roo.LayoutRegion
52458  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
52459  */
52460 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
52461     this.cursor = cursor;
52462     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
52463 };
52464
52465 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
52466     splitTip : "Drag to resize.",
52467     collapsibleSplitTip : "Drag to resize. Double click to hide.",
52468     useSplitTips : false,
52469
52470     applyConfig : function(config){
52471         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
52472         if(config.split){
52473             if(!this.split){
52474                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
52475                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
52476                 /** The SplitBar for this region 
52477                 * @type Roo.SplitBar */
52478                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
52479                 this.split.on("moved", this.onSplitMove, this);
52480                 this.split.useShim = config.useShim === true;
52481                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
52482                 if(this.useSplitTips){
52483                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
52484                 }
52485                 if(config.collapsible){
52486                     this.split.el.on("dblclick", this.collapse,  this);
52487                 }
52488             }
52489             if(typeof config.minSize != "undefined"){
52490                 this.split.minSize = config.minSize;
52491             }
52492             if(typeof config.maxSize != "undefined"){
52493                 this.split.maxSize = config.maxSize;
52494             }
52495             if(config.hideWhenEmpty || config.hidden || config.collapsed){
52496                 this.hideSplitter();
52497             }
52498         }
52499     },
52500
52501     getHMaxSize : function(){
52502          var cmax = this.config.maxSize || 10000;
52503          var center = this.mgr.getRegion("center");
52504          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
52505     },
52506
52507     getVMaxSize : function(){
52508          var cmax = this.config.maxSize || 10000;
52509          var center = this.mgr.getRegion("center");
52510          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
52511     },
52512
52513     onSplitMove : function(split, newSize){
52514         this.fireEvent("resized", this, newSize);
52515     },
52516     
52517     /** 
52518      * Returns the {@link Roo.SplitBar} for this region.
52519      * @return {Roo.SplitBar}
52520      */
52521     getSplitBar : function(){
52522         return this.split;
52523     },
52524     
52525     hide : function(){
52526         this.hideSplitter();
52527         Roo.SplitLayoutRegion.superclass.hide.call(this);
52528     },
52529
52530     hideSplitter : function(){
52531         if(this.split){
52532             this.split.el.setLocation(-2000,-2000);
52533             this.split.el.hide();
52534         }
52535     },
52536
52537     show : function(){
52538         if(this.split){
52539             this.split.el.show();
52540         }
52541         Roo.SplitLayoutRegion.superclass.show.call(this);
52542     },
52543     
52544     beforeSlide: function(){
52545         if(Roo.isGecko){// firefox overflow auto bug workaround
52546             this.bodyEl.clip();
52547             if(this.tabs) {
52548                 this.tabs.bodyEl.clip();
52549             }
52550             if(this.activePanel){
52551                 this.activePanel.getEl().clip();
52552                 
52553                 if(this.activePanel.beforeSlide){
52554                     this.activePanel.beforeSlide();
52555                 }
52556             }
52557         }
52558     },
52559     
52560     afterSlide : function(){
52561         if(Roo.isGecko){// firefox overflow auto bug workaround
52562             this.bodyEl.unclip();
52563             if(this.tabs) {
52564                 this.tabs.bodyEl.unclip();
52565             }
52566             if(this.activePanel){
52567                 this.activePanel.getEl().unclip();
52568                 if(this.activePanel.afterSlide){
52569                     this.activePanel.afterSlide();
52570                 }
52571             }
52572         }
52573     },
52574
52575     initAutoHide : function(){
52576         if(this.autoHide !== false){
52577             if(!this.autoHideHd){
52578                 var st = new Roo.util.DelayedTask(this.slideIn, this);
52579                 this.autoHideHd = {
52580                     "mouseout": function(e){
52581                         if(!e.within(this.el, true)){
52582                             st.delay(500);
52583                         }
52584                     },
52585                     "mouseover" : function(e){
52586                         st.cancel();
52587                     },
52588                     scope : this
52589                 };
52590             }
52591             this.el.on(this.autoHideHd);
52592         }
52593     },
52594
52595     clearAutoHide : function(){
52596         if(this.autoHide !== false){
52597             this.el.un("mouseout", this.autoHideHd.mouseout);
52598             this.el.un("mouseover", this.autoHideHd.mouseover);
52599         }
52600     },
52601
52602     clearMonitor : function(){
52603         Roo.get(document).un("click", this.slideInIf, this);
52604     },
52605
52606     // these names are backwards but not changed for compat
52607     slideOut : function(){
52608         if(this.isSlid || this.el.hasActiveFx()){
52609             return;
52610         }
52611         this.isSlid = true;
52612         if(this.collapseBtn){
52613             this.collapseBtn.hide();
52614         }
52615         this.closeBtnState = this.closeBtn.getStyle('display');
52616         this.closeBtn.hide();
52617         if(this.stickBtn){
52618             this.stickBtn.show();
52619         }
52620         this.el.show();
52621         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
52622         this.beforeSlide();
52623         this.el.setStyle("z-index", 10001);
52624         this.el.slideIn(this.getSlideAnchor(), {
52625             callback: function(){
52626                 this.afterSlide();
52627                 this.initAutoHide();
52628                 Roo.get(document).on("click", this.slideInIf, this);
52629                 this.fireEvent("slideshow", this);
52630             },
52631             scope: this,
52632             block: true
52633         });
52634     },
52635
52636     afterSlideIn : function(){
52637         this.clearAutoHide();
52638         this.isSlid = false;
52639         this.clearMonitor();
52640         this.el.setStyle("z-index", "");
52641         if(this.collapseBtn){
52642             this.collapseBtn.show();
52643         }
52644         this.closeBtn.setStyle('display', this.closeBtnState);
52645         if(this.stickBtn){
52646             this.stickBtn.hide();
52647         }
52648         this.fireEvent("slidehide", this);
52649     },
52650
52651     slideIn : function(cb){
52652         if(!this.isSlid || this.el.hasActiveFx()){
52653             Roo.callback(cb);
52654             return;
52655         }
52656         this.isSlid = false;
52657         this.beforeSlide();
52658         this.el.slideOut(this.getSlideAnchor(), {
52659             callback: function(){
52660                 this.el.setLeftTop(-10000, -10000);
52661                 this.afterSlide();
52662                 this.afterSlideIn();
52663                 Roo.callback(cb);
52664             },
52665             scope: this,
52666             block: true
52667         });
52668     },
52669     
52670     slideInIf : function(e){
52671         if(!e.within(this.el)){
52672             this.slideIn();
52673         }
52674     },
52675
52676     animateCollapse : function(){
52677         this.beforeSlide();
52678         this.el.setStyle("z-index", 20000);
52679         var anchor = this.getSlideAnchor();
52680         this.el.slideOut(anchor, {
52681             callback : function(){
52682                 this.el.setStyle("z-index", "");
52683                 this.collapsedEl.slideIn(anchor, {duration:.3});
52684                 this.afterSlide();
52685                 this.el.setLocation(-10000,-10000);
52686                 this.el.hide();
52687                 this.fireEvent("collapsed", this);
52688             },
52689             scope: this,
52690             block: true
52691         });
52692     },
52693
52694     animateExpand : function(){
52695         this.beforeSlide();
52696         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
52697         this.el.setStyle("z-index", 20000);
52698         this.collapsedEl.hide({
52699             duration:.1
52700         });
52701         this.el.slideIn(this.getSlideAnchor(), {
52702             callback : function(){
52703                 this.el.setStyle("z-index", "");
52704                 this.afterSlide();
52705                 if(this.split){
52706                     this.split.el.show();
52707                 }
52708                 this.fireEvent("invalidated", this);
52709                 this.fireEvent("expanded", this);
52710             },
52711             scope: this,
52712             block: true
52713         });
52714     },
52715
52716     anchors : {
52717         "west" : "left",
52718         "east" : "right",
52719         "north" : "top",
52720         "south" : "bottom"
52721     },
52722
52723     sanchors : {
52724         "west" : "l",
52725         "east" : "r",
52726         "north" : "t",
52727         "south" : "b"
52728     },
52729
52730     canchors : {
52731         "west" : "tl-tr",
52732         "east" : "tr-tl",
52733         "north" : "tl-bl",
52734         "south" : "bl-tl"
52735     },
52736
52737     getAnchor : function(){
52738         return this.anchors[this.position];
52739     },
52740
52741     getCollapseAnchor : function(){
52742         return this.canchors[this.position];
52743     },
52744
52745     getSlideAnchor : function(){
52746         return this.sanchors[this.position];
52747     },
52748
52749     getAlignAdj : function(){
52750         var cm = this.cmargins;
52751         switch(this.position){
52752             case "west":
52753                 return [0, 0];
52754             break;
52755             case "east":
52756                 return [0, 0];
52757             break;
52758             case "north":
52759                 return [0, 0];
52760             break;
52761             case "south":
52762                 return [0, 0];
52763             break;
52764         }
52765     },
52766
52767     getExpandAdj : function(){
52768         var c = this.collapsedEl, cm = this.cmargins;
52769         switch(this.position){
52770             case "west":
52771                 return [-(cm.right+c.getWidth()+cm.left), 0];
52772             break;
52773             case "east":
52774                 return [cm.right+c.getWidth()+cm.left, 0];
52775             break;
52776             case "north":
52777                 return [0, -(cm.top+cm.bottom+c.getHeight())];
52778             break;
52779             case "south":
52780                 return [0, cm.top+cm.bottom+c.getHeight()];
52781             break;
52782         }
52783     }
52784 });/*
52785  * Based on:
52786  * Ext JS Library 1.1.1
52787  * Copyright(c) 2006-2007, Ext JS, LLC.
52788  *
52789  * Originally Released Under LGPL - original licence link has changed is not relivant.
52790  *
52791  * Fork - LGPL
52792  * <script type="text/javascript">
52793  */
52794 /*
52795  * These classes are private internal classes
52796  */
52797 Roo.CenterLayoutRegion = function(mgr, config){
52798     Roo.LayoutRegion.call(this, mgr, config, "center");
52799     this.visible = true;
52800     this.minWidth = config.minWidth || 20;
52801     this.minHeight = config.minHeight || 20;
52802 };
52803
52804 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
52805     hide : function(){
52806         // center panel can't be hidden
52807     },
52808     
52809     show : function(){
52810         // center panel can't be hidden
52811     },
52812     
52813     getMinWidth: function(){
52814         return this.minWidth;
52815     },
52816     
52817     getMinHeight: function(){
52818         return this.minHeight;
52819     }
52820 });
52821
52822
52823 Roo.NorthLayoutRegion = function(mgr, config){
52824     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
52825     if(this.split){
52826         this.split.placement = Roo.SplitBar.TOP;
52827         this.split.orientation = Roo.SplitBar.VERTICAL;
52828         this.split.el.addClass("x-layout-split-v");
52829     }
52830     var size = config.initialSize || config.height;
52831     if(typeof size != "undefined"){
52832         this.el.setHeight(size);
52833     }
52834 };
52835 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
52836     orientation: Roo.SplitBar.VERTICAL,
52837     getBox : function(){
52838         if(this.collapsed){
52839             return this.collapsedEl.getBox();
52840         }
52841         var box = this.el.getBox();
52842         if(this.split){
52843             box.height += this.split.el.getHeight();
52844         }
52845         return box;
52846     },
52847     
52848     updateBox : function(box){
52849         if(this.split && !this.collapsed){
52850             box.height -= this.split.el.getHeight();
52851             this.split.el.setLeft(box.x);
52852             this.split.el.setTop(box.y+box.height);
52853             this.split.el.setWidth(box.width);
52854         }
52855         if(this.collapsed){
52856             this.updateBody(box.width, null);
52857         }
52858         Roo.LayoutRegion.prototype.updateBox.call(this, box);
52859     }
52860 });
52861
52862 Roo.SouthLayoutRegion = function(mgr, config){
52863     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
52864     if(this.split){
52865         this.split.placement = Roo.SplitBar.BOTTOM;
52866         this.split.orientation = Roo.SplitBar.VERTICAL;
52867         this.split.el.addClass("x-layout-split-v");
52868     }
52869     var size = config.initialSize || config.height;
52870     if(typeof size != "undefined"){
52871         this.el.setHeight(size);
52872     }
52873 };
52874 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
52875     orientation: Roo.SplitBar.VERTICAL,
52876     getBox : function(){
52877         if(this.collapsed){
52878             return this.collapsedEl.getBox();
52879         }
52880         var box = this.el.getBox();
52881         if(this.split){
52882             var sh = this.split.el.getHeight();
52883             box.height += sh;
52884             box.y -= sh;
52885         }
52886         return box;
52887     },
52888     
52889     updateBox : function(box){
52890         if(this.split && !this.collapsed){
52891             var sh = this.split.el.getHeight();
52892             box.height -= sh;
52893             box.y += sh;
52894             this.split.el.setLeft(box.x);
52895             this.split.el.setTop(box.y-sh);
52896             this.split.el.setWidth(box.width);
52897         }
52898         if(this.collapsed){
52899             this.updateBody(box.width, null);
52900         }
52901         Roo.LayoutRegion.prototype.updateBox.call(this, box);
52902     }
52903 });
52904
52905 Roo.EastLayoutRegion = function(mgr, config){
52906     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
52907     if(this.split){
52908         this.split.placement = Roo.SplitBar.RIGHT;
52909         this.split.orientation = Roo.SplitBar.HORIZONTAL;
52910         this.split.el.addClass("x-layout-split-h");
52911     }
52912     var size = config.initialSize || config.width;
52913     if(typeof size != "undefined"){
52914         this.el.setWidth(size);
52915     }
52916 };
52917 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
52918     orientation: Roo.SplitBar.HORIZONTAL,
52919     getBox : function(){
52920         if(this.collapsed){
52921             return this.collapsedEl.getBox();
52922         }
52923         var box = this.el.getBox();
52924         if(this.split){
52925             var sw = this.split.el.getWidth();
52926             box.width += sw;
52927             box.x -= sw;
52928         }
52929         return box;
52930     },
52931
52932     updateBox : function(box){
52933         if(this.split && !this.collapsed){
52934             var sw = this.split.el.getWidth();
52935             box.width -= sw;
52936             this.split.el.setLeft(box.x);
52937             this.split.el.setTop(box.y);
52938             this.split.el.setHeight(box.height);
52939             box.x += sw;
52940         }
52941         if(this.collapsed){
52942             this.updateBody(null, box.height);
52943         }
52944         Roo.LayoutRegion.prototype.updateBox.call(this, box);
52945     }
52946 });
52947
52948 Roo.WestLayoutRegion = function(mgr, config){
52949     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
52950     if(this.split){
52951         this.split.placement = Roo.SplitBar.LEFT;
52952         this.split.orientation = Roo.SplitBar.HORIZONTAL;
52953         this.split.el.addClass("x-layout-split-h");
52954     }
52955     var size = config.initialSize || config.width;
52956     if(typeof size != "undefined"){
52957         this.el.setWidth(size);
52958     }
52959 };
52960 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
52961     orientation: Roo.SplitBar.HORIZONTAL,
52962     getBox : function(){
52963         if(this.collapsed){
52964             return this.collapsedEl.getBox();
52965         }
52966         var box = this.el.getBox();
52967         if(this.split){
52968             box.width += this.split.el.getWidth();
52969         }
52970         return box;
52971     },
52972     
52973     updateBox : function(box){
52974         if(this.split && !this.collapsed){
52975             var sw = this.split.el.getWidth();
52976             box.width -= sw;
52977             this.split.el.setLeft(box.x+box.width);
52978             this.split.el.setTop(box.y);
52979             this.split.el.setHeight(box.height);
52980         }
52981         if(this.collapsed){
52982             this.updateBody(null, box.height);
52983         }
52984         Roo.LayoutRegion.prototype.updateBox.call(this, box);
52985     }
52986 });
52987 /*
52988  * Based on:
52989  * Ext JS Library 1.1.1
52990  * Copyright(c) 2006-2007, Ext JS, LLC.
52991  *
52992  * Originally Released Under LGPL - original licence link has changed is not relivant.
52993  *
52994  * Fork - LGPL
52995  * <script type="text/javascript">
52996  */
52997  
52998  
52999 /*
53000  * Private internal class for reading and applying state
53001  */
53002 Roo.LayoutStateManager = function(layout){
53003      // default empty state
53004      this.state = {
53005         north: {},
53006         south: {},
53007         east: {},
53008         west: {}       
53009     };
53010 };
53011
53012 Roo.LayoutStateManager.prototype = {
53013     init : function(layout, provider){
53014         this.provider = provider;
53015         var state = provider.get(layout.id+"-layout-state");
53016         if(state){
53017             var wasUpdating = layout.isUpdating();
53018             if(!wasUpdating){
53019                 layout.beginUpdate();
53020             }
53021             for(var key in state){
53022                 if(typeof state[key] != "function"){
53023                     var rstate = state[key];
53024                     var r = layout.getRegion(key);
53025                     if(r && rstate){
53026                         if(rstate.size){
53027                             r.resizeTo(rstate.size);
53028                         }
53029                         if(rstate.collapsed == true){
53030                             r.collapse(true);
53031                         }else{
53032                             r.expand(null, true);
53033                         }
53034                     }
53035                 }
53036             }
53037             if(!wasUpdating){
53038                 layout.endUpdate();
53039             }
53040             this.state = state; 
53041         }
53042         this.layout = layout;
53043         layout.on("regionresized", this.onRegionResized, this);
53044         layout.on("regioncollapsed", this.onRegionCollapsed, this);
53045         layout.on("regionexpanded", this.onRegionExpanded, this);
53046     },
53047     
53048     storeState : function(){
53049         this.provider.set(this.layout.id+"-layout-state", this.state);
53050     },
53051     
53052     onRegionResized : function(region, newSize){
53053         this.state[region.getPosition()].size = newSize;
53054         this.storeState();
53055     },
53056     
53057     onRegionCollapsed : function(region){
53058         this.state[region.getPosition()].collapsed = true;
53059         this.storeState();
53060     },
53061     
53062     onRegionExpanded : function(region){
53063         this.state[region.getPosition()].collapsed = false;
53064         this.storeState();
53065     }
53066 };/*
53067  * Based on:
53068  * Ext JS Library 1.1.1
53069  * Copyright(c) 2006-2007, Ext JS, LLC.
53070  *
53071  * Originally Released Under LGPL - original licence link has changed is not relivant.
53072  *
53073  * Fork - LGPL
53074  * <script type="text/javascript">
53075  */
53076 /**
53077  * @class Roo.ContentPanel
53078  * @extends Roo.util.Observable
53079  * A basic ContentPanel element.
53080  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
53081  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
53082  * @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
53083  * @cfg {Boolean}   closable      True if the panel can be closed/removed
53084  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
53085  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
53086  * @cfg {Toolbar}   toolbar       A toolbar for this panel
53087  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
53088  * @cfg {String} title          The title for this panel
53089  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
53090  * @cfg {String} url            Calls {@link #setUrl} with this value
53091  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
53092  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
53093  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
53094  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
53095
53096  * @constructor
53097  * Create a new ContentPanel.
53098  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
53099  * @param {String/Object} config A string to set only the title or a config object
53100  * @param {String} content (optional) Set the HTML content for this panel
53101  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
53102  */
53103 Roo.ContentPanel = function(el, config, content){
53104     
53105      
53106     /*
53107     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
53108         config = el;
53109         el = Roo.id();
53110     }
53111     if (config && config.parentLayout) { 
53112         el = config.parentLayout.el.createChild(); 
53113     }
53114     */
53115     if(el.autoCreate){ // xtype is available if this is called from factory
53116         config = el;
53117         el = Roo.id();
53118     }
53119     this.el = Roo.get(el);
53120     if(!this.el && config && config.autoCreate){
53121         if(typeof config.autoCreate == "object"){
53122             if(!config.autoCreate.id){
53123                 config.autoCreate.id = config.id||el;
53124             }
53125             this.el = Roo.DomHelper.append(document.body,
53126                         config.autoCreate, true);
53127         }else{
53128             this.el = Roo.DomHelper.append(document.body,
53129                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
53130         }
53131     }
53132     this.closable = false;
53133     this.loaded = false;
53134     this.active = false;
53135     if(typeof config == "string"){
53136         this.title = config;
53137     }else{
53138         Roo.apply(this, config);
53139     }
53140     
53141     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
53142         this.wrapEl = this.el.wrap();
53143         this.toolbar.container = this.el.insertSibling(false, 'before');
53144         this.toolbar = new Roo.Toolbar(this.toolbar);
53145     }
53146     
53147     // xtype created footer. - not sure if will work as we normally have to render first..
53148     if (this.footer && !this.footer.el && this.footer.xtype) {
53149         if (!this.wrapEl) {
53150             this.wrapEl = this.el.wrap();
53151         }
53152     
53153         this.footer.container = this.wrapEl.createChild();
53154          
53155         this.footer = Roo.factory(this.footer, Roo);
53156         
53157     }
53158     
53159     if(this.resizeEl){
53160         this.resizeEl = Roo.get(this.resizeEl, true);
53161     }else{
53162         this.resizeEl = this.el;
53163     }
53164     // handle view.xtype
53165     
53166  
53167     
53168     
53169     this.addEvents({
53170         /**
53171          * @event activate
53172          * Fires when this panel is activated. 
53173          * @param {Roo.ContentPanel} this
53174          */
53175         "activate" : true,
53176         /**
53177          * @event deactivate
53178          * Fires when this panel is activated. 
53179          * @param {Roo.ContentPanel} this
53180          */
53181         "deactivate" : true,
53182
53183         /**
53184          * @event resize
53185          * Fires when this panel is resized if fitToFrame is true.
53186          * @param {Roo.ContentPanel} this
53187          * @param {Number} width The width after any component adjustments
53188          * @param {Number} height The height after any component adjustments
53189          */
53190         "resize" : true,
53191         
53192          /**
53193          * @event render
53194          * Fires when this tab is created
53195          * @param {Roo.ContentPanel} this
53196          */
53197         "render" : true
53198         
53199         
53200         
53201     });
53202     
53203
53204     
53205     
53206     if(this.autoScroll){
53207         this.resizeEl.setStyle("overflow", "auto");
53208     } else {
53209         // fix randome scrolling
53210         this.el.on('scroll', function() {
53211             Roo.log('fix random scolling');
53212             this.scrollTo('top',0); 
53213         });
53214     }
53215     content = content || this.content;
53216     if(content){
53217         this.setContent(content);
53218     }
53219     if(config && config.url){
53220         this.setUrl(this.url, this.params, this.loadOnce);
53221     }
53222     
53223     
53224     
53225     Roo.ContentPanel.superclass.constructor.call(this);
53226     
53227     if (this.view && typeof(this.view.xtype) != 'undefined') {
53228         this.view.el = this.el.appendChild(document.createElement("div"));
53229         this.view = Roo.factory(this.view); 
53230         this.view.render  &&  this.view.render(false, '');  
53231     }
53232     
53233     
53234     this.fireEvent('render', this);
53235 };
53236
53237 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
53238     tabTip:'',
53239     setRegion : function(region){
53240         this.region = region;
53241         if(region){
53242            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
53243         }else{
53244            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
53245         } 
53246     },
53247     
53248     /**
53249      * Returns the toolbar for this Panel if one was configured. 
53250      * @return {Roo.Toolbar} 
53251      */
53252     getToolbar : function(){
53253         return this.toolbar;
53254     },
53255     
53256     setActiveState : function(active){
53257         this.active = active;
53258         if(!active){
53259             this.fireEvent("deactivate", this);
53260         }else{
53261             this.fireEvent("activate", this);
53262         }
53263     },
53264     /**
53265      * Updates this panel's element
53266      * @param {String} content The new content
53267      * @param {Boolean} loadScripts (optional) true to look for and process scripts
53268     */
53269     setContent : function(content, loadScripts){
53270         this.el.update(content, loadScripts);
53271     },
53272
53273     ignoreResize : function(w, h){
53274         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
53275             return true;
53276         }else{
53277             this.lastSize = {width: w, height: h};
53278             return false;
53279         }
53280     },
53281     /**
53282      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
53283      * @return {Roo.UpdateManager} The UpdateManager
53284      */
53285     getUpdateManager : function(){
53286         return this.el.getUpdateManager();
53287     },
53288      /**
53289      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
53290      * @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:
53291 <pre><code>
53292 panel.load({
53293     url: "your-url.php",
53294     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
53295     callback: yourFunction,
53296     scope: yourObject, //(optional scope)
53297     discardUrl: false,
53298     nocache: false,
53299     text: "Loading...",
53300     timeout: 30,
53301     scripts: false
53302 });
53303 </code></pre>
53304      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
53305      * 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.
53306      * @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}
53307      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
53308      * @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.
53309      * @return {Roo.ContentPanel} this
53310      */
53311     load : function(){
53312         var um = this.el.getUpdateManager();
53313         um.update.apply(um, arguments);
53314         return this;
53315     },
53316
53317
53318     /**
53319      * 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.
53320      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
53321      * @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)
53322      * @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)
53323      * @return {Roo.UpdateManager} The UpdateManager
53324      */
53325     setUrl : function(url, params, loadOnce){
53326         if(this.refreshDelegate){
53327             this.removeListener("activate", this.refreshDelegate);
53328         }
53329         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
53330         this.on("activate", this.refreshDelegate);
53331         return this.el.getUpdateManager();
53332     },
53333     
53334     _handleRefresh : function(url, params, loadOnce){
53335         if(!loadOnce || !this.loaded){
53336             var updater = this.el.getUpdateManager();
53337             updater.update(url, params, this._setLoaded.createDelegate(this));
53338         }
53339     },
53340     
53341     _setLoaded : function(){
53342         this.loaded = true;
53343     }, 
53344     
53345     /**
53346      * Returns this panel's id
53347      * @return {String} 
53348      */
53349     getId : function(){
53350         return this.el.id;
53351     },
53352     
53353     /** 
53354      * Returns this panel's element - used by regiosn to add.
53355      * @return {Roo.Element} 
53356      */
53357     getEl : function(){
53358         return this.wrapEl || this.el;
53359     },
53360     
53361     adjustForComponents : function(width, height)
53362     {
53363         //Roo.log('adjustForComponents ');
53364         if(this.resizeEl != this.el){
53365             width -= this.el.getFrameWidth('lr');
53366             height -= this.el.getFrameWidth('tb');
53367         }
53368         if(this.toolbar){
53369             var te = this.toolbar.getEl();
53370             height -= te.getHeight();
53371             te.setWidth(width);
53372         }
53373         if(this.footer){
53374             var te = this.footer.getEl();
53375             Roo.log("footer:" + te.getHeight());
53376             
53377             height -= te.getHeight();
53378             te.setWidth(width);
53379         }
53380         
53381         
53382         if(this.adjustments){
53383             width += this.adjustments[0];
53384             height += this.adjustments[1];
53385         }
53386         return {"width": width, "height": height};
53387     },
53388     
53389     setSize : function(width, height){
53390         if(this.fitToFrame && !this.ignoreResize(width, height)){
53391             if(this.fitContainer && this.resizeEl != this.el){
53392                 this.el.setSize(width, height);
53393             }
53394             var size = this.adjustForComponents(width, height);
53395             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
53396             this.fireEvent('resize', this, size.width, size.height);
53397         }
53398     },
53399     
53400     /**
53401      * Returns this panel's title
53402      * @return {String} 
53403      */
53404     getTitle : function(){
53405         return this.title;
53406     },
53407     
53408     /**
53409      * Set this panel's title
53410      * @param {String} title
53411      */
53412     setTitle : function(title){
53413         this.title = title;
53414         if(this.region){
53415             this.region.updatePanelTitle(this, title);
53416         }
53417     },
53418     
53419     /**
53420      * Returns true is this panel was configured to be closable
53421      * @return {Boolean} 
53422      */
53423     isClosable : function(){
53424         return this.closable;
53425     },
53426     
53427     beforeSlide : function(){
53428         this.el.clip();
53429         this.resizeEl.clip();
53430     },
53431     
53432     afterSlide : function(){
53433         this.el.unclip();
53434         this.resizeEl.unclip();
53435     },
53436     
53437     /**
53438      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
53439      *   Will fail silently if the {@link #setUrl} method has not been called.
53440      *   This does not activate the panel, just updates its content.
53441      */
53442     refresh : function(){
53443         if(this.refreshDelegate){
53444            this.loaded = false;
53445            this.refreshDelegate();
53446         }
53447     },
53448     
53449     /**
53450      * Destroys this panel
53451      */
53452     destroy : function(){
53453         this.el.removeAllListeners();
53454         var tempEl = document.createElement("span");
53455         tempEl.appendChild(this.el.dom);
53456         tempEl.innerHTML = "";
53457         this.el.remove();
53458         this.el = null;
53459     },
53460     
53461     /**
53462      * form - if the content panel contains a form - this is a reference to it.
53463      * @type {Roo.form.Form}
53464      */
53465     form : false,
53466     /**
53467      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
53468      *    This contains a reference to it.
53469      * @type {Roo.View}
53470      */
53471     view : false,
53472     
53473       /**
53474      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
53475      * <pre><code>
53476
53477 layout.addxtype({
53478        xtype : 'Form',
53479        items: [ .... ]
53480    }
53481 );
53482
53483 </code></pre>
53484      * @param {Object} cfg Xtype definition of item to add.
53485      */
53486     
53487     addxtype : function(cfg) {
53488         // add form..
53489         if (cfg.xtype.match(/^Form$/)) {
53490             
53491             var el;
53492             //if (this.footer) {
53493             //    el = this.footer.container.insertSibling(false, 'before');
53494             //} else {
53495                 el = this.el.createChild();
53496             //}
53497
53498             this.form = new  Roo.form.Form(cfg);
53499             
53500             
53501             if ( this.form.allItems.length) {
53502                 this.form.render(el.dom);
53503             }
53504             return this.form;
53505         }
53506         // should only have one of theses..
53507         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
53508             // views.. should not be just added - used named prop 'view''
53509             
53510             cfg.el = this.el.appendChild(document.createElement("div"));
53511             // factory?
53512             
53513             var ret = new Roo.factory(cfg);
53514              
53515              ret.render && ret.render(false, ''); // render blank..
53516             this.view = ret;
53517             return ret;
53518         }
53519         return false;
53520     }
53521 });
53522
53523 /**
53524  * @class Roo.GridPanel
53525  * @extends Roo.ContentPanel
53526  * @constructor
53527  * Create a new GridPanel.
53528  * @param {Roo.grid.Grid} grid The grid for this panel
53529  * @param {String/Object} config A string to set only the panel's title, or a config object
53530  */
53531 Roo.GridPanel = function(grid, config){
53532     
53533   
53534     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
53535         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
53536         
53537     this.wrapper.dom.appendChild(grid.getGridEl().dom);
53538     
53539     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
53540     
53541     if(this.toolbar){
53542         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
53543     }
53544     // xtype created footer. - not sure if will work as we normally have to render first..
53545     if (this.footer && !this.footer.el && this.footer.xtype) {
53546         
53547         this.footer.container = this.grid.getView().getFooterPanel(true);
53548         this.footer.dataSource = this.grid.dataSource;
53549         this.footer = Roo.factory(this.footer, Roo);
53550         
53551     }
53552     
53553     grid.monitorWindowResize = false; // turn off autosizing
53554     grid.autoHeight = false;
53555     grid.autoWidth = false;
53556     this.grid = grid;
53557     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
53558 };
53559
53560 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
53561     getId : function(){
53562         return this.grid.id;
53563     },
53564     
53565     /**
53566      * Returns the grid for this panel
53567      * @return {Roo.grid.Grid} 
53568      */
53569     getGrid : function(){
53570         return this.grid;    
53571     },
53572     
53573     setSize : function(width, height){
53574         if(!this.ignoreResize(width, height)){
53575             var grid = this.grid;
53576             var size = this.adjustForComponents(width, height);
53577             grid.getGridEl().setSize(size.width, size.height);
53578             grid.autoSize();
53579         }
53580     },
53581     
53582     beforeSlide : function(){
53583         this.grid.getView().scroller.clip();
53584     },
53585     
53586     afterSlide : function(){
53587         this.grid.getView().scroller.unclip();
53588     },
53589     
53590     destroy : function(){
53591         this.grid.destroy();
53592         delete this.grid;
53593         Roo.GridPanel.superclass.destroy.call(this); 
53594     }
53595 });
53596
53597
53598 /**
53599  * @class Roo.NestedLayoutPanel
53600  * @extends Roo.ContentPanel
53601  * @constructor
53602  * Create a new NestedLayoutPanel.
53603  * 
53604  * 
53605  * @param {Roo.BorderLayout} layout The layout for this panel
53606  * @param {String/Object} config A string to set only the title or a config object
53607  */
53608 Roo.NestedLayoutPanel = function(layout, config)
53609 {
53610     // construct with only one argument..
53611     /* FIXME - implement nicer consturctors
53612     if (layout.layout) {
53613         config = layout;
53614         layout = config.layout;
53615         delete config.layout;
53616     }
53617     if (layout.xtype && !layout.getEl) {
53618         // then layout needs constructing..
53619         layout = Roo.factory(layout, Roo);
53620     }
53621     */
53622     
53623     
53624     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
53625     
53626     layout.monitorWindowResize = false; // turn off autosizing
53627     this.layout = layout;
53628     this.layout.getEl().addClass("x-layout-nested-layout");
53629     
53630     
53631     
53632     
53633 };
53634
53635 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
53636
53637     setSize : function(width, height){
53638         if(!this.ignoreResize(width, height)){
53639             var size = this.adjustForComponents(width, height);
53640             var el = this.layout.getEl();
53641             el.setSize(size.width, size.height);
53642             var touch = el.dom.offsetWidth;
53643             this.layout.layout();
53644             // ie requires a double layout on the first pass
53645             if(Roo.isIE && !this.initialized){
53646                 this.initialized = true;
53647                 this.layout.layout();
53648             }
53649         }
53650     },
53651     
53652     // activate all subpanels if not currently active..
53653     
53654     setActiveState : function(active){
53655         this.active = active;
53656         if(!active){
53657             this.fireEvent("deactivate", this);
53658             return;
53659         }
53660         
53661         this.fireEvent("activate", this);
53662         // not sure if this should happen before or after..
53663         if (!this.layout) {
53664             return; // should not happen..
53665         }
53666         var reg = false;
53667         for (var r in this.layout.regions) {
53668             reg = this.layout.getRegion(r);
53669             if (reg.getActivePanel()) {
53670                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
53671                 reg.setActivePanel(reg.getActivePanel());
53672                 continue;
53673             }
53674             if (!reg.panels.length) {
53675                 continue;
53676             }
53677             reg.showPanel(reg.getPanel(0));
53678         }
53679         
53680         
53681         
53682         
53683     },
53684     
53685     /**
53686      * Returns the nested BorderLayout for this panel
53687      * @return {Roo.BorderLayout} 
53688      */
53689     getLayout : function(){
53690         return this.layout;
53691     },
53692     
53693      /**
53694      * Adds a xtype elements to the layout of the nested panel
53695      * <pre><code>
53696
53697 panel.addxtype({
53698        xtype : 'ContentPanel',
53699        region: 'west',
53700        items: [ .... ]
53701    }
53702 );
53703
53704 panel.addxtype({
53705         xtype : 'NestedLayoutPanel',
53706         region: 'west',
53707         layout: {
53708            center: { },
53709            west: { }   
53710         },
53711         items : [ ... list of content panels or nested layout panels.. ]
53712    }
53713 );
53714 </code></pre>
53715      * @param {Object} cfg Xtype definition of item to add.
53716      */
53717     addxtype : function(cfg) {
53718         return this.layout.addxtype(cfg);
53719     
53720     }
53721 });
53722
53723 Roo.ScrollPanel = function(el, config, content){
53724     config = config || {};
53725     config.fitToFrame = true;
53726     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
53727     
53728     this.el.dom.style.overflow = "hidden";
53729     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
53730     this.el.removeClass("x-layout-inactive-content");
53731     this.el.on("mousewheel", this.onWheel, this);
53732
53733     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
53734     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
53735     up.unselectable(); down.unselectable();
53736     up.on("click", this.scrollUp, this);
53737     down.on("click", this.scrollDown, this);
53738     up.addClassOnOver("x-scroller-btn-over");
53739     down.addClassOnOver("x-scroller-btn-over");
53740     up.addClassOnClick("x-scroller-btn-click");
53741     down.addClassOnClick("x-scroller-btn-click");
53742     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
53743
53744     this.resizeEl = this.el;
53745     this.el = wrap; this.up = up; this.down = down;
53746 };
53747
53748 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
53749     increment : 100,
53750     wheelIncrement : 5,
53751     scrollUp : function(){
53752         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
53753     },
53754
53755     scrollDown : function(){
53756         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
53757     },
53758
53759     afterScroll : function(){
53760         var el = this.resizeEl;
53761         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
53762         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
53763         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
53764     },
53765
53766     setSize : function(){
53767         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
53768         this.afterScroll();
53769     },
53770
53771     onWheel : function(e){
53772         var d = e.getWheelDelta();
53773         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
53774         this.afterScroll();
53775         e.stopEvent();
53776     },
53777
53778     setContent : function(content, loadScripts){
53779         this.resizeEl.update(content, loadScripts);
53780     }
53781
53782 });
53783
53784
53785
53786
53787
53788
53789
53790
53791
53792 /**
53793  * @class Roo.TreePanel
53794  * @extends Roo.ContentPanel
53795  * @constructor
53796  * Create a new TreePanel. - defaults to fit/scoll contents.
53797  * @param {String/Object} config A string to set only the panel's title, or a config object
53798  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
53799  */
53800 Roo.TreePanel = function(config){
53801     var el = config.el;
53802     var tree = config.tree;
53803     delete config.tree; 
53804     delete config.el; // hopefull!
53805     
53806     // wrapper for IE7 strict & safari scroll issue
53807     
53808     var treeEl = el.createChild();
53809     config.resizeEl = treeEl;
53810     
53811     
53812     
53813     Roo.TreePanel.superclass.constructor.call(this, el, config);
53814  
53815  
53816     this.tree = new Roo.tree.TreePanel(treeEl , tree);
53817     //console.log(tree);
53818     this.on('activate', function()
53819     {
53820         if (this.tree.rendered) {
53821             return;
53822         }
53823         //console.log('render tree');
53824         this.tree.render();
53825     });
53826     // this should not be needed.. - it's actually the 'el' that resizes?
53827     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
53828     
53829     //this.on('resize',  function (cp, w, h) {
53830     //        this.tree.innerCt.setWidth(w);
53831     //        this.tree.innerCt.setHeight(h);
53832     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
53833     //});
53834
53835         
53836     
53837 };
53838
53839 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
53840     fitToFrame : true,
53841     autoScroll : true
53842 });
53843
53844
53845
53846
53847
53848
53849
53850
53851
53852
53853
53854 /*
53855  * Based on:
53856  * Ext JS Library 1.1.1
53857  * Copyright(c) 2006-2007, Ext JS, LLC.
53858  *
53859  * Originally Released Under LGPL - original licence link has changed is not relivant.
53860  *
53861  * Fork - LGPL
53862  * <script type="text/javascript">
53863  */
53864  
53865
53866 /**
53867  * @class Roo.ReaderLayout
53868  * @extends Roo.BorderLayout
53869  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
53870  * center region containing two nested regions (a top one for a list view and one for item preview below),
53871  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
53872  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
53873  * expedites the setup of the overall layout and regions for this common application style.
53874  * Example:
53875  <pre><code>
53876 var reader = new Roo.ReaderLayout();
53877 var CP = Roo.ContentPanel;  // shortcut for adding
53878
53879 reader.beginUpdate();
53880 reader.add("north", new CP("north", "North"));
53881 reader.add("west", new CP("west", {title: "West"}));
53882 reader.add("east", new CP("east", {title: "East"}));
53883
53884 reader.regions.listView.add(new CP("listView", "List"));
53885 reader.regions.preview.add(new CP("preview", "Preview"));
53886 reader.endUpdate();
53887 </code></pre>
53888 * @constructor
53889 * Create a new ReaderLayout
53890 * @param {Object} config Configuration options
53891 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
53892 * document.body if omitted)
53893 */
53894 Roo.ReaderLayout = function(config, renderTo){
53895     var c = config || {size:{}};
53896     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
53897         north: c.north !== false ? Roo.apply({
53898             split:false,
53899             initialSize: 32,
53900             titlebar: false
53901         }, c.north) : false,
53902         west: c.west !== false ? Roo.apply({
53903             split:true,
53904             initialSize: 200,
53905             minSize: 175,
53906             maxSize: 400,
53907             titlebar: true,
53908             collapsible: true,
53909             animate: true,
53910             margins:{left:5,right:0,bottom:5,top:5},
53911             cmargins:{left:5,right:5,bottom:5,top:5}
53912         }, c.west) : false,
53913         east: c.east !== false ? Roo.apply({
53914             split:true,
53915             initialSize: 200,
53916             minSize: 175,
53917             maxSize: 400,
53918             titlebar: true,
53919             collapsible: true,
53920             animate: true,
53921             margins:{left:0,right:5,bottom:5,top:5},
53922             cmargins:{left:5,right:5,bottom:5,top:5}
53923         }, c.east) : false,
53924         center: Roo.apply({
53925             tabPosition: 'top',
53926             autoScroll:false,
53927             closeOnTab: true,
53928             titlebar:false,
53929             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
53930         }, c.center)
53931     });
53932
53933     this.el.addClass('x-reader');
53934
53935     this.beginUpdate();
53936
53937     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
53938         south: c.preview !== false ? Roo.apply({
53939             split:true,
53940             initialSize: 200,
53941             minSize: 100,
53942             autoScroll:true,
53943             collapsible:true,
53944             titlebar: true,
53945             cmargins:{top:5,left:0, right:0, bottom:0}
53946         }, c.preview) : false,
53947         center: Roo.apply({
53948             autoScroll:false,
53949             titlebar:false,
53950             minHeight:200
53951         }, c.listView)
53952     });
53953     this.add('center', new Roo.NestedLayoutPanel(inner,
53954             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
53955
53956     this.endUpdate();
53957
53958     this.regions.preview = inner.getRegion('south');
53959     this.regions.listView = inner.getRegion('center');
53960 };
53961
53962 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
53963  * Based on:
53964  * Ext JS Library 1.1.1
53965  * Copyright(c) 2006-2007, Ext JS, LLC.
53966  *
53967  * Originally Released Under LGPL - original licence link has changed is not relivant.
53968  *
53969  * Fork - LGPL
53970  * <script type="text/javascript">
53971  */
53972  
53973 /**
53974  * @class Roo.grid.Grid
53975  * @extends Roo.util.Observable
53976  * This class represents the primary interface of a component based grid control.
53977  * <br><br>Usage:<pre><code>
53978  var grid = new Roo.grid.Grid("my-container-id", {
53979      ds: myDataStore,
53980      cm: myColModel,
53981      selModel: mySelectionModel,
53982      autoSizeColumns: true,
53983      monitorWindowResize: false,
53984      trackMouseOver: true
53985  });
53986  // set any options
53987  grid.render();
53988  * </code></pre>
53989  * <b>Common Problems:</b><br/>
53990  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
53991  * element will correct this<br/>
53992  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
53993  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
53994  * are unpredictable.<br/>
53995  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
53996  * grid to calculate dimensions/offsets.<br/>
53997   * @constructor
53998  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
53999  * The container MUST have some type of size defined for the grid to fill. The container will be
54000  * automatically set to position relative if it isn't already.
54001  * @param {Object} config A config object that sets properties on this grid.
54002  */
54003 Roo.grid.Grid = function(container, config){
54004         // initialize the container
54005         this.container = Roo.get(container);
54006         this.container.update("");
54007         this.container.setStyle("overflow", "hidden");
54008     this.container.addClass('x-grid-container');
54009
54010     this.id = this.container.id;
54011
54012     Roo.apply(this, config);
54013     // check and correct shorthanded configs
54014     if(this.ds){
54015         this.dataSource = this.ds;
54016         delete this.ds;
54017     }
54018     if(this.cm){
54019         this.colModel = this.cm;
54020         delete this.cm;
54021     }
54022     if(this.sm){
54023         this.selModel = this.sm;
54024         delete this.sm;
54025     }
54026
54027     if (this.selModel) {
54028         this.selModel = Roo.factory(this.selModel, Roo.grid);
54029         this.sm = this.selModel;
54030         this.sm.xmodule = this.xmodule || false;
54031     }
54032     if (typeof(this.colModel.config) == 'undefined') {
54033         this.colModel = new Roo.grid.ColumnModel(this.colModel);
54034         this.cm = this.colModel;
54035         this.cm.xmodule = this.xmodule || false;
54036     }
54037     if (this.dataSource) {
54038         this.dataSource= Roo.factory(this.dataSource, Roo.data);
54039         this.ds = this.dataSource;
54040         this.ds.xmodule = this.xmodule || false;
54041          
54042     }
54043     
54044     
54045     
54046     if(this.width){
54047         this.container.setWidth(this.width);
54048     }
54049
54050     if(this.height){
54051         this.container.setHeight(this.height);
54052     }
54053     /** @private */
54054         this.addEvents({
54055         // raw events
54056         /**
54057          * @event click
54058          * The raw click event for the entire grid.
54059          * @param {Roo.EventObject} e
54060          */
54061         "click" : true,
54062         /**
54063          * @event dblclick
54064          * The raw dblclick event for the entire grid.
54065          * @param {Roo.EventObject} e
54066          */
54067         "dblclick" : true,
54068         /**
54069          * @event contextmenu
54070          * The raw contextmenu event for the entire grid.
54071          * @param {Roo.EventObject} e
54072          */
54073         "contextmenu" : true,
54074         /**
54075          * @event mousedown
54076          * The raw mousedown event for the entire grid.
54077          * @param {Roo.EventObject} e
54078          */
54079         "mousedown" : true,
54080         /**
54081          * @event mouseup
54082          * The raw mouseup event for the entire grid.
54083          * @param {Roo.EventObject} e
54084          */
54085         "mouseup" : true,
54086         /**
54087          * @event mouseover
54088          * The raw mouseover event for the entire grid.
54089          * @param {Roo.EventObject} e
54090          */
54091         "mouseover" : true,
54092         /**
54093          * @event mouseout
54094          * The raw mouseout event for the entire grid.
54095          * @param {Roo.EventObject} e
54096          */
54097         "mouseout" : true,
54098         /**
54099          * @event keypress
54100          * The raw keypress event for the entire grid.
54101          * @param {Roo.EventObject} e
54102          */
54103         "keypress" : true,
54104         /**
54105          * @event keydown
54106          * The raw keydown event for the entire grid.
54107          * @param {Roo.EventObject} e
54108          */
54109         "keydown" : true,
54110
54111         // custom events
54112
54113         /**
54114          * @event cellclick
54115          * Fires when a cell is clicked
54116          * @param {Grid} this
54117          * @param {Number} rowIndex
54118          * @param {Number} columnIndex
54119          * @param {Roo.EventObject} e
54120          */
54121         "cellclick" : true,
54122         /**
54123          * @event celldblclick
54124          * Fires when a cell is double clicked
54125          * @param {Grid} this
54126          * @param {Number} rowIndex
54127          * @param {Number} columnIndex
54128          * @param {Roo.EventObject} e
54129          */
54130         "celldblclick" : true,
54131         /**
54132          * @event rowclick
54133          * Fires when a row is clicked
54134          * @param {Grid} this
54135          * @param {Number} rowIndex
54136          * @param {Roo.EventObject} e
54137          */
54138         "rowclick" : true,
54139         /**
54140          * @event rowdblclick
54141          * Fires when a row is double clicked
54142          * @param {Grid} this
54143          * @param {Number} rowIndex
54144          * @param {Roo.EventObject} e
54145          */
54146         "rowdblclick" : true,
54147         /**
54148          * @event headerclick
54149          * Fires when a header is clicked
54150          * @param {Grid} this
54151          * @param {Number} columnIndex
54152          * @param {Roo.EventObject} e
54153          */
54154         "headerclick" : true,
54155         /**
54156          * @event headerdblclick
54157          * Fires when a header cell is double clicked
54158          * @param {Grid} this
54159          * @param {Number} columnIndex
54160          * @param {Roo.EventObject} e
54161          */
54162         "headerdblclick" : true,
54163         /**
54164          * @event rowcontextmenu
54165          * Fires when a row is right clicked
54166          * @param {Grid} this
54167          * @param {Number} rowIndex
54168          * @param {Roo.EventObject} e
54169          */
54170         "rowcontextmenu" : true,
54171         /**
54172          * @event cellcontextmenu
54173          * Fires when a cell is right clicked
54174          * @param {Grid} this
54175          * @param {Number} rowIndex
54176          * @param {Number} cellIndex
54177          * @param {Roo.EventObject} e
54178          */
54179          "cellcontextmenu" : true,
54180         /**
54181          * @event headercontextmenu
54182          * Fires when a header is right clicked
54183          * @param {Grid} this
54184          * @param {Number} columnIndex
54185          * @param {Roo.EventObject} e
54186          */
54187         "headercontextmenu" : true,
54188         /**
54189          * @event bodyscroll
54190          * Fires when the body element is scrolled
54191          * @param {Number} scrollLeft
54192          * @param {Number} scrollTop
54193          */
54194         "bodyscroll" : true,
54195         /**
54196          * @event columnresize
54197          * Fires when the user resizes a column
54198          * @param {Number} columnIndex
54199          * @param {Number} newSize
54200          */
54201         "columnresize" : true,
54202         /**
54203          * @event columnmove
54204          * Fires when the user moves a column
54205          * @param {Number} oldIndex
54206          * @param {Number} newIndex
54207          */
54208         "columnmove" : true,
54209         /**
54210          * @event startdrag
54211          * Fires when row(s) start being dragged
54212          * @param {Grid} this
54213          * @param {Roo.GridDD} dd The drag drop object
54214          * @param {event} e The raw browser event
54215          */
54216         "startdrag" : true,
54217         /**
54218          * @event enddrag
54219          * Fires when a drag operation is complete
54220          * @param {Grid} this
54221          * @param {Roo.GridDD} dd The drag drop object
54222          * @param {event} e The raw browser event
54223          */
54224         "enddrag" : true,
54225         /**
54226          * @event dragdrop
54227          * Fires when dragged row(s) are dropped on a valid DD target
54228          * @param {Grid} this
54229          * @param {Roo.GridDD} dd The drag drop object
54230          * @param {String} targetId The target drag drop object
54231          * @param {event} e The raw browser event
54232          */
54233         "dragdrop" : true,
54234         /**
54235          * @event dragover
54236          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
54237          * @param {Grid} this
54238          * @param {Roo.GridDD} dd The drag drop object
54239          * @param {String} targetId The target drag drop object
54240          * @param {event} e The raw browser event
54241          */
54242         "dragover" : true,
54243         /**
54244          * @event dragenter
54245          *  Fires when the dragged row(s) first cross another DD target while being dragged
54246          * @param {Grid} this
54247          * @param {Roo.GridDD} dd The drag drop object
54248          * @param {String} targetId The target drag drop object
54249          * @param {event} e The raw browser event
54250          */
54251         "dragenter" : true,
54252         /**
54253          * @event dragout
54254          * Fires when the dragged row(s) leave another DD target while being dragged
54255          * @param {Grid} this
54256          * @param {Roo.GridDD} dd The drag drop object
54257          * @param {String} targetId The target drag drop object
54258          * @param {event} e The raw browser event
54259          */
54260         "dragout" : true,
54261         /**
54262          * @event rowclass
54263          * Fires when a row is rendered, so you can change add a style to it.
54264          * @param {GridView} gridview   The grid view
54265          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
54266          */
54267         'rowclass' : true,
54268
54269         /**
54270          * @event render
54271          * Fires when the grid is rendered
54272          * @param {Grid} grid
54273          */
54274         'render' : true
54275     });
54276
54277     Roo.grid.Grid.superclass.constructor.call(this);
54278 };
54279 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
54280     
54281     /**
54282      * @cfg {String} ddGroup - drag drop group.
54283      */
54284
54285     /**
54286      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
54287      */
54288     minColumnWidth : 25,
54289
54290     /**
54291      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
54292      * <b>on initial render.</b> It is more efficient to explicitly size the columns
54293      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
54294      */
54295     autoSizeColumns : false,
54296
54297     /**
54298      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
54299      */
54300     autoSizeHeaders : true,
54301
54302     /**
54303      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
54304      */
54305     monitorWindowResize : true,
54306
54307     /**
54308      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
54309      * rows measured to get a columns size. Default is 0 (all rows).
54310      */
54311     maxRowsToMeasure : 0,
54312
54313     /**
54314      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
54315      */
54316     trackMouseOver : true,
54317
54318     /**
54319     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
54320     */
54321     
54322     /**
54323     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
54324     */
54325     enableDragDrop : false,
54326     
54327     /**
54328     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
54329     */
54330     enableColumnMove : true,
54331     
54332     /**
54333     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
54334     */
54335     enableColumnHide : true,
54336     
54337     /**
54338     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
54339     */
54340     enableRowHeightSync : false,
54341     
54342     /**
54343     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
54344     */
54345     stripeRows : true,
54346     
54347     /**
54348     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
54349     */
54350     autoHeight : false,
54351
54352     /**
54353      * @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.
54354      */
54355     autoExpandColumn : false,
54356
54357     /**
54358     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
54359     * Default is 50.
54360     */
54361     autoExpandMin : 50,
54362
54363     /**
54364     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
54365     */
54366     autoExpandMax : 1000,
54367
54368     /**
54369     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
54370     */
54371     view : null,
54372
54373     /**
54374     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
54375     */
54376     loadMask : false,
54377     /**
54378     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
54379     */
54380     dropTarget: false,
54381     
54382    
54383     
54384     // private
54385     rendered : false,
54386
54387     /**
54388     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
54389     * of a fixed width. Default is false.
54390     */
54391     /**
54392     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
54393     */
54394     /**
54395      * Called once after all setup has been completed and the grid is ready to be rendered.
54396      * @return {Roo.grid.Grid} this
54397      */
54398     render : function()
54399     {
54400         var c = this.container;
54401         // try to detect autoHeight/width mode
54402         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
54403             this.autoHeight = true;
54404         }
54405         var view = this.getView();
54406         view.init(this);
54407
54408         c.on("click", this.onClick, this);
54409         c.on("dblclick", this.onDblClick, this);
54410         c.on("contextmenu", this.onContextMenu, this);
54411         c.on("keydown", this.onKeyDown, this);
54412         if (Roo.isTouch) {
54413             c.on("touchstart", this.onTouchStart, this);
54414         }
54415
54416         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
54417
54418         this.getSelectionModel().init(this);
54419
54420         view.render();
54421
54422         if(this.loadMask){
54423             this.loadMask = new Roo.LoadMask(this.container,
54424                     Roo.apply({store:this.dataSource}, this.loadMask));
54425         }
54426         
54427         
54428         if (this.toolbar && this.toolbar.xtype) {
54429             this.toolbar.container = this.getView().getHeaderPanel(true);
54430             this.toolbar = new Roo.Toolbar(this.toolbar);
54431         }
54432         if (this.footer && this.footer.xtype) {
54433             this.footer.dataSource = this.getDataSource();
54434             this.footer.container = this.getView().getFooterPanel(true);
54435             this.footer = Roo.factory(this.footer, Roo);
54436         }
54437         if (this.dropTarget && this.dropTarget.xtype) {
54438             delete this.dropTarget.xtype;
54439             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
54440         }
54441         
54442         
54443         this.rendered = true;
54444         this.fireEvent('render', this);
54445         return this;
54446     },
54447
54448         /**
54449          * Reconfigures the grid to use a different Store and Column Model.
54450          * The View will be bound to the new objects and refreshed.
54451          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
54452          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
54453          */
54454     reconfigure : function(dataSource, colModel){
54455         if(this.loadMask){
54456             this.loadMask.destroy();
54457             this.loadMask = new Roo.LoadMask(this.container,
54458                     Roo.apply({store:dataSource}, this.loadMask));
54459         }
54460         this.view.bind(dataSource, colModel);
54461         this.dataSource = dataSource;
54462         this.colModel = colModel;
54463         this.view.refresh(true);
54464     },
54465
54466     // private
54467     onKeyDown : function(e){
54468         this.fireEvent("keydown", e);
54469     },
54470
54471     /**
54472      * Destroy this grid.
54473      * @param {Boolean} removeEl True to remove the element
54474      */
54475     destroy : function(removeEl, keepListeners){
54476         if(this.loadMask){
54477             this.loadMask.destroy();
54478         }
54479         var c = this.container;
54480         c.removeAllListeners();
54481         this.view.destroy();
54482         this.colModel.purgeListeners();
54483         if(!keepListeners){
54484             this.purgeListeners();
54485         }
54486         c.update("");
54487         if(removeEl === true){
54488             c.remove();
54489         }
54490     },
54491
54492     // private
54493     processEvent : function(name, e){
54494         // does this fire select???
54495         //Roo.log('grid:processEvent '  + name);
54496         
54497         if (name != 'touchstart' ) {
54498             this.fireEvent(name, e);    
54499         }
54500         
54501         var t = e.getTarget();
54502         var v = this.view;
54503         var header = v.findHeaderIndex(t);
54504         if(header !== false){
54505             var ename = name == 'touchstart' ? 'click' : name;
54506              
54507             this.fireEvent("header" + ename, this, header, e);
54508         }else{
54509             var row = v.findRowIndex(t);
54510             var cell = v.findCellIndex(t);
54511             if (name == 'touchstart') {
54512                 // first touch is always a click.
54513                 // hopefull this happens after selection is updated.?
54514                 name = false;
54515                 
54516                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
54517                     var cs = this.selModel.getSelectedCell();
54518                     if (row == cs[0] && cell == cs[1]){
54519                         name = 'dblclick';
54520                     }
54521                 }
54522                 if (typeof(this.selModel.getSelections) != 'undefined') {
54523                     var cs = this.selModel.getSelections();
54524                     var ds = this.dataSource;
54525                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
54526                         name = 'dblclick';
54527                     }
54528                 }
54529                 if (!name) {
54530                     return;
54531                 }
54532             }
54533             
54534             
54535             if(row !== false){
54536                 this.fireEvent("row" + name, this, row, e);
54537                 if(cell !== false){
54538                     this.fireEvent("cell" + name, this, row, cell, e);
54539                 }
54540             }
54541         }
54542     },
54543
54544     // private
54545     onClick : function(e){
54546         this.processEvent("click", e);
54547     },
54548    // private
54549     onTouchStart : function(e){
54550         this.processEvent("touchstart", e);
54551     },
54552
54553     // private
54554     onContextMenu : function(e, t){
54555         this.processEvent("contextmenu", e);
54556     },
54557
54558     // private
54559     onDblClick : function(e){
54560         this.processEvent("dblclick", e);
54561     },
54562
54563     // private
54564     walkCells : function(row, col, step, fn, scope){
54565         var cm = this.colModel, clen = cm.getColumnCount();
54566         var ds = this.dataSource, rlen = ds.getCount(), first = true;
54567         if(step < 0){
54568             if(col < 0){
54569                 row--;
54570                 first = false;
54571             }
54572             while(row >= 0){
54573                 if(!first){
54574                     col = clen-1;
54575                 }
54576                 first = false;
54577                 while(col >= 0){
54578                     if(fn.call(scope || this, row, col, cm) === true){
54579                         return [row, col];
54580                     }
54581                     col--;
54582                 }
54583                 row--;
54584             }
54585         } else {
54586             if(col >= clen){
54587                 row++;
54588                 first = false;
54589             }
54590             while(row < rlen){
54591                 if(!first){
54592                     col = 0;
54593                 }
54594                 first = false;
54595                 while(col < clen){
54596                     if(fn.call(scope || this, row, col, cm) === true){
54597                         return [row, col];
54598                     }
54599                     col++;
54600                 }
54601                 row++;
54602             }
54603         }
54604         return null;
54605     },
54606
54607     // private
54608     getSelections : function(){
54609         return this.selModel.getSelections();
54610     },
54611
54612     /**
54613      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
54614      * but if manual update is required this method will initiate it.
54615      */
54616     autoSize : function(){
54617         if(this.rendered){
54618             this.view.layout();
54619             if(this.view.adjustForScroll){
54620                 this.view.adjustForScroll();
54621             }
54622         }
54623     },
54624
54625     /**
54626      * Returns the grid's underlying element.
54627      * @return {Element} The element
54628      */
54629     getGridEl : function(){
54630         return this.container;
54631     },
54632
54633     // private for compatibility, overridden by editor grid
54634     stopEditing : function(){},
54635
54636     /**
54637      * Returns the grid's SelectionModel.
54638      * @return {SelectionModel}
54639      */
54640     getSelectionModel : function(){
54641         if(!this.selModel){
54642             this.selModel = new Roo.grid.RowSelectionModel();
54643         }
54644         return this.selModel;
54645     },
54646
54647     /**
54648      * Returns the grid's DataSource.
54649      * @return {DataSource}
54650      */
54651     getDataSource : function(){
54652         return this.dataSource;
54653     },
54654
54655     /**
54656      * Returns the grid's ColumnModel.
54657      * @return {ColumnModel}
54658      */
54659     getColumnModel : function(){
54660         return this.colModel;
54661     },
54662
54663     /**
54664      * Returns the grid's GridView object.
54665      * @return {GridView}
54666      */
54667     getView : function(){
54668         if(!this.view){
54669             this.view = new Roo.grid.GridView(this.viewConfig);
54670         }
54671         return this.view;
54672     },
54673     /**
54674      * Called to get grid's drag proxy text, by default returns this.ddText.
54675      * @return {String}
54676      */
54677     getDragDropText : function(){
54678         var count = this.selModel.getCount();
54679         return String.format(this.ddText, count, count == 1 ? '' : 's');
54680     }
54681 });
54682 /**
54683  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
54684  * %0 is replaced with the number of selected rows.
54685  * @type String
54686  */
54687 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
54688  * Based on:
54689  * Ext JS Library 1.1.1
54690  * Copyright(c) 2006-2007, Ext JS, LLC.
54691  *
54692  * Originally Released Under LGPL - original licence link has changed is not relivant.
54693  *
54694  * Fork - LGPL
54695  * <script type="text/javascript">
54696  */
54697  
54698 Roo.grid.AbstractGridView = function(){
54699         this.grid = null;
54700         
54701         this.events = {
54702             "beforerowremoved" : true,
54703             "beforerowsinserted" : true,
54704             "beforerefresh" : true,
54705             "rowremoved" : true,
54706             "rowsinserted" : true,
54707             "rowupdated" : true,
54708             "refresh" : true
54709         };
54710     Roo.grid.AbstractGridView.superclass.constructor.call(this);
54711 };
54712
54713 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
54714     rowClass : "x-grid-row",
54715     cellClass : "x-grid-cell",
54716     tdClass : "x-grid-td",
54717     hdClass : "x-grid-hd",
54718     splitClass : "x-grid-hd-split",
54719     
54720     init: function(grid){
54721         this.grid = grid;
54722                 var cid = this.grid.getGridEl().id;
54723         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
54724         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
54725         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
54726         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
54727         },
54728         
54729     getColumnRenderers : function(){
54730         var renderers = [];
54731         var cm = this.grid.colModel;
54732         var colCount = cm.getColumnCount();
54733         for(var i = 0; i < colCount; i++){
54734             renderers[i] = cm.getRenderer(i);
54735         }
54736         return renderers;
54737     },
54738     
54739     getColumnIds : function(){
54740         var ids = [];
54741         var cm = this.grid.colModel;
54742         var colCount = cm.getColumnCount();
54743         for(var i = 0; i < colCount; i++){
54744             ids[i] = cm.getColumnId(i);
54745         }
54746         return ids;
54747     },
54748     
54749     getDataIndexes : function(){
54750         if(!this.indexMap){
54751             this.indexMap = this.buildIndexMap();
54752         }
54753         return this.indexMap.colToData;
54754     },
54755     
54756     getColumnIndexByDataIndex : function(dataIndex){
54757         if(!this.indexMap){
54758             this.indexMap = this.buildIndexMap();
54759         }
54760         return this.indexMap.dataToCol[dataIndex];
54761     },
54762     
54763     /**
54764      * Set a css style for a column dynamically. 
54765      * @param {Number} colIndex The index of the column
54766      * @param {String} name The css property name
54767      * @param {String} value The css value
54768      */
54769     setCSSStyle : function(colIndex, name, value){
54770         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
54771         Roo.util.CSS.updateRule(selector, name, value);
54772     },
54773     
54774     generateRules : function(cm){
54775         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
54776         Roo.util.CSS.removeStyleSheet(rulesId);
54777         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
54778             var cid = cm.getColumnId(i);
54779             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
54780                          this.tdSelector, cid, " {\n}\n",
54781                          this.hdSelector, cid, " {\n}\n",
54782                          this.splitSelector, cid, " {\n}\n");
54783         }
54784         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
54785     }
54786 });/*
54787  * Based on:
54788  * Ext JS Library 1.1.1
54789  * Copyright(c) 2006-2007, Ext JS, LLC.
54790  *
54791  * Originally Released Under LGPL - original licence link has changed is not relivant.
54792  *
54793  * Fork - LGPL
54794  * <script type="text/javascript">
54795  */
54796
54797 // private
54798 // This is a support class used internally by the Grid components
54799 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
54800     this.grid = grid;
54801     this.view = grid.getView();
54802     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
54803     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
54804     if(hd2){
54805         this.setHandleElId(Roo.id(hd));
54806         this.setOuterHandleElId(Roo.id(hd2));
54807     }
54808     this.scroll = false;
54809 };
54810 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
54811     maxDragWidth: 120,
54812     getDragData : function(e){
54813         var t = Roo.lib.Event.getTarget(e);
54814         var h = this.view.findHeaderCell(t);
54815         if(h){
54816             return {ddel: h.firstChild, header:h};
54817         }
54818         return false;
54819     },
54820
54821     onInitDrag : function(e){
54822         this.view.headersDisabled = true;
54823         var clone = this.dragData.ddel.cloneNode(true);
54824         clone.id = Roo.id();
54825         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
54826         this.proxy.update(clone);
54827         return true;
54828     },
54829
54830     afterValidDrop : function(){
54831         var v = this.view;
54832         setTimeout(function(){
54833             v.headersDisabled = false;
54834         }, 50);
54835     },
54836
54837     afterInvalidDrop : function(){
54838         var v = this.view;
54839         setTimeout(function(){
54840             v.headersDisabled = false;
54841         }, 50);
54842     }
54843 });
54844 /*
54845  * Based on:
54846  * Ext JS Library 1.1.1
54847  * Copyright(c) 2006-2007, Ext JS, LLC.
54848  *
54849  * Originally Released Under LGPL - original licence link has changed is not relivant.
54850  *
54851  * Fork - LGPL
54852  * <script type="text/javascript">
54853  */
54854 // private
54855 // This is a support class used internally by the Grid components
54856 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
54857     this.grid = grid;
54858     this.view = grid.getView();
54859     // split the proxies so they don't interfere with mouse events
54860     this.proxyTop = Roo.DomHelper.append(document.body, {
54861         cls:"col-move-top", html:"&#160;"
54862     }, true);
54863     this.proxyBottom = Roo.DomHelper.append(document.body, {
54864         cls:"col-move-bottom", html:"&#160;"
54865     }, true);
54866     this.proxyTop.hide = this.proxyBottom.hide = function(){
54867         this.setLeftTop(-100,-100);
54868         this.setStyle("visibility", "hidden");
54869     };
54870     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
54871     // temporarily disabled
54872     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
54873     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
54874 };
54875 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
54876     proxyOffsets : [-4, -9],
54877     fly: Roo.Element.fly,
54878
54879     getTargetFromEvent : function(e){
54880         var t = Roo.lib.Event.getTarget(e);
54881         var cindex = this.view.findCellIndex(t);
54882         if(cindex !== false){
54883             return this.view.getHeaderCell(cindex);
54884         }
54885         return null;
54886     },
54887
54888     nextVisible : function(h){
54889         var v = this.view, cm = this.grid.colModel;
54890         h = h.nextSibling;
54891         while(h){
54892             if(!cm.isHidden(v.getCellIndex(h))){
54893                 return h;
54894             }
54895             h = h.nextSibling;
54896         }
54897         return null;
54898     },
54899
54900     prevVisible : function(h){
54901         var v = this.view, cm = this.grid.colModel;
54902         h = h.prevSibling;
54903         while(h){
54904             if(!cm.isHidden(v.getCellIndex(h))){
54905                 return h;
54906             }
54907             h = h.prevSibling;
54908         }
54909         return null;
54910     },
54911
54912     positionIndicator : function(h, n, e){
54913         var x = Roo.lib.Event.getPageX(e);
54914         var r = Roo.lib.Dom.getRegion(n.firstChild);
54915         var px, pt, py = r.top + this.proxyOffsets[1];
54916         if((r.right - x) <= (r.right-r.left)/2){
54917             px = r.right+this.view.borderWidth;
54918             pt = "after";
54919         }else{
54920             px = r.left;
54921             pt = "before";
54922         }
54923         var oldIndex = this.view.getCellIndex(h);
54924         var newIndex = this.view.getCellIndex(n);
54925
54926         if(this.grid.colModel.isFixed(newIndex)){
54927             return false;
54928         }
54929
54930         var locked = this.grid.colModel.isLocked(newIndex);
54931
54932         if(pt == "after"){
54933             newIndex++;
54934         }
54935         if(oldIndex < newIndex){
54936             newIndex--;
54937         }
54938         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
54939             return false;
54940         }
54941         px +=  this.proxyOffsets[0];
54942         this.proxyTop.setLeftTop(px, py);
54943         this.proxyTop.show();
54944         if(!this.bottomOffset){
54945             this.bottomOffset = this.view.mainHd.getHeight();
54946         }
54947         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
54948         this.proxyBottom.show();
54949         return pt;
54950     },
54951
54952     onNodeEnter : function(n, dd, e, data){
54953         if(data.header != n){
54954             this.positionIndicator(data.header, n, e);
54955         }
54956     },
54957
54958     onNodeOver : function(n, dd, e, data){
54959         var result = false;
54960         if(data.header != n){
54961             result = this.positionIndicator(data.header, n, e);
54962         }
54963         if(!result){
54964             this.proxyTop.hide();
54965             this.proxyBottom.hide();
54966         }
54967         return result ? this.dropAllowed : this.dropNotAllowed;
54968     },
54969
54970     onNodeOut : function(n, dd, e, data){
54971         this.proxyTop.hide();
54972         this.proxyBottom.hide();
54973     },
54974
54975     onNodeDrop : function(n, dd, e, data){
54976         var h = data.header;
54977         if(h != n){
54978             var cm = this.grid.colModel;
54979             var x = Roo.lib.Event.getPageX(e);
54980             var r = Roo.lib.Dom.getRegion(n.firstChild);
54981             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
54982             var oldIndex = this.view.getCellIndex(h);
54983             var newIndex = this.view.getCellIndex(n);
54984             var locked = cm.isLocked(newIndex);
54985             if(pt == "after"){
54986                 newIndex++;
54987             }
54988             if(oldIndex < newIndex){
54989                 newIndex--;
54990             }
54991             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
54992                 return false;
54993             }
54994             cm.setLocked(oldIndex, locked, true);
54995             cm.moveColumn(oldIndex, newIndex);
54996             this.grid.fireEvent("columnmove", oldIndex, newIndex);
54997             return true;
54998         }
54999         return false;
55000     }
55001 });
55002 /*
55003  * Based on:
55004  * Ext JS Library 1.1.1
55005  * Copyright(c) 2006-2007, Ext JS, LLC.
55006  *
55007  * Originally Released Under LGPL - original licence link has changed is not relivant.
55008  *
55009  * Fork - LGPL
55010  * <script type="text/javascript">
55011  */
55012   
55013 /**
55014  * @class Roo.grid.GridView
55015  * @extends Roo.util.Observable
55016  *
55017  * @constructor
55018  * @param {Object} config
55019  */
55020 Roo.grid.GridView = function(config){
55021     Roo.grid.GridView.superclass.constructor.call(this);
55022     this.el = null;
55023
55024     Roo.apply(this, config);
55025 };
55026
55027 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
55028
55029     unselectable :  'unselectable="on"',
55030     unselectableCls :  'x-unselectable',
55031     
55032     
55033     rowClass : "x-grid-row",
55034
55035     cellClass : "x-grid-col",
55036
55037     tdClass : "x-grid-td",
55038
55039     hdClass : "x-grid-hd",
55040
55041     splitClass : "x-grid-split",
55042
55043     sortClasses : ["sort-asc", "sort-desc"],
55044
55045     enableMoveAnim : false,
55046
55047     hlColor: "C3DAF9",
55048
55049     dh : Roo.DomHelper,
55050
55051     fly : Roo.Element.fly,
55052
55053     css : Roo.util.CSS,
55054
55055     borderWidth: 1,
55056
55057     splitOffset: 3,
55058
55059     scrollIncrement : 22,
55060
55061     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
55062
55063     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
55064
55065     bind : function(ds, cm){
55066         if(this.ds){
55067             this.ds.un("load", this.onLoad, this);
55068             this.ds.un("datachanged", this.onDataChange, this);
55069             this.ds.un("add", this.onAdd, this);
55070             this.ds.un("remove", this.onRemove, this);
55071             this.ds.un("update", this.onUpdate, this);
55072             this.ds.un("clear", this.onClear, this);
55073         }
55074         if(ds){
55075             ds.on("load", this.onLoad, this);
55076             ds.on("datachanged", this.onDataChange, this);
55077             ds.on("add", this.onAdd, this);
55078             ds.on("remove", this.onRemove, this);
55079             ds.on("update", this.onUpdate, this);
55080             ds.on("clear", this.onClear, this);
55081         }
55082         this.ds = ds;
55083
55084         if(this.cm){
55085             this.cm.un("widthchange", this.onColWidthChange, this);
55086             this.cm.un("headerchange", this.onHeaderChange, this);
55087             this.cm.un("hiddenchange", this.onHiddenChange, this);
55088             this.cm.un("columnmoved", this.onColumnMove, this);
55089             this.cm.un("columnlockchange", this.onColumnLock, this);
55090         }
55091         if(cm){
55092             this.generateRules(cm);
55093             cm.on("widthchange", this.onColWidthChange, this);
55094             cm.on("headerchange", this.onHeaderChange, this);
55095             cm.on("hiddenchange", this.onHiddenChange, this);
55096             cm.on("columnmoved", this.onColumnMove, this);
55097             cm.on("columnlockchange", this.onColumnLock, this);
55098         }
55099         this.cm = cm;
55100     },
55101
55102     init: function(grid){
55103         Roo.grid.GridView.superclass.init.call(this, grid);
55104
55105         this.bind(grid.dataSource, grid.colModel);
55106
55107         grid.on("headerclick", this.handleHeaderClick, this);
55108
55109         if(grid.trackMouseOver){
55110             grid.on("mouseover", this.onRowOver, this);
55111             grid.on("mouseout", this.onRowOut, this);
55112         }
55113         grid.cancelTextSelection = function(){};
55114         this.gridId = grid.id;
55115
55116         var tpls = this.templates || {};
55117
55118         if(!tpls.master){
55119             tpls.master = new Roo.Template(
55120                '<div class="x-grid" hidefocus="true">',
55121                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
55122                   '<div class="x-grid-topbar"></div>',
55123                   '<div class="x-grid-scroller"><div></div></div>',
55124                   '<div class="x-grid-locked">',
55125                       '<div class="x-grid-header">{lockedHeader}</div>',
55126                       '<div class="x-grid-body">{lockedBody}</div>',
55127                   "</div>",
55128                   '<div class="x-grid-viewport">',
55129                       '<div class="x-grid-header">{header}</div>',
55130                       '<div class="x-grid-body">{body}</div>',
55131                   "</div>",
55132                   '<div class="x-grid-bottombar"></div>',
55133                  
55134                   '<div class="x-grid-resize-proxy">&#160;</div>',
55135                "</div>"
55136             );
55137             tpls.master.disableformats = true;
55138         }
55139
55140         if(!tpls.header){
55141             tpls.header = new Roo.Template(
55142                '<table border="0" cellspacing="0" cellpadding="0">',
55143                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
55144                "</table>{splits}"
55145             );
55146             tpls.header.disableformats = true;
55147         }
55148         tpls.header.compile();
55149
55150         if(!tpls.hcell){
55151             tpls.hcell = new Roo.Template(
55152                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
55153                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
55154                 "</div></td>"
55155              );
55156              tpls.hcell.disableFormats = true;
55157         }
55158         tpls.hcell.compile();
55159
55160         if(!tpls.hsplit){
55161             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
55162                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
55163             tpls.hsplit.disableFormats = true;
55164         }
55165         tpls.hsplit.compile();
55166
55167         if(!tpls.body){
55168             tpls.body = new Roo.Template(
55169                '<table border="0" cellspacing="0" cellpadding="0">',
55170                "<tbody>{rows}</tbody>",
55171                "</table>"
55172             );
55173             tpls.body.disableFormats = true;
55174         }
55175         tpls.body.compile();
55176
55177         if(!tpls.row){
55178             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
55179             tpls.row.disableFormats = true;
55180         }
55181         tpls.row.compile();
55182
55183         if(!tpls.cell){
55184             tpls.cell = new Roo.Template(
55185                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
55186                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
55187                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
55188                 "</td>"
55189             );
55190             tpls.cell.disableFormats = true;
55191         }
55192         tpls.cell.compile();
55193
55194         this.templates = tpls;
55195     },
55196
55197     // remap these for backwards compat
55198     onColWidthChange : function(){
55199         this.updateColumns.apply(this, arguments);
55200     },
55201     onHeaderChange : function(){
55202         this.updateHeaders.apply(this, arguments);
55203     }, 
55204     onHiddenChange : function(){
55205         this.handleHiddenChange.apply(this, arguments);
55206     },
55207     onColumnMove : function(){
55208         this.handleColumnMove.apply(this, arguments);
55209     },
55210     onColumnLock : function(){
55211         this.handleLockChange.apply(this, arguments);
55212     },
55213
55214     onDataChange : function(){
55215         this.refresh();
55216         this.updateHeaderSortState();
55217     },
55218
55219     onClear : function(){
55220         this.refresh();
55221     },
55222
55223     onUpdate : function(ds, record){
55224         this.refreshRow(record);
55225     },
55226
55227     refreshRow : function(record){
55228         var ds = this.ds, index;
55229         if(typeof record == 'number'){
55230             index = record;
55231             record = ds.getAt(index);
55232         }else{
55233             index = ds.indexOf(record);
55234         }
55235         this.insertRows(ds, index, index, true);
55236         this.onRemove(ds, record, index+1, true);
55237         this.syncRowHeights(index, index);
55238         this.layout();
55239         this.fireEvent("rowupdated", this, index, record);
55240     },
55241
55242     onAdd : function(ds, records, index){
55243         this.insertRows(ds, index, index + (records.length-1));
55244     },
55245
55246     onRemove : function(ds, record, index, isUpdate){
55247         if(isUpdate !== true){
55248             this.fireEvent("beforerowremoved", this, index, record);
55249         }
55250         var bt = this.getBodyTable(), lt = this.getLockedTable();
55251         if(bt.rows[index]){
55252             bt.firstChild.removeChild(bt.rows[index]);
55253         }
55254         if(lt.rows[index]){
55255             lt.firstChild.removeChild(lt.rows[index]);
55256         }
55257         if(isUpdate !== true){
55258             this.stripeRows(index);
55259             this.syncRowHeights(index, index);
55260             this.layout();
55261             this.fireEvent("rowremoved", this, index, record);
55262         }
55263     },
55264
55265     onLoad : function(){
55266         this.scrollToTop();
55267     },
55268
55269     /**
55270      * Scrolls the grid to the top
55271      */
55272     scrollToTop : function(){
55273         if(this.scroller){
55274             this.scroller.dom.scrollTop = 0;
55275             this.syncScroll();
55276         }
55277     },
55278
55279     /**
55280      * Gets a panel in the header of the grid that can be used for toolbars etc.
55281      * After modifying the contents of this panel a call to grid.autoSize() may be
55282      * required to register any changes in size.
55283      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
55284      * @return Roo.Element
55285      */
55286     getHeaderPanel : function(doShow){
55287         if(doShow){
55288             this.headerPanel.show();
55289         }
55290         return this.headerPanel;
55291     },
55292
55293     /**
55294      * Gets a panel in the footer of the grid that can be used for toolbars etc.
55295      * After modifying the contents of this panel a call to grid.autoSize() may be
55296      * required to register any changes in size.
55297      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
55298      * @return Roo.Element
55299      */
55300     getFooterPanel : function(doShow){
55301         if(doShow){
55302             this.footerPanel.show();
55303         }
55304         return this.footerPanel;
55305     },
55306
55307     initElements : function(){
55308         var E = Roo.Element;
55309         var el = this.grid.getGridEl().dom.firstChild;
55310         var cs = el.childNodes;
55311
55312         this.el = new E(el);
55313         
55314          this.focusEl = new E(el.firstChild);
55315         this.focusEl.swallowEvent("click", true);
55316         
55317         this.headerPanel = new E(cs[1]);
55318         this.headerPanel.enableDisplayMode("block");
55319
55320         this.scroller = new E(cs[2]);
55321         this.scrollSizer = new E(this.scroller.dom.firstChild);
55322
55323         this.lockedWrap = new E(cs[3]);
55324         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
55325         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
55326
55327         this.mainWrap = new E(cs[4]);
55328         this.mainHd = new E(this.mainWrap.dom.firstChild);
55329         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
55330
55331         this.footerPanel = new E(cs[5]);
55332         this.footerPanel.enableDisplayMode("block");
55333
55334         this.resizeProxy = new E(cs[6]);
55335
55336         this.headerSelector = String.format(
55337            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
55338            this.lockedHd.id, this.mainHd.id
55339         );
55340
55341         this.splitterSelector = String.format(
55342            '#{0} div.x-grid-split, #{1} div.x-grid-split',
55343            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
55344         );
55345     },
55346     idToCssName : function(s)
55347     {
55348         return s.replace(/[^a-z0-9]+/ig, '-');
55349     },
55350
55351     getHeaderCell : function(index){
55352         return Roo.DomQuery.select(this.headerSelector)[index];
55353     },
55354
55355     getHeaderCellMeasure : function(index){
55356         return this.getHeaderCell(index).firstChild;
55357     },
55358
55359     getHeaderCellText : function(index){
55360         return this.getHeaderCell(index).firstChild.firstChild;
55361     },
55362
55363     getLockedTable : function(){
55364         return this.lockedBody.dom.firstChild;
55365     },
55366
55367     getBodyTable : function(){
55368         return this.mainBody.dom.firstChild;
55369     },
55370
55371     getLockedRow : function(index){
55372         return this.getLockedTable().rows[index];
55373     },
55374
55375     getRow : function(index){
55376         return this.getBodyTable().rows[index];
55377     },
55378
55379     getRowComposite : function(index){
55380         if(!this.rowEl){
55381             this.rowEl = new Roo.CompositeElementLite();
55382         }
55383         var els = [], lrow, mrow;
55384         if(lrow = this.getLockedRow(index)){
55385             els.push(lrow);
55386         }
55387         if(mrow = this.getRow(index)){
55388             els.push(mrow);
55389         }
55390         this.rowEl.elements = els;
55391         return this.rowEl;
55392     },
55393     /**
55394      * Gets the 'td' of the cell
55395      * 
55396      * @param {Integer} rowIndex row to select
55397      * @param {Integer} colIndex column to select
55398      * 
55399      * @return {Object} 
55400      */
55401     getCell : function(rowIndex, colIndex){
55402         var locked = this.cm.getLockedCount();
55403         var source;
55404         if(colIndex < locked){
55405             source = this.lockedBody.dom.firstChild;
55406         }else{
55407             source = this.mainBody.dom.firstChild;
55408             colIndex -= locked;
55409         }
55410         return source.rows[rowIndex].childNodes[colIndex];
55411     },
55412
55413     getCellText : function(rowIndex, colIndex){
55414         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
55415     },
55416
55417     getCellBox : function(cell){
55418         var b = this.fly(cell).getBox();
55419         if(Roo.isOpera){ // opera fails to report the Y
55420             b.y = cell.offsetTop + this.mainBody.getY();
55421         }
55422         return b;
55423     },
55424
55425     getCellIndex : function(cell){
55426         var id = String(cell.className).match(this.cellRE);
55427         if(id){
55428             return parseInt(id[1], 10);
55429         }
55430         return 0;
55431     },
55432
55433     findHeaderIndex : function(n){
55434         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
55435         return r ? this.getCellIndex(r) : false;
55436     },
55437
55438     findHeaderCell : function(n){
55439         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
55440         return r ? r : false;
55441     },
55442
55443     findRowIndex : function(n){
55444         if(!n){
55445             return false;
55446         }
55447         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
55448         return r ? r.rowIndex : false;
55449     },
55450
55451     findCellIndex : function(node){
55452         var stop = this.el.dom;
55453         while(node && node != stop){
55454             if(this.findRE.test(node.className)){
55455                 return this.getCellIndex(node);
55456             }
55457             node = node.parentNode;
55458         }
55459         return false;
55460     },
55461
55462     getColumnId : function(index){
55463         return this.cm.getColumnId(index);
55464     },
55465
55466     getSplitters : function()
55467     {
55468         if(this.splitterSelector){
55469            return Roo.DomQuery.select(this.splitterSelector);
55470         }else{
55471             return null;
55472       }
55473     },
55474
55475     getSplitter : function(index){
55476         return this.getSplitters()[index];
55477     },
55478
55479     onRowOver : function(e, t){
55480         var row;
55481         if((row = this.findRowIndex(t)) !== false){
55482             this.getRowComposite(row).addClass("x-grid-row-over");
55483         }
55484     },
55485
55486     onRowOut : function(e, t){
55487         var row;
55488         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
55489             this.getRowComposite(row).removeClass("x-grid-row-over");
55490         }
55491     },
55492
55493     renderHeaders : function(){
55494         var cm = this.cm;
55495         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
55496         var cb = [], lb = [], sb = [], lsb = [], p = {};
55497         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55498             p.cellId = "x-grid-hd-0-" + i;
55499             p.splitId = "x-grid-csplit-0-" + i;
55500             p.id = cm.getColumnId(i);
55501             p.value = cm.getColumnHeader(i) || "";
55502             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
55503             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
55504             if(!cm.isLocked(i)){
55505                 cb[cb.length] = ct.apply(p);
55506                 sb[sb.length] = st.apply(p);
55507             }else{
55508                 lb[lb.length] = ct.apply(p);
55509                 lsb[lsb.length] = st.apply(p);
55510             }
55511         }
55512         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
55513                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
55514     },
55515
55516     updateHeaders : function(){
55517         var html = this.renderHeaders();
55518         this.lockedHd.update(html[0]);
55519         this.mainHd.update(html[1]);
55520     },
55521
55522     /**
55523      * Focuses the specified row.
55524      * @param {Number} row The row index
55525      */
55526     focusRow : function(row)
55527     {
55528         //Roo.log('GridView.focusRow');
55529         var x = this.scroller.dom.scrollLeft;
55530         this.focusCell(row, 0, false);
55531         this.scroller.dom.scrollLeft = x;
55532     },
55533
55534     /**
55535      * Focuses the specified cell.
55536      * @param {Number} row The row index
55537      * @param {Number} col The column index
55538      * @param {Boolean} hscroll false to disable horizontal scrolling
55539      */
55540     focusCell : function(row, col, hscroll)
55541     {
55542         //Roo.log('GridView.focusCell');
55543         var el = this.ensureVisible(row, col, hscroll);
55544         this.focusEl.alignTo(el, "tl-tl");
55545         if(Roo.isGecko){
55546             this.focusEl.focus();
55547         }else{
55548             this.focusEl.focus.defer(1, this.focusEl);
55549         }
55550     },
55551
55552     /**
55553      * Scrolls the specified cell into view
55554      * @param {Number} row The row index
55555      * @param {Number} col The column index
55556      * @param {Boolean} hscroll false to disable horizontal scrolling
55557      */
55558     ensureVisible : function(row, col, hscroll)
55559     {
55560         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
55561         //return null; //disable for testing.
55562         if(typeof row != "number"){
55563             row = row.rowIndex;
55564         }
55565         if(row < 0 && row >= this.ds.getCount()){
55566             return  null;
55567         }
55568         col = (col !== undefined ? col : 0);
55569         var cm = this.grid.colModel;
55570         while(cm.isHidden(col)){
55571             col++;
55572         }
55573
55574         var el = this.getCell(row, col);
55575         if(!el){
55576             return null;
55577         }
55578         var c = this.scroller.dom;
55579
55580         var ctop = parseInt(el.offsetTop, 10);
55581         var cleft = parseInt(el.offsetLeft, 10);
55582         var cbot = ctop + el.offsetHeight;
55583         var cright = cleft + el.offsetWidth;
55584         
55585         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
55586         var stop = parseInt(c.scrollTop, 10);
55587         var sleft = parseInt(c.scrollLeft, 10);
55588         var sbot = stop + ch;
55589         var sright = sleft + c.clientWidth;
55590         /*
55591         Roo.log('GridView.ensureVisible:' +
55592                 ' ctop:' + ctop +
55593                 ' c.clientHeight:' + c.clientHeight +
55594                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
55595                 ' stop:' + stop +
55596                 ' cbot:' + cbot +
55597                 ' sbot:' + sbot +
55598                 ' ch:' + ch  
55599                 );
55600         */
55601         if(ctop < stop){
55602              c.scrollTop = ctop;
55603             //Roo.log("set scrolltop to ctop DISABLE?");
55604         }else if(cbot > sbot){
55605             //Roo.log("set scrolltop to cbot-ch");
55606             c.scrollTop = cbot-ch;
55607         }
55608         
55609         if(hscroll !== false){
55610             if(cleft < sleft){
55611                 c.scrollLeft = cleft;
55612             }else if(cright > sright){
55613                 c.scrollLeft = cright-c.clientWidth;
55614             }
55615         }
55616          
55617         return el;
55618     },
55619
55620     updateColumns : function(){
55621         this.grid.stopEditing();
55622         var cm = this.grid.colModel, colIds = this.getColumnIds();
55623         //var totalWidth = cm.getTotalWidth();
55624         var pos = 0;
55625         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55626             //if(cm.isHidden(i)) continue;
55627             var w = cm.getColumnWidth(i);
55628             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
55629             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
55630         }
55631         this.updateSplitters();
55632     },
55633
55634     generateRules : function(cm){
55635         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
55636         Roo.util.CSS.removeStyleSheet(rulesId);
55637         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55638             var cid = cm.getColumnId(i);
55639             var align = '';
55640             if(cm.config[i].align){
55641                 align = 'text-align:'+cm.config[i].align+';';
55642             }
55643             var hidden = '';
55644             if(cm.isHidden(i)){
55645                 hidden = 'display:none;';
55646             }
55647             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
55648             ruleBuf.push(
55649                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
55650                     this.hdSelector, cid, " {\n", align, width, "}\n",
55651                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
55652                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
55653         }
55654         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
55655     },
55656
55657     updateSplitters : function(){
55658         var cm = this.cm, s = this.getSplitters();
55659         if(s){ // splitters not created yet
55660             var pos = 0, locked = true;
55661             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55662                 if(cm.isHidden(i)) {
55663                     continue;
55664                 }
55665                 var w = cm.getColumnWidth(i); // make sure it's a number
55666                 if(!cm.isLocked(i) && locked){
55667                     pos = 0;
55668                     locked = false;
55669                 }
55670                 pos += w;
55671                 s[i].style.left = (pos-this.splitOffset) + "px";
55672             }
55673         }
55674     },
55675
55676     handleHiddenChange : function(colModel, colIndex, hidden){
55677         if(hidden){
55678             this.hideColumn(colIndex);
55679         }else{
55680             this.unhideColumn(colIndex);
55681         }
55682     },
55683
55684     hideColumn : function(colIndex){
55685         var cid = this.getColumnId(colIndex);
55686         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
55687         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
55688         if(Roo.isSafari){
55689             this.updateHeaders();
55690         }
55691         this.updateSplitters();
55692         this.layout();
55693     },
55694
55695     unhideColumn : function(colIndex){
55696         var cid = this.getColumnId(colIndex);
55697         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
55698         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
55699
55700         if(Roo.isSafari){
55701             this.updateHeaders();
55702         }
55703         this.updateSplitters();
55704         this.layout();
55705     },
55706
55707     insertRows : function(dm, firstRow, lastRow, isUpdate){
55708         if(firstRow == 0 && lastRow == dm.getCount()-1){
55709             this.refresh();
55710         }else{
55711             if(!isUpdate){
55712                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
55713             }
55714             var s = this.getScrollState();
55715             var markup = this.renderRows(firstRow, lastRow);
55716             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
55717             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
55718             this.restoreScroll(s);
55719             if(!isUpdate){
55720                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
55721                 this.syncRowHeights(firstRow, lastRow);
55722                 this.stripeRows(firstRow);
55723                 this.layout();
55724             }
55725         }
55726     },
55727
55728     bufferRows : function(markup, target, index){
55729         var before = null, trows = target.rows, tbody = target.tBodies[0];
55730         if(index < trows.length){
55731             before = trows[index];
55732         }
55733         var b = document.createElement("div");
55734         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
55735         var rows = b.firstChild.rows;
55736         for(var i = 0, len = rows.length; i < len; i++){
55737             if(before){
55738                 tbody.insertBefore(rows[0], before);
55739             }else{
55740                 tbody.appendChild(rows[0]);
55741             }
55742         }
55743         b.innerHTML = "";
55744         b = null;
55745     },
55746
55747     deleteRows : function(dm, firstRow, lastRow){
55748         if(dm.getRowCount()<1){
55749             this.fireEvent("beforerefresh", this);
55750             this.mainBody.update("");
55751             this.lockedBody.update("");
55752             this.fireEvent("refresh", this);
55753         }else{
55754             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
55755             var bt = this.getBodyTable();
55756             var tbody = bt.firstChild;
55757             var rows = bt.rows;
55758             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
55759                 tbody.removeChild(rows[firstRow]);
55760             }
55761             this.stripeRows(firstRow);
55762             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
55763         }
55764     },
55765
55766     updateRows : function(dataSource, firstRow, lastRow){
55767         var s = this.getScrollState();
55768         this.refresh();
55769         this.restoreScroll(s);
55770     },
55771
55772     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
55773         if(!noRefresh){
55774            this.refresh();
55775         }
55776         this.updateHeaderSortState();
55777     },
55778
55779     getScrollState : function(){
55780         
55781         var sb = this.scroller.dom;
55782         return {left: sb.scrollLeft, top: sb.scrollTop};
55783     },
55784
55785     stripeRows : function(startRow){
55786         if(!this.grid.stripeRows || this.ds.getCount() < 1){
55787             return;
55788         }
55789         startRow = startRow || 0;
55790         var rows = this.getBodyTable().rows;
55791         var lrows = this.getLockedTable().rows;
55792         var cls = ' x-grid-row-alt ';
55793         for(var i = startRow, len = rows.length; i < len; i++){
55794             var row = rows[i], lrow = lrows[i];
55795             var isAlt = ((i+1) % 2 == 0);
55796             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
55797             if(isAlt == hasAlt){
55798                 continue;
55799             }
55800             if(isAlt){
55801                 row.className += " x-grid-row-alt";
55802             }else{
55803                 row.className = row.className.replace("x-grid-row-alt", "");
55804             }
55805             if(lrow){
55806                 lrow.className = row.className;
55807             }
55808         }
55809     },
55810
55811     restoreScroll : function(state){
55812         //Roo.log('GridView.restoreScroll');
55813         var sb = this.scroller.dom;
55814         sb.scrollLeft = state.left;
55815         sb.scrollTop = state.top;
55816         this.syncScroll();
55817     },
55818
55819     syncScroll : function(){
55820         //Roo.log('GridView.syncScroll');
55821         var sb = this.scroller.dom;
55822         var sh = this.mainHd.dom;
55823         var bs = this.mainBody.dom;
55824         var lv = this.lockedBody.dom;
55825         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
55826         lv.scrollTop = bs.scrollTop = sb.scrollTop;
55827     },
55828
55829     handleScroll : function(e){
55830         this.syncScroll();
55831         var sb = this.scroller.dom;
55832         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
55833         e.stopEvent();
55834     },
55835
55836     handleWheel : function(e){
55837         var d = e.getWheelDelta();
55838         this.scroller.dom.scrollTop -= d*22;
55839         // set this here to prevent jumpy scrolling on large tables
55840         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
55841         e.stopEvent();
55842     },
55843
55844     renderRows : function(startRow, endRow){
55845         // pull in all the crap needed to render rows
55846         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
55847         var colCount = cm.getColumnCount();
55848
55849         if(ds.getCount() < 1){
55850             return ["", ""];
55851         }
55852
55853         // build a map for all the columns
55854         var cs = [];
55855         for(var i = 0; i < colCount; i++){
55856             var name = cm.getDataIndex(i);
55857             cs[i] = {
55858                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
55859                 renderer : cm.getRenderer(i),
55860                 id : cm.getColumnId(i),
55861                 locked : cm.isLocked(i),
55862                 has_editor : cm.isCellEditable(i)
55863             };
55864         }
55865
55866         startRow = startRow || 0;
55867         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
55868
55869         // records to render
55870         var rs = ds.getRange(startRow, endRow);
55871
55872         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
55873     },
55874
55875     // As much as I hate to duplicate code, this was branched because FireFox really hates
55876     // [].join("") on strings. The performance difference was substantial enough to
55877     // branch this function
55878     doRender : Roo.isGecko ?
55879             function(cs, rs, ds, startRow, colCount, stripe){
55880                 var ts = this.templates, ct = ts.cell, rt = ts.row;
55881                 // buffers
55882                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
55883                 
55884                 var hasListener = this.grid.hasListener('rowclass');
55885                 var rowcfg = {};
55886                 for(var j = 0, len = rs.length; j < len; j++){
55887                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
55888                     for(var i = 0; i < colCount; i++){
55889                         c = cs[i];
55890                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
55891                         p.id = c.id;
55892                         p.css = p.attr = "";
55893                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
55894                         if(p.value == undefined || p.value === "") {
55895                             p.value = "&#160;";
55896                         }
55897                         if(c.has_editor){
55898                             p.css += ' x-grid-editable-cell';
55899                         }
55900                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
55901                             p.css +=  ' x-grid-dirty-cell';
55902                         }
55903                         var markup = ct.apply(p);
55904                         if(!c.locked){
55905                             cb+= markup;
55906                         }else{
55907                             lcb+= markup;
55908                         }
55909                     }
55910                     var alt = [];
55911                     if(stripe && ((rowIndex+1) % 2 == 0)){
55912                         alt.push("x-grid-row-alt")
55913                     }
55914                     if(r.dirty){
55915                         alt.push(  " x-grid-dirty-row");
55916                     }
55917                     rp.cells = lcb;
55918                     if(this.getRowClass){
55919                         alt.push(this.getRowClass(r, rowIndex));
55920                     }
55921                     if (hasListener) {
55922                         rowcfg = {
55923                              
55924                             record: r,
55925                             rowIndex : rowIndex,
55926                             rowClass : ''
55927                         };
55928                         this.grid.fireEvent('rowclass', this, rowcfg);
55929                         alt.push(rowcfg.rowClass);
55930                     }
55931                     rp.alt = alt.join(" ");
55932                     lbuf+= rt.apply(rp);
55933                     rp.cells = cb;
55934                     buf+=  rt.apply(rp);
55935                 }
55936                 return [lbuf, buf];
55937             } :
55938             function(cs, rs, ds, startRow, colCount, stripe){
55939                 var ts = this.templates, ct = ts.cell, rt = ts.row;
55940                 // buffers
55941                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
55942                 var hasListener = this.grid.hasListener('rowclass');
55943  
55944                 var rowcfg = {};
55945                 for(var j = 0, len = rs.length; j < len; j++){
55946                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
55947                     for(var i = 0; i < colCount; i++){
55948                         c = cs[i];
55949                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
55950                         p.id = c.id;
55951                         p.css = p.attr = "";
55952                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
55953                         if(p.value == undefined || p.value === "") {
55954                             p.value = "&#160;";
55955                         }
55956                         //Roo.log(c);
55957                          if(c.has_editor){
55958                             p.css += ' x-grid-editable-cell';
55959                         }
55960                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
55961                             p.css += ' x-grid-dirty-cell' 
55962                         }
55963                         
55964                         var markup = ct.apply(p);
55965                         if(!c.locked){
55966                             cb[cb.length] = markup;
55967                         }else{
55968                             lcb[lcb.length] = markup;
55969                         }
55970                     }
55971                     var alt = [];
55972                     if(stripe && ((rowIndex+1) % 2 == 0)){
55973                         alt.push( "x-grid-row-alt");
55974                     }
55975                     if(r.dirty){
55976                         alt.push(" x-grid-dirty-row");
55977                     }
55978                     rp.cells = lcb;
55979                     if(this.getRowClass){
55980                         alt.push( this.getRowClass(r, rowIndex));
55981                     }
55982                     if (hasListener) {
55983                         rowcfg = {
55984                              
55985                             record: r,
55986                             rowIndex : rowIndex,
55987                             rowClass : ''
55988                         };
55989                         this.grid.fireEvent('rowclass', this, rowcfg);
55990                         alt.push(rowcfg.rowClass);
55991                     }
55992                     
55993                     rp.alt = alt.join(" ");
55994                     rp.cells = lcb.join("");
55995                     lbuf[lbuf.length] = rt.apply(rp);
55996                     rp.cells = cb.join("");
55997                     buf[buf.length] =  rt.apply(rp);
55998                 }
55999                 return [lbuf.join(""), buf.join("")];
56000             },
56001
56002     renderBody : function(){
56003         var markup = this.renderRows();
56004         var bt = this.templates.body;
56005         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
56006     },
56007
56008     /**
56009      * Refreshes the grid
56010      * @param {Boolean} headersToo
56011      */
56012     refresh : function(headersToo){
56013         this.fireEvent("beforerefresh", this);
56014         this.grid.stopEditing();
56015         var result = this.renderBody();
56016         this.lockedBody.update(result[0]);
56017         this.mainBody.update(result[1]);
56018         if(headersToo === true){
56019             this.updateHeaders();
56020             this.updateColumns();
56021             this.updateSplitters();
56022             this.updateHeaderSortState();
56023         }
56024         this.syncRowHeights();
56025         this.layout();
56026         this.fireEvent("refresh", this);
56027     },
56028
56029     handleColumnMove : function(cm, oldIndex, newIndex){
56030         this.indexMap = null;
56031         var s = this.getScrollState();
56032         this.refresh(true);
56033         this.restoreScroll(s);
56034         this.afterMove(newIndex);
56035     },
56036
56037     afterMove : function(colIndex){
56038         if(this.enableMoveAnim && Roo.enableFx){
56039             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
56040         }
56041         // if multisort - fix sortOrder, and reload..
56042         if (this.grid.dataSource.multiSort) {
56043             // the we can call sort again..
56044             var dm = this.grid.dataSource;
56045             var cm = this.grid.colModel;
56046             var so = [];
56047             for(var i = 0; i < cm.config.length; i++ ) {
56048                 
56049                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
56050                     continue; // dont' bother, it's not in sort list or being set.
56051                 }
56052                 
56053                 so.push(cm.config[i].dataIndex);
56054             };
56055             dm.sortOrder = so;
56056             dm.load(dm.lastOptions);
56057             
56058             
56059         }
56060         
56061     },
56062
56063     updateCell : function(dm, rowIndex, dataIndex){
56064         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
56065         if(typeof colIndex == "undefined"){ // not present in grid
56066             return;
56067         }
56068         var cm = this.grid.colModel;
56069         var cell = this.getCell(rowIndex, colIndex);
56070         var cellText = this.getCellText(rowIndex, colIndex);
56071
56072         var p = {
56073             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
56074             id : cm.getColumnId(colIndex),
56075             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
56076         };
56077         var renderer = cm.getRenderer(colIndex);
56078         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
56079         if(typeof val == "undefined" || val === "") {
56080             val = "&#160;";
56081         }
56082         cellText.innerHTML = val;
56083         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
56084         this.syncRowHeights(rowIndex, rowIndex);
56085     },
56086
56087     calcColumnWidth : function(colIndex, maxRowsToMeasure){
56088         var maxWidth = 0;
56089         if(this.grid.autoSizeHeaders){
56090             var h = this.getHeaderCellMeasure(colIndex);
56091             maxWidth = Math.max(maxWidth, h.scrollWidth);
56092         }
56093         var tb, index;
56094         if(this.cm.isLocked(colIndex)){
56095             tb = this.getLockedTable();
56096             index = colIndex;
56097         }else{
56098             tb = this.getBodyTable();
56099             index = colIndex - this.cm.getLockedCount();
56100         }
56101         if(tb && tb.rows){
56102             var rows = tb.rows;
56103             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
56104             for(var i = 0; i < stopIndex; i++){
56105                 var cell = rows[i].childNodes[index].firstChild;
56106                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
56107             }
56108         }
56109         return maxWidth + /*margin for error in IE*/ 5;
56110     },
56111     /**
56112      * Autofit a column to its content.
56113      * @param {Number} colIndex
56114      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
56115      */
56116      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
56117          if(this.cm.isHidden(colIndex)){
56118              return; // can't calc a hidden column
56119          }
56120         if(forceMinSize){
56121             var cid = this.cm.getColumnId(colIndex);
56122             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
56123            if(this.grid.autoSizeHeaders){
56124                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
56125            }
56126         }
56127         var newWidth = this.calcColumnWidth(colIndex);
56128         this.cm.setColumnWidth(colIndex,
56129             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
56130         if(!suppressEvent){
56131             this.grid.fireEvent("columnresize", colIndex, newWidth);
56132         }
56133     },
56134
56135     /**
56136      * Autofits all columns to their content and then expands to fit any extra space in the grid
56137      */
56138      autoSizeColumns : function(){
56139         var cm = this.grid.colModel;
56140         var colCount = cm.getColumnCount();
56141         for(var i = 0; i < colCount; i++){
56142             this.autoSizeColumn(i, true, true);
56143         }
56144         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
56145             this.fitColumns();
56146         }else{
56147             this.updateColumns();
56148             this.layout();
56149         }
56150     },
56151
56152     /**
56153      * Autofits all columns to the grid's width proportionate with their current size
56154      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
56155      */
56156     fitColumns : function(reserveScrollSpace){
56157         var cm = this.grid.colModel;
56158         var colCount = cm.getColumnCount();
56159         var cols = [];
56160         var width = 0;
56161         var i, w;
56162         for (i = 0; i < colCount; i++){
56163             if(!cm.isHidden(i) && !cm.isFixed(i)){
56164                 w = cm.getColumnWidth(i);
56165                 cols.push(i);
56166                 cols.push(w);
56167                 width += w;
56168             }
56169         }
56170         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
56171         if(reserveScrollSpace){
56172             avail -= 17;
56173         }
56174         var frac = (avail - cm.getTotalWidth())/width;
56175         while (cols.length){
56176             w = cols.pop();
56177             i = cols.pop();
56178             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
56179         }
56180         this.updateColumns();
56181         this.layout();
56182     },
56183
56184     onRowSelect : function(rowIndex){
56185         var row = this.getRowComposite(rowIndex);
56186         row.addClass("x-grid-row-selected");
56187     },
56188
56189     onRowDeselect : function(rowIndex){
56190         var row = this.getRowComposite(rowIndex);
56191         row.removeClass("x-grid-row-selected");
56192     },
56193
56194     onCellSelect : function(row, col){
56195         var cell = this.getCell(row, col);
56196         if(cell){
56197             Roo.fly(cell).addClass("x-grid-cell-selected");
56198         }
56199     },
56200
56201     onCellDeselect : function(row, col){
56202         var cell = this.getCell(row, col);
56203         if(cell){
56204             Roo.fly(cell).removeClass("x-grid-cell-selected");
56205         }
56206     },
56207
56208     updateHeaderSortState : function(){
56209         
56210         // sort state can be single { field: xxx, direction : yyy}
56211         // or   { xxx=>ASC , yyy : DESC ..... }
56212         
56213         var mstate = {};
56214         if (!this.ds.multiSort) { 
56215             var state = this.ds.getSortState();
56216             if(!state){
56217                 return;
56218             }
56219             mstate[state.field] = state.direction;
56220             // FIXME... - this is not used here.. but might be elsewhere..
56221             this.sortState = state;
56222             
56223         } else {
56224             mstate = this.ds.sortToggle;
56225         }
56226         //remove existing sort classes..
56227         
56228         var sc = this.sortClasses;
56229         var hds = this.el.select(this.headerSelector).removeClass(sc);
56230         
56231         for(var f in mstate) {
56232         
56233             var sortColumn = this.cm.findColumnIndex(f);
56234             
56235             if(sortColumn != -1){
56236                 var sortDir = mstate[f];        
56237                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
56238             }
56239         }
56240         
56241          
56242         
56243     },
56244
56245
56246     handleHeaderClick : function(g, index,e){
56247         
56248         Roo.log("header click");
56249         
56250         if (Roo.isTouch) {
56251             // touch events on header are handled by context
56252             this.handleHdCtx(g,index,e);
56253             return;
56254         }
56255         
56256         
56257         if(this.headersDisabled){
56258             return;
56259         }
56260         var dm = g.dataSource, cm = g.colModel;
56261         if(!cm.isSortable(index)){
56262             return;
56263         }
56264         g.stopEditing();
56265         
56266         if (dm.multiSort) {
56267             // update the sortOrder
56268             var so = [];
56269             for(var i = 0; i < cm.config.length; i++ ) {
56270                 
56271                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
56272                     continue; // dont' bother, it's not in sort list or being set.
56273                 }
56274                 
56275                 so.push(cm.config[i].dataIndex);
56276             };
56277             dm.sortOrder = so;
56278         }
56279         
56280         
56281         dm.sort(cm.getDataIndex(index));
56282     },
56283
56284
56285     destroy : function(){
56286         if(this.colMenu){
56287             this.colMenu.removeAll();
56288             Roo.menu.MenuMgr.unregister(this.colMenu);
56289             this.colMenu.getEl().remove();
56290             delete this.colMenu;
56291         }
56292         if(this.hmenu){
56293             this.hmenu.removeAll();
56294             Roo.menu.MenuMgr.unregister(this.hmenu);
56295             this.hmenu.getEl().remove();
56296             delete this.hmenu;
56297         }
56298         if(this.grid.enableColumnMove){
56299             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
56300             if(dds){
56301                 for(var dd in dds){
56302                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
56303                         var elid = dds[dd].dragElId;
56304                         dds[dd].unreg();
56305                         Roo.get(elid).remove();
56306                     } else if(dds[dd].config.isTarget){
56307                         dds[dd].proxyTop.remove();
56308                         dds[dd].proxyBottom.remove();
56309                         dds[dd].unreg();
56310                     }
56311                     if(Roo.dd.DDM.locationCache[dd]){
56312                         delete Roo.dd.DDM.locationCache[dd];
56313                     }
56314                 }
56315                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
56316             }
56317         }
56318         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
56319         this.bind(null, null);
56320         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
56321     },
56322
56323     handleLockChange : function(){
56324         this.refresh(true);
56325     },
56326
56327     onDenyColumnLock : function(){
56328
56329     },
56330
56331     onDenyColumnHide : function(){
56332
56333     },
56334
56335     handleHdMenuClick : function(item){
56336         var index = this.hdCtxIndex;
56337         var cm = this.cm, ds = this.ds;
56338         switch(item.id){
56339             case "asc":
56340                 ds.sort(cm.getDataIndex(index), "ASC");
56341                 break;
56342             case "desc":
56343                 ds.sort(cm.getDataIndex(index), "DESC");
56344                 break;
56345             case "lock":
56346                 var lc = cm.getLockedCount();
56347                 if(cm.getColumnCount(true) <= lc+1){
56348                     this.onDenyColumnLock();
56349                     return;
56350                 }
56351                 if(lc != index){
56352                     cm.setLocked(index, true, true);
56353                     cm.moveColumn(index, lc);
56354                     this.grid.fireEvent("columnmove", index, lc);
56355                 }else{
56356                     cm.setLocked(index, true);
56357                 }
56358             break;
56359             case "unlock":
56360                 var lc = cm.getLockedCount();
56361                 if((lc-1) != index){
56362                     cm.setLocked(index, false, true);
56363                     cm.moveColumn(index, lc-1);
56364                     this.grid.fireEvent("columnmove", index, lc-1);
56365                 }else{
56366                     cm.setLocked(index, false);
56367                 }
56368             break;
56369             case 'wider': // used to expand cols on touch..
56370             case 'narrow':
56371                 var cw = cm.getColumnWidth(index);
56372                 cw += (item.id == 'wider' ? 1 : -1) * 50;
56373                 cw = Math.max(0, cw);
56374                 cw = Math.min(cw,4000);
56375                 cm.setColumnWidth(index, cw);
56376                 break;
56377                 
56378             default:
56379                 index = cm.getIndexById(item.id.substr(4));
56380                 if(index != -1){
56381                     if(item.checked && cm.getColumnCount(true) <= 1){
56382                         this.onDenyColumnHide();
56383                         return false;
56384                     }
56385                     cm.setHidden(index, item.checked);
56386                 }
56387         }
56388         return true;
56389     },
56390
56391     beforeColMenuShow : function(){
56392         var cm = this.cm,  colCount = cm.getColumnCount();
56393         this.colMenu.removeAll();
56394         for(var i = 0; i < colCount; i++){
56395             this.colMenu.add(new Roo.menu.CheckItem({
56396                 id: "col-"+cm.getColumnId(i),
56397                 text: cm.getColumnHeader(i),
56398                 checked: !cm.isHidden(i),
56399                 hideOnClick:false
56400             }));
56401         }
56402     },
56403
56404     handleHdCtx : function(g, index, e){
56405         e.stopEvent();
56406         var hd = this.getHeaderCell(index);
56407         this.hdCtxIndex = index;
56408         var ms = this.hmenu.items, cm = this.cm;
56409         ms.get("asc").setDisabled(!cm.isSortable(index));
56410         ms.get("desc").setDisabled(!cm.isSortable(index));
56411         if(this.grid.enableColLock !== false){
56412             ms.get("lock").setDisabled(cm.isLocked(index));
56413             ms.get("unlock").setDisabled(!cm.isLocked(index));
56414         }
56415         this.hmenu.show(hd, "tl-bl");
56416     },
56417
56418     handleHdOver : function(e){
56419         var hd = this.findHeaderCell(e.getTarget());
56420         if(hd && !this.headersDisabled){
56421             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
56422                this.fly(hd).addClass("x-grid-hd-over");
56423             }
56424         }
56425     },
56426
56427     handleHdOut : function(e){
56428         var hd = this.findHeaderCell(e.getTarget());
56429         if(hd){
56430             this.fly(hd).removeClass("x-grid-hd-over");
56431         }
56432     },
56433
56434     handleSplitDblClick : function(e, t){
56435         var i = this.getCellIndex(t);
56436         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
56437             this.autoSizeColumn(i, true);
56438             this.layout();
56439         }
56440     },
56441
56442     render : function(){
56443
56444         var cm = this.cm;
56445         var colCount = cm.getColumnCount();
56446
56447         if(this.grid.monitorWindowResize === true){
56448             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
56449         }
56450         var header = this.renderHeaders();
56451         var body = this.templates.body.apply({rows:""});
56452         var html = this.templates.master.apply({
56453             lockedBody: body,
56454             body: body,
56455             lockedHeader: header[0],
56456             header: header[1]
56457         });
56458
56459         //this.updateColumns();
56460
56461         this.grid.getGridEl().dom.innerHTML = html;
56462
56463         this.initElements();
56464         
56465         // a kludge to fix the random scolling effect in webkit
56466         this.el.on("scroll", function() {
56467             this.el.dom.scrollTop=0; // hopefully not recursive..
56468         },this);
56469
56470         this.scroller.on("scroll", this.handleScroll, this);
56471         this.lockedBody.on("mousewheel", this.handleWheel, this);
56472         this.mainBody.on("mousewheel", this.handleWheel, this);
56473
56474         this.mainHd.on("mouseover", this.handleHdOver, this);
56475         this.mainHd.on("mouseout", this.handleHdOut, this);
56476         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
56477                 {delegate: "."+this.splitClass});
56478
56479         this.lockedHd.on("mouseover", this.handleHdOver, this);
56480         this.lockedHd.on("mouseout", this.handleHdOut, this);
56481         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
56482                 {delegate: "."+this.splitClass});
56483
56484         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
56485             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
56486         }
56487
56488         this.updateSplitters();
56489
56490         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
56491             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
56492             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
56493         }
56494
56495         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
56496             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
56497             this.hmenu.add(
56498                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
56499                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
56500             );
56501             if(this.grid.enableColLock !== false){
56502                 this.hmenu.add('-',
56503                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
56504                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
56505                 );
56506             }
56507             if (Roo.isTouch) {
56508                  this.hmenu.add('-',
56509                     {id:"wider", text: this.columnsWiderText},
56510                     {id:"narrow", text: this.columnsNarrowText }
56511                 );
56512                 
56513                  
56514             }
56515             
56516             if(this.grid.enableColumnHide !== false){
56517
56518                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
56519                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
56520                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
56521
56522                 this.hmenu.add('-',
56523                     {id:"columns", text: this.columnsText, menu: this.colMenu}
56524                 );
56525             }
56526             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
56527
56528             this.grid.on("headercontextmenu", this.handleHdCtx, this);
56529         }
56530
56531         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
56532             this.dd = new Roo.grid.GridDragZone(this.grid, {
56533                 ddGroup : this.grid.ddGroup || 'GridDD'
56534             });
56535             
56536         }
56537
56538         /*
56539         for(var i = 0; i < colCount; i++){
56540             if(cm.isHidden(i)){
56541                 this.hideColumn(i);
56542             }
56543             if(cm.config[i].align){
56544                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
56545                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
56546             }
56547         }*/
56548         
56549         this.updateHeaderSortState();
56550
56551         this.beforeInitialResize();
56552         this.layout(true);
56553
56554         // two part rendering gives faster view to the user
56555         this.renderPhase2.defer(1, this);
56556     },
56557
56558     renderPhase2 : function(){
56559         // render the rows now
56560         this.refresh();
56561         if(this.grid.autoSizeColumns){
56562             this.autoSizeColumns();
56563         }
56564     },
56565
56566     beforeInitialResize : function(){
56567
56568     },
56569
56570     onColumnSplitterMoved : function(i, w){
56571         this.userResized = true;
56572         var cm = this.grid.colModel;
56573         cm.setColumnWidth(i, w, true);
56574         var cid = cm.getColumnId(i);
56575         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
56576         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
56577         this.updateSplitters();
56578         this.layout();
56579         this.grid.fireEvent("columnresize", i, w);
56580     },
56581
56582     syncRowHeights : function(startIndex, endIndex){
56583         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
56584             startIndex = startIndex || 0;
56585             var mrows = this.getBodyTable().rows;
56586             var lrows = this.getLockedTable().rows;
56587             var len = mrows.length-1;
56588             endIndex = Math.min(endIndex || len, len);
56589             for(var i = startIndex; i <= endIndex; i++){
56590                 var m = mrows[i], l = lrows[i];
56591                 var h = Math.max(m.offsetHeight, l.offsetHeight);
56592                 m.style.height = l.style.height = h + "px";
56593             }
56594         }
56595     },
56596
56597     layout : function(initialRender, is2ndPass){
56598         var g = this.grid;
56599         var auto = g.autoHeight;
56600         var scrollOffset = 16;
56601         var c = g.getGridEl(), cm = this.cm,
56602                 expandCol = g.autoExpandColumn,
56603                 gv = this;
56604         //c.beginMeasure();
56605
56606         if(!c.dom.offsetWidth){ // display:none?
56607             if(initialRender){
56608                 this.lockedWrap.show();
56609                 this.mainWrap.show();
56610             }
56611             return;
56612         }
56613
56614         var hasLock = this.cm.isLocked(0);
56615
56616         var tbh = this.headerPanel.getHeight();
56617         var bbh = this.footerPanel.getHeight();
56618
56619         if(auto){
56620             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
56621             var newHeight = ch + c.getBorderWidth("tb");
56622             if(g.maxHeight){
56623                 newHeight = Math.min(g.maxHeight, newHeight);
56624             }
56625             c.setHeight(newHeight);
56626         }
56627
56628         if(g.autoWidth){
56629             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
56630         }
56631
56632         var s = this.scroller;
56633
56634         var csize = c.getSize(true);
56635
56636         this.el.setSize(csize.width, csize.height);
56637
56638         this.headerPanel.setWidth(csize.width);
56639         this.footerPanel.setWidth(csize.width);
56640
56641         var hdHeight = this.mainHd.getHeight();
56642         var vw = csize.width;
56643         var vh = csize.height - (tbh + bbh);
56644
56645         s.setSize(vw, vh);
56646
56647         var bt = this.getBodyTable();
56648         
56649         if(cm.getLockedCount() == cm.config.length){
56650             bt = this.getLockedTable();
56651         }
56652         
56653         var ltWidth = hasLock ?
56654                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
56655
56656         var scrollHeight = bt.offsetHeight;
56657         var scrollWidth = ltWidth + bt.offsetWidth;
56658         var vscroll = false, hscroll = false;
56659
56660         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
56661
56662         var lw = this.lockedWrap, mw = this.mainWrap;
56663         var lb = this.lockedBody, mb = this.mainBody;
56664
56665         setTimeout(function(){
56666             var t = s.dom.offsetTop;
56667             var w = s.dom.clientWidth,
56668                 h = s.dom.clientHeight;
56669
56670             lw.setTop(t);
56671             lw.setSize(ltWidth, h);
56672
56673             mw.setLeftTop(ltWidth, t);
56674             mw.setSize(w-ltWidth, h);
56675
56676             lb.setHeight(h-hdHeight);
56677             mb.setHeight(h-hdHeight);
56678
56679             if(is2ndPass !== true && !gv.userResized && expandCol){
56680                 // high speed resize without full column calculation
56681                 
56682                 var ci = cm.getIndexById(expandCol);
56683                 if (ci < 0) {
56684                     ci = cm.findColumnIndex(expandCol);
56685                 }
56686                 ci = Math.max(0, ci); // make sure it's got at least the first col.
56687                 var expandId = cm.getColumnId(ci);
56688                 var  tw = cm.getTotalWidth(false);
56689                 var currentWidth = cm.getColumnWidth(ci);
56690                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
56691                 if(currentWidth != cw){
56692                     cm.setColumnWidth(ci, cw, true);
56693                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
56694                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
56695                     gv.updateSplitters();
56696                     gv.layout(false, true);
56697                 }
56698             }
56699
56700             if(initialRender){
56701                 lw.show();
56702                 mw.show();
56703             }
56704             //c.endMeasure();
56705         }, 10);
56706     },
56707
56708     onWindowResize : function(){
56709         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
56710             return;
56711         }
56712         this.layout();
56713     },
56714
56715     appendFooter : function(parentEl){
56716         return null;
56717     },
56718
56719     sortAscText : "Sort Ascending",
56720     sortDescText : "Sort Descending",
56721     lockText : "Lock Column",
56722     unlockText : "Unlock Column",
56723     columnsText : "Columns",
56724  
56725     columnsWiderText : "Wider",
56726     columnsNarrowText : "Thinner"
56727 });
56728
56729
56730 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
56731     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
56732     this.proxy.el.addClass('x-grid3-col-dd');
56733 };
56734
56735 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
56736     handleMouseDown : function(e){
56737
56738     },
56739
56740     callHandleMouseDown : function(e){
56741         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
56742     }
56743 });
56744 /*
56745  * Based on:
56746  * Ext JS Library 1.1.1
56747  * Copyright(c) 2006-2007, Ext JS, LLC.
56748  *
56749  * Originally Released Under LGPL - original licence link has changed is not relivant.
56750  *
56751  * Fork - LGPL
56752  * <script type="text/javascript">
56753  */
56754  
56755 // private
56756 // This is a support class used internally by the Grid components
56757 Roo.grid.SplitDragZone = function(grid, hd, hd2){
56758     this.grid = grid;
56759     this.view = grid.getView();
56760     this.proxy = this.view.resizeProxy;
56761     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
56762         "gridSplitters" + this.grid.getGridEl().id, {
56763         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
56764     });
56765     this.setHandleElId(Roo.id(hd));
56766     this.setOuterHandleElId(Roo.id(hd2));
56767     this.scroll = false;
56768 };
56769 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
56770     fly: Roo.Element.fly,
56771
56772     b4StartDrag : function(x, y){
56773         this.view.headersDisabled = true;
56774         this.proxy.setHeight(this.view.mainWrap.getHeight());
56775         var w = this.cm.getColumnWidth(this.cellIndex);
56776         var minw = Math.max(w-this.grid.minColumnWidth, 0);
56777         this.resetConstraints();
56778         this.setXConstraint(minw, 1000);
56779         this.setYConstraint(0, 0);
56780         this.minX = x - minw;
56781         this.maxX = x + 1000;
56782         this.startPos = x;
56783         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
56784     },
56785
56786
56787     handleMouseDown : function(e){
56788         ev = Roo.EventObject.setEvent(e);
56789         var t = this.fly(ev.getTarget());
56790         if(t.hasClass("x-grid-split")){
56791             this.cellIndex = this.view.getCellIndex(t.dom);
56792             this.split = t.dom;
56793             this.cm = this.grid.colModel;
56794             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
56795                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
56796             }
56797         }
56798     },
56799
56800     endDrag : function(e){
56801         this.view.headersDisabled = false;
56802         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
56803         var diff = endX - this.startPos;
56804         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
56805     },
56806
56807     autoOffset : function(){
56808         this.setDelta(0,0);
56809     }
56810 });/*
56811  * Based on:
56812  * Ext JS Library 1.1.1
56813  * Copyright(c) 2006-2007, Ext JS, LLC.
56814  *
56815  * Originally Released Under LGPL - original licence link has changed is not relivant.
56816  *
56817  * Fork - LGPL
56818  * <script type="text/javascript">
56819  */
56820  
56821 // private
56822 // This is a support class used internally by the Grid components
56823 Roo.grid.GridDragZone = function(grid, config){
56824     this.view = grid.getView();
56825     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
56826     if(this.view.lockedBody){
56827         this.setHandleElId(Roo.id(this.view.mainBody.dom));
56828         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
56829     }
56830     this.scroll = false;
56831     this.grid = grid;
56832     this.ddel = document.createElement('div');
56833     this.ddel.className = 'x-grid-dd-wrap';
56834 };
56835
56836 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
56837     ddGroup : "GridDD",
56838
56839     getDragData : function(e){
56840         var t = Roo.lib.Event.getTarget(e);
56841         var rowIndex = this.view.findRowIndex(t);
56842         var sm = this.grid.selModel;
56843             
56844         //Roo.log(rowIndex);
56845         
56846         if (sm.getSelectedCell) {
56847             // cell selection..
56848             if (!sm.getSelectedCell()) {
56849                 return false;
56850             }
56851             if (rowIndex != sm.getSelectedCell()[0]) {
56852                 return false;
56853             }
56854         
56855         }
56856         
56857         if(rowIndex !== false){
56858             
56859             // if editorgrid.. 
56860             
56861             
56862             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
56863                
56864             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
56865               //  
56866             //}
56867             if (e.hasModifier()){
56868                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
56869             }
56870             
56871             Roo.log("getDragData");
56872             
56873             return {
56874                 grid: this.grid,
56875                 ddel: this.ddel,
56876                 rowIndex: rowIndex,
56877                 selections:sm.getSelections ? sm.getSelections() : (
56878                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
56879                 )
56880             };
56881         }
56882         return false;
56883     },
56884
56885     onInitDrag : function(e){
56886         var data = this.dragData;
56887         this.ddel.innerHTML = this.grid.getDragDropText();
56888         this.proxy.update(this.ddel);
56889         // fire start drag?
56890     },
56891
56892     afterRepair : function(){
56893         this.dragging = false;
56894     },
56895
56896     getRepairXY : function(e, data){
56897         return false;
56898     },
56899
56900     onEndDrag : function(data, e){
56901         // fire end drag?
56902     },
56903
56904     onValidDrop : function(dd, e, id){
56905         // fire drag drop?
56906         this.hideProxy();
56907     },
56908
56909     beforeInvalidDrop : function(e, id){
56910
56911     }
56912 });/*
56913  * Based on:
56914  * Ext JS Library 1.1.1
56915  * Copyright(c) 2006-2007, Ext JS, LLC.
56916  *
56917  * Originally Released Under LGPL - original licence link has changed is not relivant.
56918  *
56919  * Fork - LGPL
56920  * <script type="text/javascript">
56921  */
56922  
56923
56924 /**
56925  * @class Roo.grid.ColumnModel
56926  * @extends Roo.util.Observable
56927  * This is the default implementation of a ColumnModel used by the Grid. It defines
56928  * the columns in the grid.
56929  * <br>Usage:<br>
56930  <pre><code>
56931  var colModel = new Roo.grid.ColumnModel([
56932         {header: "Ticker", width: 60, sortable: true, locked: true},
56933         {header: "Company Name", width: 150, sortable: true},
56934         {header: "Market Cap.", width: 100, sortable: true},
56935         {header: "$ Sales", width: 100, sortable: true, renderer: money},
56936         {header: "Employees", width: 100, sortable: true, resizable: false}
56937  ]);
56938  </code></pre>
56939  * <p>
56940  
56941  * The config options listed for this class are options which may appear in each
56942  * individual column definition.
56943  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
56944  * @constructor
56945  * @param {Object} config An Array of column config objects. See this class's
56946  * config objects for details.
56947 */
56948 Roo.grid.ColumnModel = function(config){
56949         /**
56950      * The config passed into the constructor
56951      */
56952     this.config = config;
56953     this.lookup = {};
56954
56955     // if no id, create one
56956     // if the column does not have a dataIndex mapping,
56957     // map it to the order it is in the config
56958     for(var i = 0, len = config.length; i < len; i++){
56959         var c = config[i];
56960         if(typeof c.dataIndex == "undefined"){
56961             c.dataIndex = i;
56962         }
56963         if(typeof c.renderer == "string"){
56964             c.renderer = Roo.util.Format[c.renderer];
56965         }
56966         if(typeof c.id == "undefined"){
56967             c.id = Roo.id();
56968         }
56969         if(c.editor && c.editor.xtype){
56970             c.editor  = Roo.factory(c.editor, Roo.grid);
56971         }
56972         if(c.editor && c.editor.isFormField){
56973             c.editor = new Roo.grid.GridEditor(c.editor);
56974         }
56975         this.lookup[c.id] = c;
56976     }
56977
56978     /**
56979      * The width of columns which have no width specified (defaults to 100)
56980      * @type Number
56981      */
56982     this.defaultWidth = 100;
56983
56984     /**
56985      * Default sortable of columns which have no sortable specified (defaults to false)
56986      * @type Boolean
56987      */
56988     this.defaultSortable = false;
56989
56990     this.addEvents({
56991         /**
56992              * @event widthchange
56993              * Fires when the width of a column changes.
56994              * @param {ColumnModel} this
56995              * @param {Number} columnIndex The column index
56996              * @param {Number} newWidth The new width
56997              */
56998             "widthchange": true,
56999         /**
57000              * @event headerchange
57001              * Fires when the text of a header changes.
57002              * @param {ColumnModel} this
57003              * @param {Number} columnIndex The column index
57004              * @param {Number} newText The new header text
57005              */
57006             "headerchange": true,
57007         /**
57008              * @event hiddenchange
57009              * Fires when a column is hidden or "unhidden".
57010              * @param {ColumnModel} this
57011              * @param {Number} columnIndex The column index
57012              * @param {Boolean} hidden true if hidden, false otherwise
57013              */
57014             "hiddenchange": true,
57015             /**
57016          * @event columnmoved
57017          * Fires when a column is moved.
57018          * @param {ColumnModel} this
57019          * @param {Number} oldIndex
57020          * @param {Number} newIndex
57021          */
57022         "columnmoved" : true,
57023         /**
57024          * @event columlockchange
57025          * Fires when a column's locked state is changed
57026          * @param {ColumnModel} this
57027          * @param {Number} colIndex
57028          * @param {Boolean} locked true if locked
57029          */
57030         "columnlockchange" : true
57031     });
57032     Roo.grid.ColumnModel.superclass.constructor.call(this);
57033 };
57034 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
57035     /**
57036      * @cfg {String} header The header text to display in the Grid view.
57037      */
57038     /**
57039      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
57040      * {@link Roo.data.Record} definition from which to draw the column's value. If not
57041      * specified, the column's index is used as an index into the Record's data Array.
57042      */
57043     /**
57044      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
57045      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
57046      */
57047     /**
57048      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
57049      * Defaults to the value of the {@link #defaultSortable} property.
57050      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
57051      */
57052     /**
57053      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
57054      */
57055     /**
57056      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
57057      */
57058     /**
57059      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
57060      */
57061     /**
57062      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
57063      */
57064     /**
57065      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
57066      * given the cell's data value. See {@link #setRenderer}. If not specified, the
57067      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
57068      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
57069      */
57070        /**
57071      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
57072      */
57073     /**
57074      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
57075      */
57076     /**
57077      * @cfg {String} cursor (Optional)
57078      */
57079     /**
57080      * @cfg {String} tooltip (Optional)
57081      */
57082     /**
57083      * @cfg {Number} xs (Optional)
57084      */
57085     /**
57086      * @cfg {Number} sm (Optional)
57087      */
57088     /**
57089      * @cfg {Number} md (Optional)
57090      */
57091     /**
57092      * @cfg {Number} lg (Optional)
57093      */
57094     /**
57095      * Returns the id of the column at the specified index.
57096      * @param {Number} index The column index
57097      * @return {String} the id
57098      */
57099     getColumnId : function(index){
57100         return this.config[index].id;
57101     },
57102
57103     /**
57104      * Returns the column for a specified id.
57105      * @param {String} id The column id
57106      * @return {Object} the column
57107      */
57108     getColumnById : function(id){
57109         return this.lookup[id];
57110     },
57111
57112     
57113     /**
57114      * Returns the column for a specified dataIndex.
57115      * @param {String} dataIndex The column dataIndex
57116      * @return {Object|Boolean} the column or false if not found
57117      */
57118     getColumnByDataIndex: function(dataIndex){
57119         var index = this.findColumnIndex(dataIndex);
57120         return index > -1 ? this.config[index] : false;
57121     },
57122     
57123     /**
57124      * Returns the index for a specified column id.
57125      * @param {String} id The column id
57126      * @return {Number} the index, or -1 if not found
57127      */
57128     getIndexById : function(id){
57129         for(var i = 0, len = this.config.length; i < len; i++){
57130             if(this.config[i].id == id){
57131                 return i;
57132             }
57133         }
57134         return -1;
57135     },
57136     
57137     /**
57138      * Returns the index for a specified column dataIndex.
57139      * @param {String} dataIndex The column dataIndex
57140      * @return {Number} the index, or -1 if not found
57141      */
57142     
57143     findColumnIndex : function(dataIndex){
57144         for(var i = 0, len = this.config.length; i < len; i++){
57145             if(this.config[i].dataIndex == dataIndex){
57146                 return i;
57147             }
57148         }
57149         return -1;
57150     },
57151     
57152     
57153     moveColumn : function(oldIndex, newIndex){
57154         var c = this.config[oldIndex];
57155         this.config.splice(oldIndex, 1);
57156         this.config.splice(newIndex, 0, c);
57157         this.dataMap = null;
57158         this.fireEvent("columnmoved", this, oldIndex, newIndex);
57159     },
57160
57161     isLocked : function(colIndex){
57162         return this.config[colIndex].locked === true;
57163     },
57164
57165     setLocked : function(colIndex, value, suppressEvent){
57166         if(this.isLocked(colIndex) == value){
57167             return;
57168         }
57169         this.config[colIndex].locked = value;
57170         if(!suppressEvent){
57171             this.fireEvent("columnlockchange", this, colIndex, value);
57172         }
57173     },
57174
57175     getTotalLockedWidth : function(){
57176         var totalWidth = 0;
57177         for(var i = 0; i < this.config.length; i++){
57178             if(this.isLocked(i) && !this.isHidden(i)){
57179                 this.totalWidth += this.getColumnWidth(i);
57180             }
57181         }
57182         return totalWidth;
57183     },
57184
57185     getLockedCount : function(){
57186         for(var i = 0, len = this.config.length; i < len; i++){
57187             if(!this.isLocked(i)){
57188                 return i;
57189             }
57190         }
57191         
57192         return this.config.length;
57193     },
57194
57195     /**
57196      * Returns the number of columns.
57197      * @return {Number}
57198      */
57199     getColumnCount : function(visibleOnly){
57200         if(visibleOnly === true){
57201             var c = 0;
57202             for(var i = 0, len = this.config.length; i < len; i++){
57203                 if(!this.isHidden(i)){
57204                     c++;
57205                 }
57206             }
57207             return c;
57208         }
57209         return this.config.length;
57210     },
57211
57212     /**
57213      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
57214      * @param {Function} fn
57215      * @param {Object} scope (optional)
57216      * @return {Array} result
57217      */
57218     getColumnsBy : function(fn, scope){
57219         var r = [];
57220         for(var i = 0, len = this.config.length; i < len; i++){
57221             var c = this.config[i];
57222             if(fn.call(scope||this, c, i) === true){
57223                 r[r.length] = c;
57224             }
57225         }
57226         return r;
57227     },
57228
57229     /**
57230      * Returns true if the specified column is sortable.
57231      * @param {Number} col The column index
57232      * @return {Boolean}
57233      */
57234     isSortable : function(col){
57235         if(typeof this.config[col].sortable == "undefined"){
57236             return this.defaultSortable;
57237         }
57238         return this.config[col].sortable;
57239     },
57240
57241     /**
57242      * Returns the rendering (formatting) function defined for the column.
57243      * @param {Number} col The column index.
57244      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
57245      */
57246     getRenderer : function(col){
57247         if(!this.config[col].renderer){
57248             return Roo.grid.ColumnModel.defaultRenderer;
57249         }
57250         return this.config[col].renderer;
57251     },
57252
57253     /**
57254      * Sets the rendering (formatting) function for a column.
57255      * @param {Number} col The column index
57256      * @param {Function} fn The function to use to process the cell's raw data
57257      * to return HTML markup for the grid view. The render function is called with
57258      * the following parameters:<ul>
57259      * <li>Data value.</li>
57260      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
57261      * <li>css A CSS style string to apply to the table cell.</li>
57262      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
57263      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
57264      * <li>Row index</li>
57265      * <li>Column index</li>
57266      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
57267      */
57268     setRenderer : function(col, fn){
57269         this.config[col].renderer = fn;
57270     },
57271
57272     /**
57273      * Returns the width for the specified column.
57274      * @param {Number} col The column index
57275      * @return {Number}
57276      */
57277     getColumnWidth : function(col){
57278         return this.config[col].width * 1 || this.defaultWidth;
57279     },
57280
57281     /**
57282      * Sets the width for a column.
57283      * @param {Number} col The column index
57284      * @param {Number} width The new width
57285      */
57286     setColumnWidth : function(col, width, suppressEvent){
57287         this.config[col].width = width;
57288         this.totalWidth = null;
57289         if(!suppressEvent){
57290              this.fireEvent("widthchange", this, col, width);
57291         }
57292     },
57293
57294     /**
57295      * Returns the total width of all columns.
57296      * @param {Boolean} includeHidden True to include hidden column widths
57297      * @return {Number}
57298      */
57299     getTotalWidth : function(includeHidden){
57300         if(!this.totalWidth){
57301             this.totalWidth = 0;
57302             for(var i = 0, len = this.config.length; i < len; i++){
57303                 if(includeHidden || !this.isHidden(i)){
57304                     this.totalWidth += this.getColumnWidth(i);
57305                 }
57306             }
57307         }
57308         return this.totalWidth;
57309     },
57310
57311     /**
57312      * Returns the header for the specified column.
57313      * @param {Number} col The column index
57314      * @return {String}
57315      */
57316     getColumnHeader : function(col){
57317         return this.config[col].header;
57318     },
57319
57320     /**
57321      * Sets the header for a column.
57322      * @param {Number} col The column index
57323      * @param {String} header The new header
57324      */
57325     setColumnHeader : function(col, header){
57326         this.config[col].header = header;
57327         this.fireEvent("headerchange", this, col, header);
57328     },
57329
57330     /**
57331      * Returns the tooltip for the specified column.
57332      * @param {Number} col The column index
57333      * @return {String}
57334      */
57335     getColumnTooltip : function(col){
57336             return this.config[col].tooltip;
57337     },
57338     /**
57339      * Sets the tooltip for a column.
57340      * @param {Number} col The column index
57341      * @param {String} tooltip The new tooltip
57342      */
57343     setColumnTooltip : function(col, tooltip){
57344             this.config[col].tooltip = tooltip;
57345     },
57346
57347     /**
57348      * Returns the dataIndex for the specified column.
57349      * @param {Number} col The column index
57350      * @return {Number}
57351      */
57352     getDataIndex : function(col){
57353         return this.config[col].dataIndex;
57354     },
57355
57356     /**
57357      * Sets the dataIndex for a column.
57358      * @param {Number} col The column index
57359      * @param {Number} dataIndex The new dataIndex
57360      */
57361     setDataIndex : function(col, dataIndex){
57362         this.config[col].dataIndex = dataIndex;
57363     },
57364
57365     
57366     
57367     /**
57368      * Returns true if the cell is editable.
57369      * @param {Number} colIndex The column index
57370      * @param {Number} rowIndex The row index - this is nto actually used..?
57371      * @return {Boolean}
57372      */
57373     isCellEditable : function(colIndex, rowIndex){
57374         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
57375     },
57376
57377     /**
57378      * Returns the editor defined for the cell/column.
57379      * return false or null to disable editing.
57380      * @param {Number} colIndex The column index
57381      * @param {Number} rowIndex The row index
57382      * @return {Object}
57383      */
57384     getCellEditor : function(colIndex, rowIndex){
57385         return this.config[colIndex].editor;
57386     },
57387
57388     /**
57389      * Sets if a column is editable.
57390      * @param {Number} col The column index
57391      * @param {Boolean} editable True if the column is editable
57392      */
57393     setEditable : function(col, editable){
57394         this.config[col].editable = editable;
57395     },
57396
57397
57398     /**
57399      * Returns true if the column is hidden.
57400      * @param {Number} colIndex The column index
57401      * @return {Boolean}
57402      */
57403     isHidden : function(colIndex){
57404         return this.config[colIndex].hidden;
57405     },
57406
57407
57408     /**
57409      * Returns true if the column width cannot be changed
57410      */
57411     isFixed : function(colIndex){
57412         return this.config[colIndex].fixed;
57413     },
57414
57415     /**
57416      * Returns true if the column can be resized
57417      * @return {Boolean}
57418      */
57419     isResizable : function(colIndex){
57420         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
57421     },
57422     /**
57423      * Sets if a column is hidden.
57424      * @param {Number} colIndex The column index
57425      * @param {Boolean} hidden True if the column is hidden
57426      */
57427     setHidden : function(colIndex, hidden){
57428         this.config[colIndex].hidden = hidden;
57429         this.totalWidth = null;
57430         this.fireEvent("hiddenchange", this, colIndex, hidden);
57431     },
57432
57433     /**
57434      * Sets the editor for a column.
57435      * @param {Number} col The column index
57436      * @param {Object} editor The editor object
57437      */
57438     setEditor : function(col, editor){
57439         this.config[col].editor = editor;
57440     }
57441 });
57442
57443 Roo.grid.ColumnModel.defaultRenderer = function(value)
57444 {
57445     if(typeof value == "object") {
57446         return value;
57447     }
57448         if(typeof value == "string" && value.length < 1){
57449             return "&#160;";
57450         }
57451     
57452         return String.format("{0}", value);
57453 };
57454
57455 // Alias for backwards compatibility
57456 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
57457 /*
57458  * Based on:
57459  * Ext JS Library 1.1.1
57460  * Copyright(c) 2006-2007, Ext JS, LLC.
57461  *
57462  * Originally Released Under LGPL - original licence link has changed is not relivant.
57463  *
57464  * Fork - LGPL
57465  * <script type="text/javascript">
57466  */
57467
57468 /**
57469  * @class Roo.grid.AbstractSelectionModel
57470  * @extends Roo.util.Observable
57471  * Abstract base class for grid SelectionModels.  It provides the interface that should be
57472  * implemented by descendant classes.  This class should not be directly instantiated.
57473  * @constructor
57474  */
57475 Roo.grid.AbstractSelectionModel = function(){
57476     this.locked = false;
57477     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
57478 };
57479
57480 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
57481     /** @ignore Called by the grid automatically. Do not call directly. */
57482     init : function(grid){
57483         this.grid = grid;
57484         this.initEvents();
57485     },
57486
57487     /**
57488      * Locks the selections.
57489      */
57490     lock : function(){
57491         this.locked = true;
57492     },
57493
57494     /**
57495      * Unlocks the selections.
57496      */
57497     unlock : function(){
57498         this.locked = false;
57499     },
57500
57501     /**
57502      * Returns true if the selections are locked.
57503      * @return {Boolean}
57504      */
57505     isLocked : function(){
57506         return this.locked;
57507     }
57508 });/*
57509  * Based on:
57510  * Ext JS Library 1.1.1
57511  * Copyright(c) 2006-2007, Ext JS, LLC.
57512  *
57513  * Originally Released Under LGPL - original licence link has changed is not relivant.
57514  *
57515  * Fork - LGPL
57516  * <script type="text/javascript">
57517  */
57518 /**
57519  * @extends Roo.grid.AbstractSelectionModel
57520  * @class Roo.grid.RowSelectionModel
57521  * The default SelectionModel used by {@link Roo.grid.Grid}.
57522  * It supports multiple selections and keyboard selection/navigation. 
57523  * @constructor
57524  * @param {Object} config
57525  */
57526 Roo.grid.RowSelectionModel = function(config){
57527     Roo.apply(this, config);
57528     this.selections = new Roo.util.MixedCollection(false, function(o){
57529         return o.id;
57530     });
57531
57532     this.last = false;
57533     this.lastActive = false;
57534
57535     this.addEvents({
57536         /**
57537              * @event selectionchange
57538              * Fires when the selection changes
57539              * @param {SelectionModel} this
57540              */
57541             "selectionchange" : true,
57542         /**
57543              * @event afterselectionchange
57544              * Fires after the selection changes (eg. by key press or clicking)
57545              * @param {SelectionModel} this
57546              */
57547             "afterselectionchange" : true,
57548         /**
57549              * @event beforerowselect
57550              * Fires when a row is selected being selected, return false to cancel.
57551              * @param {SelectionModel} this
57552              * @param {Number} rowIndex The selected index
57553              * @param {Boolean} keepExisting False if other selections will be cleared
57554              */
57555             "beforerowselect" : true,
57556         /**
57557              * @event rowselect
57558              * Fires when a row is selected.
57559              * @param {SelectionModel} this
57560              * @param {Number} rowIndex The selected index
57561              * @param {Roo.data.Record} r The record
57562              */
57563             "rowselect" : true,
57564         /**
57565              * @event rowdeselect
57566              * Fires when a row is deselected.
57567              * @param {SelectionModel} this
57568              * @param {Number} rowIndex The selected index
57569              */
57570         "rowdeselect" : true
57571     });
57572     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
57573     this.locked = false;
57574 };
57575
57576 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
57577     /**
57578      * @cfg {Boolean} singleSelect
57579      * True to allow selection of only one row at a time (defaults to false)
57580      */
57581     singleSelect : false,
57582
57583     // private
57584     initEvents : function(){
57585
57586         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
57587             this.grid.on("mousedown", this.handleMouseDown, this);
57588         }else{ // allow click to work like normal
57589             this.grid.on("rowclick", this.handleDragableRowClick, this);
57590         }
57591
57592         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
57593             "up" : function(e){
57594                 if(!e.shiftKey){
57595                     this.selectPrevious(e.shiftKey);
57596                 }else if(this.last !== false && this.lastActive !== false){
57597                     var last = this.last;
57598                     this.selectRange(this.last,  this.lastActive-1);
57599                     this.grid.getView().focusRow(this.lastActive);
57600                     if(last !== false){
57601                         this.last = last;
57602                     }
57603                 }else{
57604                     this.selectFirstRow();
57605                 }
57606                 this.fireEvent("afterselectionchange", this);
57607             },
57608             "down" : function(e){
57609                 if(!e.shiftKey){
57610                     this.selectNext(e.shiftKey);
57611                 }else if(this.last !== false && this.lastActive !== false){
57612                     var last = this.last;
57613                     this.selectRange(this.last,  this.lastActive+1);
57614                     this.grid.getView().focusRow(this.lastActive);
57615                     if(last !== false){
57616                         this.last = last;
57617                     }
57618                 }else{
57619                     this.selectFirstRow();
57620                 }
57621                 this.fireEvent("afterselectionchange", this);
57622             },
57623             scope: this
57624         });
57625
57626         var view = this.grid.view;
57627         view.on("refresh", this.onRefresh, this);
57628         view.on("rowupdated", this.onRowUpdated, this);
57629         view.on("rowremoved", this.onRemove, this);
57630     },
57631
57632     // private
57633     onRefresh : function(){
57634         var ds = this.grid.dataSource, i, v = this.grid.view;
57635         var s = this.selections;
57636         s.each(function(r){
57637             if((i = ds.indexOfId(r.id)) != -1){
57638                 v.onRowSelect(i);
57639                 s.add(ds.getAt(i)); // updating the selection relate data
57640             }else{
57641                 s.remove(r);
57642             }
57643         });
57644     },
57645
57646     // private
57647     onRemove : function(v, index, r){
57648         this.selections.remove(r);
57649     },
57650
57651     // private
57652     onRowUpdated : function(v, index, r){
57653         if(this.isSelected(r)){
57654             v.onRowSelect(index);
57655         }
57656     },
57657
57658     /**
57659      * Select records.
57660      * @param {Array} records The records to select
57661      * @param {Boolean} keepExisting (optional) True to keep existing selections
57662      */
57663     selectRecords : function(records, keepExisting){
57664         if(!keepExisting){
57665             this.clearSelections();
57666         }
57667         var ds = this.grid.dataSource;
57668         for(var i = 0, len = records.length; i < len; i++){
57669             this.selectRow(ds.indexOf(records[i]), true);
57670         }
57671     },
57672
57673     /**
57674      * Gets the number of selected rows.
57675      * @return {Number}
57676      */
57677     getCount : function(){
57678         return this.selections.length;
57679     },
57680
57681     /**
57682      * Selects the first row in the grid.
57683      */
57684     selectFirstRow : function(){
57685         this.selectRow(0);
57686     },
57687
57688     /**
57689      * Select the last row.
57690      * @param {Boolean} keepExisting (optional) True to keep existing selections
57691      */
57692     selectLastRow : function(keepExisting){
57693         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
57694     },
57695
57696     /**
57697      * Selects the row immediately following the last selected row.
57698      * @param {Boolean} keepExisting (optional) True to keep existing selections
57699      */
57700     selectNext : function(keepExisting){
57701         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
57702             this.selectRow(this.last+1, keepExisting);
57703             this.grid.getView().focusRow(this.last);
57704         }
57705     },
57706
57707     /**
57708      * Selects the row that precedes the last selected row.
57709      * @param {Boolean} keepExisting (optional) True to keep existing selections
57710      */
57711     selectPrevious : function(keepExisting){
57712         if(this.last){
57713             this.selectRow(this.last-1, keepExisting);
57714             this.grid.getView().focusRow(this.last);
57715         }
57716     },
57717
57718     /**
57719      * Returns the selected records
57720      * @return {Array} Array of selected records
57721      */
57722     getSelections : function(){
57723         return [].concat(this.selections.items);
57724     },
57725
57726     /**
57727      * Returns the first selected record.
57728      * @return {Record}
57729      */
57730     getSelected : function(){
57731         return this.selections.itemAt(0);
57732     },
57733
57734
57735     /**
57736      * Clears all selections.
57737      */
57738     clearSelections : function(fast){
57739         if(this.locked) {
57740             return;
57741         }
57742         if(fast !== true){
57743             var ds = this.grid.dataSource;
57744             var s = this.selections;
57745             s.each(function(r){
57746                 this.deselectRow(ds.indexOfId(r.id));
57747             }, this);
57748             s.clear();
57749         }else{
57750             this.selections.clear();
57751         }
57752         this.last = false;
57753     },
57754
57755
57756     /**
57757      * Selects all rows.
57758      */
57759     selectAll : function(){
57760         if(this.locked) {
57761             return;
57762         }
57763         this.selections.clear();
57764         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
57765             this.selectRow(i, true);
57766         }
57767     },
57768
57769     /**
57770      * Returns True if there is a selection.
57771      * @return {Boolean}
57772      */
57773     hasSelection : function(){
57774         return this.selections.length > 0;
57775     },
57776
57777     /**
57778      * Returns True if the specified row is selected.
57779      * @param {Number/Record} record The record or index of the record to check
57780      * @return {Boolean}
57781      */
57782     isSelected : function(index){
57783         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
57784         return (r && this.selections.key(r.id) ? true : false);
57785     },
57786
57787     /**
57788      * Returns True if the specified record id is selected.
57789      * @param {String} id The id of record to check
57790      * @return {Boolean}
57791      */
57792     isIdSelected : function(id){
57793         return (this.selections.key(id) ? true : false);
57794     },
57795
57796     // private
57797     handleMouseDown : function(e, t){
57798         var view = this.grid.getView(), rowIndex;
57799         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
57800             return;
57801         };
57802         if(e.shiftKey && this.last !== false){
57803             var last = this.last;
57804             this.selectRange(last, rowIndex, e.ctrlKey);
57805             this.last = last; // reset the last
57806             view.focusRow(rowIndex);
57807         }else{
57808             var isSelected = this.isSelected(rowIndex);
57809             if(e.button !== 0 && isSelected){
57810                 view.focusRow(rowIndex);
57811             }else if(e.ctrlKey && isSelected){
57812                 this.deselectRow(rowIndex);
57813             }else if(!isSelected){
57814                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
57815                 view.focusRow(rowIndex);
57816             }
57817         }
57818         this.fireEvent("afterselectionchange", this);
57819     },
57820     // private
57821     handleDragableRowClick :  function(grid, rowIndex, e) 
57822     {
57823         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
57824             this.selectRow(rowIndex, false);
57825             grid.view.focusRow(rowIndex);
57826              this.fireEvent("afterselectionchange", this);
57827         }
57828     },
57829     
57830     /**
57831      * Selects multiple rows.
57832      * @param {Array} rows Array of the indexes of the row to select
57833      * @param {Boolean} keepExisting (optional) True to keep existing selections
57834      */
57835     selectRows : function(rows, keepExisting){
57836         if(!keepExisting){
57837             this.clearSelections();
57838         }
57839         for(var i = 0, len = rows.length; i < len; i++){
57840             this.selectRow(rows[i], true);
57841         }
57842     },
57843
57844     /**
57845      * Selects a range of rows. All rows in between startRow and endRow are also selected.
57846      * @param {Number} startRow The index of the first row in the range
57847      * @param {Number} endRow The index of the last row in the range
57848      * @param {Boolean} keepExisting (optional) True to retain existing selections
57849      */
57850     selectRange : function(startRow, endRow, keepExisting){
57851         if(this.locked) {
57852             return;
57853         }
57854         if(!keepExisting){
57855             this.clearSelections();
57856         }
57857         if(startRow <= endRow){
57858             for(var i = startRow; i <= endRow; i++){
57859                 this.selectRow(i, true);
57860             }
57861         }else{
57862             for(var i = startRow; i >= endRow; i--){
57863                 this.selectRow(i, true);
57864             }
57865         }
57866     },
57867
57868     /**
57869      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
57870      * @param {Number} startRow The index of the first row in the range
57871      * @param {Number} endRow The index of the last row in the range
57872      */
57873     deselectRange : function(startRow, endRow, preventViewNotify){
57874         if(this.locked) {
57875             return;
57876         }
57877         for(var i = startRow; i <= endRow; i++){
57878             this.deselectRow(i, preventViewNotify);
57879         }
57880     },
57881
57882     /**
57883      * Selects a row.
57884      * @param {Number} row The index of the row to select
57885      * @param {Boolean} keepExisting (optional) True to keep existing selections
57886      */
57887     selectRow : function(index, keepExisting, preventViewNotify){
57888         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
57889             return;
57890         }
57891         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
57892             if(!keepExisting || this.singleSelect){
57893                 this.clearSelections();
57894             }
57895             var r = this.grid.dataSource.getAt(index);
57896             this.selections.add(r);
57897             this.last = this.lastActive = index;
57898             if(!preventViewNotify){
57899                 this.grid.getView().onRowSelect(index);
57900             }
57901             this.fireEvent("rowselect", this, index, r);
57902             this.fireEvent("selectionchange", this);
57903         }
57904     },
57905
57906     /**
57907      * Deselects a row.
57908      * @param {Number} row The index of the row to deselect
57909      */
57910     deselectRow : function(index, preventViewNotify){
57911         if(this.locked) {
57912             return;
57913         }
57914         if(this.last == index){
57915             this.last = false;
57916         }
57917         if(this.lastActive == index){
57918             this.lastActive = false;
57919         }
57920         var r = this.grid.dataSource.getAt(index);
57921         this.selections.remove(r);
57922         if(!preventViewNotify){
57923             this.grid.getView().onRowDeselect(index);
57924         }
57925         this.fireEvent("rowdeselect", this, index);
57926         this.fireEvent("selectionchange", this);
57927     },
57928
57929     // private
57930     restoreLast : function(){
57931         if(this._last){
57932             this.last = this._last;
57933         }
57934     },
57935
57936     // private
57937     acceptsNav : function(row, col, cm){
57938         return !cm.isHidden(col) && cm.isCellEditable(col, row);
57939     },
57940
57941     // private
57942     onEditorKey : function(field, e){
57943         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
57944         if(k == e.TAB){
57945             e.stopEvent();
57946             ed.completeEdit();
57947             if(e.shiftKey){
57948                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
57949             }else{
57950                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
57951             }
57952         }else if(k == e.ENTER && !e.ctrlKey){
57953             e.stopEvent();
57954             ed.completeEdit();
57955             if(e.shiftKey){
57956                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
57957             }else{
57958                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
57959             }
57960         }else if(k == e.ESC){
57961             ed.cancelEdit();
57962         }
57963         if(newCell){
57964             g.startEditing(newCell[0], newCell[1]);
57965         }
57966     }
57967 });/*
57968  * Based on:
57969  * Ext JS Library 1.1.1
57970  * Copyright(c) 2006-2007, Ext JS, LLC.
57971  *
57972  * Originally Released Under LGPL - original licence link has changed is not relivant.
57973  *
57974  * Fork - LGPL
57975  * <script type="text/javascript">
57976  */
57977 /**
57978  * @class Roo.grid.CellSelectionModel
57979  * @extends Roo.grid.AbstractSelectionModel
57980  * This class provides the basic implementation for cell selection in a grid.
57981  * @constructor
57982  * @param {Object} config The object containing the configuration of this model.
57983  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
57984  */
57985 Roo.grid.CellSelectionModel = function(config){
57986     Roo.apply(this, config);
57987
57988     this.selection = null;
57989
57990     this.addEvents({
57991         /**
57992              * @event beforerowselect
57993              * Fires before a cell is selected.
57994              * @param {SelectionModel} this
57995              * @param {Number} rowIndex The selected row index
57996              * @param {Number} colIndex The selected cell index
57997              */
57998             "beforecellselect" : true,
57999         /**
58000              * @event cellselect
58001              * Fires when a cell is selected.
58002              * @param {SelectionModel} this
58003              * @param {Number} rowIndex The selected row index
58004              * @param {Number} colIndex The selected cell index
58005              */
58006             "cellselect" : true,
58007         /**
58008              * @event selectionchange
58009              * Fires when the active selection changes.
58010              * @param {SelectionModel} this
58011              * @param {Object} selection null for no selection or an object (o) with two properties
58012                 <ul>
58013                 <li>o.record: the record object for the row the selection is in</li>
58014                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
58015                 </ul>
58016              */
58017             "selectionchange" : true,
58018         /**
58019              * @event tabend
58020              * Fires when the tab (or enter) was pressed on the last editable cell
58021              * You can use this to trigger add new row.
58022              * @param {SelectionModel} this
58023              */
58024             "tabend" : true,
58025          /**
58026              * @event beforeeditnext
58027              * Fires before the next editable sell is made active
58028              * You can use this to skip to another cell or fire the tabend
58029              *    if you set cell to false
58030              * @param {Object} eventdata object : { cell : [ row, col ] } 
58031              */
58032             "beforeeditnext" : true
58033     });
58034     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
58035 };
58036
58037 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
58038     
58039     enter_is_tab: false,
58040
58041     /** @ignore */
58042     initEvents : function(){
58043         this.grid.on("mousedown", this.handleMouseDown, this);
58044         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
58045         var view = this.grid.view;
58046         view.on("refresh", this.onViewChange, this);
58047         view.on("rowupdated", this.onRowUpdated, this);
58048         view.on("beforerowremoved", this.clearSelections, this);
58049         view.on("beforerowsinserted", this.clearSelections, this);
58050         if(this.grid.isEditor){
58051             this.grid.on("beforeedit", this.beforeEdit,  this);
58052         }
58053     },
58054
58055         //private
58056     beforeEdit : function(e){
58057         this.select(e.row, e.column, false, true, e.record);
58058     },
58059
58060         //private
58061     onRowUpdated : function(v, index, r){
58062         if(this.selection && this.selection.record == r){
58063             v.onCellSelect(index, this.selection.cell[1]);
58064         }
58065     },
58066
58067         //private
58068     onViewChange : function(){
58069         this.clearSelections(true);
58070     },
58071
58072         /**
58073          * Returns the currently selected cell,.
58074          * @return {Array} The selected cell (row, column) or null if none selected.
58075          */
58076     getSelectedCell : function(){
58077         return this.selection ? this.selection.cell : null;
58078     },
58079
58080     /**
58081      * Clears all selections.
58082      * @param {Boolean} true to prevent the gridview from being notified about the change.
58083      */
58084     clearSelections : function(preventNotify){
58085         var s = this.selection;
58086         if(s){
58087             if(preventNotify !== true){
58088                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
58089             }
58090             this.selection = null;
58091             this.fireEvent("selectionchange", this, null);
58092         }
58093     },
58094
58095     /**
58096      * Returns true if there is a selection.
58097      * @return {Boolean}
58098      */
58099     hasSelection : function(){
58100         return this.selection ? true : false;
58101     },
58102
58103     /** @ignore */
58104     handleMouseDown : function(e, t){
58105         var v = this.grid.getView();
58106         if(this.isLocked()){
58107             return;
58108         };
58109         var row = v.findRowIndex(t);
58110         var cell = v.findCellIndex(t);
58111         if(row !== false && cell !== false){
58112             this.select(row, cell);
58113         }
58114     },
58115
58116     /**
58117      * Selects a cell.
58118      * @param {Number} rowIndex
58119      * @param {Number} collIndex
58120      */
58121     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
58122         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
58123             this.clearSelections();
58124             r = r || this.grid.dataSource.getAt(rowIndex);
58125             this.selection = {
58126                 record : r,
58127                 cell : [rowIndex, colIndex]
58128             };
58129             if(!preventViewNotify){
58130                 var v = this.grid.getView();
58131                 v.onCellSelect(rowIndex, colIndex);
58132                 if(preventFocus !== true){
58133                     v.focusCell(rowIndex, colIndex);
58134                 }
58135             }
58136             this.fireEvent("cellselect", this, rowIndex, colIndex);
58137             this.fireEvent("selectionchange", this, this.selection);
58138         }
58139     },
58140
58141         //private
58142     isSelectable : function(rowIndex, colIndex, cm){
58143         return !cm.isHidden(colIndex);
58144     },
58145
58146     /** @ignore */
58147     handleKeyDown : function(e){
58148         //Roo.log('Cell Sel Model handleKeyDown');
58149         if(!e.isNavKeyPress()){
58150             return;
58151         }
58152         var g = this.grid, s = this.selection;
58153         if(!s){
58154             e.stopEvent();
58155             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
58156             if(cell){
58157                 this.select(cell[0], cell[1]);
58158             }
58159             return;
58160         }
58161         var sm = this;
58162         var walk = function(row, col, step){
58163             return g.walkCells(row, col, step, sm.isSelectable,  sm);
58164         };
58165         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
58166         var newCell;
58167
58168       
58169
58170         switch(k){
58171             case e.TAB:
58172                 // handled by onEditorKey
58173                 if (g.isEditor && g.editing) {
58174                     return;
58175                 }
58176                 if(e.shiftKey) {
58177                     newCell = walk(r, c-1, -1);
58178                 } else {
58179                     newCell = walk(r, c+1, 1);
58180                 }
58181                 break;
58182             
58183             case e.DOWN:
58184                newCell = walk(r+1, c, 1);
58185                 break;
58186             
58187             case e.UP:
58188                 newCell = walk(r-1, c, -1);
58189                 break;
58190             
58191             case e.RIGHT:
58192                 newCell = walk(r, c+1, 1);
58193                 break;
58194             
58195             case e.LEFT:
58196                 newCell = walk(r, c-1, -1);
58197                 break;
58198             
58199             case e.ENTER:
58200                 
58201                 if(g.isEditor && !g.editing){
58202                    g.startEditing(r, c);
58203                    e.stopEvent();
58204                    return;
58205                 }
58206                 
58207                 
58208              break;
58209         };
58210         if(newCell){
58211             this.select(newCell[0], newCell[1]);
58212             e.stopEvent();
58213             
58214         }
58215     },
58216
58217     acceptsNav : function(row, col, cm){
58218         return !cm.isHidden(col) && cm.isCellEditable(col, row);
58219     },
58220     /**
58221      * Selects a cell.
58222      * @param {Number} field (not used) - as it's normally used as a listener
58223      * @param {Number} e - event - fake it by using
58224      *
58225      * var e = Roo.EventObjectImpl.prototype;
58226      * e.keyCode = e.TAB
58227      *
58228      * 
58229      */
58230     onEditorKey : function(field, e){
58231         
58232         var k = e.getKey(),
58233             newCell,
58234             g = this.grid,
58235             ed = g.activeEditor,
58236             forward = false;
58237         ///Roo.log('onEditorKey' + k);
58238         
58239         
58240         if (this.enter_is_tab && k == e.ENTER) {
58241             k = e.TAB;
58242         }
58243         
58244         if(k == e.TAB){
58245             if(e.shiftKey){
58246                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
58247             }else{
58248                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
58249                 forward = true;
58250             }
58251             
58252             e.stopEvent();
58253             
58254         } else if(k == e.ENTER &&  !e.ctrlKey){
58255             ed.completeEdit();
58256             e.stopEvent();
58257             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
58258         
58259                 } else if(k == e.ESC){
58260             ed.cancelEdit();
58261         }
58262                 
58263         if (newCell) {
58264             var ecall = { cell : newCell, forward : forward };
58265             this.fireEvent('beforeeditnext', ecall );
58266             newCell = ecall.cell;
58267                         forward = ecall.forward;
58268         }
58269                 
58270         if(newCell){
58271             //Roo.log('next cell after edit');
58272             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
58273         } else if (forward) {
58274             // tabbed past last
58275             this.fireEvent.defer(100, this, ['tabend',this]);
58276         }
58277     }
58278 });/*
58279  * Based on:
58280  * Ext JS Library 1.1.1
58281  * Copyright(c) 2006-2007, Ext JS, LLC.
58282  *
58283  * Originally Released Under LGPL - original licence link has changed is not relivant.
58284  *
58285  * Fork - LGPL
58286  * <script type="text/javascript">
58287  */
58288  
58289 /**
58290  * @class Roo.grid.EditorGrid
58291  * @extends Roo.grid.Grid
58292  * Class for creating and editable grid.
58293  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
58294  * The container MUST have some type of size defined for the grid to fill. The container will be 
58295  * automatically set to position relative if it isn't already.
58296  * @param {Object} dataSource The data model to bind to
58297  * @param {Object} colModel The column model with info about this grid's columns
58298  */
58299 Roo.grid.EditorGrid = function(container, config){
58300     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
58301     this.getGridEl().addClass("xedit-grid");
58302
58303     if(!this.selModel){
58304         this.selModel = new Roo.grid.CellSelectionModel();
58305     }
58306
58307     this.activeEditor = null;
58308
58309         this.addEvents({
58310             /**
58311              * @event beforeedit
58312              * Fires before cell editing is triggered. The edit event object has the following properties <br />
58313              * <ul style="padding:5px;padding-left:16px;">
58314              * <li>grid - This grid</li>
58315              * <li>record - The record being edited</li>
58316              * <li>field - The field name being edited</li>
58317              * <li>value - The value for the field being edited.</li>
58318              * <li>row - The grid row index</li>
58319              * <li>column - The grid column index</li>
58320              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
58321              * </ul>
58322              * @param {Object} e An edit event (see above for description)
58323              */
58324             "beforeedit" : true,
58325             /**
58326              * @event afteredit
58327              * Fires after a cell is edited. <br />
58328              * <ul style="padding:5px;padding-left:16px;">
58329              * <li>grid - This grid</li>
58330              * <li>record - The record being edited</li>
58331              * <li>field - The field name being edited</li>
58332              * <li>value - The value being set</li>
58333              * <li>originalValue - The original value for the field, before the edit.</li>
58334              * <li>row - The grid row index</li>
58335              * <li>column - The grid column index</li>
58336              * </ul>
58337              * @param {Object} e An edit event (see above for description)
58338              */
58339             "afteredit" : true,
58340             /**
58341              * @event validateedit
58342              * Fires after a cell is edited, but before the value is set in the record. 
58343          * You can use this to modify the value being set in the field, Return false
58344              * to cancel the change. The edit event object has the following properties <br />
58345              * <ul style="padding:5px;padding-left:16px;">
58346          * <li>editor - This editor</li>
58347              * <li>grid - This grid</li>
58348              * <li>record - The record being edited</li>
58349              * <li>field - The field name being edited</li>
58350              * <li>value - The value being set</li>
58351              * <li>originalValue - The original value for the field, before the edit.</li>
58352              * <li>row - The grid row index</li>
58353              * <li>column - The grid column index</li>
58354              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
58355              * </ul>
58356              * @param {Object} e An edit event (see above for description)
58357              */
58358             "validateedit" : true
58359         });
58360     this.on("bodyscroll", this.stopEditing,  this);
58361     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
58362 };
58363
58364 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
58365     /**
58366      * @cfg {Number} clicksToEdit
58367      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
58368      */
58369     clicksToEdit: 2,
58370
58371     // private
58372     isEditor : true,
58373     // private
58374     trackMouseOver: false, // causes very odd FF errors
58375
58376     onCellDblClick : function(g, row, col){
58377         this.startEditing(row, col);
58378     },
58379
58380     onEditComplete : function(ed, value, startValue){
58381         this.editing = false;
58382         this.activeEditor = null;
58383         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
58384         var r = ed.record;
58385         var field = this.colModel.getDataIndex(ed.col);
58386         var e = {
58387             grid: this,
58388             record: r,
58389             field: field,
58390             originalValue: startValue,
58391             value: value,
58392             row: ed.row,
58393             column: ed.col,
58394             cancel:false,
58395             editor: ed
58396         };
58397         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
58398         cell.show();
58399           
58400         if(String(value) !== String(startValue)){
58401             
58402             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
58403                 r.set(field, e.value);
58404                 // if we are dealing with a combo box..
58405                 // then we also set the 'name' colum to be the displayField
58406                 if (ed.field.displayField && ed.field.name) {
58407                     r.set(ed.field.name, ed.field.el.dom.value);
58408                 }
58409                 
58410                 delete e.cancel; //?? why!!!
58411                 this.fireEvent("afteredit", e);
58412             }
58413         } else {
58414             this.fireEvent("afteredit", e); // always fire it!
58415         }
58416         this.view.focusCell(ed.row, ed.col);
58417     },
58418
58419     /**
58420      * Starts editing the specified for the specified row/column
58421      * @param {Number} rowIndex
58422      * @param {Number} colIndex
58423      */
58424     startEditing : function(row, col){
58425         this.stopEditing();
58426         if(this.colModel.isCellEditable(col, row)){
58427             this.view.ensureVisible(row, col, true);
58428           
58429             var r = this.dataSource.getAt(row);
58430             var field = this.colModel.getDataIndex(col);
58431             var cell = Roo.get(this.view.getCell(row,col));
58432             var e = {
58433                 grid: this,
58434                 record: r,
58435                 field: field,
58436                 value: r.data[field],
58437                 row: row,
58438                 column: col,
58439                 cancel:false 
58440             };
58441             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
58442                 this.editing = true;
58443                 var ed = this.colModel.getCellEditor(col, row);
58444                 
58445                 if (!ed) {
58446                     return;
58447                 }
58448                 if(!ed.rendered){
58449                     ed.render(ed.parentEl || document.body);
58450                 }
58451                 ed.field.reset();
58452                
58453                 cell.hide();
58454                 
58455                 (function(){ // complex but required for focus issues in safari, ie and opera
58456                     ed.row = row;
58457                     ed.col = col;
58458                     ed.record = r;
58459                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
58460                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
58461                     this.activeEditor = ed;
58462                     var v = r.data[field];
58463                     ed.startEdit(this.view.getCell(row, col), v);
58464                     // combo's with 'displayField and name set
58465                     if (ed.field.displayField && ed.field.name) {
58466                         ed.field.el.dom.value = r.data[ed.field.name];
58467                     }
58468                     
58469                     
58470                 }).defer(50, this);
58471             }
58472         }
58473     },
58474         
58475     /**
58476      * Stops any active editing
58477      */
58478     stopEditing : function(){
58479         if(this.activeEditor){
58480             this.activeEditor.completeEdit();
58481         }
58482         this.activeEditor = null;
58483     },
58484         
58485          /**
58486      * Called to get grid's drag proxy text, by default returns this.ddText.
58487      * @return {String}
58488      */
58489     getDragDropText : function(){
58490         var count = this.selModel.getSelectedCell() ? 1 : 0;
58491         return String.format(this.ddText, count, count == 1 ? '' : 's');
58492     }
58493         
58494 });/*
58495  * Based on:
58496  * Ext JS Library 1.1.1
58497  * Copyright(c) 2006-2007, Ext JS, LLC.
58498  *
58499  * Originally Released Under LGPL - original licence link has changed is not relivant.
58500  *
58501  * Fork - LGPL
58502  * <script type="text/javascript">
58503  */
58504
58505 // private - not really -- you end up using it !
58506 // This is a support class used internally by the Grid components
58507
58508 /**
58509  * @class Roo.grid.GridEditor
58510  * @extends Roo.Editor
58511  * Class for creating and editable grid elements.
58512  * @param {Object} config any settings (must include field)
58513  */
58514 Roo.grid.GridEditor = function(field, config){
58515     if (!config && field.field) {
58516         config = field;
58517         field = Roo.factory(config.field, Roo.form);
58518     }
58519     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
58520     field.monitorTab = false;
58521 };
58522
58523 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
58524     
58525     /**
58526      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
58527      */
58528     
58529     alignment: "tl-tl",
58530     autoSize: "width",
58531     hideEl : false,
58532     cls: "x-small-editor x-grid-editor",
58533     shim:false,
58534     shadow:"frame"
58535 });/*
58536  * Based on:
58537  * Ext JS Library 1.1.1
58538  * Copyright(c) 2006-2007, Ext JS, LLC.
58539  *
58540  * Originally Released Under LGPL - original licence link has changed is not relivant.
58541  *
58542  * Fork - LGPL
58543  * <script type="text/javascript">
58544  */
58545   
58546
58547   
58548 Roo.grid.PropertyRecord = Roo.data.Record.create([
58549     {name:'name',type:'string'},  'value'
58550 ]);
58551
58552
58553 Roo.grid.PropertyStore = function(grid, source){
58554     this.grid = grid;
58555     this.store = new Roo.data.Store({
58556         recordType : Roo.grid.PropertyRecord
58557     });
58558     this.store.on('update', this.onUpdate,  this);
58559     if(source){
58560         this.setSource(source);
58561     }
58562     Roo.grid.PropertyStore.superclass.constructor.call(this);
58563 };
58564
58565
58566
58567 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
58568     setSource : function(o){
58569         this.source = o;
58570         this.store.removeAll();
58571         var data = [];
58572         for(var k in o){
58573             if(this.isEditableValue(o[k])){
58574                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
58575             }
58576         }
58577         this.store.loadRecords({records: data}, {}, true);
58578     },
58579
58580     onUpdate : function(ds, record, type){
58581         if(type == Roo.data.Record.EDIT){
58582             var v = record.data['value'];
58583             var oldValue = record.modified['value'];
58584             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
58585                 this.source[record.id] = v;
58586                 record.commit();
58587                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
58588             }else{
58589                 record.reject();
58590             }
58591         }
58592     },
58593
58594     getProperty : function(row){
58595        return this.store.getAt(row);
58596     },
58597
58598     isEditableValue: function(val){
58599         if(val && val instanceof Date){
58600             return true;
58601         }else if(typeof val == 'object' || typeof val == 'function'){
58602             return false;
58603         }
58604         return true;
58605     },
58606
58607     setValue : function(prop, value){
58608         this.source[prop] = value;
58609         this.store.getById(prop).set('value', value);
58610     },
58611
58612     getSource : function(){
58613         return this.source;
58614     }
58615 });
58616
58617 Roo.grid.PropertyColumnModel = function(grid, store){
58618     this.grid = grid;
58619     var g = Roo.grid;
58620     g.PropertyColumnModel.superclass.constructor.call(this, [
58621         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
58622         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
58623     ]);
58624     this.store = store;
58625     this.bselect = Roo.DomHelper.append(document.body, {
58626         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
58627             {tag: 'option', value: 'true', html: 'true'},
58628             {tag: 'option', value: 'false', html: 'false'}
58629         ]
58630     });
58631     Roo.id(this.bselect);
58632     var f = Roo.form;
58633     this.editors = {
58634         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
58635         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
58636         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
58637         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
58638         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
58639     };
58640     this.renderCellDelegate = this.renderCell.createDelegate(this);
58641     this.renderPropDelegate = this.renderProp.createDelegate(this);
58642 };
58643
58644 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
58645     
58646     
58647     nameText : 'Name',
58648     valueText : 'Value',
58649     
58650     dateFormat : 'm/j/Y',
58651     
58652     
58653     renderDate : function(dateVal){
58654         return dateVal.dateFormat(this.dateFormat);
58655     },
58656
58657     renderBool : function(bVal){
58658         return bVal ? 'true' : 'false';
58659     },
58660
58661     isCellEditable : function(colIndex, rowIndex){
58662         return colIndex == 1;
58663     },
58664
58665     getRenderer : function(col){
58666         return col == 1 ?
58667             this.renderCellDelegate : this.renderPropDelegate;
58668     },
58669
58670     renderProp : function(v){
58671         return this.getPropertyName(v);
58672     },
58673
58674     renderCell : function(val){
58675         var rv = val;
58676         if(val instanceof Date){
58677             rv = this.renderDate(val);
58678         }else if(typeof val == 'boolean'){
58679             rv = this.renderBool(val);
58680         }
58681         return Roo.util.Format.htmlEncode(rv);
58682     },
58683
58684     getPropertyName : function(name){
58685         var pn = this.grid.propertyNames;
58686         return pn && pn[name] ? pn[name] : name;
58687     },
58688
58689     getCellEditor : function(colIndex, rowIndex){
58690         var p = this.store.getProperty(rowIndex);
58691         var n = p.data['name'], val = p.data['value'];
58692         
58693         if(typeof(this.grid.customEditors[n]) == 'string'){
58694             return this.editors[this.grid.customEditors[n]];
58695         }
58696         if(typeof(this.grid.customEditors[n]) != 'undefined'){
58697             return this.grid.customEditors[n];
58698         }
58699         if(val instanceof Date){
58700             return this.editors['date'];
58701         }else if(typeof val == 'number'){
58702             return this.editors['number'];
58703         }else if(typeof val == 'boolean'){
58704             return this.editors['boolean'];
58705         }else{
58706             return this.editors['string'];
58707         }
58708     }
58709 });
58710
58711 /**
58712  * @class Roo.grid.PropertyGrid
58713  * @extends Roo.grid.EditorGrid
58714  * This class represents the  interface of a component based property grid control.
58715  * <br><br>Usage:<pre><code>
58716  var grid = new Roo.grid.PropertyGrid("my-container-id", {
58717       
58718  });
58719  // set any options
58720  grid.render();
58721  * </code></pre>
58722   
58723  * @constructor
58724  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
58725  * The container MUST have some type of size defined for the grid to fill. The container will be
58726  * automatically set to position relative if it isn't already.
58727  * @param {Object} config A config object that sets properties on this grid.
58728  */
58729 Roo.grid.PropertyGrid = function(container, config){
58730     config = config || {};
58731     var store = new Roo.grid.PropertyStore(this);
58732     this.store = store;
58733     var cm = new Roo.grid.PropertyColumnModel(this, store);
58734     store.store.sort('name', 'ASC');
58735     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
58736         ds: store.store,
58737         cm: cm,
58738         enableColLock:false,
58739         enableColumnMove:false,
58740         stripeRows:false,
58741         trackMouseOver: false,
58742         clicksToEdit:1
58743     }, config));
58744     this.getGridEl().addClass('x-props-grid');
58745     this.lastEditRow = null;
58746     this.on('columnresize', this.onColumnResize, this);
58747     this.addEvents({
58748          /**
58749              * @event beforepropertychange
58750              * Fires before a property changes (return false to stop?)
58751              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
58752              * @param {String} id Record Id
58753              * @param {String} newval New Value
58754          * @param {String} oldval Old Value
58755              */
58756         "beforepropertychange": true,
58757         /**
58758              * @event propertychange
58759              * Fires after a property changes
58760              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
58761              * @param {String} id Record Id
58762              * @param {String} newval New Value
58763          * @param {String} oldval Old Value
58764              */
58765         "propertychange": true
58766     });
58767     this.customEditors = this.customEditors || {};
58768 };
58769 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
58770     
58771      /**
58772      * @cfg {Object} customEditors map of colnames=> custom editors.
58773      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
58774      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
58775      * false disables editing of the field.
58776          */
58777     
58778       /**
58779      * @cfg {Object} propertyNames map of property Names to their displayed value
58780          */
58781     
58782     render : function(){
58783         Roo.grid.PropertyGrid.superclass.render.call(this);
58784         this.autoSize.defer(100, this);
58785     },
58786
58787     autoSize : function(){
58788         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
58789         if(this.view){
58790             this.view.fitColumns();
58791         }
58792     },
58793
58794     onColumnResize : function(){
58795         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
58796         this.autoSize();
58797     },
58798     /**
58799      * Sets the data for the Grid
58800      * accepts a Key => Value object of all the elements avaiable.
58801      * @param {Object} data  to appear in grid.
58802      */
58803     setSource : function(source){
58804         this.store.setSource(source);
58805         //this.autoSize();
58806     },
58807     /**
58808      * Gets all the data from the grid.
58809      * @return {Object} data  data stored in grid
58810      */
58811     getSource : function(){
58812         return this.store.getSource();
58813     }
58814 });/*
58815   
58816  * Licence LGPL
58817  
58818  */
58819  
58820 /**
58821  * @class Roo.grid.Calendar
58822  * @extends Roo.util.Grid
58823  * This class extends the Grid to provide a calendar widget
58824  * <br><br>Usage:<pre><code>
58825  var grid = new Roo.grid.Calendar("my-container-id", {
58826      ds: myDataStore,
58827      cm: myColModel,
58828      selModel: mySelectionModel,
58829      autoSizeColumns: true,
58830      monitorWindowResize: false,
58831      trackMouseOver: true
58832      eventstore : real data store..
58833  });
58834  // set any options
58835  grid.render();
58836   
58837   * @constructor
58838  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
58839  * The container MUST have some type of size defined for the grid to fill. The container will be
58840  * automatically set to position relative if it isn't already.
58841  * @param {Object} config A config object that sets properties on this grid.
58842  */
58843 Roo.grid.Calendar = function(container, config){
58844         // initialize the container
58845         this.container = Roo.get(container);
58846         this.container.update("");
58847         this.container.setStyle("overflow", "hidden");
58848     this.container.addClass('x-grid-container');
58849
58850     this.id = this.container.id;
58851
58852     Roo.apply(this, config);
58853     // check and correct shorthanded configs
58854     
58855     var rows = [];
58856     var d =1;
58857     for (var r = 0;r < 6;r++) {
58858         
58859         rows[r]=[];
58860         for (var c =0;c < 7;c++) {
58861             rows[r][c]= '';
58862         }
58863     }
58864     if (this.eventStore) {
58865         this.eventStore= Roo.factory(this.eventStore, Roo.data);
58866         this.eventStore.on('load',this.onLoad, this);
58867         this.eventStore.on('beforeload',this.clearEvents, this);
58868          
58869     }
58870     
58871     this.dataSource = new Roo.data.Store({
58872             proxy: new Roo.data.MemoryProxy(rows),
58873             reader: new Roo.data.ArrayReader({}, [
58874                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
58875     });
58876
58877     this.dataSource.load();
58878     this.ds = this.dataSource;
58879     this.ds.xmodule = this.xmodule || false;
58880     
58881     
58882     var cellRender = function(v,x,r)
58883     {
58884         return String.format(
58885             '<div class="fc-day  fc-widget-content"><div>' +
58886                 '<div class="fc-event-container"></div>' +
58887                 '<div class="fc-day-number">{0}</div>'+
58888                 
58889                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
58890             '</div></div>', v);
58891     
58892     }
58893     
58894     
58895     this.colModel = new Roo.grid.ColumnModel( [
58896         {
58897             xtype: 'ColumnModel',
58898             xns: Roo.grid,
58899             dataIndex : 'weekday0',
58900             header : 'Sunday',
58901             renderer : cellRender
58902         },
58903         {
58904             xtype: 'ColumnModel',
58905             xns: Roo.grid,
58906             dataIndex : 'weekday1',
58907             header : 'Monday',
58908             renderer : cellRender
58909         },
58910         {
58911             xtype: 'ColumnModel',
58912             xns: Roo.grid,
58913             dataIndex : 'weekday2',
58914             header : 'Tuesday',
58915             renderer : cellRender
58916         },
58917         {
58918             xtype: 'ColumnModel',
58919             xns: Roo.grid,
58920             dataIndex : 'weekday3',
58921             header : 'Wednesday',
58922             renderer : cellRender
58923         },
58924         {
58925             xtype: 'ColumnModel',
58926             xns: Roo.grid,
58927             dataIndex : 'weekday4',
58928             header : 'Thursday',
58929             renderer : cellRender
58930         },
58931         {
58932             xtype: 'ColumnModel',
58933             xns: Roo.grid,
58934             dataIndex : 'weekday5',
58935             header : 'Friday',
58936             renderer : cellRender
58937         },
58938         {
58939             xtype: 'ColumnModel',
58940             xns: Roo.grid,
58941             dataIndex : 'weekday6',
58942             header : 'Saturday',
58943             renderer : cellRender
58944         }
58945     ]);
58946     this.cm = this.colModel;
58947     this.cm.xmodule = this.xmodule || false;
58948  
58949         
58950           
58951     //this.selModel = new Roo.grid.CellSelectionModel();
58952     //this.sm = this.selModel;
58953     //this.selModel.init(this);
58954     
58955     
58956     if(this.width){
58957         this.container.setWidth(this.width);
58958     }
58959
58960     if(this.height){
58961         this.container.setHeight(this.height);
58962     }
58963     /** @private */
58964         this.addEvents({
58965         // raw events
58966         /**
58967          * @event click
58968          * The raw click event for the entire grid.
58969          * @param {Roo.EventObject} e
58970          */
58971         "click" : true,
58972         /**
58973          * @event dblclick
58974          * The raw dblclick event for the entire grid.
58975          * @param {Roo.EventObject} e
58976          */
58977         "dblclick" : true,
58978         /**
58979          * @event contextmenu
58980          * The raw contextmenu event for the entire grid.
58981          * @param {Roo.EventObject} e
58982          */
58983         "contextmenu" : true,
58984         /**
58985          * @event mousedown
58986          * The raw mousedown event for the entire grid.
58987          * @param {Roo.EventObject} e
58988          */
58989         "mousedown" : true,
58990         /**
58991          * @event mouseup
58992          * The raw mouseup event for the entire grid.
58993          * @param {Roo.EventObject} e
58994          */
58995         "mouseup" : true,
58996         /**
58997          * @event mouseover
58998          * The raw mouseover event for the entire grid.
58999          * @param {Roo.EventObject} e
59000          */
59001         "mouseover" : true,
59002         /**
59003          * @event mouseout
59004          * The raw mouseout event for the entire grid.
59005          * @param {Roo.EventObject} e
59006          */
59007         "mouseout" : true,
59008         /**
59009          * @event keypress
59010          * The raw keypress event for the entire grid.
59011          * @param {Roo.EventObject} e
59012          */
59013         "keypress" : true,
59014         /**
59015          * @event keydown
59016          * The raw keydown event for the entire grid.
59017          * @param {Roo.EventObject} e
59018          */
59019         "keydown" : true,
59020
59021         // custom events
59022
59023         /**
59024          * @event cellclick
59025          * Fires when a cell is clicked
59026          * @param {Grid} this
59027          * @param {Number} rowIndex
59028          * @param {Number} columnIndex
59029          * @param {Roo.EventObject} e
59030          */
59031         "cellclick" : true,
59032         /**
59033          * @event celldblclick
59034          * Fires when a cell is double clicked
59035          * @param {Grid} this
59036          * @param {Number} rowIndex
59037          * @param {Number} columnIndex
59038          * @param {Roo.EventObject} e
59039          */
59040         "celldblclick" : true,
59041         /**
59042          * @event rowclick
59043          * Fires when a row is clicked
59044          * @param {Grid} this
59045          * @param {Number} rowIndex
59046          * @param {Roo.EventObject} e
59047          */
59048         "rowclick" : true,
59049         /**
59050          * @event rowdblclick
59051          * Fires when a row is double clicked
59052          * @param {Grid} this
59053          * @param {Number} rowIndex
59054          * @param {Roo.EventObject} e
59055          */
59056         "rowdblclick" : true,
59057         /**
59058          * @event headerclick
59059          * Fires when a header is clicked
59060          * @param {Grid} this
59061          * @param {Number} columnIndex
59062          * @param {Roo.EventObject} e
59063          */
59064         "headerclick" : true,
59065         /**
59066          * @event headerdblclick
59067          * Fires when a header cell is double clicked
59068          * @param {Grid} this
59069          * @param {Number} columnIndex
59070          * @param {Roo.EventObject} e
59071          */
59072         "headerdblclick" : true,
59073         /**
59074          * @event rowcontextmenu
59075          * Fires when a row is right clicked
59076          * @param {Grid} this
59077          * @param {Number} rowIndex
59078          * @param {Roo.EventObject} e
59079          */
59080         "rowcontextmenu" : true,
59081         /**
59082          * @event cellcontextmenu
59083          * Fires when a cell is right clicked
59084          * @param {Grid} this
59085          * @param {Number} rowIndex
59086          * @param {Number} cellIndex
59087          * @param {Roo.EventObject} e
59088          */
59089          "cellcontextmenu" : true,
59090         /**
59091          * @event headercontextmenu
59092          * Fires when a header is right clicked
59093          * @param {Grid} this
59094          * @param {Number} columnIndex
59095          * @param {Roo.EventObject} e
59096          */
59097         "headercontextmenu" : true,
59098         /**
59099          * @event bodyscroll
59100          * Fires when the body element is scrolled
59101          * @param {Number} scrollLeft
59102          * @param {Number} scrollTop
59103          */
59104         "bodyscroll" : true,
59105         /**
59106          * @event columnresize
59107          * Fires when the user resizes a column
59108          * @param {Number} columnIndex
59109          * @param {Number} newSize
59110          */
59111         "columnresize" : true,
59112         /**
59113          * @event columnmove
59114          * Fires when the user moves a column
59115          * @param {Number} oldIndex
59116          * @param {Number} newIndex
59117          */
59118         "columnmove" : true,
59119         /**
59120          * @event startdrag
59121          * Fires when row(s) start being dragged
59122          * @param {Grid} this
59123          * @param {Roo.GridDD} dd The drag drop object
59124          * @param {event} e The raw browser event
59125          */
59126         "startdrag" : true,
59127         /**
59128          * @event enddrag
59129          * Fires when a drag operation is complete
59130          * @param {Grid} this
59131          * @param {Roo.GridDD} dd The drag drop object
59132          * @param {event} e The raw browser event
59133          */
59134         "enddrag" : true,
59135         /**
59136          * @event dragdrop
59137          * Fires when dragged row(s) are dropped on a valid DD target
59138          * @param {Grid} this
59139          * @param {Roo.GridDD} dd The drag drop object
59140          * @param {String} targetId The target drag drop object
59141          * @param {event} e The raw browser event
59142          */
59143         "dragdrop" : true,
59144         /**
59145          * @event dragover
59146          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
59147          * @param {Grid} this
59148          * @param {Roo.GridDD} dd The drag drop object
59149          * @param {String} targetId The target drag drop object
59150          * @param {event} e The raw browser event
59151          */
59152         "dragover" : true,
59153         /**
59154          * @event dragenter
59155          *  Fires when the dragged row(s) first cross another DD target while being dragged
59156          * @param {Grid} this
59157          * @param {Roo.GridDD} dd The drag drop object
59158          * @param {String} targetId The target drag drop object
59159          * @param {event} e The raw browser event
59160          */
59161         "dragenter" : true,
59162         /**
59163          * @event dragout
59164          * Fires when the dragged row(s) leave another DD target while being dragged
59165          * @param {Grid} this
59166          * @param {Roo.GridDD} dd The drag drop object
59167          * @param {String} targetId The target drag drop object
59168          * @param {event} e The raw browser event
59169          */
59170         "dragout" : true,
59171         /**
59172          * @event rowclass
59173          * Fires when a row is rendered, so you can change add a style to it.
59174          * @param {GridView} gridview   The grid view
59175          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
59176          */
59177         'rowclass' : true,
59178
59179         /**
59180          * @event render
59181          * Fires when the grid is rendered
59182          * @param {Grid} grid
59183          */
59184         'render' : true,
59185             /**
59186              * @event select
59187              * Fires when a date is selected
59188              * @param {DatePicker} this
59189              * @param {Date} date The selected date
59190              */
59191         'select': true,
59192         /**
59193              * @event monthchange
59194              * Fires when the displayed month changes 
59195              * @param {DatePicker} this
59196              * @param {Date} date The selected month
59197              */
59198         'monthchange': true,
59199         /**
59200              * @event evententer
59201              * Fires when mouse over an event
59202              * @param {Calendar} this
59203              * @param {event} Event
59204              */
59205         'evententer': true,
59206         /**
59207              * @event eventleave
59208              * Fires when the mouse leaves an
59209              * @param {Calendar} this
59210              * @param {event}
59211              */
59212         'eventleave': true,
59213         /**
59214              * @event eventclick
59215              * Fires when the mouse click an
59216              * @param {Calendar} this
59217              * @param {event}
59218              */
59219         'eventclick': true,
59220         /**
59221              * @event eventrender
59222              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
59223              * @param {Calendar} this
59224              * @param {data} data to be modified
59225              */
59226         'eventrender': true
59227         
59228     });
59229
59230     Roo.grid.Grid.superclass.constructor.call(this);
59231     this.on('render', function() {
59232         this.view.el.addClass('x-grid-cal'); 
59233         
59234         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
59235
59236     },this);
59237     
59238     if (!Roo.grid.Calendar.style) {
59239         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
59240             
59241             
59242             '.x-grid-cal .x-grid-col' :  {
59243                 height: 'auto !important',
59244                 'vertical-align': 'top'
59245             },
59246             '.x-grid-cal  .fc-event-hori' : {
59247                 height: '14px'
59248             }
59249              
59250             
59251         }, Roo.id());
59252     }
59253
59254     
59255     
59256 };
59257 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
59258     /**
59259      * @cfg {Store} eventStore The store that loads events.
59260      */
59261     eventStore : 25,
59262
59263      
59264     activeDate : false,
59265     startDay : 0,
59266     autoWidth : true,
59267     monitorWindowResize : false,
59268
59269     
59270     resizeColumns : function() {
59271         var col = (this.view.el.getWidth() / 7) - 3;
59272         // loop through cols, and setWidth
59273         for(var i =0 ; i < 7 ; i++){
59274             this.cm.setColumnWidth(i, col);
59275         }
59276     },
59277      setDate :function(date) {
59278         
59279         Roo.log('setDate?');
59280         
59281         this.resizeColumns();
59282         var vd = this.activeDate;
59283         this.activeDate = date;
59284 //        if(vd && this.el){
59285 //            var t = date.getTime();
59286 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
59287 //                Roo.log('using add remove');
59288 //                
59289 //                this.fireEvent('monthchange', this, date);
59290 //                
59291 //                this.cells.removeClass("fc-state-highlight");
59292 //                this.cells.each(function(c){
59293 //                   if(c.dateValue == t){
59294 //                       c.addClass("fc-state-highlight");
59295 //                       setTimeout(function(){
59296 //                            try{c.dom.firstChild.focus();}catch(e){}
59297 //                       }, 50);
59298 //                       return false;
59299 //                   }
59300 //                   return true;
59301 //                });
59302 //                return;
59303 //            }
59304 //        }
59305         
59306         var days = date.getDaysInMonth();
59307         
59308         var firstOfMonth = date.getFirstDateOfMonth();
59309         var startingPos = firstOfMonth.getDay()-this.startDay;
59310         
59311         if(startingPos < this.startDay){
59312             startingPos += 7;
59313         }
59314         
59315         var pm = date.add(Date.MONTH, -1);
59316         var prevStart = pm.getDaysInMonth()-startingPos;
59317 //        
59318         
59319         
59320         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
59321         
59322         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
59323         //this.cells.addClassOnOver('fc-state-hover');
59324         
59325         var cells = this.cells.elements;
59326         var textEls = this.textNodes;
59327         
59328         //Roo.each(cells, function(cell){
59329         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
59330         //});
59331         
59332         days += startingPos;
59333
59334         // convert everything to numbers so it's fast
59335         var day = 86400000;
59336         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
59337         //Roo.log(d);
59338         //Roo.log(pm);
59339         //Roo.log(prevStart);
59340         
59341         var today = new Date().clearTime().getTime();
59342         var sel = date.clearTime().getTime();
59343         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
59344         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
59345         var ddMatch = this.disabledDatesRE;
59346         var ddText = this.disabledDatesText;
59347         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
59348         var ddaysText = this.disabledDaysText;
59349         var format = this.format;
59350         
59351         var setCellClass = function(cal, cell){
59352             
59353             //Roo.log('set Cell Class');
59354             cell.title = "";
59355             var t = d.getTime();
59356             
59357             //Roo.log(d);
59358             
59359             
59360             cell.dateValue = t;
59361             if(t == today){
59362                 cell.className += " fc-today";
59363                 cell.className += " fc-state-highlight";
59364                 cell.title = cal.todayText;
59365             }
59366             if(t == sel){
59367                 // disable highlight in other month..
59368                 cell.className += " fc-state-highlight";
59369                 
59370             }
59371             // disabling
59372             if(t < min) {
59373                 //cell.className = " fc-state-disabled";
59374                 cell.title = cal.minText;
59375                 return;
59376             }
59377             if(t > max) {
59378                 //cell.className = " fc-state-disabled";
59379                 cell.title = cal.maxText;
59380                 return;
59381             }
59382             if(ddays){
59383                 if(ddays.indexOf(d.getDay()) != -1){
59384                     // cell.title = ddaysText;
59385                    // cell.className = " fc-state-disabled";
59386                 }
59387             }
59388             if(ddMatch && format){
59389                 var fvalue = d.dateFormat(format);
59390                 if(ddMatch.test(fvalue)){
59391                     cell.title = ddText.replace("%0", fvalue);
59392                    cell.className = " fc-state-disabled";
59393                 }
59394             }
59395             
59396             if (!cell.initialClassName) {
59397                 cell.initialClassName = cell.dom.className;
59398             }
59399             
59400             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
59401         };
59402
59403         var i = 0;
59404         
59405         for(; i < startingPos; i++) {
59406             cells[i].dayName =  (++prevStart);
59407             Roo.log(textEls[i]);
59408             d.setDate(d.getDate()+1);
59409             
59410             //cells[i].className = "fc-past fc-other-month";
59411             setCellClass(this, cells[i]);
59412         }
59413         
59414         var intDay = 0;
59415         
59416         for(; i < days; i++){
59417             intDay = i - startingPos + 1;
59418             cells[i].dayName =  (intDay);
59419             d.setDate(d.getDate()+1);
59420             
59421             cells[i].className = ''; // "x-date-active";
59422             setCellClass(this, cells[i]);
59423         }
59424         var extraDays = 0;
59425         
59426         for(; i < 42; i++) {
59427             //textEls[i].innerHTML = (++extraDays);
59428             
59429             d.setDate(d.getDate()+1);
59430             cells[i].dayName = (++extraDays);
59431             cells[i].className = "fc-future fc-other-month";
59432             setCellClass(this, cells[i]);
59433         }
59434         
59435         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
59436         
59437         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
59438         
59439         // this will cause all the cells to mis
59440         var rows= [];
59441         var i =0;
59442         for (var r = 0;r < 6;r++) {
59443             for (var c =0;c < 7;c++) {
59444                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
59445             }    
59446         }
59447         
59448         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
59449         for(i=0;i<cells.length;i++) {
59450             
59451             this.cells.elements[i].dayName = cells[i].dayName ;
59452             this.cells.elements[i].className = cells[i].className;
59453             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
59454             this.cells.elements[i].title = cells[i].title ;
59455             this.cells.elements[i].dateValue = cells[i].dateValue ;
59456         }
59457         
59458         
59459         
59460         
59461         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
59462         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
59463         
59464         ////if(totalRows != 6){
59465             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
59466            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
59467        // }
59468         
59469         this.fireEvent('monthchange', this, date);
59470         
59471         
59472     },
59473  /**
59474      * Returns the grid's SelectionModel.
59475      * @return {SelectionModel}
59476      */
59477     getSelectionModel : function(){
59478         if(!this.selModel){
59479             this.selModel = new Roo.grid.CellSelectionModel();
59480         }
59481         return this.selModel;
59482     },
59483
59484     load: function() {
59485         this.eventStore.load()
59486         
59487         
59488         
59489     },
59490     
59491     findCell : function(dt) {
59492         dt = dt.clearTime().getTime();
59493         var ret = false;
59494         this.cells.each(function(c){
59495             //Roo.log("check " +c.dateValue + '?=' + dt);
59496             if(c.dateValue == dt){
59497                 ret = c;
59498                 return false;
59499             }
59500             return true;
59501         });
59502         
59503         return ret;
59504     },
59505     
59506     findCells : function(rec) {
59507         var s = rec.data.start_dt.clone().clearTime().getTime();
59508        // Roo.log(s);
59509         var e= rec.data.end_dt.clone().clearTime().getTime();
59510        // Roo.log(e);
59511         var ret = [];
59512         this.cells.each(function(c){
59513              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
59514             
59515             if(c.dateValue > e){
59516                 return ;
59517             }
59518             if(c.dateValue < s){
59519                 return ;
59520             }
59521             ret.push(c);
59522         });
59523         
59524         return ret;    
59525     },
59526     
59527     findBestRow: function(cells)
59528     {
59529         var ret = 0;
59530         
59531         for (var i =0 ; i < cells.length;i++) {
59532             ret  = Math.max(cells[i].rows || 0,ret);
59533         }
59534         return ret;
59535         
59536     },
59537     
59538     
59539     addItem : function(rec)
59540     {
59541         // look for vertical location slot in
59542         var cells = this.findCells(rec);
59543         
59544         rec.row = this.findBestRow(cells);
59545         
59546         // work out the location.
59547         
59548         var crow = false;
59549         var rows = [];
59550         for(var i =0; i < cells.length; i++) {
59551             if (!crow) {
59552                 crow = {
59553                     start : cells[i],
59554                     end :  cells[i]
59555                 };
59556                 continue;
59557             }
59558             if (crow.start.getY() == cells[i].getY()) {
59559                 // on same row.
59560                 crow.end = cells[i];
59561                 continue;
59562             }
59563             // different row.
59564             rows.push(crow);
59565             crow = {
59566                 start: cells[i],
59567                 end : cells[i]
59568             };
59569             
59570         }
59571         
59572         rows.push(crow);
59573         rec.els = [];
59574         rec.rows = rows;
59575         rec.cells = cells;
59576         for (var i = 0; i < cells.length;i++) {
59577             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
59578             
59579         }
59580         
59581         
59582     },
59583     
59584     clearEvents: function() {
59585         
59586         if (!this.eventStore.getCount()) {
59587             return;
59588         }
59589         // reset number of rows in cells.
59590         Roo.each(this.cells.elements, function(c){
59591             c.rows = 0;
59592         });
59593         
59594         this.eventStore.each(function(e) {
59595             this.clearEvent(e);
59596         },this);
59597         
59598     },
59599     
59600     clearEvent : function(ev)
59601     {
59602         if (ev.els) {
59603             Roo.each(ev.els, function(el) {
59604                 el.un('mouseenter' ,this.onEventEnter, this);
59605                 el.un('mouseleave' ,this.onEventLeave, this);
59606                 el.remove();
59607             },this);
59608             ev.els = [];
59609         }
59610     },
59611     
59612     
59613     renderEvent : function(ev,ctr) {
59614         if (!ctr) {
59615              ctr = this.view.el.select('.fc-event-container',true).first();
59616         }
59617         
59618          
59619         this.clearEvent(ev);
59620             //code
59621        
59622         
59623         
59624         ev.els = [];
59625         var cells = ev.cells;
59626         var rows = ev.rows;
59627         this.fireEvent('eventrender', this, ev);
59628         
59629         for(var i =0; i < rows.length; i++) {
59630             
59631             cls = '';
59632             if (i == 0) {
59633                 cls += ' fc-event-start';
59634             }
59635             if ((i+1) == rows.length) {
59636                 cls += ' fc-event-end';
59637             }
59638             
59639             //Roo.log(ev.data);
59640             // how many rows should it span..
59641             var cg = this.eventTmpl.append(ctr,Roo.apply({
59642                 fccls : cls
59643                 
59644             }, ev.data) , true);
59645             
59646             
59647             cg.on('mouseenter' ,this.onEventEnter, this, ev);
59648             cg.on('mouseleave' ,this.onEventLeave, this, ev);
59649             cg.on('click', this.onEventClick, this, ev);
59650             
59651             ev.els.push(cg);
59652             
59653             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
59654             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
59655             //Roo.log(cg);
59656              
59657             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
59658             cg.setWidth(ebox.right - sbox.x -2);
59659         }
59660     },
59661     
59662     renderEvents: function()
59663     {   
59664         // first make sure there is enough space..
59665         
59666         if (!this.eventTmpl) {
59667             this.eventTmpl = new Roo.Template(
59668                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
59669                     '<div class="fc-event-inner">' +
59670                         '<span class="fc-event-time">{time}</span>' +
59671                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
59672                     '</div>' +
59673                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
59674                 '</div>'
59675             );
59676                 
59677         }
59678                
59679         
59680         
59681         this.cells.each(function(c) {
59682             //Roo.log(c.select('.fc-day-content div',true).first());
59683             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
59684         });
59685         
59686         var ctr = this.view.el.select('.fc-event-container',true).first();
59687         
59688         var cls;
59689         this.eventStore.each(function(ev){
59690             
59691             this.renderEvent(ev);
59692              
59693              
59694         }, this);
59695         this.view.layout();
59696         
59697     },
59698     
59699     onEventEnter: function (e, el,event,d) {
59700         this.fireEvent('evententer', this, el, event);
59701     },
59702     
59703     onEventLeave: function (e, el,event,d) {
59704         this.fireEvent('eventleave', this, el, event);
59705     },
59706     
59707     onEventClick: function (e, el,event,d) {
59708         this.fireEvent('eventclick', this, el, event);
59709     },
59710     
59711     onMonthChange: function () {
59712         this.store.load();
59713     },
59714     
59715     onLoad: function () {
59716         
59717         //Roo.log('calendar onload');
59718 //         
59719         if(this.eventStore.getCount() > 0){
59720             
59721            
59722             
59723             this.eventStore.each(function(d){
59724                 
59725                 
59726                 // FIXME..
59727                 var add =   d.data;
59728                 if (typeof(add.end_dt) == 'undefined')  {
59729                     Roo.log("Missing End time in calendar data: ");
59730                     Roo.log(d);
59731                     return;
59732                 }
59733                 if (typeof(add.start_dt) == 'undefined')  {
59734                     Roo.log("Missing Start time in calendar data: ");
59735                     Roo.log(d);
59736                     return;
59737                 }
59738                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
59739                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
59740                 add.id = add.id || d.id;
59741                 add.title = add.title || '??';
59742                 
59743                 this.addItem(d);
59744                 
59745              
59746             },this);
59747         }
59748         
59749         this.renderEvents();
59750     }
59751     
59752
59753 });
59754 /*
59755  grid : {
59756                 xtype: 'Grid',
59757                 xns: Roo.grid,
59758                 listeners : {
59759                     render : function ()
59760                     {
59761                         _this.grid = this;
59762                         
59763                         if (!this.view.el.hasClass('course-timesheet')) {
59764                             this.view.el.addClass('course-timesheet');
59765                         }
59766                         if (this.tsStyle) {
59767                             this.ds.load({});
59768                             return; 
59769                         }
59770                         Roo.log('width');
59771                         Roo.log(_this.grid.view.el.getWidth());
59772                         
59773                         
59774                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
59775                             '.course-timesheet .x-grid-row' : {
59776                                 height: '80px'
59777                             },
59778                             '.x-grid-row td' : {
59779                                 'vertical-align' : 0
59780                             },
59781                             '.course-edit-link' : {
59782                                 'color' : 'blue',
59783                                 'text-overflow' : 'ellipsis',
59784                                 'overflow' : 'hidden',
59785                                 'white-space' : 'nowrap',
59786                                 'cursor' : 'pointer'
59787                             },
59788                             '.sub-link' : {
59789                                 'color' : 'green'
59790                             },
59791                             '.de-act-sup-link' : {
59792                                 'color' : 'purple',
59793                                 'text-decoration' : 'line-through'
59794                             },
59795                             '.de-act-link' : {
59796                                 'color' : 'red',
59797                                 'text-decoration' : 'line-through'
59798                             },
59799                             '.course-timesheet .course-highlight' : {
59800                                 'border-top-style': 'dashed !important',
59801                                 'border-bottom-bottom': 'dashed !important'
59802                             },
59803                             '.course-timesheet .course-item' : {
59804                                 'font-family'   : 'tahoma, arial, helvetica',
59805                                 'font-size'     : '11px',
59806                                 'overflow'      : 'hidden',
59807                                 'padding-left'  : '10px',
59808                                 'padding-right' : '10px',
59809                                 'padding-top' : '10px' 
59810                             }
59811                             
59812                         }, Roo.id());
59813                                 this.ds.load({});
59814                     }
59815                 },
59816                 autoWidth : true,
59817                 monitorWindowResize : false,
59818                 cellrenderer : function(v,x,r)
59819                 {
59820                     return v;
59821                 },
59822                 sm : {
59823                     xtype: 'CellSelectionModel',
59824                     xns: Roo.grid
59825                 },
59826                 dataSource : {
59827                     xtype: 'Store',
59828                     xns: Roo.data,
59829                     listeners : {
59830                         beforeload : function (_self, options)
59831                         {
59832                             options.params = options.params || {};
59833                             options.params._month = _this.monthField.getValue();
59834                             options.params.limit = 9999;
59835                             options.params['sort'] = 'when_dt';    
59836                             options.params['dir'] = 'ASC';    
59837                             this.proxy.loadResponse = this.loadResponse;
59838                             Roo.log("load?");
59839                             //this.addColumns();
59840                         },
59841                         load : function (_self, records, options)
59842                         {
59843                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
59844                                 // if you click on the translation.. you can edit it...
59845                                 var el = Roo.get(this);
59846                                 var id = el.dom.getAttribute('data-id');
59847                                 var d = el.dom.getAttribute('data-date');
59848                                 var t = el.dom.getAttribute('data-time');
59849                                 //var id = this.child('span').dom.textContent;
59850                                 
59851                                 //Roo.log(this);
59852                                 Pman.Dialog.CourseCalendar.show({
59853                                     id : id,
59854                                     when_d : d,
59855                                     when_t : t,
59856                                     productitem_active : id ? 1 : 0
59857                                 }, function() {
59858                                     _this.grid.ds.load({});
59859                                 });
59860                            
59861                            });
59862                            
59863                            _this.panel.fireEvent('resize', [ '', '' ]);
59864                         }
59865                     },
59866                     loadResponse : function(o, success, response){
59867                             // this is overridden on before load..
59868                             
59869                             Roo.log("our code?");       
59870                             //Roo.log(success);
59871                             //Roo.log(response)
59872                             delete this.activeRequest;
59873                             if(!success){
59874                                 this.fireEvent("loadexception", this, o, response);
59875                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
59876                                 return;
59877                             }
59878                             var result;
59879                             try {
59880                                 result = o.reader.read(response);
59881                             }catch(e){
59882                                 Roo.log("load exception?");
59883                                 this.fireEvent("loadexception", this, o, response, e);
59884                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
59885                                 return;
59886                             }
59887                             Roo.log("ready...");        
59888                             // loop through result.records;
59889                             // and set this.tdate[date] = [] << array of records..
59890                             _this.tdata  = {};
59891                             Roo.each(result.records, function(r){
59892                                 //Roo.log(r.data);
59893                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
59894                                     _this.tdata[r.data.when_dt.format('j')] = [];
59895                                 }
59896                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
59897                             });
59898                             
59899                             //Roo.log(_this.tdata);
59900                             
59901                             result.records = [];
59902                             result.totalRecords = 6;
59903                     
59904                             // let's generate some duumy records for the rows.
59905                             //var st = _this.dateField.getValue();
59906                             
59907                             // work out monday..
59908                             //st = st.add(Date.DAY, -1 * st.format('w'));
59909                             
59910                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
59911                             
59912                             var firstOfMonth = date.getFirstDayOfMonth();
59913                             var days = date.getDaysInMonth();
59914                             var d = 1;
59915                             var firstAdded = false;
59916                             for (var i = 0; i < result.totalRecords ; i++) {
59917                                 //var d= st.add(Date.DAY, i);
59918                                 var row = {};
59919                                 var added = 0;
59920                                 for(var w = 0 ; w < 7 ; w++){
59921                                     if(!firstAdded && firstOfMonth != w){
59922                                         continue;
59923                                     }
59924                                     if(d > days){
59925                                         continue;
59926                                     }
59927                                     firstAdded = true;
59928                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
59929                                     row['weekday'+w] = String.format(
59930                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
59931                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
59932                                                     d,
59933                                                     date.format('Y-m-')+dd
59934                                                 );
59935                                     added++;
59936                                     if(typeof(_this.tdata[d]) != 'undefined'){
59937                                         Roo.each(_this.tdata[d], function(r){
59938                                             var is_sub = '';
59939                                             var deactive = '';
59940                                             var id = r.id;
59941                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
59942                                             if(r.parent_id*1>0){
59943                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
59944                                                 id = r.parent_id;
59945                                             }
59946                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
59947                                                 deactive = 'de-act-link';
59948                                             }
59949                                             
59950                                             row['weekday'+w] += String.format(
59951                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
59952                                                     id, //0
59953                                                     r.product_id_name, //1
59954                                                     r.when_dt.format('h:ia'), //2
59955                                                     is_sub, //3
59956                                                     deactive, //4
59957                                                     desc // 5
59958                                             );
59959                                         });
59960                                     }
59961                                     d++;
59962                                 }
59963                                 
59964                                 // only do this if something added..
59965                                 if(added > 0){ 
59966                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
59967                                 }
59968                                 
59969                                 
59970                                 // push it twice. (second one with an hour..
59971                                 
59972                             }
59973                             //Roo.log(result);
59974                             this.fireEvent("load", this, o, o.request.arg);
59975                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
59976                         },
59977                     sortInfo : {field: 'when_dt', direction : 'ASC' },
59978                     proxy : {
59979                         xtype: 'HttpProxy',
59980                         xns: Roo.data,
59981                         method : 'GET',
59982                         url : baseURL + '/Roo/Shop_course.php'
59983                     },
59984                     reader : {
59985                         xtype: 'JsonReader',
59986                         xns: Roo.data,
59987                         id : 'id',
59988                         fields : [
59989                             {
59990                                 'name': 'id',
59991                                 'type': 'int'
59992                             },
59993                             {
59994                                 'name': 'when_dt',
59995                                 'type': 'string'
59996                             },
59997                             {
59998                                 'name': 'end_dt',
59999                                 'type': 'string'
60000                             },
60001                             {
60002                                 'name': 'parent_id',
60003                                 'type': 'int'
60004                             },
60005                             {
60006                                 'name': 'product_id',
60007                                 'type': 'int'
60008                             },
60009                             {
60010                                 'name': 'productitem_id',
60011                                 'type': 'int'
60012                             },
60013                             {
60014                                 'name': 'guid',
60015                                 'type': 'int'
60016                             }
60017                         ]
60018                     }
60019                 },
60020                 toolbar : {
60021                     xtype: 'Toolbar',
60022                     xns: Roo,
60023                     items : [
60024                         {
60025                             xtype: 'Button',
60026                             xns: Roo.Toolbar,
60027                             listeners : {
60028                                 click : function (_self, e)
60029                                 {
60030                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
60031                                     sd.setMonth(sd.getMonth()-1);
60032                                     _this.monthField.setValue(sd.format('Y-m-d'));
60033                                     _this.grid.ds.load({});
60034                                 }
60035                             },
60036                             text : "Back"
60037                         },
60038                         {
60039                             xtype: 'Separator',
60040                             xns: Roo.Toolbar
60041                         },
60042                         {
60043                             xtype: 'MonthField',
60044                             xns: Roo.form,
60045                             listeners : {
60046                                 render : function (_self)
60047                                 {
60048                                     _this.monthField = _self;
60049                                    // _this.monthField.set  today
60050                                 },
60051                                 select : function (combo, date)
60052                                 {
60053                                     _this.grid.ds.load({});
60054                                 }
60055                             },
60056                             value : (function() { return new Date(); })()
60057                         },
60058                         {
60059                             xtype: 'Separator',
60060                             xns: Roo.Toolbar
60061                         },
60062                         {
60063                             xtype: 'TextItem',
60064                             xns: Roo.Toolbar,
60065                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
60066                         },
60067                         {
60068                             xtype: 'Fill',
60069                             xns: Roo.Toolbar
60070                         },
60071                         {
60072                             xtype: 'Button',
60073                             xns: Roo.Toolbar,
60074                             listeners : {
60075                                 click : function (_self, e)
60076                                 {
60077                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
60078                                     sd.setMonth(sd.getMonth()+1);
60079                                     _this.monthField.setValue(sd.format('Y-m-d'));
60080                                     _this.grid.ds.load({});
60081                                 }
60082                             },
60083                             text : "Next"
60084                         }
60085                     ]
60086                 },
60087                  
60088             }
60089         };
60090         
60091         *//*
60092  * Based on:
60093  * Ext JS Library 1.1.1
60094  * Copyright(c) 2006-2007, Ext JS, LLC.
60095  *
60096  * Originally Released Under LGPL - original licence link has changed is not relivant.
60097  *
60098  * Fork - LGPL
60099  * <script type="text/javascript">
60100  */
60101  
60102 /**
60103  * @class Roo.LoadMask
60104  * A simple utility class for generically masking elements while loading data.  If the element being masked has
60105  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
60106  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
60107  * element's UpdateManager load indicator and will be destroyed after the initial load.
60108  * @constructor
60109  * Create a new LoadMask
60110  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
60111  * @param {Object} config The config object
60112  */
60113 Roo.LoadMask = function(el, config){
60114     this.el = Roo.get(el);
60115     Roo.apply(this, config);
60116     if(this.store){
60117         this.store.on('beforeload', this.onBeforeLoad, this);
60118         this.store.on('load', this.onLoad, this);
60119         this.store.on('loadexception', this.onLoadException, this);
60120         this.removeMask = false;
60121     }else{
60122         var um = this.el.getUpdateManager();
60123         um.showLoadIndicator = false; // disable the default indicator
60124         um.on('beforeupdate', this.onBeforeLoad, this);
60125         um.on('update', this.onLoad, this);
60126         um.on('failure', this.onLoad, this);
60127         this.removeMask = true;
60128     }
60129 };
60130
60131 Roo.LoadMask.prototype = {
60132     /**
60133      * @cfg {Boolean} removeMask
60134      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
60135      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
60136      */
60137     /**
60138      * @cfg {String} msg
60139      * The text to display in a centered loading message box (defaults to 'Loading...')
60140      */
60141     msg : 'Loading...',
60142     /**
60143      * @cfg {String} msgCls
60144      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
60145      */
60146     msgCls : 'x-mask-loading',
60147
60148     /**
60149      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
60150      * @type Boolean
60151      */
60152     disabled: false,
60153
60154     /**
60155      * Disables the mask to prevent it from being displayed
60156      */
60157     disable : function(){
60158        this.disabled = true;
60159     },
60160
60161     /**
60162      * Enables the mask so that it can be displayed
60163      */
60164     enable : function(){
60165         this.disabled = false;
60166     },
60167     
60168     onLoadException : function()
60169     {
60170         Roo.log(arguments);
60171         
60172         if (typeof(arguments[3]) != 'undefined') {
60173             Roo.MessageBox.alert("Error loading",arguments[3]);
60174         } 
60175         /*
60176         try {
60177             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
60178                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
60179             }   
60180         } catch(e) {
60181             
60182         }
60183         */
60184     
60185         
60186         
60187         this.el.unmask(this.removeMask);
60188     },
60189     // private
60190     onLoad : function()
60191     {
60192         this.el.unmask(this.removeMask);
60193     },
60194
60195     // private
60196     onBeforeLoad : function(){
60197         if(!this.disabled){
60198             this.el.mask(this.msg, this.msgCls);
60199         }
60200     },
60201
60202     // private
60203     destroy : function(){
60204         if(this.store){
60205             this.store.un('beforeload', this.onBeforeLoad, this);
60206             this.store.un('load', this.onLoad, this);
60207             this.store.un('loadexception', this.onLoadException, this);
60208         }else{
60209             var um = this.el.getUpdateManager();
60210             um.un('beforeupdate', this.onBeforeLoad, this);
60211             um.un('update', this.onLoad, this);
60212             um.un('failure', this.onLoad, this);
60213         }
60214     }
60215 };/*
60216  * Based on:
60217  * Ext JS Library 1.1.1
60218  * Copyright(c) 2006-2007, Ext JS, LLC.
60219  *
60220  * Originally Released Under LGPL - original licence link has changed is not relivant.
60221  *
60222  * Fork - LGPL
60223  * <script type="text/javascript">
60224  */
60225
60226
60227 /**
60228  * @class Roo.XTemplate
60229  * @extends Roo.Template
60230  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
60231 <pre><code>
60232 var t = new Roo.XTemplate(
60233         '&lt;select name="{name}"&gt;',
60234                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
60235         '&lt;/select&gt;'
60236 );
60237  
60238 // then append, applying the master template values
60239  </code></pre>
60240  *
60241  * Supported features:
60242  *
60243  *  Tags:
60244
60245 <pre><code>
60246       {a_variable} - output encoded.
60247       {a_variable.format:("Y-m-d")} - call a method on the variable
60248       {a_variable:raw} - unencoded output
60249       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
60250       {a_variable:this.method_on_template(...)} - call a method on the template object.
60251  
60252 </code></pre>
60253  *  The tpl tag:
60254 <pre><code>
60255         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
60256         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
60257         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
60258         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
60259   
60260         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
60261         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
60262 </code></pre>
60263  *      
60264  */
60265 Roo.XTemplate = function()
60266 {
60267     Roo.XTemplate.superclass.constructor.apply(this, arguments);
60268     if (this.html) {
60269         this.compile();
60270     }
60271 };
60272
60273
60274 Roo.extend(Roo.XTemplate, Roo.Template, {
60275
60276     /**
60277      * The various sub templates
60278      */
60279     tpls : false,
60280     /**
60281      *
60282      * basic tag replacing syntax
60283      * WORD:WORD()
60284      *
60285      * // you can fake an object call by doing this
60286      *  x.t:(test,tesT) 
60287      * 
60288      */
60289     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
60290
60291     /**
60292      * compile the template
60293      *
60294      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
60295      *
60296      */
60297     compile: function()
60298     {
60299         var s = this.html;
60300      
60301         s = ['<tpl>', s, '</tpl>'].join('');
60302     
60303         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
60304             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
60305             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
60306             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
60307             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
60308             m,
60309             id     = 0,
60310             tpls   = [];
60311     
60312         while(true == !!(m = s.match(re))){
60313             var forMatch   = m[0].match(nameRe),
60314                 ifMatch   = m[0].match(ifRe),
60315                 execMatch   = m[0].match(execRe),
60316                 namedMatch   = m[0].match(namedRe),
60317                 
60318                 exp  = null, 
60319                 fn   = null,
60320                 exec = null,
60321                 name = forMatch && forMatch[1] ? forMatch[1] : '';
60322                 
60323             if (ifMatch) {
60324                 // if - puts fn into test..
60325                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
60326                 if(exp){
60327                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
60328                 }
60329             }
60330             
60331             if (execMatch) {
60332                 // exec - calls a function... returns empty if true is  returned.
60333                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
60334                 if(exp){
60335                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
60336                 }
60337             }
60338             
60339             
60340             if (name) {
60341                 // for = 
60342                 switch(name){
60343                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
60344                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
60345                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
60346                 }
60347             }
60348             var uid = namedMatch ? namedMatch[1] : id;
60349             
60350             
60351             tpls.push({
60352                 id:     namedMatch ? namedMatch[1] : id,
60353                 target: name,
60354                 exec:   exec,
60355                 test:   fn,
60356                 body:   m[1] || ''
60357             });
60358             if (namedMatch) {
60359                 s = s.replace(m[0], '');
60360             } else { 
60361                 s = s.replace(m[0], '{xtpl'+ id + '}');
60362             }
60363             ++id;
60364         }
60365         this.tpls = [];
60366         for(var i = tpls.length-1; i >= 0; --i){
60367             this.compileTpl(tpls[i]);
60368             this.tpls[tpls[i].id] = tpls[i];
60369         }
60370         this.master = tpls[tpls.length-1];
60371         return this;
60372     },
60373     /**
60374      * same as applyTemplate, except it's done to one of the subTemplates
60375      * when using named templates, you can do:
60376      *
60377      * var str = pl.applySubTemplate('your-name', values);
60378      *
60379      * 
60380      * @param {Number} id of the template
60381      * @param {Object} values to apply to template
60382      * @param {Object} parent (normaly the instance of this object)
60383      */
60384     applySubTemplate : function(id, values, parent)
60385     {
60386         
60387         
60388         var t = this.tpls[id];
60389         
60390         
60391         try { 
60392             if(t.test && !t.test.call(this, values, parent)){
60393                 return '';
60394             }
60395         } catch(e) {
60396             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
60397             Roo.log(e.toString());
60398             Roo.log(t.test);
60399             return ''
60400         }
60401         try { 
60402             
60403             if(t.exec && t.exec.call(this, values, parent)){
60404                 return '';
60405             }
60406         } catch(e) {
60407             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
60408             Roo.log(e.toString());
60409             Roo.log(t.exec);
60410             return ''
60411         }
60412         try {
60413             var vs = t.target ? t.target.call(this, values, parent) : values;
60414             parent = t.target ? values : parent;
60415             if(t.target && vs instanceof Array){
60416                 var buf = [];
60417                 for(var i = 0, len = vs.length; i < len; i++){
60418                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
60419                 }
60420                 return buf.join('');
60421             }
60422             return t.compiled.call(this, vs, parent);
60423         } catch (e) {
60424             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
60425             Roo.log(e.toString());
60426             Roo.log(t.compiled);
60427             return '';
60428         }
60429     },
60430
60431     compileTpl : function(tpl)
60432     {
60433         var fm = Roo.util.Format;
60434         var useF = this.disableFormats !== true;
60435         var sep = Roo.isGecko ? "+" : ",";
60436         var undef = function(str) {
60437             Roo.log("Property not found :"  + str);
60438             return '';
60439         };
60440         
60441         var fn = function(m, name, format, args)
60442         {
60443             //Roo.log(arguments);
60444             args = args ? args.replace(/\\'/g,"'") : args;
60445             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
60446             if (typeof(format) == 'undefined') {
60447                 format= 'htmlEncode';
60448             }
60449             if (format == 'raw' ) {
60450                 format = false;
60451             }
60452             
60453             if(name.substr(0, 4) == 'xtpl'){
60454                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
60455             }
60456             
60457             // build an array of options to determine if value is undefined..
60458             
60459             // basically get 'xxxx.yyyy' then do
60460             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
60461             //    (function () { Roo.log("Property not found"); return ''; })() :
60462             //    ......
60463             
60464             var udef_ar = [];
60465             var lookfor = '';
60466             Roo.each(name.split('.'), function(st) {
60467                 lookfor += (lookfor.length ? '.': '') + st;
60468                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
60469             });
60470             
60471             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
60472             
60473             
60474             if(format && useF){
60475                 
60476                 args = args ? ',' + args : "";
60477                  
60478                 if(format.substr(0, 5) != "this."){
60479                     format = "fm." + format + '(';
60480                 }else{
60481                     format = 'this.call("'+ format.substr(5) + '", ';
60482                     args = ", values";
60483                 }
60484                 
60485                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
60486             }
60487              
60488             if (args.length) {
60489                 // called with xxyx.yuu:(test,test)
60490                 // change to ()
60491                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
60492             }
60493             // raw.. - :raw modifier..
60494             return "'"+ sep + udef_st  + name + ")"+sep+"'";
60495             
60496         };
60497         var body;
60498         // branched to use + in gecko and [].join() in others
60499         if(Roo.isGecko){
60500             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
60501                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
60502                     "';};};";
60503         }else{
60504             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
60505             body.push(tpl.body.replace(/(\r\n|\n)/g,
60506                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
60507             body.push("'].join('');};};");
60508             body = body.join('');
60509         }
60510         
60511         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
60512        
60513         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
60514         eval(body);
60515         
60516         return this;
60517     },
60518
60519     applyTemplate : function(values){
60520         return this.master.compiled.call(this, values, {});
60521         //var s = this.subs;
60522     },
60523
60524     apply : function(){
60525         return this.applyTemplate.apply(this, arguments);
60526     }
60527
60528  });
60529
60530 Roo.XTemplate.from = function(el){
60531     el = Roo.getDom(el);
60532     return new Roo.XTemplate(el.value || el.innerHTML);
60533 };