1ba254dcce1cb12d4cdcac974e86fb2d55cd4d77
[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         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         }
672         
673     });
674
675
676 })();
677
678 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
679                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
680                 "Roo.app", "Roo.ux",
681                 "Roo.bootstrap",
682                 "Roo.bootstrap.dash");
683 /*
684  * Based on:
685  * Ext JS Library 1.1.1
686  * Copyright(c) 2006-2007, Ext JS, LLC.
687  *
688  * Originally Released Under LGPL - original licence link has changed is not relivant.
689  *
690  * Fork - LGPL
691  * <script type="text/javascript">
692  */
693
694 (function() {    
695     // wrappedn so fnCleanup is not in global scope...
696     if(Roo.isIE) {
697         function fnCleanUp() {
698             var p = Function.prototype;
699             delete p.createSequence;
700             delete p.defer;
701             delete p.createDelegate;
702             delete p.createCallback;
703             delete p.createInterceptor;
704
705             window.detachEvent("onunload", fnCleanUp);
706         }
707         window.attachEvent("onunload", fnCleanUp);
708     }
709 })();
710
711
712 /**
713  * @class Function
714  * These functions are available on every Function object (any JavaScript function).
715  */
716 Roo.apply(Function.prototype, {
717      /**
718      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
719      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
720      * Will create a function that is bound to those 2 args.
721      * @return {Function} The new function
722     */
723     createCallback : function(/*args...*/){
724         // make args available, in function below
725         var args = arguments;
726         var method = this;
727         return function() {
728             return method.apply(window, args);
729         };
730     },
731
732     /**
733      * Creates a delegate (callback) that sets the scope to obj.
734      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
735      * Will create a function that is automatically scoped to this.
736      * @param {Object} obj (optional) The object for which the scope is set
737      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
738      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
739      *                                             if a number the args are inserted at the specified position
740      * @return {Function} The new function
741      */
742     createDelegate : function(obj, args, appendArgs){
743         var method = this;
744         return function() {
745             var callArgs = args || arguments;
746             if(appendArgs === true){
747                 callArgs = Array.prototype.slice.call(arguments, 0);
748                 callArgs = callArgs.concat(args);
749             }else if(typeof appendArgs == "number"){
750                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
751                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
752                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
753             }
754             return method.apply(obj || window, callArgs);
755         };
756     },
757
758     /**
759      * Calls this function after the number of millseconds specified.
760      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
761      * @param {Object} obj (optional) The object for which the scope is set
762      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
763      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
764      *                                             if a number the args are inserted at the specified position
765      * @return {Number} The timeout id that can be used with clearTimeout
766      */
767     defer : function(millis, obj, args, appendArgs){
768         var fn = this.createDelegate(obj, args, appendArgs);
769         if(millis){
770             return setTimeout(fn, millis);
771         }
772         fn();
773         return 0;
774     },
775     /**
776      * Create a combined function call sequence of the original function + the passed function.
777      * The resulting function returns the results of the original function.
778      * The passed fcn is called with the parameters of the original function
779      * @param {Function} fcn The function to sequence
780      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
781      * @return {Function} The new function
782      */
783     createSequence : function(fcn, scope){
784         if(typeof fcn != "function"){
785             return this;
786         }
787         var method = this;
788         return function() {
789             var retval = method.apply(this || window, arguments);
790             fcn.apply(scope || this || window, arguments);
791             return retval;
792         };
793     },
794
795     /**
796      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
797      * The resulting function returns the results of the original function.
798      * The passed fcn is called with the parameters of the original function.
799      * @addon
800      * @param {Function} fcn The function to call before the original
801      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
802      * @return {Function} The new function
803      */
804     createInterceptor : function(fcn, scope){
805         if(typeof fcn != "function"){
806             return this;
807         }
808         var method = this;
809         return function() {
810             fcn.target = this;
811             fcn.method = method;
812             if(fcn.apply(scope || this || window, arguments) === false){
813                 return;
814             }
815             return method.apply(this || window, arguments);
816         };
817     }
818 });
819 /*
820  * Based on:
821  * Ext JS Library 1.1.1
822  * Copyright(c) 2006-2007, Ext JS, LLC.
823  *
824  * Originally Released Under LGPL - original licence link has changed is not relivant.
825  *
826  * Fork - LGPL
827  * <script type="text/javascript">
828  */
829
830 Roo.applyIf(String, {
831     
832     /** @scope String */
833     
834     /**
835      * Escapes the passed string for ' and \
836      * @param {String} string The string to escape
837      * @return {String} The escaped string
838      * @static
839      */
840     escape : function(string) {
841         return string.replace(/('|\\)/g, "\\$1");
842     },
843
844     /**
845      * Pads the left side of a string with a specified character.  This is especially useful
846      * for normalizing number and date strings.  Example usage:
847      * <pre><code>
848 var s = String.leftPad('123', 5, '0');
849 // s now contains the string: '00123'
850 </code></pre>
851      * @param {String} string The original string
852      * @param {Number} size The total length of the output string
853      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
854      * @return {String} The padded string
855      * @static
856      */
857     leftPad : function (val, size, ch) {
858         var result = new String(val);
859         if(ch === null || ch === undefined || ch === '') {
860             ch = " ";
861         }
862         while (result.length < size) {
863             result = ch + result;
864         }
865         return result;
866     },
867
868     /**
869      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
870      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
871      * <pre><code>
872 var cls = 'my-class', text = 'Some text';
873 var s = String.format('<div class="{0}">{1}</div>', cls, text);
874 // s now contains the string: '<div class="my-class">Some text</div>'
875 </code></pre>
876      * @param {String} string The tokenized string to be formatted
877      * @param {String} value1 The value to replace token {0}
878      * @param {String} value2 Etc...
879      * @return {String} The formatted string
880      * @static
881      */
882     format : function(format){
883         var args = Array.prototype.slice.call(arguments, 1);
884         return format.replace(/\{(\d+)\}/g, function(m, i){
885             return Roo.util.Format.htmlEncode(args[i]);
886         });
887     }
888   
889     
890 });
891
892 /**
893  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
894  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
895  * they are already different, the first value passed in is returned.  Note that this method returns the new value
896  * but does not change the current string.
897  * <pre><code>
898 // alternate sort directions
899 sort = sort.toggle('ASC', 'DESC');
900
901 // instead of conditional logic:
902 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
903 </code></pre>
904  * @param {String} value The value to compare to the current string
905  * @param {String} other The new value to use if the string already equals the first value passed in
906  * @return {String} The new value
907  */
908  
909 String.prototype.toggle = function(value, other){
910     return this == value ? other : value;
911 };
912
913
914 /**
915   * Remove invalid unicode characters from a string 
916   *
917   * @return {String} The clean string
918   */
919 String.prototype.unicodeClean = function () {
920     return this.replace(/[\s\S]/g,
921         function(character) {
922             if (character.charCodeAt()< 256) {
923               return character;
924            }
925            try {
926                 encodeURIComponent(character);
927            } catch(e) { 
928               return '';
929            }
930            return character;
931         }
932     );
933 };
934   
935 /*
936  * Based on:
937  * Ext JS Library 1.1.1
938  * Copyright(c) 2006-2007, Ext JS, LLC.
939  *
940  * Originally Released Under LGPL - original licence link has changed is not relivant.
941  *
942  * Fork - LGPL
943  * <script type="text/javascript">
944  */
945
946  /**
947  * @class Number
948  */
949 Roo.applyIf(Number.prototype, {
950     /**
951      * Checks whether or not the current number is within a desired range.  If the number is already within the
952      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
953      * exceeded.  Note that this method returns the constrained value but does not change the current number.
954      * @param {Number} min The minimum number in the range
955      * @param {Number} max The maximum number in the range
956      * @return {Number} The constrained value if outside the range, otherwise the current value
957      */
958     constrain : function(min, max){
959         return Math.min(Math.max(this, min), max);
960     }
961 });/*
962  * Based on:
963  * Ext JS Library 1.1.1
964  * Copyright(c) 2006-2007, Ext JS, LLC.
965  *
966  * Originally Released Under LGPL - original licence link has changed is not relivant.
967  *
968  * Fork - LGPL
969  * <script type="text/javascript">
970  */
971  /**
972  * @class Array
973  */
974 Roo.applyIf(Array.prototype, {
975     /**
976      * 
977      * Checks whether or not the specified object exists in the array.
978      * @param {Object} o The object to check for
979      * @return {Number} The index of o in the array (or -1 if it is not found)
980      */
981     indexOf : function(o){
982        for (var i = 0, len = this.length; i < len; i++){
983               if(this[i] == o) { return i; }
984        }
985            return -1;
986     },
987
988     /**
989      * Removes the specified object from the array.  If the object is not found nothing happens.
990      * @param {Object} o The object to remove
991      */
992     remove : function(o){
993        var index = this.indexOf(o);
994        if(index != -1){
995            this.splice(index, 1);
996        }
997     },
998     /**
999      * Map (JS 1.6 compatibility)
1000      * @param {Function} function  to call
1001      */
1002     map : function(fun )
1003     {
1004         var len = this.length >>> 0;
1005         if (typeof fun != "function") {
1006             throw new TypeError();
1007         }
1008         var res = new Array(len);
1009         var thisp = arguments[1];
1010         for (var i = 0; i < len; i++)
1011         {
1012             if (i in this) {
1013                 res[i] = fun.call(thisp, this[i], i, this);
1014             }
1015         }
1016
1017         return res;
1018     }
1019     
1020 });
1021
1022
1023  
1024 /*
1025  * Based on:
1026  * Ext JS Library 1.1.1
1027  * Copyright(c) 2006-2007, Ext JS, LLC.
1028  *
1029  * Originally Released Under LGPL - original licence link has changed is not relivant.
1030  *
1031  * Fork - LGPL
1032  * <script type="text/javascript">
1033  */
1034
1035 /**
1036  * @class Date
1037  *
1038  * The date parsing and format syntax is a subset of
1039  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1040  * supported will provide results equivalent to their PHP versions.
1041  *
1042  * Following is the list of all currently supported formats:
1043  *<pre>
1044 Sample date:
1045 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1046
1047 Format  Output      Description
1048 ------  ----------  --------------------------------------------------------------
1049   d      10         Day of the month, 2 digits with leading zeros
1050   D      Wed        A textual representation of a day, three letters
1051   j      10         Day of the month without leading zeros
1052   l      Wednesday  A full textual representation of the day of the week
1053   S      th         English ordinal day of month suffix, 2 chars (use with j)
1054   w      3          Numeric representation of the day of the week
1055   z      9          The julian date, or day of the year (0-365)
1056   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1057   F      January    A full textual representation of the month
1058   m      01         Numeric representation of a month, with leading zeros
1059   M      Jan        Month name abbreviation, three letters
1060   n      1          Numeric representation of a month, without leading zeros
1061   t      31         Number of days in the given month
1062   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1063   Y      2007       A full numeric representation of a year, 4 digits
1064   y      07         A two digit representation of a year
1065   a      pm         Lowercase Ante meridiem and Post meridiem
1066   A      PM         Uppercase Ante meridiem and Post meridiem
1067   g      3          12-hour format of an hour without leading zeros
1068   G      15         24-hour format of an hour without leading zeros
1069   h      03         12-hour format of an hour with leading zeros
1070   H      15         24-hour format of an hour with leading zeros
1071   i      05         Minutes with leading zeros
1072   s      01         Seconds, with leading zeros
1073   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1074   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1075   T      CST        Timezone setting of the machine running the code
1076   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1077 </pre>
1078  *
1079  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1080  * <pre><code>
1081 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1082 document.write(dt.format('Y-m-d'));                         //2007-01-10
1083 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1084 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
1085  </code></pre>
1086  *
1087  * Here are some standard date/time patterns that you might find helpful.  They
1088  * are not part of the source of Date.js, but to use them you can simply copy this
1089  * block of code into any script that is included after Date.js and they will also become
1090  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1091  * <pre><code>
1092 Date.patterns = {
1093     ISO8601Long:"Y-m-d H:i:s",
1094     ISO8601Short:"Y-m-d",
1095     ShortDate: "n/j/Y",
1096     LongDate: "l, F d, Y",
1097     FullDateTime: "l, F d, Y g:i:s A",
1098     MonthDay: "F d",
1099     ShortTime: "g:i A",
1100     LongTime: "g:i:s A",
1101     SortableDateTime: "Y-m-d\\TH:i:s",
1102     UniversalSortableDateTime: "Y-m-d H:i:sO",
1103     YearMonth: "F, Y"
1104 };
1105 </code></pre>
1106  *
1107  * Example usage:
1108  * <pre><code>
1109 var dt = new Date();
1110 document.write(dt.format(Date.patterns.ShortDate));
1111  </code></pre>
1112  */
1113
1114 /*
1115  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1116  * They generate precompiled functions from date formats instead of parsing and
1117  * processing the pattern every time you format a date.  These functions are available
1118  * on every Date object (any javascript function).
1119  *
1120  * The original article and download are here:
1121  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1122  *
1123  */
1124  
1125  
1126  // was in core
1127 /**
1128  Returns the number of milliseconds between this date and date
1129  @param {Date} date (optional) Defaults to now
1130  @return {Number} The diff in milliseconds
1131  @member Date getElapsed
1132  */
1133 Date.prototype.getElapsed = function(date) {
1134         return Math.abs((date || new Date()).getTime()-this.getTime());
1135 };
1136 // was in date file..
1137
1138
1139 // private
1140 Date.parseFunctions = {count:0};
1141 // private
1142 Date.parseRegexes = [];
1143 // private
1144 Date.formatFunctions = {count:0};
1145
1146 // private
1147 Date.prototype.dateFormat = function(format) {
1148     if (Date.formatFunctions[format] == null) {
1149         Date.createNewFormat(format);
1150     }
1151     var func = Date.formatFunctions[format];
1152     return this[func]();
1153 };
1154
1155
1156 /**
1157  * Formats a date given the supplied format string
1158  * @param {String} format The format string
1159  * @return {String} The formatted date
1160  * @method
1161  */
1162 Date.prototype.format = Date.prototype.dateFormat;
1163
1164 // private
1165 Date.createNewFormat = function(format) {
1166     var funcName = "format" + Date.formatFunctions.count++;
1167     Date.formatFunctions[format] = funcName;
1168     var code = "Date.prototype." + funcName + " = function(){return ";
1169     var special = false;
1170     var ch = '';
1171     for (var i = 0; i < format.length; ++i) {
1172         ch = format.charAt(i);
1173         if (!special && ch == "\\") {
1174             special = true;
1175         }
1176         else if (special) {
1177             special = false;
1178             code += "'" + String.escape(ch) + "' + ";
1179         }
1180         else {
1181             code += Date.getFormatCode(ch);
1182         }
1183     }
1184     /** eval:var:zzzzzzzzzzzzz */
1185     eval(code.substring(0, code.length - 3) + ";}");
1186 };
1187
1188 // private
1189 Date.getFormatCode = function(character) {
1190     switch (character) {
1191     case "d":
1192         return "String.leftPad(this.getDate(), 2, '0') + ";
1193     case "D":
1194         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1195     case "j":
1196         return "this.getDate() + ";
1197     case "l":
1198         return "Date.dayNames[this.getDay()] + ";
1199     case "S":
1200         return "this.getSuffix() + ";
1201     case "w":
1202         return "this.getDay() + ";
1203     case "z":
1204         return "this.getDayOfYear() + ";
1205     case "W":
1206         return "this.getWeekOfYear() + ";
1207     case "F":
1208         return "Date.monthNames[this.getMonth()] + ";
1209     case "m":
1210         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1211     case "M":
1212         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1213     case "n":
1214         return "(this.getMonth() + 1) + ";
1215     case "t":
1216         return "this.getDaysInMonth() + ";
1217     case "L":
1218         return "(this.isLeapYear() ? 1 : 0) + ";
1219     case "Y":
1220         return "this.getFullYear() + ";
1221     case "y":
1222         return "('' + this.getFullYear()).substring(2, 4) + ";
1223     case "a":
1224         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1225     case "A":
1226         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1227     case "g":
1228         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1229     case "G":
1230         return "this.getHours() + ";
1231     case "h":
1232         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1233     case "H":
1234         return "String.leftPad(this.getHours(), 2, '0') + ";
1235     case "i":
1236         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1237     case "s":
1238         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1239     case "O":
1240         return "this.getGMTOffset() + ";
1241     case "P":
1242         return "this.getGMTColonOffset() + ";
1243     case "T":
1244         return "this.getTimezone() + ";
1245     case "Z":
1246         return "(this.getTimezoneOffset() * -60) + ";
1247     default:
1248         return "'" + String.escape(character) + "' + ";
1249     }
1250 };
1251
1252 /**
1253  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1254  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1255  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1256  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1257  * string or the parse operation will fail.
1258  * Example Usage:
1259 <pre><code>
1260 //dt = Fri May 25 2007 (current date)
1261 var dt = new Date();
1262
1263 //dt = Thu May 25 2006 (today's month/day in 2006)
1264 dt = Date.parseDate("2006", "Y");
1265
1266 //dt = Sun Jan 15 2006 (all date parts specified)
1267 dt = Date.parseDate("2006-1-15", "Y-m-d");
1268
1269 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1270 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1271 </code></pre>
1272  * @param {String} input The unparsed date as a string
1273  * @param {String} format The format the date is in
1274  * @return {Date} The parsed date
1275  * @static
1276  */
1277 Date.parseDate = function(input, format) {
1278     if (Date.parseFunctions[format] == null) {
1279         Date.createParser(format);
1280     }
1281     var func = Date.parseFunctions[format];
1282     return Date[func](input);
1283 };
1284 /**
1285  * @private
1286  */
1287
1288 Date.createParser = function(format) {
1289     var funcName = "parse" + Date.parseFunctions.count++;
1290     var regexNum = Date.parseRegexes.length;
1291     var currentGroup = 1;
1292     Date.parseFunctions[format] = funcName;
1293
1294     var code = "Date." + funcName + " = function(input){\n"
1295         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1296         + "var d = new Date();\n"
1297         + "y = d.getFullYear();\n"
1298         + "m = d.getMonth();\n"
1299         + "d = d.getDate();\n"
1300         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1301         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1302         + "if (results && results.length > 0) {";
1303     var regex = "";
1304
1305     var special = false;
1306     var ch = '';
1307     for (var i = 0; i < format.length; ++i) {
1308         ch = format.charAt(i);
1309         if (!special && ch == "\\") {
1310             special = true;
1311         }
1312         else if (special) {
1313             special = false;
1314             regex += String.escape(ch);
1315         }
1316         else {
1317             var obj = Date.formatCodeToRegex(ch, currentGroup);
1318             currentGroup += obj.g;
1319             regex += obj.s;
1320             if (obj.g && obj.c) {
1321                 code += obj.c;
1322             }
1323         }
1324     }
1325
1326     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1327         + "{v = new Date(y, m, d, h, i, s);}\n"
1328         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1329         + "{v = new Date(y, m, d, h, i);}\n"
1330         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1331         + "{v = new Date(y, m, d, h);}\n"
1332         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1333         + "{v = new Date(y, m, d);}\n"
1334         + "else if (y >= 0 && m >= 0)\n"
1335         + "{v = new Date(y, m);}\n"
1336         + "else if (y >= 0)\n"
1337         + "{v = new Date(y);}\n"
1338         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1339         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1340         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1341         + ";}";
1342
1343     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1344     /** eval:var:zzzzzzzzzzzzz */
1345     eval(code);
1346 };
1347
1348 // private
1349 Date.formatCodeToRegex = function(character, currentGroup) {
1350     switch (character) {
1351     case "D":
1352         return {g:0,
1353         c:null,
1354         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1355     case "j":
1356         return {g:1,
1357             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1358             s:"(\\d{1,2})"}; // day of month without leading zeroes
1359     case "d":
1360         return {g:1,
1361             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1362             s:"(\\d{2})"}; // day of month with leading zeroes
1363     case "l":
1364         return {g:0,
1365             c:null,
1366             s:"(?:" + Date.dayNames.join("|") + ")"};
1367     case "S":
1368         return {g:0,
1369             c:null,
1370             s:"(?:st|nd|rd|th)"};
1371     case "w":
1372         return {g:0,
1373             c:null,
1374             s:"\\d"};
1375     case "z":
1376         return {g:0,
1377             c:null,
1378             s:"(?:\\d{1,3})"};
1379     case "W":
1380         return {g:0,
1381             c:null,
1382             s:"(?:\\d{2})"};
1383     case "F":
1384         return {g:1,
1385             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1386             s:"(" + Date.monthNames.join("|") + ")"};
1387     case "M":
1388         return {g:1,
1389             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1390             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1391     case "n":
1392         return {g:1,
1393             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1394             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1395     case "m":
1396         return {g:1,
1397             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1398             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1399     case "t":
1400         return {g:0,
1401             c:null,
1402             s:"\\d{1,2}"};
1403     case "L":
1404         return {g:0,
1405             c:null,
1406             s:"(?:1|0)"};
1407     case "Y":
1408         return {g:1,
1409             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1410             s:"(\\d{4})"};
1411     case "y":
1412         return {g:1,
1413             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1414                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1415             s:"(\\d{1,2})"};
1416     case "a":
1417         return {g:1,
1418             c:"if (results[" + currentGroup + "] == 'am') {\n"
1419                 + "if (h == 12) { h = 0; }\n"
1420                 + "} else { if (h < 12) { h += 12; }}",
1421             s:"(am|pm)"};
1422     case "A":
1423         return {g:1,
1424             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1425                 + "if (h == 12) { h = 0; }\n"
1426                 + "} else { if (h < 12) { h += 12; }}",
1427             s:"(AM|PM)"};
1428     case "g":
1429     case "G":
1430         return {g:1,
1431             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1432             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1433     case "h":
1434     case "H":
1435         return {g:1,
1436             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1437             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1438     case "i":
1439         return {g:1,
1440             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1441             s:"(\\d{2})"};
1442     case "s":
1443         return {g:1,
1444             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1445             s:"(\\d{2})"};
1446     case "O":
1447         return {g:1,
1448             c:[
1449                 "o = results[", currentGroup, "];\n",
1450                 "var sn = o.substring(0,1);\n", // get + / - sign
1451                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1452                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1453                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1454                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1455             ].join(""),
1456             s:"([+\-]\\d{2,4})"};
1457     
1458     
1459     case "P":
1460         return {g:1,
1461                 c:[
1462                    "o = results[", currentGroup, "];\n",
1463                    "var sn = o.substring(0,1);\n",
1464                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1465                    "var mn = o.substring(4,6) % 60;\n",
1466                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1467                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1468             ].join(""),
1469             s:"([+\-]\\d{4})"};
1470     case "T":
1471         return {g:0,
1472             c:null,
1473             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1474     case "Z":
1475         return {g:1,
1476             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1477                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1478             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1479     default:
1480         return {g:0,
1481             c:null,
1482             s:String.escape(character)};
1483     }
1484 };
1485
1486 /**
1487  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1488  * @return {String} The abbreviated timezone name (e.g. 'CST')
1489  */
1490 Date.prototype.getTimezone = function() {
1491     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1492 };
1493
1494 /**
1495  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1496  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1497  */
1498 Date.prototype.getGMTOffset = function() {
1499     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1500         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1501         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1502 };
1503
1504 /**
1505  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1506  * @return {String} 2-characters representing hours and 2-characters representing minutes
1507  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1508  */
1509 Date.prototype.getGMTColonOffset = function() {
1510         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1511                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1512                 + ":"
1513                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1514 }
1515
1516 /**
1517  * Get the numeric day number of the year, adjusted for leap year.
1518  * @return {Number} 0 through 364 (365 in leap years)
1519  */
1520 Date.prototype.getDayOfYear = function() {
1521     var num = 0;
1522     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1523     for (var i = 0; i < this.getMonth(); ++i) {
1524         num += Date.daysInMonth[i];
1525     }
1526     return num + this.getDate() - 1;
1527 };
1528
1529 /**
1530  * Get the string representation of the numeric week number of the year
1531  * (equivalent to the format specifier 'W').
1532  * @return {String} '00' through '52'
1533  */
1534 Date.prototype.getWeekOfYear = function() {
1535     // Skip to Thursday of this week
1536     var now = this.getDayOfYear() + (4 - this.getDay());
1537     // Find the first Thursday of the year
1538     var jan1 = new Date(this.getFullYear(), 0, 1);
1539     var then = (7 - jan1.getDay() + 4);
1540     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1541 };
1542
1543 /**
1544  * Whether or not the current date is in a leap year.
1545  * @return {Boolean} True if the current date is in a leap year, else false
1546  */
1547 Date.prototype.isLeapYear = function() {
1548     var year = this.getFullYear();
1549     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1550 };
1551
1552 /**
1553  * Get the first day of the current month, adjusted for leap year.  The returned value
1554  * is the numeric day index within the week (0-6) which can be used in conjunction with
1555  * the {@link #monthNames} array to retrieve the textual day name.
1556  * Example:
1557  *<pre><code>
1558 var dt = new Date('1/10/2007');
1559 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1560 </code></pre>
1561  * @return {Number} The day number (0-6)
1562  */
1563 Date.prototype.getFirstDayOfMonth = function() {
1564     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1565     return (day < 0) ? (day + 7) : day;
1566 };
1567
1568 /**
1569  * Get the last day of the current month, adjusted for leap year.  The returned value
1570  * is the numeric day index within the week (0-6) which can be used in conjunction with
1571  * the {@link #monthNames} array to retrieve the textual day name.
1572  * Example:
1573  *<pre><code>
1574 var dt = new Date('1/10/2007');
1575 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1576 </code></pre>
1577  * @return {Number} The day number (0-6)
1578  */
1579 Date.prototype.getLastDayOfMonth = function() {
1580     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1581     return (day < 0) ? (day + 7) : day;
1582 };
1583
1584
1585 /**
1586  * Get the first date of this date's month
1587  * @return {Date}
1588  */
1589 Date.prototype.getFirstDateOfMonth = function() {
1590     return new Date(this.getFullYear(), this.getMonth(), 1);
1591 };
1592
1593 /**
1594  * Get the last date of this date's month
1595  * @return {Date}
1596  */
1597 Date.prototype.getLastDateOfMonth = function() {
1598     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1599 };
1600 /**
1601  * Get the number of days in the current month, adjusted for leap year.
1602  * @return {Number} The number of days in the month
1603  */
1604 Date.prototype.getDaysInMonth = function() {
1605     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1606     return Date.daysInMonth[this.getMonth()];
1607 };
1608
1609 /**
1610  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1611  * @return {String} 'st, 'nd', 'rd' or 'th'
1612  */
1613 Date.prototype.getSuffix = function() {
1614     switch (this.getDate()) {
1615         case 1:
1616         case 21:
1617         case 31:
1618             return "st";
1619         case 2:
1620         case 22:
1621             return "nd";
1622         case 3:
1623         case 23:
1624             return "rd";
1625         default:
1626             return "th";
1627     }
1628 };
1629
1630 // private
1631 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1632
1633 /**
1634  * An array of textual month names.
1635  * Override these values for international dates, for example...
1636  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1637  * @type Array
1638  * @static
1639  */
1640 Date.monthNames =
1641    ["January",
1642     "February",
1643     "March",
1644     "April",
1645     "May",
1646     "June",
1647     "July",
1648     "August",
1649     "September",
1650     "October",
1651     "November",
1652     "December"];
1653
1654 /**
1655  * An array of textual day names.
1656  * Override these values for international dates, for example...
1657  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1658  * @type Array
1659  * @static
1660  */
1661 Date.dayNames =
1662    ["Sunday",
1663     "Monday",
1664     "Tuesday",
1665     "Wednesday",
1666     "Thursday",
1667     "Friday",
1668     "Saturday"];
1669
1670 // private
1671 Date.y2kYear = 50;
1672 // private
1673 Date.monthNumbers = {
1674     Jan:0,
1675     Feb:1,
1676     Mar:2,
1677     Apr:3,
1678     May:4,
1679     Jun:5,
1680     Jul:6,
1681     Aug:7,
1682     Sep:8,
1683     Oct:9,
1684     Nov:10,
1685     Dec:11};
1686
1687 /**
1688  * Creates and returns a new Date instance with the exact same date value as the called instance.
1689  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1690  * variable will also be changed.  When the intention is to create a new variable that will not
1691  * modify the original instance, you should create a clone.
1692  *
1693  * Example of correctly cloning a date:
1694  * <pre><code>
1695 //wrong way:
1696 var orig = new Date('10/1/2006');
1697 var copy = orig;
1698 copy.setDate(5);
1699 document.write(orig);  //returns 'Thu Oct 05 2006'!
1700
1701 //correct way:
1702 var orig = new Date('10/1/2006');
1703 var copy = orig.clone();
1704 copy.setDate(5);
1705 document.write(orig);  //returns 'Thu Oct 01 2006'
1706 </code></pre>
1707  * @return {Date} The new Date instance
1708  */
1709 Date.prototype.clone = function() {
1710         return new Date(this.getTime());
1711 };
1712
1713 /**
1714  * Clears any time information from this date
1715  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1716  @return {Date} this or the clone
1717  */
1718 Date.prototype.clearTime = function(clone){
1719     if(clone){
1720         return this.clone().clearTime();
1721     }
1722     this.setHours(0);
1723     this.setMinutes(0);
1724     this.setSeconds(0);
1725     this.setMilliseconds(0);
1726     return this;
1727 };
1728
1729 // private
1730 // safari setMonth is broken -- check that this is only donw once...
1731 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1732     Date.brokenSetMonth = Date.prototype.setMonth;
1733         Date.prototype.setMonth = function(num){
1734                 if(num <= -1){
1735                         var n = Math.ceil(-num);
1736                         var back_year = Math.ceil(n/12);
1737                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1738                         this.setFullYear(this.getFullYear() - back_year);
1739                         return Date.brokenSetMonth.call(this, month);
1740                 } else {
1741                         return Date.brokenSetMonth.apply(this, arguments);
1742                 }
1743         };
1744 }
1745
1746 /** Date interval constant 
1747 * @static 
1748 * @type String */
1749 Date.MILLI = "ms";
1750 /** Date interval constant 
1751 * @static 
1752 * @type String */
1753 Date.SECOND = "s";
1754 /** Date interval constant 
1755 * @static 
1756 * @type String */
1757 Date.MINUTE = "mi";
1758 /** Date interval constant 
1759 * @static 
1760 * @type String */
1761 Date.HOUR = "h";
1762 /** Date interval constant 
1763 * @static 
1764 * @type String */
1765 Date.DAY = "d";
1766 /** Date interval constant 
1767 * @static 
1768 * @type String */
1769 Date.MONTH = "mo";
1770 /** Date interval constant 
1771 * @static 
1772 * @type String */
1773 Date.YEAR = "y";
1774
1775 /**
1776  * Provides a convenient method of performing basic date arithmetic.  This method
1777  * does not modify the Date instance being called - it creates and returns
1778  * a new Date instance containing the resulting date value.
1779  *
1780  * Examples:
1781  * <pre><code>
1782 //Basic usage:
1783 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1784 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1785
1786 //Negative values will subtract correctly:
1787 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1788 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1789
1790 //You can even chain several calls together in one line!
1791 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1792 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1793  </code></pre>
1794  *
1795  * @param {String} interval   A valid date interval enum value
1796  * @param {Number} value      The amount to add to the current date
1797  * @return {Date} The new Date instance
1798  */
1799 Date.prototype.add = function(interval, value){
1800   var d = this.clone();
1801   if (!interval || value === 0) { return d; }
1802   switch(interval.toLowerCase()){
1803     case Date.MILLI:
1804       d.setMilliseconds(this.getMilliseconds() + value);
1805       break;
1806     case Date.SECOND:
1807       d.setSeconds(this.getSeconds() + value);
1808       break;
1809     case Date.MINUTE:
1810       d.setMinutes(this.getMinutes() + value);
1811       break;
1812     case Date.HOUR:
1813       d.setHours(this.getHours() + value);
1814       break;
1815     case Date.DAY:
1816       d.setDate(this.getDate() + value);
1817       break;
1818     case Date.MONTH:
1819       var day = this.getDate();
1820       if(day > 28){
1821           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1822       }
1823       d.setDate(day);
1824       d.setMonth(this.getMonth() + value);
1825       break;
1826     case Date.YEAR:
1827       d.setFullYear(this.getFullYear() + value);
1828       break;
1829   }
1830   return d;
1831 };
1832 /*
1833  * Based on:
1834  * Ext JS Library 1.1.1
1835  * Copyright(c) 2006-2007, Ext JS, LLC.
1836  *
1837  * Originally Released Under LGPL - original licence link has changed is not relivant.
1838  *
1839  * Fork - LGPL
1840  * <script type="text/javascript">
1841  */
1842
1843 /**
1844  * @class Roo.lib.Dom
1845  * @static
1846  * 
1847  * Dom utils (from YIU afaik)
1848  * 
1849  **/
1850 Roo.lib.Dom = {
1851     /**
1852      * Get the view width
1853      * @param {Boolean} full True will get the full document, otherwise it's the view width
1854      * @return {Number} The width
1855      */
1856      
1857     getViewWidth : function(full) {
1858         return full ? this.getDocumentWidth() : this.getViewportWidth();
1859     },
1860     /**
1861      * Get the view height
1862      * @param {Boolean} full True will get the full document, otherwise it's the view height
1863      * @return {Number} The height
1864      */
1865     getViewHeight : function(full) {
1866         return full ? this.getDocumentHeight() : this.getViewportHeight();
1867     },
1868
1869     getDocumentHeight: function() {
1870         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1871         return Math.max(scrollHeight, this.getViewportHeight());
1872     },
1873
1874     getDocumentWidth: function() {
1875         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1876         return Math.max(scrollWidth, this.getViewportWidth());
1877     },
1878
1879     getViewportHeight: function() {
1880         var height = self.innerHeight;
1881         var mode = document.compatMode;
1882
1883         if ((mode || Roo.isIE) && !Roo.isOpera) {
1884             height = (mode == "CSS1Compat") ?
1885                      document.documentElement.clientHeight :
1886                      document.body.clientHeight;
1887         }
1888
1889         return height;
1890     },
1891
1892     getViewportWidth: function() {
1893         var width = self.innerWidth;
1894         var mode = document.compatMode;
1895
1896         if (mode || Roo.isIE) {
1897             width = (mode == "CSS1Compat") ?
1898                     document.documentElement.clientWidth :
1899                     document.body.clientWidth;
1900         }
1901         return width;
1902     },
1903
1904     isAncestor : function(p, c) {
1905         p = Roo.getDom(p);
1906         c = Roo.getDom(c);
1907         if (!p || !c) {
1908             return false;
1909         }
1910
1911         if (p.contains && !Roo.isSafari) {
1912             return p.contains(c);
1913         } else if (p.compareDocumentPosition) {
1914             return !!(p.compareDocumentPosition(c) & 16);
1915         } else {
1916             var parent = c.parentNode;
1917             while (parent) {
1918                 if (parent == p) {
1919                     return true;
1920                 }
1921                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1922                     return false;
1923                 }
1924                 parent = parent.parentNode;
1925             }
1926             return false;
1927         }
1928     },
1929
1930     getRegion : function(el) {
1931         return Roo.lib.Region.getRegion(el);
1932     },
1933
1934     getY : function(el) {
1935         return this.getXY(el)[1];
1936     },
1937
1938     getX : function(el) {
1939         return this.getXY(el)[0];
1940     },
1941
1942     getXY : function(el) {
1943         var p, pe, b, scroll, bd = document.body;
1944         el = Roo.getDom(el);
1945         var fly = Roo.lib.AnimBase.fly;
1946         if (el.getBoundingClientRect) {
1947             b = el.getBoundingClientRect();
1948             scroll = fly(document).getScroll();
1949             return [b.left + scroll.left, b.top + scroll.top];
1950         }
1951         var x = 0, y = 0;
1952
1953         p = el;
1954
1955         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1956
1957         while (p) {
1958
1959             x += p.offsetLeft;
1960             y += p.offsetTop;
1961
1962             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1963                 hasAbsolute = true;
1964             }
1965
1966             if (Roo.isGecko) {
1967                 pe = fly(p);
1968
1969                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1970                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1971
1972
1973                 x += bl;
1974                 y += bt;
1975
1976
1977                 if (p != el && pe.getStyle('overflow') != 'visible') {
1978                     x += bl;
1979                     y += bt;
1980                 }
1981             }
1982             p = p.offsetParent;
1983         }
1984
1985         if (Roo.isSafari && hasAbsolute) {
1986             x -= bd.offsetLeft;
1987             y -= bd.offsetTop;
1988         }
1989
1990         if (Roo.isGecko && !hasAbsolute) {
1991             var dbd = fly(bd);
1992             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
1993             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
1994         }
1995
1996         p = el.parentNode;
1997         while (p && p != bd) {
1998             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
1999                 x -= p.scrollLeft;
2000                 y -= p.scrollTop;
2001             }
2002             p = p.parentNode;
2003         }
2004         return [x, y];
2005     },
2006  
2007   
2008
2009
2010     setXY : function(el, xy) {
2011         el = Roo.fly(el, '_setXY');
2012         el.position();
2013         var pts = el.translatePoints(xy);
2014         if (xy[0] !== false) {
2015             el.dom.style.left = pts.left + "px";
2016         }
2017         if (xy[1] !== false) {
2018             el.dom.style.top = pts.top + "px";
2019         }
2020     },
2021
2022     setX : function(el, x) {
2023         this.setXY(el, [x, false]);
2024     },
2025
2026     setY : function(el, y) {
2027         this.setXY(el, [false, y]);
2028     }
2029 };
2030 /*
2031  * Portions of this file are based on pieces of Yahoo User Interface Library
2032  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2033  * YUI licensed under the BSD License:
2034  * http://developer.yahoo.net/yui/license.txt
2035  * <script type="text/javascript">
2036  *
2037  */
2038
2039 Roo.lib.Event = function() {
2040     var loadComplete = false;
2041     var listeners = [];
2042     var unloadListeners = [];
2043     var retryCount = 0;
2044     var onAvailStack = [];
2045     var counter = 0;
2046     var lastError = null;
2047
2048     return {
2049         POLL_RETRYS: 200,
2050         POLL_INTERVAL: 20,
2051         EL: 0,
2052         TYPE: 1,
2053         FN: 2,
2054         WFN: 3,
2055         OBJ: 3,
2056         ADJ_SCOPE: 4,
2057         _interval: null,
2058
2059         startInterval: function() {
2060             if (!this._interval) {
2061                 var self = this;
2062                 var callback = function() {
2063                     self._tryPreloadAttach();
2064                 };
2065                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2066
2067             }
2068         },
2069
2070         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2071             onAvailStack.push({ id:         p_id,
2072                 fn:         p_fn,
2073                 obj:        p_obj,
2074                 override:   p_override,
2075                 checkReady: false    });
2076
2077             retryCount = this.POLL_RETRYS;
2078             this.startInterval();
2079         },
2080
2081
2082         addListener: function(el, eventName, fn) {
2083             el = Roo.getDom(el);
2084             if (!el || !fn) {
2085                 return false;
2086             }
2087
2088             if ("unload" == eventName) {
2089                 unloadListeners[unloadListeners.length] =
2090                 [el, eventName, fn];
2091                 return true;
2092             }
2093
2094             var wrappedFn = function(e) {
2095                 return fn(Roo.lib.Event.getEvent(e));
2096             };
2097
2098             var li = [el, eventName, fn, wrappedFn];
2099
2100             var index = listeners.length;
2101             listeners[index] = li;
2102
2103             this.doAdd(el, eventName, wrappedFn, false);
2104             return true;
2105
2106         },
2107
2108
2109         removeListener: function(el, eventName, fn) {
2110             var i, len;
2111
2112             el = Roo.getDom(el);
2113
2114             if(!fn) {
2115                 return this.purgeElement(el, false, eventName);
2116             }
2117
2118
2119             if ("unload" == eventName) {
2120
2121                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2122                     var li = unloadListeners[i];
2123                     if (li &&
2124                         li[0] == el &&
2125                         li[1] == eventName &&
2126                         li[2] == fn) {
2127                         unloadListeners.splice(i, 1);
2128                         return true;
2129                     }
2130                 }
2131
2132                 return false;
2133             }
2134
2135             var cacheItem = null;
2136
2137
2138             var index = arguments[3];
2139
2140             if ("undefined" == typeof index) {
2141                 index = this._getCacheIndex(el, eventName, fn);
2142             }
2143
2144             if (index >= 0) {
2145                 cacheItem = listeners[index];
2146             }
2147
2148             if (!el || !cacheItem) {
2149                 return false;
2150             }
2151
2152             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2153
2154             delete listeners[index][this.WFN];
2155             delete listeners[index][this.FN];
2156             listeners.splice(index, 1);
2157
2158             return true;
2159
2160         },
2161
2162
2163         getTarget: function(ev, resolveTextNode) {
2164             ev = ev.browserEvent || ev;
2165             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2166             var t = ev.target || ev.srcElement;
2167             return this.resolveTextNode(t);
2168         },
2169
2170
2171         resolveTextNode: function(node) {
2172             if (Roo.isSafari && node && 3 == node.nodeType) {
2173                 return node.parentNode;
2174             } else {
2175                 return node;
2176             }
2177         },
2178
2179
2180         getPageX: function(ev) {
2181             ev = ev.browserEvent || ev;
2182             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2183             var x = ev.pageX;
2184             if (!x && 0 !== x) {
2185                 x = ev.clientX || 0;
2186
2187                 if (Roo.isIE) {
2188                     x += this.getScroll()[1];
2189                 }
2190             }
2191
2192             return x;
2193         },
2194
2195
2196         getPageY: function(ev) {
2197             ev = ev.browserEvent || ev;
2198             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2199             var y = ev.pageY;
2200             if (!y && 0 !== y) {
2201                 y = ev.clientY || 0;
2202
2203                 if (Roo.isIE) {
2204                     y += this.getScroll()[0];
2205                 }
2206             }
2207
2208
2209             return y;
2210         },
2211
2212
2213         getXY: function(ev) {
2214             ev = ev.browserEvent || ev;
2215             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2216             return [this.getPageX(ev), this.getPageY(ev)];
2217         },
2218
2219
2220         getRelatedTarget: function(ev) {
2221             ev = ev.browserEvent || ev;
2222             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2223             var t = ev.relatedTarget;
2224             if (!t) {
2225                 if (ev.type == "mouseout") {
2226                     t = ev.toElement;
2227                 } else if (ev.type == "mouseover") {
2228                     t = ev.fromElement;
2229                 }
2230             }
2231
2232             return this.resolveTextNode(t);
2233         },
2234
2235
2236         getTime: function(ev) {
2237             ev = ev.browserEvent || ev;
2238             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2239             if (!ev.time) {
2240                 var t = new Date().getTime();
2241                 try {
2242                     ev.time = t;
2243                 } catch(ex) {
2244                     this.lastError = ex;
2245                     return t;
2246                 }
2247             }
2248
2249             return ev.time;
2250         },
2251
2252
2253         stopEvent: function(ev) {
2254             this.stopPropagation(ev);
2255             this.preventDefault(ev);
2256         },
2257
2258
2259         stopPropagation: function(ev) {
2260             ev = ev.browserEvent || ev;
2261             if (ev.stopPropagation) {
2262                 ev.stopPropagation();
2263             } else {
2264                 ev.cancelBubble = true;
2265             }
2266         },
2267
2268
2269         preventDefault: function(ev) {
2270             ev = ev.browserEvent || ev;
2271             if(ev.preventDefault) {
2272                 ev.preventDefault();
2273             } else {
2274                 ev.returnValue = false;
2275             }
2276         },
2277
2278
2279         getEvent: function(e) {
2280             var ev = e || window.event;
2281             if (!ev) {
2282                 var c = this.getEvent.caller;
2283                 while (c) {
2284                     ev = c.arguments[0];
2285                     if (ev && Event == ev.constructor) {
2286                         break;
2287                     }
2288                     c = c.caller;
2289                 }
2290             }
2291             return ev;
2292         },
2293
2294
2295         getCharCode: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             return ev.charCode || ev.keyCode || 0;
2298         },
2299
2300
2301         _getCacheIndex: function(el, eventName, fn) {
2302             for (var i = 0,len = listeners.length; i < len; ++i) {
2303                 var li = listeners[i];
2304                 if (li &&
2305                     li[this.FN] == fn &&
2306                     li[this.EL] == el &&
2307                     li[this.TYPE] == eventName) {
2308                     return i;
2309                 }
2310             }
2311
2312             return -1;
2313         },
2314
2315
2316         elCache: {},
2317
2318
2319         getEl: function(id) {
2320             return document.getElementById(id);
2321         },
2322
2323
2324         clearCache: function() {
2325         },
2326
2327
2328         _load: function(e) {
2329             loadComplete = true;
2330             var EU = Roo.lib.Event;
2331
2332
2333             if (Roo.isIE) {
2334                 EU.doRemove(window, "load", EU._load);
2335             }
2336         },
2337
2338
2339         _tryPreloadAttach: function() {
2340
2341             if (this.locked) {
2342                 return false;
2343             }
2344
2345             this.locked = true;
2346
2347
2348             var tryAgain = !loadComplete;
2349             if (!tryAgain) {
2350                 tryAgain = (retryCount > 0);
2351             }
2352
2353
2354             var notAvail = [];
2355             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2356                 var item = onAvailStack[i];
2357                 if (item) {
2358                     var el = this.getEl(item.id);
2359
2360                     if (el) {
2361                         if (!item.checkReady ||
2362                             loadComplete ||
2363                             el.nextSibling ||
2364                             (document && document.body)) {
2365
2366                             var scope = el;
2367                             if (item.override) {
2368                                 if (item.override === true) {
2369                                     scope = item.obj;
2370                                 } else {
2371                                     scope = item.override;
2372                                 }
2373                             }
2374                             item.fn.call(scope, item.obj);
2375                             onAvailStack[i] = null;
2376                         }
2377                     } else {
2378                         notAvail.push(item);
2379                     }
2380                 }
2381             }
2382
2383             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2384
2385             if (tryAgain) {
2386
2387                 this.startInterval();
2388             } else {
2389                 clearInterval(this._interval);
2390                 this._interval = null;
2391             }
2392
2393             this.locked = false;
2394
2395             return true;
2396
2397         },
2398
2399
2400         purgeElement: function(el, recurse, eventName) {
2401             var elListeners = this.getListeners(el, eventName);
2402             if (elListeners) {
2403                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2404                     var l = elListeners[i];
2405                     this.removeListener(el, l.type, l.fn);
2406                 }
2407             }
2408
2409             if (recurse && el && el.childNodes) {
2410                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2411                     this.purgeElement(el.childNodes[i], recurse, eventName);
2412                 }
2413             }
2414         },
2415
2416
2417         getListeners: function(el, eventName) {
2418             var results = [], searchLists;
2419             if (!eventName) {
2420                 searchLists = [listeners, unloadListeners];
2421             } else if (eventName == "unload") {
2422                 searchLists = [unloadListeners];
2423             } else {
2424                 searchLists = [listeners];
2425             }
2426
2427             for (var j = 0; j < searchLists.length; ++j) {
2428                 var searchList = searchLists[j];
2429                 if (searchList && searchList.length > 0) {
2430                     for (var i = 0,len = searchList.length; i < len; ++i) {
2431                         var l = searchList[i];
2432                         if (l && l[this.EL] === el &&
2433                             (!eventName || eventName === l[this.TYPE])) {
2434                             results.push({
2435                                 type:   l[this.TYPE],
2436                                 fn:     l[this.FN],
2437                                 obj:    l[this.OBJ],
2438                                 adjust: l[this.ADJ_SCOPE],
2439                                 index:  i
2440                             });
2441                         }
2442                     }
2443                 }
2444             }
2445
2446             return (results.length) ? results : null;
2447         },
2448
2449
2450         _unload: function(e) {
2451
2452             var EU = Roo.lib.Event, i, j, l, len, index;
2453
2454             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2455                 l = unloadListeners[i];
2456                 if (l) {
2457                     var scope = window;
2458                     if (l[EU.ADJ_SCOPE]) {
2459                         if (l[EU.ADJ_SCOPE] === true) {
2460                             scope = l[EU.OBJ];
2461                         } else {
2462                             scope = l[EU.ADJ_SCOPE];
2463                         }
2464                     }
2465                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2466                     unloadListeners[i] = null;
2467                     l = null;
2468                     scope = null;
2469                 }
2470             }
2471
2472             unloadListeners = null;
2473
2474             if (listeners && listeners.length > 0) {
2475                 j = listeners.length;
2476                 while (j) {
2477                     index = j - 1;
2478                     l = listeners[index];
2479                     if (l) {
2480                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2481                                 l[EU.FN], index);
2482                     }
2483                     j = j - 1;
2484                 }
2485                 l = null;
2486
2487                 EU.clearCache();
2488             }
2489
2490             EU.doRemove(window, "unload", EU._unload);
2491
2492         },
2493
2494
2495         getScroll: function() {
2496             var dd = document.documentElement, db = document.body;
2497             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2498                 return [dd.scrollTop, dd.scrollLeft];
2499             } else if (db) {
2500                 return [db.scrollTop, db.scrollLeft];
2501             } else {
2502                 return [0, 0];
2503             }
2504         },
2505
2506
2507         doAdd: function () {
2508             if (window.addEventListener) {
2509                 return function(el, eventName, fn, capture) {
2510                     el.addEventListener(eventName, fn, (capture));
2511                 };
2512             } else if (window.attachEvent) {
2513                 return function(el, eventName, fn, capture) {
2514                     el.attachEvent("on" + eventName, fn);
2515                 };
2516             } else {
2517                 return function() {
2518                 };
2519             }
2520         }(),
2521
2522
2523         doRemove: function() {
2524             if (window.removeEventListener) {
2525                 return function (el, eventName, fn, capture) {
2526                     el.removeEventListener(eventName, fn, (capture));
2527                 };
2528             } else if (window.detachEvent) {
2529                 return function (el, eventName, fn) {
2530                     el.detachEvent("on" + eventName, fn);
2531                 };
2532             } else {
2533                 return function() {
2534                 };
2535             }
2536         }()
2537     };
2538     
2539 }();
2540 (function() {     
2541    
2542     var E = Roo.lib.Event;
2543     E.on = E.addListener;
2544     E.un = E.removeListener;
2545
2546     if (document && document.body) {
2547         E._load();
2548     } else {
2549         E.doAdd(window, "load", E._load);
2550     }
2551     E.doAdd(window, "unload", E._unload);
2552     E._tryPreloadAttach();
2553 })();
2554
2555 /*
2556  * Portions of this file are based on pieces of Yahoo User Interface Library
2557  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2558  * YUI licensed under the BSD License:
2559  * http://developer.yahoo.net/yui/license.txt
2560  * <script type="text/javascript">
2561  *
2562  */
2563
2564 (function() {
2565     /**
2566      * @class Roo.lib.Ajax
2567      *
2568      */
2569     Roo.lib.Ajax = {
2570         /**
2571          * @static 
2572          */
2573         request : function(method, uri, cb, data, options) {
2574             if(options){
2575                 var hs = options.headers;
2576                 if(hs){
2577                     for(var h in hs){
2578                         if(hs.hasOwnProperty(h)){
2579                             this.initHeader(h, hs[h], false);
2580                         }
2581                     }
2582                 }
2583                 if(options.xmlData){
2584                     this.initHeader('Content-Type', 'text/xml', false);
2585                     method = 'POST';
2586                     data = options.xmlData;
2587                 }
2588             }
2589
2590             return this.asyncRequest(method, uri, cb, data);
2591         },
2592
2593         serializeForm : function(form) {
2594             if(typeof form == 'string') {
2595                 form = (document.getElementById(form) || document.forms[form]);
2596             }
2597
2598             var el, name, val, disabled, data = '', hasSubmit = false;
2599             for (var i = 0; i < form.elements.length; i++) {
2600                 el = form.elements[i];
2601                 disabled = form.elements[i].disabled;
2602                 name = form.elements[i].name;
2603                 val = form.elements[i].value;
2604
2605                 if (!disabled && name){
2606                     switch (el.type)
2607                             {
2608                         case 'select-one':
2609                         case 'select-multiple':
2610                             for (var j = 0; j < el.options.length; j++) {
2611                                 if (el.options[j].selected) {
2612                                     if (Roo.isIE) {
2613                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2614                                     }
2615                                     else {
2616                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2617                                     }
2618                                 }
2619                             }
2620                             break;
2621                         case 'radio':
2622                         case 'checkbox':
2623                             if (el.checked) {
2624                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2625                             }
2626                             break;
2627                         case 'file':
2628
2629                         case undefined:
2630
2631                         case 'reset':
2632
2633                         case 'button':
2634
2635                             break;
2636                         case 'submit':
2637                             if(hasSubmit == false) {
2638                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2639                                 hasSubmit = true;
2640                             }
2641                             break;
2642                         default:
2643                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2644                             break;
2645                     }
2646                 }
2647             }
2648             data = data.substr(0, data.length - 1);
2649             return data;
2650         },
2651
2652         headers:{},
2653
2654         hasHeaders:false,
2655
2656         useDefaultHeader:true,
2657
2658         defaultPostHeader:'application/x-www-form-urlencoded',
2659
2660         useDefaultXhrHeader:true,
2661
2662         defaultXhrHeader:'XMLHttpRequest',
2663
2664         hasDefaultHeaders:true,
2665
2666         defaultHeaders:{},
2667
2668         poll:{},
2669
2670         timeout:{},
2671
2672         pollInterval:50,
2673
2674         transactionId:0,
2675
2676         setProgId:function(id)
2677         {
2678             this.activeX.unshift(id);
2679         },
2680
2681         setDefaultPostHeader:function(b)
2682         {
2683             this.useDefaultHeader = b;
2684         },
2685
2686         setDefaultXhrHeader:function(b)
2687         {
2688             this.useDefaultXhrHeader = b;
2689         },
2690
2691         setPollingInterval:function(i)
2692         {
2693             if (typeof i == 'number' && isFinite(i)) {
2694                 this.pollInterval = i;
2695             }
2696         },
2697
2698         createXhrObject:function(transactionId)
2699         {
2700             var obj,http;
2701             try
2702             {
2703
2704                 http = new XMLHttpRequest();
2705
2706                 obj = { conn:http, tId:transactionId };
2707             }
2708             catch(e)
2709             {
2710                 for (var i = 0; i < this.activeX.length; ++i) {
2711                     try
2712                     {
2713
2714                         http = new ActiveXObject(this.activeX[i]);
2715
2716                         obj = { conn:http, tId:transactionId };
2717                         break;
2718                     }
2719                     catch(e) {
2720                     }
2721                 }
2722             }
2723             finally
2724             {
2725                 return obj;
2726             }
2727         },
2728
2729         getConnectionObject:function()
2730         {
2731             var o;
2732             var tId = this.transactionId;
2733
2734             try
2735             {
2736                 o = this.createXhrObject(tId);
2737                 if (o) {
2738                     this.transactionId++;
2739                 }
2740             }
2741             catch(e) {
2742             }
2743             finally
2744             {
2745                 return o;
2746             }
2747         },
2748
2749         asyncRequest:function(method, uri, callback, postData)
2750         {
2751             var o = this.getConnectionObject();
2752
2753             if (!o) {
2754                 return null;
2755             }
2756             else {
2757                 o.conn.open(method, uri, true);
2758
2759                 if (this.useDefaultXhrHeader) {
2760                     if (!this.defaultHeaders['X-Requested-With']) {
2761                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2762                     }
2763                 }
2764
2765                 if(postData && this.useDefaultHeader){
2766                     this.initHeader('Content-Type', this.defaultPostHeader);
2767                 }
2768
2769                  if (this.hasDefaultHeaders || this.hasHeaders) {
2770                     this.setHeader(o);
2771                 }
2772
2773                 this.handleReadyState(o, callback);
2774                 o.conn.send(postData || null);
2775
2776                 return o;
2777             }
2778         },
2779
2780         handleReadyState:function(o, callback)
2781         {
2782             var oConn = this;
2783
2784             if (callback && callback.timeout) {
2785                 
2786                 this.timeout[o.tId] = window.setTimeout(function() {
2787                     oConn.abort(o, callback, true);
2788                 }, callback.timeout);
2789             }
2790
2791             this.poll[o.tId] = window.setInterval(
2792                     function() {
2793                         if (o.conn && o.conn.readyState == 4) {
2794                             window.clearInterval(oConn.poll[o.tId]);
2795                             delete oConn.poll[o.tId];
2796
2797                             if(callback && callback.timeout) {
2798                                 window.clearTimeout(oConn.timeout[o.tId]);
2799                                 delete oConn.timeout[o.tId];
2800                             }
2801
2802                             oConn.handleTransactionResponse(o, callback);
2803                         }
2804                     }
2805                     , this.pollInterval);
2806         },
2807
2808         handleTransactionResponse:function(o, callback, isAbort)
2809         {
2810
2811             if (!callback) {
2812                 this.releaseObject(o);
2813                 return;
2814             }
2815
2816             var httpStatus, responseObject;
2817
2818             try
2819             {
2820                 if (o.conn.status !== undefined && o.conn.status != 0) {
2821                     httpStatus = o.conn.status;
2822                 }
2823                 else {
2824                     httpStatus = 13030;
2825                 }
2826             }
2827             catch(e) {
2828
2829
2830                 httpStatus = 13030;
2831             }
2832
2833             if (httpStatus >= 200 && httpStatus < 300) {
2834                 responseObject = this.createResponseObject(o, callback.argument);
2835                 if (callback.success) {
2836                     if (!callback.scope) {
2837                         callback.success(responseObject);
2838                     }
2839                     else {
2840
2841
2842                         callback.success.apply(callback.scope, [responseObject]);
2843                     }
2844                 }
2845             }
2846             else {
2847                 switch (httpStatus) {
2848
2849                     case 12002:
2850                     case 12029:
2851                     case 12030:
2852                     case 12031:
2853                     case 12152:
2854                     case 13030:
2855                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2856                         if (callback.failure) {
2857                             if (!callback.scope) {
2858                                 callback.failure(responseObject);
2859                             }
2860                             else {
2861                                 callback.failure.apply(callback.scope, [responseObject]);
2862                             }
2863                         }
2864                         break;
2865                     default:
2866                         responseObject = this.createResponseObject(o, callback.argument);
2867                         if (callback.failure) {
2868                             if (!callback.scope) {
2869                                 callback.failure(responseObject);
2870                             }
2871                             else {
2872                                 callback.failure.apply(callback.scope, [responseObject]);
2873                             }
2874                         }
2875                 }
2876             }
2877
2878             this.releaseObject(o);
2879             responseObject = null;
2880         },
2881
2882         createResponseObject:function(o, callbackArg)
2883         {
2884             var obj = {};
2885             var headerObj = {};
2886
2887             try
2888             {
2889                 var headerStr = o.conn.getAllResponseHeaders();
2890                 var header = headerStr.split('\n');
2891                 for (var i = 0; i < header.length; i++) {
2892                     var delimitPos = header[i].indexOf(':');
2893                     if (delimitPos != -1) {
2894                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2895                     }
2896                 }
2897             }
2898             catch(e) {
2899             }
2900
2901             obj.tId = o.tId;
2902             obj.status = o.conn.status;
2903             obj.statusText = o.conn.statusText;
2904             obj.getResponseHeader = headerObj;
2905             obj.getAllResponseHeaders = headerStr;
2906             obj.responseText = o.conn.responseText;
2907             obj.responseXML = o.conn.responseXML;
2908
2909             if (typeof callbackArg !== undefined) {
2910                 obj.argument = callbackArg;
2911             }
2912
2913             return obj;
2914         },
2915
2916         createExceptionObject:function(tId, callbackArg, isAbort)
2917         {
2918             var COMM_CODE = 0;
2919             var COMM_ERROR = 'communication failure';
2920             var ABORT_CODE = -1;
2921             var ABORT_ERROR = 'transaction aborted';
2922
2923             var obj = {};
2924
2925             obj.tId = tId;
2926             if (isAbort) {
2927                 obj.status = ABORT_CODE;
2928                 obj.statusText = ABORT_ERROR;
2929             }
2930             else {
2931                 obj.status = COMM_CODE;
2932                 obj.statusText = COMM_ERROR;
2933             }
2934
2935             if (callbackArg) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         initHeader:function(label, value, isDefault)
2943         {
2944             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2945
2946             if (headerObj[label] === undefined) {
2947                 headerObj[label] = value;
2948             }
2949             else {
2950
2951
2952                 headerObj[label] = value + "," + headerObj[label];
2953             }
2954
2955             if (isDefault) {
2956                 this.hasDefaultHeaders = true;
2957             }
2958             else {
2959                 this.hasHeaders = true;
2960             }
2961         },
2962
2963
2964         setHeader:function(o)
2965         {
2966             if (this.hasDefaultHeaders) {
2967                 for (var prop in this.defaultHeaders) {
2968                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2969                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2970                     }
2971                 }
2972             }
2973
2974             if (this.hasHeaders) {
2975                 for (var prop in this.headers) {
2976                     if (this.headers.hasOwnProperty(prop)) {
2977                         o.conn.setRequestHeader(prop, this.headers[prop]);
2978                     }
2979                 }
2980                 this.headers = {};
2981                 this.hasHeaders = false;
2982             }
2983         },
2984
2985         resetDefaultHeaders:function() {
2986             delete this.defaultHeaders;
2987             this.defaultHeaders = {};
2988             this.hasDefaultHeaders = false;
2989         },
2990
2991         abort:function(o, callback, isTimeout)
2992         {
2993             if(this.isCallInProgress(o)) {
2994                 o.conn.abort();
2995                 window.clearInterval(this.poll[o.tId]);
2996                 delete this.poll[o.tId];
2997                 if (isTimeout) {
2998                     delete this.timeout[o.tId];
2999                 }
3000
3001                 this.handleTransactionResponse(o, callback, true);
3002
3003                 return true;
3004             }
3005             else {
3006                 return false;
3007             }
3008         },
3009
3010
3011         isCallInProgress:function(o)
3012         {
3013             if (o && o.conn) {
3014                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3015             }
3016             else {
3017
3018                 return false;
3019             }
3020         },
3021
3022
3023         releaseObject:function(o)
3024         {
3025
3026             o.conn = null;
3027
3028             o = null;
3029         },
3030
3031         activeX:[
3032         'MSXML2.XMLHTTP.3.0',
3033         'MSXML2.XMLHTTP',
3034         'Microsoft.XMLHTTP'
3035         ]
3036
3037
3038     };
3039 })();/*
3040  * Portions of this file are based on pieces of Yahoo User Interface Library
3041  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3042  * YUI licensed under the BSD License:
3043  * http://developer.yahoo.net/yui/license.txt
3044  * <script type="text/javascript">
3045  *
3046  */
3047
3048 Roo.lib.Region = function(t, r, b, l) {
3049     this.top = t;
3050     this[1] = t;
3051     this.right = r;
3052     this.bottom = b;
3053     this.left = l;
3054     this[0] = l;
3055 };
3056
3057
3058 Roo.lib.Region.prototype = {
3059     contains : function(region) {
3060         return ( region.left >= this.left &&
3061                  region.right <= this.right &&
3062                  region.top >= this.top &&
3063                  region.bottom <= this.bottom    );
3064
3065     },
3066
3067     getArea : function() {
3068         return ( (this.bottom - this.top) * (this.right - this.left) );
3069     },
3070
3071     intersect : function(region) {
3072         var t = Math.max(this.top, region.top);
3073         var r = Math.min(this.right, region.right);
3074         var b = Math.min(this.bottom, region.bottom);
3075         var l = Math.max(this.left, region.left);
3076
3077         if (b >= t && r >= l) {
3078             return new Roo.lib.Region(t, r, b, l);
3079         } else {
3080             return null;
3081         }
3082     },
3083     union : function(region) {
3084         var t = Math.min(this.top, region.top);
3085         var r = Math.max(this.right, region.right);
3086         var b = Math.max(this.bottom, region.bottom);
3087         var l = Math.min(this.left, region.left);
3088
3089         return new Roo.lib.Region(t, r, b, l);
3090     },
3091
3092     adjust : function(t, l, b, r) {
3093         this.top += t;
3094         this.left += l;
3095         this.right += r;
3096         this.bottom += b;
3097         return this;
3098     }
3099 };
3100
3101 Roo.lib.Region.getRegion = function(el) {
3102     var p = Roo.lib.Dom.getXY(el);
3103
3104     var t = p[1];
3105     var r = p[0] + el.offsetWidth;
3106     var b = p[1] + el.offsetHeight;
3107     var l = p[0];
3108
3109     return new Roo.lib.Region(t, r, b, l);
3110 };
3111 /*
3112  * Portions of this file are based on pieces of Yahoo User Interface Library
3113  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3114  * YUI licensed under the BSD License:
3115  * http://developer.yahoo.net/yui/license.txt
3116  * <script type="text/javascript">
3117  *
3118  */
3119 //@@dep Roo.lib.Region
3120
3121
3122 Roo.lib.Point = function(x, y) {
3123     if (x instanceof Array) {
3124         y = x[1];
3125         x = x[0];
3126     }
3127     this.x = this.right = this.left = this[0] = x;
3128     this.y = this.top = this.bottom = this[1] = y;
3129 };
3130
3131 Roo.lib.Point.prototype = new Roo.lib.Region();
3132 /*
3133  * Portions of this file are based on pieces of Yahoo User Interface Library
3134  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3135  * YUI licensed under the BSD License:
3136  * http://developer.yahoo.net/yui/license.txt
3137  * <script type="text/javascript">
3138  *
3139  */
3140  
3141 (function() {   
3142
3143     Roo.lib.Anim = {
3144         scroll : function(el, args, duration, easing, cb, scope) {
3145             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3146         },
3147
3148         motion : function(el, args, duration, easing, cb, scope) {
3149             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3150         },
3151
3152         color : function(el, args, duration, easing, cb, scope) {
3153             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3154         },
3155
3156         run : function(el, args, duration, easing, cb, scope, type) {
3157             type = type || Roo.lib.AnimBase;
3158             if (typeof easing == "string") {
3159                 easing = Roo.lib.Easing[easing];
3160             }
3161             var anim = new type(el, args, duration, easing);
3162             anim.animateX(function() {
3163                 Roo.callback(cb, scope);
3164             });
3165             return anim;
3166         }
3167     };
3168 })();/*
3169  * Portions of this file are based on pieces of Yahoo User Interface Library
3170  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3171  * YUI licensed under the BSD License:
3172  * http://developer.yahoo.net/yui/license.txt
3173  * <script type="text/javascript">
3174  *
3175  */
3176
3177 (function() {    
3178     var libFlyweight;
3179     
3180     function fly(el) {
3181         if (!libFlyweight) {
3182             libFlyweight = new Roo.Element.Flyweight();
3183         }
3184         libFlyweight.dom = el;
3185         return libFlyweight;
3186     }
3187
3188     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3189     
3190    
3191     
3192     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3193         if (el) {
3194             this.init(el, attributes, duration, method);
3195         }
3196     };
3197
3198     Roo.lib.AnimBase.fly = fly;
3199     
3200     
3201     
3202     Roo.lib.AnimBase.prototype = {
3203
3204         toString: function() {
3205             var el = this.getEl();
3206             var id = el.id || el.tagName;
3207             return ("Anim " + id);
3208         },
3209
3210         patterns: {
3211             noNegatives:        /width|height|opacity|padding/i,
3212             offsetAttribute:  /^((width|height)|(top|left))$/,
3213             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3214             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3215         },
3216
3217
3218         doMethod: function(attr, start, end) {
3219             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3220         },
3221
3222
3223         setAttribute: function(attr, val, unit) {
3224             if (this.patterns.noNegatives.test(attr)) {
3225                 val = (val > 0) ? val : 0;
3226             }
3227
3228             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3229         },
3230
3231
3232         getAttribute: function(attr) {
3233             var el = this.getEl();
3234             var val = fly(el).getStyle(attr);
3235
3236             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3237                 return parseFloat(val);
3238             }
3239
3240             var a = this.patterns.offsetAttribute.exec(attr) || [];
3241             var pos = !!( a[3] );
3242             var box = !!( a[2] );
3243
3244
3245             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3246                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3247             } else {
3248                 val = 0;
3249             }
3250
3251             return val;
3252         },
3253
3254
3255         getDefaultUnit: function(attr) {
3256             if (this.patterns.defaultUnit.test(attr)) {
3257                 return 'px';
3258             }
3259
3260             return '';
3261         },
3262
3263         animateX : function(callback, scope) {
3264             var f = function() {
3265                 this.onComplete.removeListener(f);
3266                 if (typeof callback == "function") {
3267                     callback.call(scope || this, this);
3268                 }
3269             };
3270             this.onComplete.addListener(f, this);
3271             this.animate();
3272         },
3273
3274
3275         setRuntimeAttribute: function(attr) {
3276             var start;
3277             var end;
3278             var attributes = this.attributes;
3279
3280             this.runtimeAttributes[attr] = {};
3281
3282             var isset = function(prop) {
3283                 return (typeof prop !== 'undefined');
3284             };
3285
3286             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3287                 return false;
3288             }
3289
3290             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3291
3292
3293             if (isset(attributes[attr]['to'])) {
3294                 end = attributes[attr]['to'];
3295             } else if (isset(attributes[attr]['by'])) {
3296                 if (start.constructor == Array) {
3297                     end = [];
3298                     for (var i = 0, len = start.length; i < len; ++i) {
3299                         end[i] = start[i] + attributes[attr]['by'][i];
3300                     }
3301                 } else {
3302                     end = start + attributes[attr]['by'];
3303                 }
3304             }
3305
3306             this.runtimeAttributes[attr].start = start;
3307             this.runtimeAttributes[attr].end = end;
3308
3309
3310             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3311         },
3312
3313
3314         init: function(el, attributes, duration, method) {
3315
3316             var isAnimated = false;
3317
3318
3319             var startTime = null;
3320
3321
3322             var actualFrames = 0;
3323
3324
3325             el = Roo.getDom(el);
3326
3327
3328             this.attributes = attributes || {};
3329
3330
3331             this.duration = duration || 1;
3332
3333
3334             this.method = method || Roo.lib.Easing.easeNone;
3335
3336
3337             this.useSeconds = true;
3338
3339
3340             this.currentFrame = 0;
3341
3342
3343             this.totalFrames = Roo.lib.AnimMgr.fps;
3344
3345
3346             this.getEl = function() {
3347                 return el;
3348             };
3349
3350
3351             this.isAnimated = function() {
3352                 return isAnimated;
3353             };
3354
3355
3356             this.getStartTime = function() {
3357                 return startTime;
3358             };
3359
3360             this.runtimeAttributes = {};
3361
3362
3363             this.animate = function() {
3364                 if (this.isAnimated()) {
3365                     return false;
3366                 }
3367
3368                 this.currentFrame = 0;
3369
3370                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3371
3372                 Roo.lib.AnimMgr.registerElement(this);
3373             };
3374
3375
3376             this.stop = function(finish) {
3377                 if (finish) {
3378                     this.currentFrame = this.totalFrames;
3379                     this._onTween.fire();
3380                 }
3381                 Roo.lib.AnimMgr.stop(this);
3382             };
3383
3384             var onStart = function() {
3385                 this.onStart.fire();
3386
3387                 this.runtimeAttributes = {};
3388                 for (var attr in this.attributes) {
3389                     this.setRuntimeAttribute(attr);
3390                 }
3391
3392                 isAnimated = true;
3393                 actualFrames = 0;
3394                 startTime = new Date();
3395             };
3396
3397
3398             var onTween = function() {
3399                 var data = {
3400                     duration: new Date() - this.getStartTime(),
3401                     currentFrame: this.currentFrame
3402                 };
3403
3404                 data.toString = function() {
3405                     return (
3406                             'duration: ' + data.duration +
3407                             ', currentFrame: ' + data.currentFrame
3408                             );
3409                 };
3410
3411                 this.onTween.fire(data);
3412
3413                 var runtimeAttributes = this.runtimeAttributes;
3414
3415                 for (var attr in runtimeAttributes) {
3416                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3417                 }
3418
3419                 actualFrames += 1;
3420             };
3421
3422             var onComplete = function() {
3423                 var actual_duration = (new Date() - startTime) / 1000 ;
3424
3425                 var data = {
3426                     duration: actual_duration,
3427                     frames: actualFrames,
3428                     fps: actualFrames / actual_duration
3429                 };
3430
3431                 data.toString = function() {
3432                     return (
3433                             'duration: ' + data.duration +
3434                             ', frames: ' + data.frames +
3435                             ', fps: ' + data.fps
3436                             );
3437                 };
3438
3439                 isAnimated = false;
3440                 actualFrames = 0;
3441                 this.onComplete.fire(data);
3442             };
3443
3444
3445             this._onStart = new Roo.util.Event(this);
3446             this.onStart = new Roo.util.Event(this);
3447             this.onTween = new Roo.util.Event(this);
3448             this._onTween = new Roo.util.Event(this);
3449             this.onComplete = new Roo.util.Event(this);
3450             this._onComplete = new Roo.util.Event(this);
3451             this._onStart.addListener(onStart);
3452             this._onTween.addListener(onTween);
3453             this._onComplete.addListener(onComplete);
3454         }
3455     };
3456 })();
3457 /*
3458  * Portions of this file are based on pieces of Yahoo User Interface Library
3459  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3460  * YUI licensed under the BSD License:
3461  * http://developer.yahoo.net/yui/license.txt
3462  * <script type="text/javascript">
3463  *
3464  */
3465
3466 Roo.lib.AnimMgr = new function() {
3467
3468     var thread = null;
3469
3470
3471     var queue = [];
3472
3473
3474     var tweenCount = 0;
3475
3476
3477     this.fps = 1000;
3478
3479
3480     this.delay = 1;
3481
3482
3483     this.registerElement = function(tween) {
3484         queue[queue.length] = tween;
3485         tweenCount += 1;
3486         tween._onStart.fire();
3487         this.start();
3488     };
3489
3490
3491     this.unRegister = function(tween, index) {
3492         tween._onComplete.fire();
3493         index = index || getIndex(tween);
3494         if (index != -1) {
3495             queue.splice(index, 1);
3496         }
3497
3498         tweenCount -= 1;
3499         if (tweenCount <= 0) {
3500             this.stop();
3501         }
3502     };
3503
3504
3505     this.start = function() {
3506         if (thread === null) {
3507             thread = setInterval(this.run, this.delay);
3508         }
3509     };
3510
3511
3512     this.stop = function(tween) {
3513         if (!tween) {
3514             clearInterval(thread);
3515
3516             for (var i = 0, len = queue.length; i < len; ++i) {
3517                 if (queue[0].isAnimated()) {
3518                     this.unRegister(queue[0], 0);
3519                 }
3520             }
3521
3522             queue = [];
3523             thread = null;
3524             tweenCount = 0;
3525         }
3526         else {
3527             this.unRegister(tween);
3528         }
3529     };
3530
3531
3532     this.run = function() {
3533         for (var i = 0, len = queue.length; i < len; ++i) {
3534             var tween = queue[i];
3535             if (!tween || !tween.isAnimated()) {
3536                 continue;
3537             }
3538
3539             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3540             {
3541                 tween.currentFrame += 1;
3542
3543                 if (tween.useSeconds) {
3544                     correctFrame(tween);
3545                 }
3546                 tween._onTween.fire();
3547             }
3548             else {
3549                 Roo.lib.AnimMgr.stop(tween, i);
3550             }
3551         }
3552     };
3553
3554     var getIndex = function(anim) {
3555         for (var i = 0, len = queue.length; i < len; ++i) {
3556             if (queue[i] == anim) {
3557                 return i;
3558             }
3559         }
3560         return -1;
3561     };
3562
3563
3564     var correctFrame = function(tween) {
3565         var frames = tween.totalFrames;
3566         var frame = tween.currentFrame;
3567         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3568         var elapsed = (new Date() - tween.getStartTime());
3569         var tweak = 0;
3570
3571         if (elapsed < tween.duration * 1000) {
3572             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3573         } else {
3574             tweak = frames - (frame + 1);
3575         }
3576         if (tweak > 0 && isFinite(tweak)) {
3577             if (tween.currentFrame + tweak >= frames) {
3578                 tweak = frames - (frame + 1);
3579             }
3580
3581             tween.currentFrame += tweak;
3582         }
3583     };
3584 };
3585
3586     /*
3587  * Portions of this file are based on pieces of Yahoo User Interface Library
3588  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3589  * YUI licensed under the BSD License:
3590  * http://developer.yahoo.net/yui/license.txt
3591  * <script type="text/javascript">
3592  *
3593  */
3594 Roo.lib.Bezier = new function() {
3595
3596         this.getPosition = function(points, t) {
3597             var n = points.length;
3598             var tmp = [];
3599
3600             for (var i = 0; i < n; ++i) {
3601                 tmp[i] = [points[i][0], points[i][1]];
3602             }
3603
3604             for (var j = 1; j < n; ++j) {
3605                 for (i = 0; i < n - j; ++i) {
3606                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3607                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3608                 }
3609             }
3610
3611             return [ tmp[0][0], tmp[0][1] ];
3612
3613         };
3614     };/*
3615  * Portions of this file are based on pieces of Yahoo User Interface Library
3616  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3617  * YUI licensed under the BSD License:
3618  * http://developer.yahoo.net/yui/license.txt
3619  * <script type="text/javascript">
3620  *
3621  */
3622 (function() {
3623
3624     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3625         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3626     };
3627
3628     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3629
3630     var fly = Roo.lib.AnimBase.fly;
3631     var Y = Roo.lib;
3632     var superclass = Y.ColorAnim.superclass;
3633     var proto = Y.ColorAnim.prototype;
3634
3635     proto.toString = function() {
3636         var el = this.getEl();
3637         var id = el.id || el.tagName;
3638         return ("ColorAnim " + id);
3639     };
3640
3641     proto.patterns.color = /color$/i;
3642     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3643     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3644     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3645     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3646
3647
3648     proto.parseColor = function(s) {
3649         if (s.length == 3) {
3650             return s;
3651         }
3652
3653         var c = this.patterns.hex.exec(s);
3654         if (c && c.length == 4) {
3655             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3656         }
3657
3658         c = this.patterns.rgb.exec(s);
3659         if (c && c.length == 4) {
3660             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3661         }
3662
3663         c = this.patterns.hex3.exec(s);
3664         if (c && c.length == 4) {
3665             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3666         }
3667
3668         return null;
3669     };
3670     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3671     proto.getAttribute = function(attr) {
3672         var el = this.getEl();
3673         if (this.patterns.color.test(attr)) {
3674             var val = fly(el).getStyle(attr);
3675
3676             if (this.patterns.transparent.test(val)) {
3677                 var parent = el.parentNode;
3678                 val = fly(parent).getStyle(attr);
3679
3680                 while (parent && this.patterns.transparent.test(val)) {
3681                     parent = parent.parentNode;
3682                     val = fly(parent).getStyle(attr);
3683                     if (parent.tagName.toUpperCase() == 'HTML') {
3684                         val = '#fff';
3685                     }
3686                 }
3687             }
3688         } else {
3689             val = superclass.getAttribute.call(this, attr);
3690         }
3691
3692         return val;
3693     };
3694     proto.getAttribute = function(attr) {
3695         var el = this.getEl();
3696         if (this.patterns.color.test(attr)) {
3697             var val = fly(el).getStyle(attr);
3698
3699             if (this.patterns.transparent.test(val)) {
3700                 var parent = el.parentNode;
3701                 val = fly(parent).getStyle(attr);
3702
3703                 while (parent && this.patterns.transparent.test(val)) {
3704                     parent = parent.parentNode;
3705                     val = fly(parent).getStyle(attr);
3706                     if (parent.tagName.toUpperCase() == 'HTML') {
3707                         val = '#fff';
3708                     }
3709                 }
3710             }
3711         } else {
3712             val = superclass.getAttribute.call(this, attr);
3713         }
3714
3715         return val;
3716     };
3717
3718     proto.doMethod = function(attr, start, end) {
3719         var val;
3720
3721         if (this.patterns.color.test(attr)) {
3722             val = [];
3723             for (var i = 0, len = start.length; i < len; ++i) {
3724                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3725             }
3726
3727             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3728         }
3729         else {
3730             val = superclass.doMethod.call(this, attr, start, end);
3731         }
3732
3733         return val;
3734     };
3735
3736     proto.setRuntimeAttribute = function(attr) {
3737         superclass.setRuntimeAttribute.call(this, attr);
3738
3739         if (this.patterns.color.test(attr)) {
3740             var attributes = this.attributes;
3741             var start = this.parseColor(this.runtimeAttributes[attr].start);
3742             var end = this.parseColor(this.runtimeAttributes[attr].end);
3743
3744             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3745                 end = this.parseColor(attributes[attr].by);
3746
3747                 for (var i = 0, len = start.length; i < len; ++i) {
3748                     end[i] = start[i] + end[i];
3749                 }
3750             }
3751
3752             this.runtimeAttributes[attr].start = start;
3753             this.runtimeAttributes[attr].end = end;
3754         }
3755     };
3756 })();
3757
3758 /*
3759  * Portions of this file are based on pieces of Yahoo User Interface Library
3760  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3761  * YUI licensed under the BSD License:
3762  * http://developer.yahoo.net/yui/license.txt
3763  * <script type="text/javascript">
3764  *
3765  */
3766 Roo.lib.Easing = {
3767
3768
3769     easeNone: function (t, b, c, d) {
3770         return c * t / d + b;
3771     },
3772
3773
3774     easeIn: function (t, b, c, d) {
3775         return c * (t /= d) * t + b;
3776     },
3777
3778
3779     easeOut: function (t, b, c, d) {
3780         return -c * (t /= d) * (t - 2) + b;
3781     },
3782
3783
3784     easeBoth: function (t, b, c, d) {
3785         if ((t /= d / 2) < 1) {
3786             return c / 2 * t * t + b;
3787         }
3788
3789         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3790     },
3791
3792
3793     easeInStrong: function (t, b, c, d) {
3794         return c * (t /= d) * t * t * t + b;
3795     },
3796
3797
3798     easeOutStrong: function (t, b, c, d) {
3799         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3800     },
3801
3802
3803     easeBothStrong: function (t, b, c, d) {
3804         if ((t /= d / 2) < 1) {
3805             return c / 2 * t * t * t * t + b;
3806         }
3807
3808         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3809     },
3810
3811
3812
3813     elasticIn: function (t, b, c, d, a, p) {
3814         if (t == 0) {
3815             return b;
3816         }
3817         if ((t /= d) == 1) {
3818             return b + c;
3819         }
3820         if (!p) {
3821             p = d * .3;
3822         }
3823
3824         if (!a || a < Math.abs(c)) {
3825             a = c;
3826             var s = p / 4;
3827         }
3828         else {
3829             var s = p / (2 * Math.PI) * Math.asin(c / a);
3830         }
3831
3832         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3833     },
3834
3835
3836     elasticOut: function (t, b, c, d, a, p) {
3837         if (t == 0) {
3838             return b;
3839         }
3840         if ((t /= d) == 1) {
3841             return b + c;
3842         }
3843         if (!p) {
3844             p = d * .3;
3845         }
3846
3847         if (!a || a < Math.abs(c)) {
3848             a = c;
3849             var s = p / 4;
3850         }
3851         else {
3852             var s = p / (2 * Math.PI) * Math.asin(c / a);
3853         }
3854
3855         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3856     },
3857
3858
3859     elasticBoth: function (t, b, c, d, a, p) {
3860         if (t == 0) {
3861             return b;
3862         }
3863
3864         if ((t /= d / 2) == 2) {
3865             return b + c;
3866         }
3867
3868         if (!p) {
3869             p = d * (.3 * 1.5);
3870         }
3871
3872         if (!a || a < Math.abs(c)) {
3873             a = c;
3874             var s = p / 4;
3875         }
3876         else {
3877             var s = p / (2 * Math.PI) * Math.asin(c / a);
3878         }
3879
3880         if (t < 1) {
3881             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3882                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3883         }
3884         return a * Math.pow(2, -10 * (t -= 1)) *
3885                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3886     },
3887
3888
3889
3890     backIn: function (t, b, c, d, s) {
3891         if (typeof s == 'undefined') {
3892             s = 1.70158;
3893         }
3894         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3895     },
3896
3897
3898     backOut: function (t, b, c, d, s) {
3899         if (typeof s == 'undefined') {
3900             s = 1.70158;
3901         }
3902         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3903     },
3904
3905
3906     backBoth: function (t, b, c, d, s) {
3907         if (typeof s == 'undefined') {
3908             s = 1.70158;
3909         }
3910
3911         if ((t /= d / 2 ) < 1) {
3912             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3913         }
3914         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3915     },
3916
3917
3918     bounceIn: function (t, b, c, d) {
3919         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3920     },
3921
3922
3923     bounceOut: function (t, b, c, d) {
3924         if ((t /= d) < (1 / 2.75)) {
3925             return c * (7.5625 * t * t) + b;
3926         } else if (t < (2 / 2.75)) {
3927             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3928         } else if (t < (2.5 / 2.75)) {
3929             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3930         }
3931         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3932     },
3933
3934
3935     bounceBoth: function (t, b, c, d) {
3936         if (t < d / 2) {
3937             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3938         }
3939         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3940     }
3941 };/*
3942  * Portions of this file are based on pieces of Yahoo User Interface Library
3943  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3944  * YUI licensed under the BSD License:
3945  * http://developer.yahoo.net/yui/license.txt
3946  * <script type="text/javascript">
3947  *
3948  */
3949     (function() {
3950         Roo.lib.Motion = function(el, attributes, duration, method) {
3951             if (el) {
3952                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3953             }
3954         };
3955
3956         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3957
3958
3959         var Y = Roo.lib;
3960         var superclass = Y.Motion.superclass;
3961         var proto = Y.Motion.prototype;
3962
3963         proto.toString = function() {
3964             var el = this.getEl();
3965             var id = el.id || el.tagName;
3966             return ("Motion " + id);
3967         };
3968
3969         proto.patterns.points = /^points$/i;
3970
3971         proto.setAttribute = function(attr, val, unit) {
3972             if (this.patterns.points.test(attr)) {
3973                 unit = unit || 'px';
3974                 superclass.setAttribute.call(this, 'left', val[0], unit);
3975                 superclass.setAttribute.call(this, 'top', val[1], unit);
3976             } else {
3977                 superclass.setAttribute.call(this, attr, val, unit);
3978             }
3979         };
3980
3981         proto.getAttribute = function(attr) {
3982             if (this.patterns.points.test(attr)) {
3983                 var val = [
3984                         superclass.getAttribute.call(this, 'left'),
3985                         superclass.getAttribute.call(this, 'top')
3986                         ];
3987             } else {
3988                 val = superclass.getAttribute.call(this, attr);
3989             }
3990
3991             return val;
3992         };
3993
3994         proto.doMethod = function(attr, start, end) {
3995             var val = null;
3996
3997             if (this.patterns.points.test(attr)) {
3998                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
3999                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4000             } else {
4001                 val = superclass.doMethod.call(this, attr, start, end);
4002             }
4003             return val;
4004         };
4005
4006         proto.setRuntimeAttribute = function(attr) {
4007             if (this.patterns.points.test(attr)) {
4008                 var el = this.getEl();
4009                 var attributes = this.attributes;
4010                 var start;
4011                 var control = attributes['points']['control'] || [];
4012                 var end;
4013                 var i, len;
4014
4015                 if (control.length > 0 && !(control[0] instanceof Array)) {
4016                     control = [control];
4017                 } else {
4018                     var tmp = [];
4019                     for (i = 0,len = control.length; i < len; ++i) {
4020                         tmp[i] = control[i];
4021                     }
4022                     control = tmp;
4023                 }
4024
4025                 Roo.fly(el).position();
4026
4027                 if (isset(attributes['points']['from'])) {
4028                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4029                 }
4030                 else {
4031                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4032                 }
4033
4034                 start = this.getAttribute('points');
4035
4036
4037                 if (isset(attributes['points']['to'])) {
4038                     end = translateValues.call(this, attributes['points']['to'], start);
4039
4040                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4041                     for (i = 0,len = control.length; i < len; ++i) {
4042                         control[i] = translateValues.call(this, control[i], start);
4043                     }
4044
4045
4046                 } else if (isset(attributes['points']['by'])) {
4047                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4048
4049                     for (i = 0,len = control.length; i < len; ++i) {
4050                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4051                     }
4052                 }
4053
4054                 this.runtimeAttributes[attr] = [start];
4055
4056                 if (control.length > 0) {
4057                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4058                 }
4059
4060                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4061             }
4062             else {
4063                 superclass.setRuntimeAttribute.call(this, attr);
4064             }
4065         };
4066
4067         var translateValues = function(val, start) {
4068             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4069             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4070
4071             return val;
4072         };
4073
4074         var isset = function(prop) {
4075             return (typeof prop !== 'undefined');
4076         };
4077     })();
4078 /*
4079  * Portions of this file are based on pieces of Yahoo User Interface Library
4080  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4081  * YUI licensed under the BSD License:
4082  * http://developer.yahoo.net/yui/license.txt
4083  * <script type="text/javascript">
4084  *
4085  */
4086     (function() {
4087         Roo.lib.Scroll = function(el, attributes, duration, method) {
4088             if (el) {
4089                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4090             }
4091         };
4092
4093         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4094
4095
4096         var Y = Roo.lib;
4097         var superclass = Y.Scroll.superclass;
4098         var proto = Y.Scroll.prototype;
4099
4100         proto.toString = function() {
4101             var el = this.getEl();
4102             var id = el.id || el.tagName;
4103             return ("Scroll " + id);
4104         };
4105
4106         proto.doMethod = function(attr, start, end) {
4107             var val = null;
4108
4109             if (attr == 'scroll') {
4110                 val = [
4111                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4112                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4113                         ];
4114
4115             } else {
4116                 val = superclass.doMethod.call(this, attr, start, end);
4117             }
4118             return val;
4119         };
4120
4121         proto.getAttribute = function(attr) {
4122             var val = null;
4123             var el = this.getEl();
4124
4125             if (attr == 'scroll') {
4126                 val = [ el.scrollLeft, el.scrollTop ];
4127             } else {
4128                 val = superclass.getAttribute.call(this, attr);
4129             }
4130
4131             return val;
4132         };
4133
4134         proto.setAttribute = function(attr, val, unit) {
4135             var el = this.getEl();
4136
4137             if (attr == 'scroll') {
4138                 el.scrollLeft = val[0];
4139                 el.scrollTop = val[1];
4140             } else {
4141                 superclass.setAttribute.call(this, attr, val, unit);
4142             }
4143         };
4144     })();
4145 /*
4146  * Based on:
4147  * Ext JS Library 1.1.1
4148  * Copyright(c) 2006-2007, Ext JS, LLC.
4149  *
4150  * Originally Released Under LGPL - original licence link has changed is not relivant.
4151  *
4152  * Fork - LGPL
4153  * <script type="text/javascript">
4154  */
4155
4156
4157 // nasty IE9 hack - what a pile of crap that is..
4158
4159  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4160     Range.prototype.createContextualFragment = function (html) {
4161         var doc = window.document;
4162         var container = doc.createElement("div");
4163         container.innerHTML = html;
4164         var frag = doc.createDocumentFragment(), n;
4165         while ((n = container.firstChild)) {
4166             frag.appendChild(n);
4167         }
4168         return frag;
4169     };
4170 }
4171
4172 /**
4173  * @class Roo.DomHelper
4174  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4175  * 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>.
4176  * @singleton
4177  */
4178 Roo.DomHelper = function(){
4179     var tempTableEl = null;
4180     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4181     var tableRe = /^table|tbody|tr|td$/i;
4182     var xmlns = {};
4183     // build as innerHTML where available
4184     /** @ignore */
4185     var createHtml = function(o){
4186         if(typeof o == 'string'){
4187             return o;
4188         }
4189         var b = "";
4190         if(!o.tag){
4191             o.tag = "div";
4192         }
4193         b += "<" + o.tag;
4194         for(var attr in o){
4195             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4196             if(attr == "style"){
4197                 var s = o["style"];
4198                 if(typeof s == "function"){
4199                     s = s.call();
4200                 }
4201                 if(typeof s == "string"){
4202                     b += ' style="' + s + '"';
4203                 }else if(typeof s == "object"){
4204                     b += ' style="';
4205                     for(var key in s){
4206                         if(typeof s[key] != "function"){
4207                             b += key + ":" + s[key] + ";";
4208                         }
4209                     }
4210                     b += '"';
4211                 }
4212             }else{
4213                 if(attr == "cls"){
4214                     b += ' class="' + o["cls"] + '"';
4215                 }else if(attr == "htmlFor"){
4216                     b += ' for="' + o["htmlFor"] + '"';
4217                 }else{
4218                     b += " " + attr + '="' + o[attr] + '"';
4219                 }
4220             }
4221         }
4222         if(emptyTags.test(o.tag)){
4223             b += "/>";
4224         }else{
4225             b += ">";
4226             var cn = o.children || o.cn;
4227             if(cn){
4228                 //http://bugs.kde.org/show_bug.cgi?id=71506
4229                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4230                     for(var i = 0, len = cn.length; i < len; i++) {
4231                         b += createHtml(cn[i], b);
4232                     }
4233                 }else{
4234                     b += createHtml(cn, b);
4235                 }
4236             }
4237             if(o.html){
4238                 b += o.html;
4239             }
4240             b += "</" + o.tag + ">";
4241         }
4242         return b;
4243     };
4244
4245     // build as dom
4246     /** @ignore */
4247     var createDom = function(o, parentNode){
4248          
4249         // defininition craeted..
4250         var ns = false;
4251         if (o.ns && o.ns != 'html') {
4252                
4253             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4254                 xmlns[o.ns] = o.xmlns;
4255                 ns = o.xmlns;
4256             }
4257             if (typeof(xmlns[o.ns]) == 'undefined') {
4258                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4259             }
4260             ns = xmlns[o.ns];
4261         }
4262         
4263         
4264         if (typeof(o) == 'string') {
4265             return parentNode.appendChild(document.createTextNode(o));
4266         }
4267         o.tag = o.tag || div;
4268         if (o.ns && Roo.isIE) {
4269             ns = false;
4270             o.tag = o.ns + ':' + o.tag;
4271             
4272         }
4273         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4274         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4275         for(var attr in o){
4276             
4277             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4278                     attr == "style" || typeof o[attr] == "function") { continue; }
4279                     
4280             if(attr=="cls" && Roo.isIE){
4281                 el.className = o["cls"];
4282             }else{
4283                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4284                 else { 
4285                     el[attr] = o[attr];
4286                 }
4287             }
4288         }
4289         Roo.DomHelper.applyStyles(el, o.style);
4290         var cn = o.children || o.cn;
4291         if(cn){
4292             //http://bugs.kde.org/show_bug.cgi?id=71506
4293              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4294                 for(var i = 0, len = cn.length; i < len; i++) {
4295                     createDom(cn[i], el);
4296                 }
4297             }else{
4298                 createDom(cn, el);
4299             }
4300         }
4301         if(o.html){
4302             el.innerHTML = o.html;
4303         }
4304         if(parentNode){
4305            parentNode.appendChild(el);
4306         }
4307         return el;
4308     };
4309
4310     var ieTable = function(depth, s, h, e){
4311         tempTableEl.innerHTML = [s, h, e].join('');
4312         var i = -1, el = tempTableEl;
4313         while(++i < depth){
4314             el = el.firstChild;
4315         }
4316         return el;
4317     };
4318
4319     // kill repeat to save bytes
4320     var ts = '<table>',
4321         te = '</table>',
4322         tbs = ts+'<tbody>',
4323         tbe = '</tbody>'+te,
4324         trs = tbs + '<tr>',
4325         tre = '</tr>'+tbe;
4326
4327     /**
4328      * @ignore
4329      * Nasty code for IE's broken table implementation
4330      */
4331     var insertIntoTable = function(tag, where, el, html){
4332         if(!tempTableEl){
4333             tempTableEl = document.createElement('div');
4334         }
4335         var node;
4336         var before = null;
4337         if(tag == 'td'){
4338             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4339                 return;
4340             }
4341             if(where == 'beforebegin'){
4342                 before = el;
4343                 el = el.parentNode;
4344             } else{
4345                 before = el.nextSibling;
4346                 el = el.parentNode;
4347             }
4348             node = ieTable(4, trs, html, tre);
4349         }
4350         else if(tag == 'tr'){
4351             if(where == 'beforebegin'){
4352                 before = el;
4353                 el = el.parentNode;
4354                 node = ieTable(3, tbs, html, tbe);
4355             } else if(where == 'afterend'){
4356                 before = el.nextSibling;
4357                 el = el.parentNode;
4358                 node = ieTable(3, tbs, html, tbe);
4359             } else{ // INTO a TR
4360                 if(where == 'afterbegin'){
4361                     before = el.firstChild;
4362                 }
4363                 node = ieTable(4, trs, html, tre);
4364             }
4365         } else if(tag == 'tbody'){
4366             if(where == 'beforebegin'){
4367                 before = el;
4368                 el = el.parentNode;
4369                 node = ieTable(2, ts, html, te);
4370             } else if(where == 'afterend'){
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373                 node = ieTable(2, ts, html, te);
4374             } else{
4375                 if(where == 'afterbegin'){
4376                     before = el.firstChild;
4377                 }
4378                 node = ieTable(3, tbs, html, tbe);
4379             }
4380         } else{ // TABLE
4381             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4382                 return;
4383             }
4384             if(where == 'afterbegin'){
4385                 before = el.firstChild;
4386             }
4387             node = ieTable(2, ts, html, te);
4388         }
4389         el.insertBefore(node, before);
4390         return node;
4391     };
4392
4393     return {
4394     /** True to force the use of DOM instead of html fragments @type Boolean */
4395     useDom : false,
4396
4397     /**
4398      * Returns the markup for the passed Element(s) config
4399      * @param {Object} o The Dom object spec (and children)
4400      * @return {String}
4401      */
4402     markup : function(o){
4403         return createHtml(o);
4404     },
4405
4406     /**
4407      * Applies a style specification to an element
4408      * @param {String/HTMLElement} el The element to apply styles to
4409      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4410      * a function which returns such a specification.
4411      */
4412     applyStyles : function(el, styles){
4413         if(styles){
4414            el = Roo.fly(el);
4415            if(typeof styles == "string"){
4416                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4417                var matches;
4418                while ((matches = re.exec(styles)) != null){
4419                    el.setStyle(matches[1], matches[2]);
4420                }
4421            }else if (typeof styles == "object"){
4422                for (var style in styles){
4423                   el.setStyle(style, styles[style]);
4424                }
4425            }else if (typeof styles == "function"){
4426                 Roo.DomHelper.applyStyles(el, styles.call());
4427            }
4428         }
4429     },
4430
4431     /**
4432      * Inserts an HTML fragment into the Dom
4433      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4434      * @param {HTMLElement} el The context element
4435      * @param {String} html The HTML fragmenet
4436      * @return {HTMLElement} The new node
4437      */
4438     insertHtml : function(where, el, html){
4439         where = where.toLowerCase();
4440         if(el.insertAdjacentHTML){
4441             if(tableRe.test(el.tagName)){
4442                 var rs;
4443                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4444                     return rs;
4445                 }
4446             }
4447             switch(where){
4448                 case "beforebegin":
4449                     el.insertAdjacentHTML('BeforeBegin', html);
4450                     return el.previousSibling;
4451                 case "afterbegin":
4452                     el.insertAdjacentHTML('AfterBegin', html);
4453                     return el.firstChild;
4454                 case "beforeend":
4455                     el.insertAdjacentHTML('BeforeEnd', html);
4456                     return el.lastChild;
4457                 case "afterend":
4458                     el.insertAdjacentHTML('AfterEnd', html);
4459                     return el.nextSibling;
4460             }
4461             throw 'Illegal insertion point -> "' + where + '"';
4462         }
4463         var range = el.ownerDocument.createRange();
4464         var frag;
4465         switch(where){
4466              case "beforebegin":
4467                 range.setStartBefore(el);
4468                 frag = range.createContextualFragment(html);
4469                 el.parentNode.insertBefore(frag, el);
4470                 return el.previousSibling;
4471              case "afterbegin":
4472                 if(el.firstChild){
4473                     range.setStartBefore(el.firstChild);
4474                     frag = range.createContextualFragment(html);
4475                     el.insertBefore(frag, el.firstChild);
4476                     return el.firstChild;
4477                 }else{
4478                     el.innerHTML = html;
4479                     return el.firstChild;
4480                 }
4481             case "beforeend":
4482                 if(el.lastChild){
4483                     range.setStartAfter(el.lastChild);
4484                     frag = range.createContextualFragment(html);
4485                     el.appendChild(frag);
4486                     return el.lastChild;
4487                 }else{
4488                     el.innerHTML = html;
4489                     return el.lastChild;
4490                 }
4491             case "afterend":
4492                 range.setStartAfter(el);
4493                 frag = range.createContextualFragment(html);
4494                 el.parentNode.insertBefore(frag, el.nextSibling);
4495                 return el.nextSibling;
4496             }
4497             throw 'Illegal insertion point -> "' + where + '"';
4498     },
4499
4500     /**
4501      * Creates new Dom element(s) and inserts them before el
4502      * @param {String/HTMLElement/Element} el The context element
4503      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4504      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4505      * @return {HTMLElement/Roo.Element} The new node
4506      */
4507     insertBefore : function(el, o, returnElement){
4508         return this.doInsert(el, o, returnElement, "beforeBegin");
4509     },
4510
4511     /**
4512      * Creates new Dom element(s) and inserts them after el
4513      * @param {String/HTMLElement/Element} el The context element
4514      * @param {Object} o The Dom object spec (and children)
4515      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4516      * @return {HTMLElement/Roo.Element} The new node
4517      */
4518     insertAfter : function(el, o, returnElement){
4519         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4520     },
4521
4522     /**
4523      * Creates new Dom element(s) and inserts them as the first child of el
4524      * @param {String/HTMLElement/Element} el The context element
4525      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4526      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4527      * @return {HTMLElement/Roo.Element} The new node
4528      */
4529     insertFirst : function(el, o, returnElement){
4530         return this.doInsert(el, o, returnElement, "afterBegin");
4531     },
4532
4533     // private
4534     doInsert : function(el, o, returnElement, pos, sibling){
4535         el = Roo.getDom(el);
4536         var newNode;
4537         if(this.useDom || o.ns){
4538             newNode = createDom(o, null);
4539             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4540         }else{
4541             var html = createHtml(o);
4542             newNode = this.insertHtml(pos, el, html);
4543         }
4544         return returnElement ? Roo.get(newNode, true) : newNode;
4545     },
4546
4547     /**
4548      * Creates new Dom element(s) and appends them to el
4549      * @param {String/HTMLElement/Element} el The context element
4550      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4551      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4552      * @return {HTMLElement/Roo.Element} The new node
4553      */
4554     append : function(el, o, returnElement){
4555         el = Roo.getDom(el);
4556         var newNode;
4557         if(this.useDom || o.ns){
4558             newNode = createDom(o, null);
4559             el.appendChild(newNode);
4560         }else{
4561             var html = createHtml(o);
4562             newNode = this.insertHtml("beforeEnd", el, html);
4563         }
4564         return returnElement ? Roo.get(newNode, true) : newNode;
4565     },
4566
4567     /**
4568      * Creates new Dom element(s) and overwrites the contents of el with them
4569      * @param {String/HTMLElement/Element} el The context element
4570      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4571      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4572      * @return {HTMLElement/Roo.Element} The new node
4573      */
4574     overwrite : function(el, o, returnElement){
4575         el = Roo.getDom(el);
4576         if (o.ns) {
4577           
4578             while (el.childNodes.length) {
4579                 el.removeChild(el.firstChild);
4580             }
4581             createDom(o, el);
4582         } else {
4583             el.innerHTML = createHtml(o);   
4584         }
4585         
4586         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4587     },
4588
4589     /**
4590      * Creates a new Roo.DomHelper.Template from the Dom object spec
4591      * @param {Object} o The Dom object spec (and children)
4592      * @return {Roo.DomHelper.Template} The new template
4593      */
4594     createTemplate : function(o){
4595         var html = createHtml(o);
4596         return new Roo.Template(html);
4597     }
4598     };
4599 }();
4600 /*
4601  * Based on:
4602  * Ext JS Library 1.1.1
4603  * Copyright(c) 2006-2007, Ext JS, LLC.
4604  *
4605  * Originally Released Under LGPL - original licence link has changed is not relivant.
4606  *
4607  * Fork - LGPL
4608  * <script type="text/javascript">
4609  */
4610  
4611 /**
4612 * @class Roo.Template
4613 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4614 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4615 * Usage:
4616 <pre><code>
4617 var t = new Roo.Template({
4618     html :  '&lt;div name="{id}"&gt;' + 
4619         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4620         '&lt;/div&gt;',
4621     myformat: function (value, allValues) {
4622         return 'XX' + value;
4623     }
4624 });
4625 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4626 </code></pre>
4627 * For more information see this blog post with examples:
4628 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4629      - Create Elements using DOM, HTML fragments and Templates</a>. 
4630 * @constructor
4631 * @param {Object} cfg - Configuration object.
4632 */
4633 Roo.Template = function(cfg){
4634     // BC!
4635     if(cfg instanceof Array){
4636         cfg = cfg.join("");
4637     }else if(arguments.length > 1){
4638         cfg = Array.prototype.join.call(arguments, "");
4639     }
4640     
4641     
4642     if (typeof(cfg) == 'object') {
4643         Roo.apply(this,cfg)
4644     } else {
4645         // bc
4646         this.html = cfg;
4647     }
4648     if (this.url) {
4649         this.load();
4650     }
4651     
4652 };
4653 Roo.Template.prototype = {
4654     
4655     /**
4656      * @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..
4657      *                    it should be fixed so that template is observable...
4658      */
4659     url : false,
4660     /**
4661      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4662      */
4663     html : '',
4664     /**
4665      * Returns an HTML fragment of this template with the specified values applied.
4666      * @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'})
4667      * @return {String} The HTML fragment
4668      */
4669     applyTemplate : function(values){
4670         Roo.log(["applyTemplate", values]);
4671         try {
4672            
4673             if(this.compiled){
4674                 return this.compiled(values);
4675             }
4676             var useF = this.disableFormats !== true;
4677             var fm = Roo.util.Format, tpl = this;
4678             var fn = function(m, name, format, args){
4679                 if(format && useF){
4680                     if(format.substr(0, 5) == "this."){
4681                         return tpl.call(format.substr(5), values[name], values);
4682                     }else{
4683                         if(args){
4684                             // quoted values are required for strings in compiled templates, 
4685                             // but for non compiled we need to strip them
4686                             // quoted reversed for jsmin
4687                             var re = /^\s*['"](.*)["']\s*$/;
4688                             args = args.split(',');
4689                             for(var i = 0, len = args.length; i < len; i++){
4690                                 args[i] = args[i].replace(re, "$1");
4691                             }
4692                             args = [values[name]].concat(args);
4693                         }else{
4694                             args = [values[name]];
4695                         }
4696                         return fm[format].apply(fm, args);
4697                     }
4698                 }else{
4699                     return values[name] !== undefined ? values[name] : "";
4700                 }
4701             };
4702             return this.html.replace(this.re, fn);
4703         } catch (e) {
4704             Roo.log(e);
4705             throw e;
4706         }
4707          
4708     },
4709     
4710     loading : false,
4711       
4712     load : function ()
4713     {
4714          
4715         if (this.loading) {
4716             return;
4717         }
4718         var _t = this;
4719         
4720         this.loading = true;
4721         this.compiled = false;
4722         
4723         var cx = new Roo.data.Connection();
4724         cx.request({
4725             url : this.url,
4726             method : 'GET',
4727             success : function (response) {
4728                 _t.loading = false;
4729                 _t.html = response.responseText;
4730                 _t.url = false;
4731                 _t.compile();
4732              },
4733             failure : function(response) {
4734                 Roo.log("Template failed to load from " + _t.url);
4735                 _t.loading = false;
4736             }
4737         });
4738     },
4739
4740     /**
4741      * Sets the HTML used as the template and optionally compiles it.
4742      * @param {String} html
4743      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4744      * @return {Roo.Template} this
4745      */
4746     set : function(html, compile){
4747         this.html = html;
4748         this.compiled = null;
4749         if(compile){
4750             this.compile();
4751         }
4752         return this;
4753     },
4754     
4755     /**
4756      * True to disable format functions (defaults to false)
4757      * @type Boolean
4758      */
4759     disableFormats : false,
4760     
4761     /**
4762     * The regular expression used to match template variables 
4763     * @type RegExp
4764     * @property 
4765     */
4766     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4767     
4768     /**
4769      * Compiles the template into an internal function, eliminating the RegEx overhead.
4770      * @return {Roo.Template} this
4771      */
4772     compile : function(){
4773         var fm = Roo.util.Format;
4774         var useF = this.disableFormats !== true;
4775         var sep = Roo.isGecko ? "+" : ",";
4776         var fn = function(m, name, format, args){
4777             if(format && useF){
4778                 args = args ? ',' + args : "";
4779                 if(format.substr(0, 5) != "this."){
4780                     format = "fm." + format + '(';
4781                 }else{
4782                     format = 'this.call("'+ format.substr(5) + '", ';
4783                     args = ", values";
4784                 }
4785             }else{
4786                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4787             }
4788             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4789         };
4790         var body;
4791         // branched to use + in gecko and [].join() in others
4792         if(Roo.isGecko){
4793             body = "this.compiled = function(values){ return '" +
4794                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4795                     "';};";
4796         }else{
4797             body = ["this.compiled = function(values){ return ['"];
4798             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4799             body.push("'].join('');};");
4800             body = body.join('');
4801         }
4802         /**
4803          * eval:var:values
4804          * eval:var:fm
4805          */
4806         eval(body);
4807         return this;
4808     },
4809     
4810     // private function used to call members
4811     call : function(fnName, value, allValues){
4812         return this[fnName](value, allValues);
4813     },
4814     
4815     /**
4816      * Applies the supplied values to the template and inserts the new node(s) as the first child of 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     insertFirst: function(el, values, returnElement){
4823         return this.doInsert('afterBegin', el, values, returnElement);
4824     },
4825
4826     /**
4827      * Applies the supplied values to the template and inserts the new node(s) before el.
4828      * @param {String/HTMLElement/Roo.Element} el The context element
4829      * @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'})
4830      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4831      * @return {HTMLElement/Roo.Element} The new node or Element
4832      */
4833     insertBefore: function(el, values, returnElement){
4834         return this.doInsert('beforeBegin', el, values, returnElement);
4835     },
4836
4837     /**
4838      * Applies the supplied values to the template and inserts the new node(s) after el.
4839      * @param {String/HTMLElement/Roo.Element} el The context element
4840      * @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'})
4841      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4842      * @return {HTMLElement/Roo.Element} The new node or Element
4843      */
4844     insertAfter : function(el, values, returnElement){
4845         return this.doInsert('afterEnd', el, values, returnElement);
4846     },
4847     
4848     /**
4849      * Applies the supplied values to the template and appends the new node(s) to el.
4850      * @param {String/HTMLElement/Roo.Element} el The context element
4851      * @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'})
4852      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4853      * @return {HTMLElement/Roo.Element} The new node or Element
4854      */
4855     append : function(el, values, returnElement){
4856         return this.doInsert('beforeEnd', el, values, returnElement);
4857     },
4858
4859     doInsert : function(where, el, values, returnEl){
4860         el = Roo.getDom(el);
4861         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4862         return returnEl ? Roo.get(newNode, true) : newNode;
4863     },
4864
4865     /**
4866      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4867      * @param {String/HTMLElement/Roo.Element} el The context element
4868      * @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'})
4869      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4870      * @return {HTMLElement/Roo.Element} The new node or Element
4871      */
4872     overwrite : function(el, values, returnElement){
4873         el = Roo.getDom(el);
4874         el.innerHTML = this.applyTemplate(values);
4875         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4876     }
4877 };
4878 /**
4879  * Alias for {@link #applyTemplate}
4880  * @method
4881  */
4882 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4883
4884 // backwards compat
4885 Roo.DomHelper.Template = Roo.Template;
4886
4887 /**
4888  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4889  * @param {String/HTMLElement} el A DOM element or its id
4890  * @returns {Roo.Template} The created template
4891  * @static
4892  */
4893 Roo.Template.from = function(el){
4894     el = Roo.getDom(el);
4895     return new Roo.Template(el.value || el.innerHTML);
4896 };/*
4897  * Based on:
4898  * Ext JS Library 1.1.1
4899  * Copyright(c) 2006-2007, Ext JS, LLC.
4900  *
4901  * Originally Released Under LGPL - original licence link has changed is not relivant.
4902  *
4903  * Fork - LGPL
4904  * <script type="text/javascript">
4905  */
4906  
4907
4908 /*
4909  * This is code is also distributed under MIT license for use
4910  * with jQuery and prototype JavaScript libraries.
4911  */
4912 /**
4913  * @class Roo.DomQuery
4914 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).
4915 <p>
4916 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>
4917
4918 <p>
4919 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.
4920 </p>
4921 <h4>Element Selectors:</h4>
4922 <ul class="list">
4923     <li> <b>*</b> any element</li>
4924     <li> <b>E</b> an element with the tag E</li>
4925     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4926     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4927     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4928     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4929 </ul>
4930 <h4>Attribute Selectors:</h4>
4931 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4932 <ul class="list">
4933     <li> <b>E[foo]</b> has an attribute "foo"</li>
4934     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4935     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4936     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4937     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4938     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4939     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4940 </ul>
4941 <h4>Pseudo Classes:</h4>
4942 <ul class="list">
4943     <li> <b>E:first-child</b> E is the first child of its parent</li>
4944     <li> <b>E:last-child</b> E is the last child of its parent</li>
4945     <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>
4946     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4947     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4948     <li> <b>E:only-child</b> E is the only child of its parent</li>
4949     <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>
4950     <li> <b>E:first</b> the first E in the resultset</li>
4951     <li> <b>E:last</b> the last E in the resultset</li>
4952     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4953     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4954     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4955     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4956     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
4957     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
4958     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
4959     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
4960     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
4961 </ul>
4962 <h4>CSS Value Selectors:</h4>
4963 <ul class="list">
4964     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
4965     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
4966     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
4967     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
4968     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
4969     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
4970 </ul>
4971  * @singleton
4972  */
4973 Roo.DomQuery = function(){
4974     var cache = {}, simpleCache = {}, valueCache = {};
4975     var nonSpace = /\S/;
4976     var trimRe = /^\s+|\s+$/g;
4977     var tplRe = /\{(\d+)\}/g;
4978     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
4979     var tagTokenRe = /^(#)?([\w-\*]+)/;
4980     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
4981
4982     function child(p, index){
4983         var i = 0;
4984         var n = p.firstChild;
4985         while(n){
4986             if(n.nodeType == 1){
4987                if(++i == index){
4988                    return n;
4989                }
4990             }
4991             n = n.nextSibling;
4992         }
4993         return null;
4994     };
4995
4996     function next(n){
4997         while((n = n.nextSibling) && n.nodeType != 1);
4998         return n;
4999     };
5000
5001     function prev(n){
5002         while((n = n.previousSibling) && n.nodeType != 1);
5003         return n;
5004     };
5005
5006     function children(d){
5007         var n = d.firstChild, ni = -1;
5008             while(n){
5009                 var nx = n.nextSibling;
5010                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5011                     d.removeChild(n);
5012                 }else{
5013                     n.nodeIndex = ++ni;
5014                 }
5015                 n = nx;
5016             }
5017             return this;
5018         };
5019
5020     function byClassName(c, a, v){
5021         if(!v){
5022             return c;
5023         }
5024         var r = [], ri = -1, cn;
5025         for(var i = 0, ci; ci = c[i]; i++){
5026             if((' '+ci.className+' ').indexOf(v) != -1){
5027                 r[++ri] = ci;
5028             }
5029         }
5030         return r;
5031     };
5032
5033     function attrValue(n, attr){
5034         if(!n.tagName && typeof n.length != "undefined"){
5035             n = n[0];
5036         }
5037         if(!n){
5038             return null;
5039         }
5040         if(attr == "for"){
5041             return n.htmlFor;
5042         }
5043         if(attr == "class" || attr == "className"){
5044             return n.className;
5045         }
5046         return n.getAttribute(attr) || n[attr];
5047
5048     };
5049
5050     function getNodes(ns, mode, tagName){
5051         var result = [], ri = -1, cs;
5052         if(!ns){
5053             return result;
5054         }
5055         tagName = tagName || "*";
5056         if(typeof ns.getElementsByTagName != "undefined"){
5057             ns = [ns];
5058         }
5059         if(!mode){
5060             for(var i = 0, ni; ni = ns[i]; i++){
5061                 cs = ni.getElementsByTagName(tagName);
5062                 for(var j = 0, ci; ci = cs[j]; j++){
5063                     result[++ri] = ci;
5064                 }
5065             }
5066         }else if(mode == "/" || mode == ">"){
5067             var utag = tagName.toUpperCase();
5068             for(var i = 0, ni, cn; ni = ns[i]; i++){
5069                 cn = ni.children || ni.childNodes;
5070                 for(var j = 0, cj; cj = cn[j]; j++){
5071                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5072                         result[++ri] = cj;
5073                     }
5074                 }
5075             }
5076         }else if(mode == "+"){
5077             var utag = tagName.toUpperCase();
5078             for(var i = 0, n; n = ns[i]; i++){
5079                 while((n = n.nextSibling) && n.nodeType != 1);
5080                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5081                     result[++ri] = n;
5082                 }
5083             }
5084         }else if(mode == "~"){
5085             for(var i = 0, n; n = ns[i]; i++){
5086                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5087                 if(n){
5088                     result[++ri] = n;
5089                 }
5090             }
5091         }
5092         return result;
5093     };
5094
5095     function concat(a, b){
5096         if(b.slice){
5097             return a.concat(b);
5098         }
5099         for(var i = 0, l = b.length; i < l; i++){
5100             a[a.length] = b[i];
5101         }
5102         return a;
5103     }
5104
5105     function byTag(cs, tagName){
5106         if(cs.tagName || cs == document){
5107             cs = [cs];
5108         }
5109         if(!tagName){
5110             return cs;
5111         }
5112         var r = [], ri = -1;
5113         tagName = tagName.toLowerCase();
5114         for(var i = 0, ci; ci = cs[i]; i++){
5115             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5116                 r[++ri] = ci;
5117             }
5118         }
5119         return r;
5120     };
5121
5122     function byId(cs, attr, id){
5123         if(cs.tagName || cs == document){
5124             cs = [cs];
5125         }
5126         if(!id){
5127             return cs;
5128         }
5129         var r = [], ri = -1;
5130         for(var i = 0,ci; ci = cs[i]; i++){
5131             if(ci && ci.id == id){
5132                 r[++ri] = ci;
5133                 return r;
5134             }
5135         }
5136         return r;
5137     };
5138
5139     function byAttribute(cs, attr, value, op, custom){
5140         var r = [], ri = -1, st = custom=="{";
5141         var f = Roo.DomQuery.operators[op];
5142         for(var i = 0, ci; ci = cs[i]; i++){
5143             var a;
5144             if(st){
5145                 a = Roo.DomQuery.getStyle(ci, attr);
5146             }
5147             else if(attr == "class" || attr == "className"){
5148                 a = ci.className;
5149             }else if(attr == "for"){
5150                 a = ci.htmlFor;
5151             }else if(attr == "href"){
5152                 a = ci.getAttribute("href", 2);
5153             }else{
5154                 a = ci.getAttribute(attr);
5155             }
5156             if((f && f(a, value)) || (!f && a)){
5157                 r[++ri] = ci;
5158             }
5159         }
5160         return r;
5161     };
5162
5163     function byPseudo(cs, name, value){
5164         return Roo.DomQuery.pseudos[name](cs, value);
5165     };
5166
5167     // This is for IE MSXML which does not support expandos.
5168     // IE runs the same speed using setAttribute, however FF slows way down
5169     // and Safari completely fails so they need to continue to use expandos.
5170     var isIE = window.ActiveXObject ? true : false;
5171
5172     // this eval is stop the compressor from
5173     // renaming the variable to something shorter
5174     
5175     /** eval:var:batch */
5176     var batch = 30803; 
5177
5178     var key = 30803;
5179
5180     function nodupIEXml(cs){
5181         var d = ++key;
5182         cs[0].setAttribute("_nodup", d);
5183         var r = [cs[0]];
5184         for(var i = 1, len = cs.length; i < len; i++){
5185             var c = cs[i];
5186             if(!c.getAttribute("_nodup") != d){
5187                 c.setAttribute("_nodup", d);
5188                 r[r.length] = c;
5189             }
5190         }
5191         for(var i = 0, len = cs.length; i < len; i++){
5192             cs[i].removeAttribute("_nodup");
5193         }
5194         return r;
5195     }
5196
5197     function nodup(cs){
5198         if(!cs){
5199             return [];
5200         }
5201         var len = cs.length, c, i, r = cs, cj, ri = -1;
5202         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5203             return cs;
5204         }
5205         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5206             return nodupIEXml(cs);
5207         }
5208         var d = ++key;
5209         cs[0]._nodup = d;
5210         for(i = 1; c = cs[i]; i++){
5211             if(c._nodup != d){
5212                 c._nodup = d;
5213             }else{
5214                 r = [];
5215                 for(var j = 0; j < i; j++){
5216                     r[++ri] = cs[j];
5217                 }
5218                 for(j = i+1; cj = cs[j]; j++){
5219                     if(cj._nodup != d){
5220                         cj._nodup = d;
5221                         r[++ri] = cj;
5222                     }
5223                 }
5224                 return r;
5225             }
5226         }
5227         return r;
5228     }
5229
5230     function quickDiffIEXml(c1, c2){
5231         var d = ++key;
5232         for(var i = 0, len = c1.length; i < len; i++){
5233             c1[i].setAttribute("_qdiff", d);
5234         }
5235         var r = [];
5236         for(var i = 0, len = c2.length; i < len; i++){
5237             if(c2[i].getAttribute("_qdiff") != d){
5238                 r[r.length] = c2[i];
5239             }
5240         }
5241         for(var i = 0, len = c1.length; i < len; i++){
5242            c1[i].removeAttribute("_qdiff");
5243         }
5244         return r;
5245     }
5246
5247     function quickDiff(c1, c2){
5248         var len1 = c1.length;
5249         if(!len1){
5250             return c2;
5251         }
5252         if(isIE && c1[0].selectSingleNode){
5253             return quickDiffIEXml(c1, c2);
5254         }
5255         var d = ++key;
5256         for(var i = 0; i < len1; i++){
5257             c1[i]._qdiff = d;
5258         }
5259         var r = [];
5260         for(var i = 0, len = c2.length; i < len; i++){
5261             if(c2[i]._qdiff != d){
5262                 r[r.length] = c2[i];
5263             }
5264         }
5265         return r;
5266     }
5267
5268     function quickId(ns, mode, root, id){
5269         if(ns == root){
5270            var d = root.ownerDocument || root;
5271            return d.getElementById(id);
5272         }
5273         ns = getNodes(ns, mode, "*");
5274         return byId(ns, null, id);
5275     }
5276
5277     return {
5278         getStyle : function(el, name){
5279             return Roo.fly(el).getStyle(name);
5280         },
5281         /**
5282          * Compiles a selector/xpath query into a reusable function. The returned function
5283          * takes one parameter "root" (optional), which is the context node from where the query should start.
5284          * @param {String} selector The selector/xpath query
5285          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5286          * @return {Function}
5287          */
5288         compile : function(path, type){
5289             type = type || "select";
5290             
5291             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5292             var q = path, mode, lq;
5293             var tk = Roo.DomQuery.matchers;
5294             var tklen = tk.length;
5295             var mm;
5296
5297             // accept leading mode switch
5298             var lmode = q.match(modeRe);
5299             if(lmode && lmode[1]){
5300                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5301                 q = q.replace(lmode[1], "");
5302             }
5303             // strip leading slashes
5304             while(path.substr(0, 1)=="/"){
5305                 path = path.substr(1);
5306             }
5307
5308             while(q && lq != q){
5309                 lq = q;
5310                 var tm = q.match(tagTokenRe);
5311                 if(type == "select"){
5312                     if(tm){
5313                         if(tm[1] == "#"){
5314                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5315                         }else{
5316                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5317                         }
5318                         q = q.replace(tm[0], "");
5319                     }else if(q.substr(0, 1) != '@'){
5320                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5321                     }
5322                 }else{
5323                     if(tm){
5324                         if(tm[1] == "#"){
5325                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5326                         }else{
5327                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5328                         }
5329                         q = q.replace(tm[0], "");
5330                     }
5331                 }
5332                 while(!(mm = q.match(modeRe))){
5333                     var matched = false;
5334                     for(var j = 0; j < tklen; j++){
5335                         var t = tk[j];
5336                         var m = q.match(t.re);
5337                         if(m){
5338                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5339                                                     return m[i];
5340                                                 });
5341                             q = q.replace(m[0], "");
5342                             matched = true;
5343                             break;
5344                         }
5345                     }
5346                     // prevent infinite loop on bad selector
5347                     if(!matched){
5348                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5349                     }
5350                 }
5351                 if(mm[1]){
5352                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5353                     q = q.replace(mm[1], "");
5354                 }
5355             }
5356             fn[fn.length] = "return nodup(n);\n}";
5357             
5358              /** 
5359               * list of variables that need from compression as they are used by eval.
5360              *  eval:var:batch 
5361              *  eval:var:nodup
5362              *  eval:var:byTag
5363              *  eval:var:ById
5364              *  eval:var:getNodes
5365              *  eval:var:quickId
5366              *  eval:var:mode
5367              *  eval:var:root
5368              *  eval:var:n
5369              *  eval:var:byClassName
5370              *  eval:var:byPseudo
5371              *  eval:var:byAttribute
5372              *  eval:var:attrValue
5373              * 
5374              **/ 
5375             eval(fn.join(""));
5376             return f;
5377         },
5378
5379         /**
5380          * Selects a group of elements.
5381          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5382          * @param {Node} root (optional) The start of the query (defaults to document).
5383          * @return {Array}
5384          */
5385         select : function(path, root, type){
5386             if(!root || root == document){
5387                 root = document;
5388             }
5389             if(typeof root == "string"){
5390                 root = document.getElementById(root);
5391             }
5392             var paths = path.split(",");
5393             var results = [];
5394             for(var i = 0, len = paths.length; i < len; i++){
5395                 var p = paths[i].replace(trimRe, "");
5396                 if(!cache[p]){
5397                     cache[p] = Roo.DomQuery.compile(p);
5398                     if(!cache[p]){
5399                         throw p + " is not a valid selector";
5400                     }
5401                 }
5402                 var result = cache[p](root);
5403                 if(result && result != document){
5404                     results = results.concat(result);
5405                 }
5406             }
5407             if(paths.length > 1){
5408                 return nodup(results);
5409             }
5410             return results;
5411         },
5412
5413         /**
5414          * Selects a single element.
5415          * @param {String} selector The selector/xpath query
5416          * @param {Node} root (optional) The start of the query (defaults to document).
5417          * @return {Element}
5418          */
5419         selectNode : function(path, root){
5420             return Roo.DomQuery.select(path, root)[0];
5421         },
5422
5423         /**
5424          * Selects the value of a node, optionally replacing null with the defaultValue.
5425          * @param {String} selector The selector/xpath query
5426          * @param {Node} root (optional) The start of the query (defaults to document).
5427          * @param {String} defaultValue
5428          */
5429         selectValue : function(path, root, defaultValue){
5430             path = path.replace(trimRe, "");
5431             if(!valueCache[path]){
5432                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5433             }
5434             var n = valueCache[path](root);
5435             n = n[0] ? n[0] : n;
5436             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5437             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5438         },
5439
5440         /**
5441          * Selects the value of a node, parsing integers and floats.
5442          * @param {String} selector The selector/xpath query
5443          * @param {Node} root (optional) The start of the query (defaults to document).
5444          * @param {Number} defaultValue
5445          * @return {Number}
5446          */
5447         selectNumber : function(path, root, defaultValue){
5448             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5449             return parseFloat(v);
5450         },
5451
5452         /**
5453          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5454          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5455          * @param {String} selector The simple selector to test
5456          * @return {Boolean}
5457          */
5458         is : function(el, ss){
5459             if(typeof el == "string"){
5460                 el = document.getElementById(el);
5461             }
5462             var isArray = (el instanceof Array);
5463             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5464             return isArray ? (result.length == el.length) : (result.length > 0);
5465         },
5466
5467         /**
5468          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5469          * @param {Array} el An array of elements to filter
5470          * @param {String} selector The simple selector to test
5471          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5472          * the selector instead of the ones that match
5473          * @return {Array}
5474          */
5475         filter : function(els, ss, nonMatches){
5476             ss = ss.replace(trimRe, "");
5477             if(!simpleCache[ss]){
5478                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5479             }
5480             var result = simpleCache[ss](els);
5481             return nonMatches ? quickDiff(result, els) : result;
5482         },
5483
5484         /**
5485          * Collection of matching regular expressions and code snippets.
5486          */
5487         matchers : [{
5488                 re: /^\.([\w-]+)/,
5489                 select: 'n = byClassName(n, null, " {1} ");'
5490             }, {
5491                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5492                 select: 'n = byPseudo(n, "{1}", "{2}");'
5493             },{
5494                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5495                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5496             }, {
5497                 re: /^#([\w-]+)/,
5498                 select: 'n = byId(n, null, "{1}");'
5499             },{
5500                 re: /^@([\w-]+)/,
5501                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5502             }
5503         ],
5504
5505         /**
5506          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5507          * 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;.
5508          */
5509         operators : {
5510             "=" : function(a, v){
5511                 return a == v;
5512             },
5513             "!=" : function(a, v){
5514                 return a != v;
5515             },
5516             "^=" : function(a, v){
5517                 return a && a.substr(0, v.length) == v;
5518             },
5519             "$=" : function(a, v){
5520                 return a && a.substr(a.length-v.length) == v;
5521             },
5522             "*=" : function(a, v){
5523                 return a && a.indexOf(v) !== -1;
5524             },
5525             "%=" : function(a, v){
5526                 return (a % v) == 0;
5527             },
5528             "|=" : function(a, v){
5529                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5530             },
5531             "~=" : function(a, v){
5532                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5533             }
5534         },
5535
5536         /**
5537          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5538          * and the argument (if any) supplied in the selector.
5539          */
5540         pseudos : {
5541             "first-child" : function(c){
5542                 var r = [], ri = -1, n;
5543                 for(var i = 0, ci; ci = n = c[i]; i++){
5544                     while((n = n.previousSibling) && n.nodeType != 1);
5545                     if(!n){
5546                         r[++ri] = ci;
5547                     }
5548                 }
5549                 return r;
5550             },
5551
5552             "last-child" : function(c){
5553                 var r = [], ri = -1, n;
5554                 for(var i = 0, ci; ci = n = c[i]; i++){
5555                     while((n = n.nextSibling) && n.nodeType != 1);
5556                     if(!n){
5557                         r[++ri] = ci;
5558                     }
5559                 }
5560                 return r;
5561             },
5562
5563             "nth-child" : function(c, a) {
5564                 var r = [], ri = -1;
5565                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5566                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5567                 for(var i = 0, n; n = c[i]; i++){
5568                     var pn = n.parentNode;
5569                     if (batch != pn._batch) {
5570                         var j = 0;
5571                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5572                             if(cn.nodeType == 1){
5573                                cn.nodeIndex = ++j;
5574                             }
5575                         }
5576                         pn._batch = batch;
5577                     }
5578                     if (f == 1) {
5579                         if (l == 0 || n.nodeIndex == l){
5580                             r[++ri] = n;
5581                         }
5582                     } else if ((n.nodeIndex + l) % f == 0){
5583                         r[++ri] = n;
5584                     }
5585                 }
5586
5587                 return r;
5588             },
5589
5590             "only-child" : function(c){
5591                 var r = [], ri = -1;;
5592                 for(var i = 0, ci; ci = c[i]; i++){
5593                     if(!prev(ci) && !next(ci)){
5594                         r[++ri] = ci;
5595                     }
5596                 }
5597                 return r;
5598             },
5599
5600             "empty" : function(c){
5601                 var r = [], ri = -1;
5602                 for(var i = 0, ci; ci = c[i]; i++){
5603                     var cns = ci.childNodes, j = 0, cn, empty = true;
5604                     while(cn = cns[j]){
5605                         ++j;
5606                         if(cn.nodeType == 1 || cn.nodeType == 3){
5607                             empty = false;
5608                             break;
5609                         }
5610                     }
5611                     if(empty){
5612                         r[++ri] = ci;
5613                     }
5614                 }
5615                 return r;
5616             },
5617
5618             "contains" : function(c, v){
5619                 var r = [], ri = -1;
5620                 for(var i = 0, ci; ci = c[i]; i++){
5621                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5622                         r[++ri] = ci;
5623                     }
5624                 }
5625                 return r;
5626             },
5627
5628             "nodeValue" : function(c, v){
5629                 var r = [], ri = -1;
5630                 for(var i = 0, ci; ci = c[i]; i++){
5631                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5632                         r[++ri] = ci;
5633                     }
5634                 }
5635                 return r;
5636             },
5637
5638             "checked" : function(c){
5639                 var r = [], ri = -1;
5640                 for(var i = 0, ci; ci = c[i]; i++){
5641                     if(ci.checked == true){
5642                         r[++ri] = ci;
5643                     }
5644                 }
5645                 return r;
5646             },
5647
5648             "not" : function(c, ss){
5649                 return Roo.DomQuery.filter(c, ss, true);
5650             },
5651
5652             "odd" : function(c){
5653                 return this["nth-child"](c, "odd");
5654             },
5655
5656             "even" : function(c){
5657                 return this["nth-child"](c, "even");
5658             },
5659
5660             "nth" : function(c, a){
5661                 return c[a-1] || [];
5662             },
5663
5664             "first" : function(c){
5665                 return c[0] || [];
5666             },
5667
5668             "last" : function(c){
5669                 return c[c.length-1] || [];
5670             },
5671
5672             "has" : function(c, ss){
5673                 var s = Roo.DomQuery.select;
5674                 var r = [], ri = -1;
5675                 for(var i = 0, ci; ci = c[i]; i++){
5676                     if(s(ss, ci).length > 0){
5677                         r[++ri] = ci;
5678                     }
5679                 }
5680                 return r;
5681             },
5682
5683             "next" : function(c, ss){
5684                 var is = Roo.DomQuery.is;
5685                 var r = [], ri = -1;
5686                 for(var i = 0, ci; ci = c[i]; i++){
5687                     var n = next(ci);
5688                     if(n && is(n, ss)){
5689                         r[++ri] = ci;
5690                     }
5691                 }
5692                 return r;
5693             },
5694
5695             "prev" : function(c, ss){
5696                 var is = Roo.DomQuery.is;
5697                 var r = [], ri = -1;
5698                 for(var i = 0, ci; ci = c[i]; i++){
5699                     var n = prev(ci);
5700                     if(n && is(n, ss)){
5701                         r[++ri] = ci;
5702                     }
5703                 }
5704                 return r;
5705             }
5706         }
5707     };
5708 }();
5709
5710 /**
5711  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5712  * @param {String} path The selector/xpath query
5713  * @param {Node} root (optional) The start of the query (defaults to document).
5714  * @return {Array}
5715  * @member Roo
5716  * @method query
5717  */
5718 Roo.query = Roo.DomQuery.select;
5719 /*
5720  * Based on:
5721  * Ext JS Library 1.1.1
5722  * Copyright(c) 2006-2007, Ext JS, LLC.
5723  *
5724  * Originally Released Under LGPL - original licence link has changed is not relivant.
5725  *
5726  * Fork - LGPL
5727  * <script type="text/javascript">
5728  */
5729
5730 /**
5731  * @class Roo.util.Observable
5732  * Base class that provides a common interface for publishing events. Subclasses are expected to
5733  * to have a property "events" with all the events defined.<br>
5734  * For example:
5735  * <pre><code>
5736  Employee = function(name){
5737     this.name = name;
5738     this.addEvents({
5739         "fired" : true,
5740         "quit" : true
5741     });
5742  }
5743  Roo.extend(Employee, Roo.util.Observable);
5744 </code></pre>
5745  * @param {Object} config properties to use (incuding events / listeners)
5746  */
5747
5748 Roo.util.Observable = function(cfg){
5749     
5750     cfg = cfg|| {};
5751     this.addEvents(cfg.events || {});
5752     if (cfg.events) {
5753         delete cfg.events; // make sure
5754     }
5755      
5756     Roo.apply(this, cfg);
5757     
5758     if(this.listeners){
5759         this.on(this.listeners);
5760         delete this.listeners;
5761     }
5762 };
5763 Roo.util.Observable.prototype = {
5764     /** 
5765  * @cfg {Object} listeners  list of events and functions to call for this object, 
5766  * For example :
5767  * <pre><code>
5768     listeners :  { 
5769        'click' : function(e) {
5770            ..... 
5771         } ,
5772         .... 
5773     } 
5774   </code></pre>
5775  */
5776     
5777     
5778     /**
5779      * Fires the specified event with the passed parameters (minus the event name).
5780      * @param {String} eventName
5781      * @param {Object...} args Variable number of parameters are passed to handlers
5782      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5783      */
5784     fireEvent : function(){
5785         var ce = this.events[arguments[0].toLowerCase()];
5786         if(typeof ce == "object"){
5787             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5788         }else{
5789             return true;
5790         }
5791     },
5792
5793     // private
5794     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5795
5796     /**
5797      * Appends an event handler to this component
5798      * @param {String}   eventName The type of event to listen for
5799      * @param {Function} handler The method the event invokes
5800      * @param {Object}   scope (optional) The scope in which to execute the handler
5801      * function. The handler function's "this" context.
5802      * @param {Object}   options (optional) An object containing handler configuration
5803      * properties. This may contain any of the following properties:<ul>
5804      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5805      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5806      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5807      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5808      * by the specified number of milliseconds. If the event fires again within that time, the original
5809      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5810      * </ul><br>
5811      * <p>
5812      * <b>Combining Options</b><br>
5813      * Using the options argument, it is possible to combine different types of listeners:<br>
5814      * <br>
5815      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5816                 <pre><code>
5817                 el.on('click', this.onClick, this, {
5818                         single: true,
5819                 delay: 100,
5820                 forumId: 4
5821                 });
5822                 </code></pre>
5823      * <p>
5824      * <b>Attaching multiple handlers in 1 call</b><br>
5825      * The method also allows for a single argument to be passed which is a config object containing properties
5826      * which specify multiple handlers.
5827      * <pre><code>
5828                 el.on({
5829                         'click': {
5830                         fn: this.onClick,
5831                         scope: this,
5832                         delay: 100
5833                 }, 
5834                 'mouseover': {
5835                         fn: this.onMouseOver,
5836                         scope: this
5837                 },
5838                 'mouseout': {
5839                         fn: this.onMouseOut,
5840                         scope: this
5841                 }
5842                 });
5843                 </code></pre>
5844      * <p>
5845      * Or a shorthand syntax which passes the same scope object to all handlers:
5846         <pre><code>
5847                 el.on({
5848                         'click': this.onClick,
5849                 'mouseover': this.onMouseOver,
5850                 'mouseout': this.onMouseOut,
5851                 scope: this
5852                 });
5853                 </code></pre>
5854      */
5855     addListener : function(eventName, fn, scope, o){
5856         if(typeof eventName == "object"){
5857             o = eventName;
5858             for(var e in o){
5859                 if(this.filterOptRe.test(e)){
5860                     continue;
5861                 }
5862                 if(typeof o[e] == "function"){
5863                     // shared options
5864                     this.addListener(e, o[e], o.scope,  o);
5865                 }else{
5866                     // individual options
5867                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5868                 }
5869             }
5870             return;
5871         }
5872         o = (!o || typeof o == "boolean") ? {} : o;
5873         eventName = eventName.toLowerCase();
5874         var ce = this.events[eventName] || true;
5875         if(typeof ce == "boolean"){
5876             ce = new Roo.util.Event(this, eventName);
5877             this.events[eventName] = ce;
5878         }
5879         ce.addListener(fn, scope, o);
5880     },
5881
5882     /**
5883      * Removes a listener
5884      * @param {String}   eventName     The type of event to listen for
5885      * @param {Function} handler        The handler to remove
5886      * @param {Object}   scope  (optional) The scope (this object) for the handler
5887      */
5888     removeListener : function(eventName, fn, scope){
5889         var ce = this.events[eventName.toLowerCase()];
5890         if(typeof ce == "object"){
5891             ce.removeListener(fn, scope);
5892         }
5893     },
5894
5895     /**
5896      * Removes all listeners for this object
5897      */
5898     purgeListeners : function(){
5899         for(var evt in this.events){
5900             if(typeof this.events[evt] == "object"){
5901                  this.events[evt].clearListeners();
5902             }
5903         }
5904     },
5905
5906     relayEvents : function(o, events){
5907         var createHandler = function(ename){
5908             return function(){
5909                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5910             };
5911         };
5912         for(var i = 0, len = events.length; i < len; i++){
5913             var ename = events[i];
5914             if(!this.events[ename]){ this.events[ename] = true; };
5915             o.on(ename, createHandler(ename), this);
5916         }
5917     },
5918
5919     /**
5920      * Used to define events on this Observable
5921      * @param {Object} object The object with the events defined
5922      */
5923     addEvents : function(o){
5924         if(!this.events){
5925             this.events = {};
5926         }
5927         Roo.applyIf(this.events, o);
5928     },
5929
5930     /**
5931      * Checks to see if this object has any listeners for a specified event
5932      * @param {String} eventName The name of the event to check for
5933      * @return {Boolean} True if the event is being listened for, else false
5934      */
5935     hasListener : function(eventName){
5936         var e = this.events[eventName];
5937         return typeof e == "object" && e.listeners.length > 0;
5938     }
5939 };
5940 /**
5941  * Appends an event handler to this element (shorthand for addListener)
5942  * @param {String}   eventName     The type of event to listen for
5943  * @param {Function} handler        The method the event invokes
5944  * @param {Object}   scope (optional) The scope in which to execute the handler
5945  * function. The handler function's "this" context.
5946  * @param {Object}   options  (optional)
5947  * @method
5948  */
5949 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5950 /**
5951  * Removes a listener (shorthand for removeListener)
5952  * @param {String}   eventName     The type of event to listen for
5953  * @param {Function} handler        The handler to remove
5954  * @param {Object}   scope  (optional) The scope (this object) for the handler
5955  * @method
5956  */
5957 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
5958
5959 /**
5960  * Starts capture on the specified Observable. All events will be passed
5961  * to the supplied function with the event name + standard signature of the event
5962  * <b>before</b> the event is fired. If the supplied function returns false,
5963  * the event will not fire.
5964  * @param {Observable} o The Observable to capture
5965  * @param {Function} fn The function to call
5966  * @param {Object} scope (optional) The scope (this object) for the fn
5967  * @static
5968  */
5969 Roo.util.Observable.capture = function(o, fn, scope){
5970     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
5971 };
5972
5973 /**
5974  * Removes <b>all</b> added captures from the Observable.
5975  * @param {Observable} o The Observable to release
5976  * @static
5977  */
5978 Roo.util.Observable.releaseCapture = function(o){
5979     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
5980 };
5981
5982 (function(){
5983
5984     var createBuffered = function(h, o, scope){
5985         var task = new Roo.util.DelayedTask();
5986         return function(){
5987             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
5988         };
5989     };
5990
5991     var createSingle = function(h, e, fn, scope){
5992         return function(){
5993             e.removeListener(fn, scope);
5994             return h.apply(scope, arguments);
5995         };
5996     };
5997
5998     var createDelayed = function(h, o, scope){
5999         return function(){
6000             var args = Array.prototype.slice.call(arguments, 0);
6001             setTimeout(function(){
6002                 h.apply(scope, args);
6003             }, o.delay || 10);
6004         };
6005     };
6006
6007     Roo.util.Event = function(obj, name){
6008         this.name = name;
6009         this.obj = obj;
6010         this.listeners = [];
6011     };
6012
6013     Roo.util.Event.prototype = {
6014         addListener : function(fn, scope, options){
6015             var o = options || {};
6016             scope = scope || this.obj;
6017             if(!this.isListening(fn, scope)){
6018                 var l = {fn: fn, scope: scope, options: o};
6019                 var h = fn;
6020                 if(o.delay){
6021                     h = createDelayed(h, o, scope);
6022                 }
6023                 if(o.single){
6024                     h = createSingle(h, this, fn, scope);
6025                 }
6026                 if(o.buffer){
6027                     h = createBuffered(h, o, scope);
6028                 }
6029                 l.fireFn = h;
6030                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6031                     this.listeners.push(l);
6032                 }else{
6033                     this.listeners = this.listeners.slice(0);
6034                     this.listeners.push(l);
6035                 }
6036             }
6037         },
6038
6039         findListener : function(fn, scope){
6040             scope = scope || this.obj;
6041             var ls = this.listeners;
6042             for(var i = 0, len = ls.length; i < len; i++){
6043                 var l = ls[i];
6044                 if(l.fn == fn && l.scope == scope){
6045                     return i;
6046                 }
6047             }
6048             return -1;
6049         },
6050
6051         isListening : function(fn, scope){
6052             return this.findListener(fn, scope) != -1;
6053         },
6054
6055         removeListener : function(fn, scope){
6056             var index;
6057             if((index = this.findListener(fn, scope)) != -1){
6058                 if(!this.firing){
6059                     this.listeners.splice(index, 1);
6060                 }else{
6061                     this.listeners = this.listeners.slice(0);
6062                     this.listeners.splice(index, 1);
6063                 }
6064                 return true;
6065             }
6066             return false;
6067         },
6068
6069         clearListeners : function(){
6070             this.listeners = [];
6071         },
6072
6073         fire : function(){
6074             var ls = this.listeners, scope, len = ls.length;
6075             if(len > 0){
6076                 this.firing = true;
6077                 
6078                 for(var i = 0; i < len; i++){
6079                     var args = Array.prototype.slice.call(arguments, 0);
6080                     var l = ls[i];
6081                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6082                         this.firing = false;
6083                         return false;
6084                     }
6085                 }
6086                 this.firing = false;
6087             }
6088             return true;
6089         }
6090     };
6091 })();/*
6092  * RooJS Library 
6093  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6094  *
6095  * Licence LGPL 
6096  *
6097  */
6098  
6099 /**
6100  * @class Roo.Document
6101  * @extends Roo.util.Observable
6102  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6103  * 
6104  * @param {Object} config the methods and properties of the 'base' class for the application.
6105  * 
6106  *  Generic Page handler - implement this to start your app..
6107  * 
6108  * eg.
6109  *  MyProject = new Roo.Document({
6110         events : {
6111             'load' : true // your events..
6112         },
6113         listeners : {
6114             'ready' : function() {
6115                 // fired on Roo.onReady()
6116             }
6117         }
6118  * 
6119  */
6120 Roo.Document = function(cfg) {
6121      
6122     this.addEvents({ 
6123         'ready' : true
6124     });
6125     Roo.util.Observable.call(this,cfg);
6126     
6127     var _this = this;
6128     
6129     Roo.onReady(function() {
6130         _this.fireEvent('ready');
6131     },null,false);
6132     
6133     
6134 }
6135
6136 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6137  * Based on:
6138  * Ext JS Library 1.1.1
6139  * Copyright(c) 2006-2007, Ext JS, LLC.
6140  *
6141  * Originally Released Under LGPL - original licence link has changed is not relivant.
6142  *
6143  * Fork - LGPL
6144  * <script type="text/javascript">
6145  */
6146
6147 /**
6148  * @class Roo.EventManager
6149  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6150  * several useful events directly.
6151  * See {@link Roo.EventObject} for more details on normalized event objects.
6152  * @singleton
6153  */
6154 Roo.EventManager = function(){
6155     var docReadyEvent, docReadyProcId, docReadyState = false;
6156     var resizeEvent, resizeTask, textEvent, textSize;
6157     var E = Roo.lib.Event;
6158     var D = Roo.lib.Dom;
6159
6160     
6161     
6162
6163     var fireDocReady = function(){
6164         if(!docReadyState){
6165             docReadyState = true;
6166             Roo.isReady = true;
6167             if(docReadyProcId){
6168                 clearInterval(docReadyProcId);
6169             }
6170             if(Roo.isGecko || Roo.isOpera) {
6171                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6172             }
6173             if(Roo.isIE){
6174                 var defer = document.getElementById("ie-deferred-loader");
6175                 if(defer){
6176                     defer.onreadystatechange = null;
6177                     defer.parentNode.removeChild(defer);
6178                 }
6179             }
6180             if(docReadyEvent){
6181                 docReadyEvent.fire();
6182                 docReadyEvent.clearListeners();
6183             }
6184         }
6185     };
6186     
6187     var initDocReady = function(){
6188         docReadyEvent = new Roo.util.Event();
6189         if(Roo.isGecko || Roo.isOpera) {
6190             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6191         }else if(Roo.isIE){
6192             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6193             var defer = document.getElementById("ie-deferred-loader");
6194             defer.onreadystatechange = function(){
6195                 if(this.readyState == "complete"){
6196                     fireDocReady();
6197                 }
6198             };
6199         }else if(Roo.isSafari){ 
6200             docReadyProcId = setInterval(function(){
6201                 var rs = document.readyState;
6202                 if(rs == "complete") {
6203                     fireDocReady();     
6204                  }
6205             }, 10);
6206         }
6207         // no matter what, make sure it fires on load
6208         E.on(window, "load", fireDocReady);
6209     };
6210
6211     var createBuffered = function(h, o){
6212         var task = new Roo.util.DelayedTask(h);
6213         return function(e){
6214             // create new event object impl so new events don't wipe out properties
6215             e = new Roo.EventObjectImpl(e);
6216             task.delay(o.buffer, h, null, [e]);
6217         };
6218     };
6219
6220     var createSingle = function(h, el, ename, fn){
6221         return function(e){
6222             Roo.EventManager.removeListener(el, ename, fn);
6223             h(e);
6224         };
6225     };
6226
6227     var createDelayed = function(h, o){
6228         return function(e){
6229             // create new event object impl so new events don't wipe out properties
6230             e = new Roo.EventObjectImpl(e);
6231             setTimeout(function(){
6232                 h(e);
6233             }, o.delay || 10);
6234         };
6235     };
6236     var transitionEndVal = false;
6237     
6238     var transitionEnd = function()
6239     {
6240         if (transitionEndVal) {
6241             return transitionEndVal;
6242         }
6243         var el = document.createElement('div');
6244
6245         var transEndEventNames = {
6246             WebkitTransition : 'webkitTransitionEnd',
6247             MozTransition    : 'transitionend',
6248             OTransition      : 'oTransitionEnd otransitionend',
6249             transition       : 'transitionend'
6250         };
6251     
6252         for (var name in transEndEventNames) {
6253             if (el.style[name] !== undefined) {
6254                 transitionEndVal = transEndEventNames[name];
6255                 return  transitionEndVal ;
6256             }
6257         }
6258     }
6259     
6260
6261     var listen = function(element, ename, opt, fn, scope){
6262         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6263         fn = fn || o.fn; scope = scope || o.scope;
6264         var el = Roo.getDom(element);
6265         
6266         
6267         if(!el){
6268             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6269         }
6270         
6271         if (ename == 'transitionend') {
6272             ename = transitionEnd();
6273         }
6274         var h = function(e){
6275             e = Roo.EventObject.setEvent(e);
6276             var t;
6277             if(o.delegate){
6278                 t = e.getTarget(o.delegate, el);
6279                 if(!t){
6280                     return;
6281                 }
6282             }else{
6283                 t = e.target;
6284             }
6285             if(o.stopEvent === true){
6286                 e.stopEvent();
6287             }
6288             if(o.preventDefault === true){
6289                e.preventDefault();
6290             }
6291             if(o.stopPropagation === true){
6292                 e.stopPropagation();
6293             }
6294
6295             if(o.normalized === false){
6296                 e = e.browserEvent;
6297             }
6298
6299             fn.call(scope || el, e, t, o);
6300         };
6301         if(o.delay){
6302             h = createDelayed(h, o);
6303         }
6304         if(o.single){
6305             h = createSingle(h, el, ename, fn);
6306         }
6307         if(o.buffer){
6308             h = createBuffered(h, o);
6309         }
6310         
6311         fn._handlers = fn._handlers || [];
6312         
6313         
6314         fn._handlers.push([Roo.id(el), ename, h]);
6315         
6316         
6317          
6318         E.on(el, ename, h);
6319         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6320             el.addEventListener("DOMMouseScroll", h, false);
6321             E.on(window, 'unload', function(){
6322                 el.removeEventListener("DOMMouseScroll", h, false);
6323             });
6324         }
6325         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6326             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6327         }
6328         return h;
6329     };
6330
6331     var stopListening = function(el, ename, fn){
6332         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6333         if(hds){
6334             for(var i = 0, len = hds.length; i < len; i++){
6335                 var h = hds[i];
6336                 if(h[0] == id && h[1] == ename){
6337                     hd = h[2];
6338                     hds.splice(i, 1);
6339                     break;
6340                 }
6341             }
6342         }
6343         E.un(el, ename, hd);
6344         el = Roo.getDom(el);
6345         if(ename == "mousewheel" && el.addEventListener){
6346             el.removeEventListener("DOMMouseScroll", hd, false);
6347         }
6348         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6349             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6350         }
6351     };
6352
6353     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6354     
6355     var pub = {
6356         
6357         
6358         /** 
6359          * Fix for doc tools
6360          * @scope Roo.EventManager
6361          */
6362         
6363         
6364         /** 
6365          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6366          * object with a Roo.EventObject
6367          * @param {Function} fn        The method the event invokes
6368          * @param {Object}   scope    An object that becomes the scope of the handler
6369          * @param {boolean}  override If true, the obj passed in becomes
6370          *                             the execution scope of the listener
6371          * @return {Function} The wrapped function
6372          * @deprecated
6373          */
6374         wrap : function(fn, scope, override){
6375             return function(e){
6376                 Roo.EventObject.setEvent(e);
6377                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6378             };
6379         },
6380         
6381         /**
6382      * Appends an event handler to an element (shorthand for addListener)
6383      * @param {String/HTMLElement}   element        The html element or id to assign the
6384      * @param {String}   eventName The type of event to listen for
6385      * @param {Function} handler The method the event invokes
6386      * @param {Object}   scope (optional) The scope in which to execute the handler
6387      * function. The handler function's "this" context.
6388      * @param {Object}   options (optional) An object containing handler configuration
6389      * properties. This may contain any of the following properties:<ul>
6390      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6391      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6392      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6393      * <li>preventDefault {Boolean} True to prevent the default action</li>
6394      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6395      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6396      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6397      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6398      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6399      * by the specified number of milliseconds. If the event fires again within that time, the original
6400      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6401      * </ul><br>
6402      * <p>
6403      * <b>Combining Options</b><br>
6404      * Using the options argument, it is possible to combine different types of listeners:<br>
6405      * <br>
6406      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6407      * Code:<pre><code>
6408 el.on('click', this.onClick, this, {
6409     single: true,
6410     delay: 100,
6411     stopEvent : true,
6412     forumId: 4
6413 });</code></pre>
6414      * <p>
6415      * <b>Attaching multiple handlers in 1 call</b><br>
6416       * The method also allows for a single argument to be passed which is a config object containing properties
6417      * which specify multiple handlers.
6418      * <p>
6419      * Code:<pre><code>
6420 el.on({
6421     'click' : {
6422         fn: this.onClick
6423         scope: this,
6424         delay: 100
6425     },
6426     'mouseover' : {
6427         fn: this.onMouseOver
6428         scope: this
6429     },
6430     'mouseout' : {
6431         fn: this.onMouseOut
6432         scope: this
6433     }
6434 });</code></pre>
6435      * <p>
6436      * Or a shorthand syntax:<br>
6437      * Code:<pre><code>
6438 el.on({
6439     'click' : this.onClick,
6440     'mouseover' : this.onMouseOver,
6441     'mouseout' : this.onMouseOut
6442     scope: this
6443 });</code></pre>
6444      */
6445         addListener : function(element, eventName, fn, scope, options){
6446             if(typeof eventName == "object"){
6447                 var o = eventName;
6448                 for(var e in o){
6449                     if(propRe.test(e)){
6450                         continue;
6451                     }
6452                     if(typeof o[e] == "function"){
6453                         // shared options
6454                         listen(element, e, o, o[e], o.scope);
6455                     }else{
6456                         // individual options
6457                         listen(element, e, o[e]);
6458                     }
6459                 }
6460                 return;
6461             }
6462             return listen(element, eventName, options, fn, scope);
6463         },
6464         
6465         /**
6466          * Removes an event handler
6467          *
6468          * @param {String/HTMLElement}   element        The id or html element to remove the 
6469          *                             event from
6470          * @param {String}   eventName     The type of event
6471          * @param {Function} fn
6472          * @return {Boolean} True if a listener was actually removed
6473          */
6474         removeListener : function(element, eventName, fn){
6475             return stopListening(element, eventName, fn);
6476         },
6477         
6478         /**
6479          * Fires when the document is ready (before onload and before images are loaded). Can be 
6480          * accessed shorthanded Roo.onReady().
6481          * @param {Function} fn        The method the event invokes
6482          * @param {Object}   scope    An  object that becomes the scope of the handler
6483          * @param {boolean}  options
6484          */
6485         onDocumentReady : function(fn, scope, options){
6486             if(docReadyState){ // if it already fired
6487                 docReadyEvent.addListener(fn, scope, options);
6488                 docReadyEvent.fire();
6489                 docReadyEvent.clearListeners();
6490                 return;
6491             }
6492             if(!docReadyEvent){
6493                 initDocReady();
6494             }
6495             docReadyEvent.addListener(fn, scope, options);
6496         },
6497         
6498         /**
6499          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6500          * @param {Function} fn        The method the event invokes
6501          * @param {Object}   scope    An object that becomes the scope of the handler
6502          * @param {boolean}  options
6503          */
6504         onWindowResize : function(fn, scope, options){
6505             if(!resizeEvent){
6506                 resizeEvent = new Roo.util.Event();
6507                 resizeTask = new Roo.util.DelayedTask(function(){
6508                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6509                 });
6510                 E.on(window, "resize", function(){
6511                     if(Roo.isIE){
6512                         resizeTask.delay(50);
6513                     }else{
6514                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6515                     }
6516                 });
6517             }
6518             resizeEvent.addListener(fn, scope, options);
6519         },
6520
6521         /**
6522          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6523          * @param {Function} fn        The method the event invokes
6524          * @param {Object}   scope    An object that becomes the scope of the handler
6525          * @param {boolean}  options
6526          */
6527         onTextResize : function(fn, scope, options){
6528             if(!textEvent){
6529                 textEvent = new Roo.util.Event();
6530                 var textEl = new Roo.Element(document.createElement('div'));
6531                 textEl.dom.className = 'x-text-resize';
6532                 textEl.dom.innerHTML = 'X';
6533                 textEl.appendTo(document.body);
6534                 textSize = textEl.dom.offsetHeight;
6535                 setInterval(function(){
6536                     if(textEl.dom.offsetHeight != textSize){
6537                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6538                     }
6539                 }, this.textResizeInterval);
6540             }
6541             textEvent.addListener(fn, scope, options);
6542         },
6543
6544         /**
6545          * Removes the passed window resize listener.
6546          * @param {Function} fn        The method the event invokes
6547          * @param {Object}   scope    The scope of handler
6548          */
6549         removeResizeListener : function(fn, scope){
6550             if(resizeEvent){
6551                 resizeEvent.removeListener(fn, scope);
6552             }
6553         },
6554
6555         // private
6556         fireResize : function(){
6557             if(resizeEvent){
6558                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6559             }   
6560         },
6561         /**
6562          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6563          */
6564         ieDeferSrc : false,
6565         /**
6566          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6567          */
6568         textResizeInterval : 50
6569     };
6570     
6571     /**
6572      * Fix for doc tools
6573      * @scopeAlias pub=Roo.EventManager
6574      */
6575     
6576      /**
6577      * Appends an event handler to an element (shorthand for addListener)
6578      * @param {String/HTMLElement}   element        The html element or id to assign the
6579      * @param {String}   eventName The type of event to listen for
6580      * @param {Function} handler The method the event invokes
6581      * @param {Object}   scope (optional) The scope in which to execute the handler
6582      * function. The handler function's "this" context.
6583      * @param {Object}   options (optional) An object containing handler configuration
6584      * properties. This may contain any of the following properties:<ul>
6585      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6586      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6587      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6588      * <li>preventDefault {Boolean} True to prevent the default action</li>
6589      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6590      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6591      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6592      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6593      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6594      * by the specified number of milliseconds. If the event fires again within that time, the original
6595      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6596      * </ul><br>
6597      * <p>
6598      * <b>Combining Options</b><br>
6599      * Using the options argument, it is possible to combine different types of listeners:<br>
6600      * <br>
6601      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6602      * Code:<pre><code>
6603 el.on('click', this.onClick, this, {
6604     single: true,
6605     delay: 100,
6606     stopEvent : true,
6607     forumId: 4
6608 });</code></pre>
6609      * <p>
6610      * <b>Attaching multiple handlers in 1 call</b><br>
6611       * The method also allows for a single argument to be passed which is a config object containing properties
6612      * which specify multiple handlers.
6613      * <p>
6614      * Code:<pre><code>
6615 el.on({
6616     'click' : {
6617         fn: this.onClick
6618         scope: this,
6619         delay: 100
6620     },
6621     'mouseover' : {
6622         fn: this.onMouseOver
6623         scope: this
6624     },
6625     'mouseout' : {
6626         fn: this.onMouseOut
6627         scope: this
6628     }
6629 });</code></pre>
6630      * <p>
6631      * Or a shorthand syntax:<br>
6632      * Code:<pre><code>
6633 el.on({
6634     'click' : this.onClick,
6635     'mouseover' : this.onMouseOver,
6636     'mouseout' : this.onMouseOut
6637     scope: this
6638 });</code></pre>
6639      */
6640     pub.on = pub.addListener;
6641     pub.un = pub.removeListener;
6642
6643     pub.stoppedMouseDownEvent = new Roo.util.Event();
6644     return pub;
6645 }();
6646 /**
6647   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6648   * @param {Function} fn        The method the event invokes
6649   * @param {Object}   scope    An  object that becomes the scope of the handler
6650   * @param {boolean}  override If true, the obj passed in becomes
6651   *                             the execution scope of the listener
6652   * @member Roo
6653   * @method onReady
6654  */
6655 Roo.onReady = Roo.EventManager.onDocumentReady;
6656
6657 Roo.onReady(function(){
6658     var bd = Roo.get(document.body);
6659     if(!bd){ return; }
6660
6661     var cls = [
6662             Roo.isIE ? "roo-ie"
6663             : Roo.isIE11 ? "roo-ie11"
6664             : Roo.isEdge ? "roo-edge"
6665             : Roo.isGecko ? "roo-gecko"
6666             : Roo.isOpera ? "roo-opera"
6667             : Roo.isSafari ? "roo-safari" : ""];
6668
6669     if(Roo.isMac){
6670         cls.push("roo-mac");
6671     }
6672     if(Roo.isLinux){
6673         cls.push("roo-linux");
6674     }
6675     if(Roo.isIOS){
6676         cls.push("roo-ios");
6677     }
6678     if(Roo.isTouch){
6679         cls.push("roo-touch");
6680     }
6681     if(Roo.isBorderBox){
6682         cls.push('roo-border-box');
6683     }
6684     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6685         var p = bd.dom.parentNode;
6686         if(p){
6687             p.className += ' roo-strict';
6688         }
6689     }
6690     bd.addClass(cls.join(' '));
6691 });
6692
6693 /**
6694  * @class Roo.EventObject
6695  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6696  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6697  * Example:
6698  * <pre><code>
6699  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6700     e.preventDefault();
6701     var target = e.getTarget();
6702     ...
6703  }
6704  var myDiv = Roo.get("myDiv");
6705  myDiv.on("click", handleClick);
6706  //or
6707  Roo.EventManager.on("myDiv", 'click', handleClick);
6708  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6709  </code></pre>
6710  * @singleton
6711  */
6712 Roo.EventObject = function(){
6713     
6714     var E = Roo.lib.Event;
6715     
6716     // safari keypress events for special keys return bad keycodes
6717     var safariKeys = {
6718         63234 : 37, // left
6719         63235 : 39, // right
6720         63232 : 38, // up
6721         63233 : 40, // down
6722         63276 : 33, // page up
6723         63277 : 34, // page down
6724         63272 : 46, // delete
6725         63273 : 36, // home
6726         63275 : 35  // end
6727     };
6728
6729     // normalize button clicks
6730     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6731                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6732
6733     Roo.EventObjectImpl = function(e){
6734         if(e){
6735             this.setEvent(e.browserEvent || e);
6736         }
6737     };
6738     Roo.EventObjectImpl.prototype = {
6739         /**
6740          * Used to fix doc tools.
6741          * @scope Roo.EventObject.prototype
6742          */
6743             
6744
6745         
6746         
6747         /** The normal browser event */
6748         browserEvent : null,
6749         /** The button pressed in a mouse event */
6750         button : -1,
6751         /** True if the shift key was down during the event */
6752         shiftKey : false,
6753         /** True if the control key was down during the event */
6754         ctrlKey : false,
6755         /** True if the alt key was down during the event */
6756         altKey : false,
6757
6758         /** Key constant 
6759         * @type Number */
6760         BACKSPACE : 8,
6761         /** Key constant 
6762         * @type Number */
6763         TAB : 9,
6764         /** Key constant 
6765         * @type Number */
6766         RETURN : 13,
6767         /** Key constant 
6768         * @type Number */
6769         ENTER : 13,
6770         /** Key constant 
6771         * @type Number */
6772         SHIFT : 16,
6773         /** Key constant 
6774         * @type Number */
6775         CONTROL : 17,
6776         /** Key constant 
6777         * @type Number */
6778         ESC : 27,
6779         /** Key constant 
6780         * @type Number */
6781         SPACE : 32,
6782         /** Key constant 
6783         * @type Number */
6784         PAGEUP : 33,
6785         /** Key constant 
6786         * @type Number */
6787         PAGEDOWN : 34,
6788         /** Key constant 
6789         * @type Number */
6790         END : 35,
6791         /** Key constant 
6792         * @type Number */
6793         HOME : 36,
6794         /** Key constant 
6795         * @type Number */
6796         LEFT : 37,
6797         /** Key constant 
6798         * @type Number */
6799         UP : 38,
6800         /** Key constant 
6801         * @type Number */
6802         RIGHT : 39,
6803         /** Key constant 
6804         * @type Number */
6805         DOWN : 40,
6806         /** Key constant 
6807         * @type Number */
6808         DELETE : 46,
6809         /** Key constant 
6810         * @type Number */
6811         F5 : 116,
6812
6813            /** @private */
6814         setEvent : function(e){
6815             if(e == this || (e && e.browserEvent)){ // already wrapped
6816                 return e;
6817             }
6818             this.browserEvent = e;
6819             if(e){
6820                 // normalize buttons
6821                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6822                 if(e.type == 'click' && this.button == -1){
6823                     this.button = 0;
6824                 }
6825                 this.type = e.type;
6826                 this.shiftKey = e.shiftKey;
6827                 // mac metaKey behaves like ctrlKey
6828                 this.ctrlKey = e.ctrlKey || e.metaKey;
6829                 this.altKey = e.altKey;
6830                 // in getKey these will be normalized for the mac
6831                 this.keyCode = e.keyCode;
6832                 // keyup warnings on firefox.
6833                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6834                 // cache the target for the delayed and or buffered events
6835                 this.target = E.getTarget(e);
6836                 // same for XY
6837                 this.xy = E.getXY(e);
6838             }else{
6839                 this.button = -1;
6840                 this.shiftKey = false;
6841                 this.ctrlKey = false;
6842                 this.altKey = false;
6843                 this.keyCode = 0;
6844                 this.charCode =0;
6845                 this.target = null;
6846                 this.xy = [0, 0];
6847             }
6848             return this;
6849         },
6850
6851         /**
6852          * Stop the event (preventDefault and stopPropagation)
6853          */
6854         stopEvent : function(){
6855             if(this.browserEvent){
6856                 if(this.browserEvent.type == 'mousedown'){
6857                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6858                 }
6859                 E.stopEvent(this.browserEvent);
6860             }
6861         },
6862
6863         /**
6864          * Prevents the browsers default handling of the event.
6865          */
6866         preventDefault : function(){
6867             if(this.browserEvent){
6868                 E.preventDefault(this.browserEvent);
6869             }
6870         },
6871
6872         /** @private */
6873         isNavKeyPress : function(){
6874             var k = this.keyCode;
6875             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6876             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6877         },
6878
6879         isSpecialKey : function(){
6880             var k = this.keyCode;
6881             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6882             (k == 16) || (k == 17) ||
6883             (k >= 18 && k <= 20) ||
6884             (k >= 33 && k <= 35) ||
6885             (k >= 36 && k <= 39) ||
6886             (k >= 44 && k <= 45);
6887         },
6888         /**
6889          * Cancels bubbling of the event.
6890          */
6891         stopPropagation : function(){
6892             if(this.browserEvent){
6893                 if(this.type == 'mousedown'){
6894                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6895                 }
6896                 E.stopPropagation(this.browserEvent);
6897             }
6898         },
6899
6900         /**
6901          * Gets the key code for the event.
6902          * @return {Number}
6903          */
6904         getCharCode : function(){
6905             return this.charCode || this.keyCode;
6906         },
6907
6908         /**
6909          * Returns a normalized keyCode for the event.
6910          * @return {Number} The key code
6911          */
6912         getKey : function(){
6913             var k = this.keyCode || this.charCode;
6914             return Roo.isSafari ? (safariKeys[k] || k) : k;
6915         },
6916
6917         /**
6918          * Gets the x coordinate of the event.
6919          * @return {Number}
6920          */
6921         getPageX : function(){
6922             return this.xy[0];
6923         },
6924
6925         /**
6926          * Gets the y coordinate of the event.
6927          * @return {Number}
6928          */
6929         getPageY : function(){
6930             return this.xy[1];
6931         },
6932
6933         /**
6934          * Gets the time of the event.
6935          * @return {Number}
6936          */
6937         getTime : function(){
6938             if(this.browserEvent){
6939                 return E.getTime(this.browserEvent);
6940             }
6941             return null;
6942         },
6943
6944         /**
6945          * Gets the page coordinates of the event.
6946          * @return {Array} The xy values like [x, y]
6947          */
6948         getXY : function(){
6949             return this.xy;
6950         },
6951
6952         /**
6953          * Gets the target for the event.
6954          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
6955          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
6956                 search as a number or element (defaults to 10 || document.body)
6957          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
6958          * @return {HTMLelement}
6959          */
6960         getTarget : function(selector, maxDepth, returnEl){
6961             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
6962         },
6963         /**
6964          * Gets the related target.
6965          * @return {HTMLElement}
6966          */
6967         getRelatedTarget : function(){
6968             if(this.browserEvent){
6969                 return E.getRelatedTarget(this.browserEvent);
6970             }
6971             return null;
6972         },
6973
6974         /**
6975          * Normalizes mouse wheel delta across browsers
6976          * @return {Number} The delta
6977          */
6978         getWheelDelta : function(){
6979             var e = this.browserEvent;
6980             var delta = 0;
6981             if(e.wheelDelta){ /* IE/Opera. */
6982                 delta = e.wheelDelta/120;
6983             }else if(e.detail){ /* Mozilla case. */
6984                 delta = -e.detail/3;
6985             }
6986             return delta;
6987         },
6988
6989         /**
6990          * Returns true if the control, meta, shift or alt key was pressed during this event.
6991          * @return {Boolean}
6992          */
6993         hasModifier : function(){
6994             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
6995         },
6996
6997         /**
6998          * Returns true if the target of this event equals el or is a child of el
6999          * @param {String/HTMLElement/Element} el
7000          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7001          * @return {Boolean}
7002          */
7003         within : function(el, related){
7004             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7005             return t && Roo.fly(el).contains(t);
7006         },
7007
7008         getPoint : function(){
7009             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7010         }
7011     };
7012
7013     return new Roo.EventObjectImpl();
7014 }();
7015             
7016     /*
7017  * Based on:
7018  * Ext JS Library 1.1.1
7019  * Copyright(c) 2006-2007, Ext JS, LLC.
7020  *
7021  * Originally Released Under LGPL - original licence link has changed is not relivant.
7022  *
7023  * Fork - LGPL
7024  * <script type="text/javascript">
7025  */
7026
7027  
7028 // was in Composite Element!??!?!
7029  
7030 (function(){
7031     var D = Roo.lib.Dom;
7032     var E = Roo.lib.Event;
7033     var A = Roo.lib.Anim;
7034
7035     // local style camelizing for speed
7036     var propCache = {};
7037     var camelRe = /(-[a-z])/gi;
7038     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7039     var view = document.defaultView;
7040
7041 /**
7042  * @class Roo.Element
7043  * Represents an Element in the DOM.<br><br>
7044  * Usage:<br>
7045 <pre><code>
7046 var el = Roo.get("my-div");
7047
7048 // or with getEl
7049 var el = getEl("my-div");
7050
7051 // or with a DOM element
7052 var el = Roo.get(myDivElement);
7053 </code></pre>
7054  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7055  * each call instead of constructing a new one.<br><br>
7056  * <b>Animations</b><br />
7057  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7058  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7059 <pre>
7060 Option    Default   Description
7061 --------- --------  ---------------------------------------------
7062 duration  .35       The duration of the animation in seconds
7063 easing    easeOut   The YUI easing method
7064 callback  none      A function to execute when the anim completes
7065 scope     this      The scope (this) of the callback function
7066 </pre>
7067 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7068 * manipulate the animation. Here's an example:
7069 <pre><code>
7070 var el = Roo.get("my-div");
7071
7072 // no animation
7073 el.setWidth(100);
7074
7075 // default animation
7076 el.setWidth(100, true);
7077
7078 // animation with some options set
7079 el.setWidth(100, {
7080     duration: 1,
7081     callback: this.foo,
7082     scope: this
7083 });
7084
7085 // using the "anim" property to get the Anim object
7086 var opt = {
7087     duration: 1,
7088     callback: this.foo,
7089     scope: this
7090 };
7091 el.setWidth(100, opt);
7092 ...
7093 if(opt.anim.isAnimated()){
7094     opt.anim.stop();
7095 }
7096 </code></pre>
7097 * <b> Composite (Collections of) Elements</b><br />
7098  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7099  * @constructor Create a new Element directly.
7100  * @param {String/HTMLElement} element
7101  * @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).
7102  */
7103     Roo.Element = function(element, forceNew){
7104         var dom = typeof element == "string" ?
7105                 document.getElementById(element) : element;
7106         if(!dom){ // invalid id/element
7107             return null;
7108         }
7109         var id = dom.id;
7110         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7111             return Roo.Element.cache[id];
7112         }
7113
7114         /**
7115          * The DOM element
7116          * @type HTMLElement
7117          */
7118         this.dom = dom;
7119
7120         /**
7121          * The DOM element ID
7122          * @type String
7123          */
7124         this.id = id || Roo.id(dom);
7125     };
7126
7127     var El = Roo.Element;
7128
7129     El.prototype = {
7130         /**
7131          * The element's default display mode  (defaults to "")
7132          * @type String
7133          */
7134         originalDisplay : "",
7135
7136         visibilityMode : 1,
7137         /**
7138          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7139          * @type String
7140          */
7141         defaultUnit : "px",
7142         
7143         /**
7144          * Sets the element's visibility mode. When setVisible() is called it
7145          * will use this to determine whether to set the visibility or the display property.
7146          * @param visMode Element.VISIBILITY or Element.DISPLAY
7147          * @return {Roo.Element} this
7148          */
7149         setVisibilityMode : function(visMode){
7150             this.visibilityMode = visMode;
7151             return this;
7152         },
7153         /**
7154          * Convenience method for setVisibilityMode(Element.DISPLAY)
7155          * @param {String} display (optional) What to set display to when visible
7156          * @return {Roo.Element} this
7157          */
7158         enableDisplayMode : function(display){
7159             this.setVisibilityMode(El.DISPLAY);
7160             if(typeof display != "undefined") { this.originalDisplay = display; }
7161             return this;
7162         },
7163
7164         /**
7165          * 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)
7166          * @param {String} selector The simple selector to test
7167          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7168                 search as a number or element (defaults to 10 || document.body)
7169          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7170          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7171          */
7172         findParent : function(simpleSelector, maxDepth, returnEl){
7173             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7174             maxDepth = maxDepth || 50;
7175             if(typeof maxDepth != "number"){
7176                 stopEl = Roo.getDom(maxDepth);
7177                 maxDepth = 10;
7178             }
7179             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7180                 if(dq.is(p, simpleSelector)){
7181                     return returnEl ? Roo.get(p) : p;
7182                 }
7183                 depth++;
7184                 p = p.parentNode;
7185             }
7186             return null;
7187         },
7188
7189
7190         /**
7191          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7192          * @param {String} selector The simple selector to test
7193          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7194                 search as a number or element (defaults to 10 || document.body)
7195          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7196          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7197          */
7198         findParentNode : function(simpleSelector, maxDepth, returnEl){
7199             var p = Roo.fly(this.dom.parentNode, '_internal');
7200             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7201         },
7202         
7203         /**
7204          * Looks at  the scrollable parent element
7205          */
7206         findScrollableParent : function()
7207         {
7208             var overflowRegex = /(auto|scroll)/;
7209             
7210             if(this.getStyle('position') === 'fixed'){
7211                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7212             }
7213             
7214             var excludeStaticParent = this.getStyle('position') === "absolute";
7215             
7216             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7217                 
7218                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7219                     continue;
7220                 }
7221                 
7222                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7223                     return parent;
7224                 }
7225                 
7226                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7227                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7228                 }
7229             }
7230             
7231             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7232         },
7233
7234         /**
7235          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7236          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7237          * @param {String} selector The simple selector to test
7238          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7239                 search as a number or element (defaults to 10 || document.body)
7240          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7241          */
7242         up : function(simpleSelector, maxDepth){
7243             return this.findParentNode(simpleSelector, maxDepth, true);
7244         },
7245
7246
7247
7248         /**
7249          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7250          * @param {String} selector The simple selector to test
7251          * @return {Boolean} True if this element matches the selector, else false
7252          */
7253         is : function(simpleSelector){
7254             return Roo.DomQuery.is(this.dom, simpleSelector);
7255         },
7256
7257         /**
7258          * Perform animation on this element.
7259          * @param {Object} args The YUI animation control args
7260          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7261          * @param {Function} onComplete (optional) Function to call when animation completes
7262          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7263          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7264          * @return {Roo.Element} this
7265          */
7266         animate : function(args, duration, onComplete, easing, animType){
7267             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7268             return this;
7269         },
7270
7271         /*
7272          * @private Internal animation call
7273          */
7274         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7275             animType = animType || 'run';
7276             opt = opt || {};
7277             var anim = Roo.lib.Anim[animType](
7278                 this.dom, args,
7279                 (opt.duration || defaultDur) || .35,
7280                 (opt.easing || defaultEase) || 'easeOut',
7281                 function(){
7282                     Roo.callback(cb, this);
7283                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7284                 },
7285                 this
7286             );
7287             opt.anim = anim;
7288             return anim;
7289         },
7290
7291         // private legacy anim prep
7292         preanim : function(a, i){
7293             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7294         },
7295
7296         /**
7297          * Removes worthless text nodes
7298          * @param {Boolean} forceReclean (optional) By default the element
7299          * keeps track if it has been cleaned already so
7300          * you can call this over and over. However, if you update the element and
7301          * need to force a reclean, you can pass true.
7302          */
7303         clean : function(forceReclean){
7304             if(this.isCleaned && forceReclean !== true){
7305                 return this;
7306             }
7307             var ns = /\S/;
7308             var d = this.dom, n = d.firstChild, ni = -1;
7309             while(n){
7310                 var nx = n.nextSibling;
7311                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7312                     d.removeChild(n);
7313                 }else{
7314                     n.nodeIndex = ++ni;
7315                 }
7316                 n = nx;
7317             }
7318             this.isCleaned = true;
7319             return this;
7320         },
7321
7322         // private
7323         calcOffsetsTo : function(el){
7324             el = Roo.get(el);
7325             var d = el.dom;
7326             var restorePos = false;
7327             if(el.getStyle('position') == 'static'){
7328                 el.position('relative');
7329                 restorePos = true;
7330             }
7331             var x = 0, y =0;
7332             var op = this.dom;
7333             while(op && op != d && op.tagName != 'HTML'){
7334                 x+= op.offsetLeft;
7335                 y+= op.offsetTop;
7336                 op = op.offsetParent;
7337             }
7338             if(restorePos){
7339                 el.position('static');
7340             }
7341             return [x, y];
7342         },
7343
7344         /**
7345          * Scrolls this element into view within the passed container.
7346          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7347          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7348          * @return {Roo.Element} this
7349          */
7350         scrollIntoView : function(container, hscroll){
7351             var c = Roo.getDom(container) || document.body;
7352             var el = this.dom;
7353
7354             var o = this.calcOffsetsTo(c),
7355                 l = o[0],
7356                 t = o[1],
7357                 b = t+el.offsetHeight,
7358                 r = l+el.offsetWidth;
7359
7360             var ch = c.clientHeight;
7361             var ct = parseInt(c.scrollTop, 10);
7362             var cl = parseInt(c.scrollLeft, 10);
7363             var cb = ct + ch;
7364             var cr = cl + c.clientWidth;
7365
7366             if(t < ct){
7367                 c.scrollTop = t;
7368             }else if(b > cb){
7369                 c.scrollTop = b-ch;
7370             }
7371
7372             if(hscroll !== false){
7373                 if(l < cl){
7374                     c.scrollLeft = l;
7375                 }else if(r > cr){
7376                     c.scrollLeft = r-c.clientWidth;
7377                 }
7378             }
7379             return this;
7380         },
7381
7382         // private
7383         scrollChildIntoView : function(child, hscroll){
7384             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7385         },
7386
7387         /**
7388          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7389          * the new height may not be available immediately.
7390          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7391          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7392          * @param {Function} onComplete (optional) Function to call when animation completes
7393          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7394          * @return {Roo.Element} this
7395          */
7396         autoHeight : function(animate, duration, onComplete, easing){
7397             var oldHeight = this.getHeight();
7398             this.clip();
7399             this.setHeight(1); // force clipping
7400             setTimeout(function(){
7401                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7402                 if(!animate){
7403                     this.setHeight(height);
7404                     this.unclip();
7405                     if(typeof onComplete == "function"){
7406                         onComplete();
7407                     }
7408                 }else{
7409                     this.setHeight(oldHeight); // restore original height
7410                     this.setHeight(height, animate, duration, function(){
7411                         this.unclip();
7412                         if(typeof onComplete == "function") { onComplete(); }
7413                     }.createDelegate(this), easing);
7414                 }
7415             }.createDelegate(this), 0);
7416             return this;
7417         },
7418
7419         /**
7420          * Returns true if this element is an ancestor of the passed element
7421          * @param {HTMLElement/String} el The element to check
7422          * @return {Boolean} True if this element is an ancestor of el, else false
7423          */
7424         contains : function(el){
7425             if(!el){return false;}
7426             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7427         },
7428
7429         /**
7430          * Checks whether the element is currently visible using both visibility and display properties.
7431          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7432          * @return {Boolean} True if the element is currently visible, else false
7433          */
7434         isVisible : function(deep) {
7435             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7436             if(deep !== true || !vis){
7437                 return vis;
7438             }
7439             var p = this.dom.parentNode;
7440             while(p && p.tagName.toLowerCase() != "body"){
7441                 if(!Roo.fly(p, '_isVisible').isVisible()){
7442                     return false;
7443                 }
7444                 p = p.parentNode;
7445             }
7446             return true;
7447         },
7448
7449         /**
7450          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7451          * @param {String} selector The CSS selector
7452          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7453          * @return {CompositeElement/CompositeElementLite} The composite element
7454          */
7455         select : function(selector, unique){
7456             return El.select(selector, unique, this.dom);
7457         },
7458
7459         /**
7460          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7461          * @param {String} selector The CSS selector
7462          * @return {Array} An array of the matched nodes
7463          */
7464         query : function(selector, unique){
7465             return Roo.DomQuery.select(selector, this.dom);
7466         },
7467
7468         /**
7469          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7470          * @param {String} selector The CSS selector
7471          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7472          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7473          */
7474         child : function(selector, returnDom){
7475             var n = Roo.DomQuery.selectNode(selector, this.dom);
7476             return returnDom ? n : Roo.get(n);
7477         },
7478
7479         /**
7480          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7481          * @param {String} selector The CSS selector
7482          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7483          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7484          */
7485         down : function(selector, returnDom){
7486             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7487             return returnDom ? n : Roo.get(n);
7488         },
7489
7490         /**
7491          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7492          * @param {String} group The group the DD object is member of
7493          * @param {Object} config The DD config object
7494          * @param {Object} overrides An object containing methods to override/implement on the DD object
7495          * @return {Roo.dd.DD} The DD object
7496          */
7497         initDD : function(group, config, overrides){
7498             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7499             return Roo.apply(dd, overrides);
7500         },
7501
7502         /**
7503          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7504          * @param {String} group The group the DDProxy object is member of
7505          * @param {Object} config The DDProxy config object
7506          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7507          * @return {Roo.dd.DDProxy} The DDProxy object
7508          */
7509         initDDProxy : function(group, config, overrides){
7510             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7511             return Roo.apply(dd, overrides);
7512         },
7513
7514         /**
7515          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7516          * @param {String} group The group the DDTarget object is member of
7517          * @param {Object} config The DDTarget config object
7518          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7519          * @return {Roo.dd.DDTarget} The DDTarget object
7520          */
7521         initDDTarget : function(group, config, overrides){
7522             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7523             return Roo.apply(dd, overrides);
7524         },
7525
7526         /**
7527          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7528          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7529          * @param {Boolean} visible Whether the element is visible
7530          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7531          * @return {Roo.Element} this
7532          */
7533          setVisible : function(visible, animate){
7534             if(!animate || !A){
7535                 if(this.visibilityMode == El.DISPLAY){
7536                     this.setDisplayed(visible);
7537                 }else{
7538                     this.fixDisplay();
7539                     this.dom.style.visibility = visible ? "visible" : "hidden";
7540                 }
7541             }else{
7542                 // closure for composites
7543                 var dom = this.dom;
7544                 var visMode = this.visibilityMode;
7545                 if(visible){
7546                     this.setOpacity(.01);
7547                     this.setVisible(true);
7548                 }
7549                 this.anim({opacity: { to: (visible?1:0) }},
7550                       this.preanim(arguments, 1),
7551                       null, .35, 'easeIn', function(){
7552                          if(!visible){
7553                              if(visMode == El.DISPLAY){
7554                                  dom.style.display = "none";
7555                              }else{
7556                                  dom.style.visibility = "hidden";
7557                              }
7558                              Roo.get(dom).setOpacity(1);
7559                          }
7560                      });
7561             }
7562             return this;
7563         },
7564
7565         /**
7566          * Returns true if display is not "none"
7567          * @return {Boolean}
7568          */
7569         isDisplayed : function() {
7570             return this.getStyle("display") != "none";
7571         },
7572
7573         /**
7574          * Toggles the element's visibility or display, depending on visibility mode.
7575          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7576          * @return {Roo.Element} this
7577          */
7578         toggle : function(animate){
7579             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7580             return this;
7581         },
7582
7583         /**
7584          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7585          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7586          * @return {Roo.Element} this
7587          */
7588         setDisplayed : function(value) {
7589             if(typeof value == "boolean"){
7590                value = value ? this.originalDisplay : "none";
7591             }
7592             this.setStyle("display", value);
7593             return this;
7594         },
7595
7596         /**
7597          * Tries to focus the element. Any exceptions are caught and ignored.
7598          * @return {Roo.Element} this
7599          */
7600         focus : function() {
7601             try{
7602                 this.dom.focus();
7603             }catch(e){}
7604             return this;
7605         },
7606
7607         /**
7608          * Tries to blur the element. Any exceptions are caught and ignored.
7609          * @return {Roo.Element} this
7610          */
7611         blur : function() {
7612             try{
7613                 this.dom.blur();
7614             }catch(e){}
7615             return this;
7616         },
7617
7618         /**
7619          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7620          * @param {String/Array} className The CSS class to add, or an array of classes
7621          * @return {Roo.Element} this
7622          */
7623         addClass : function(className){
7624             if(className instanceof Array){
7625                 for(var i = 0, len = className.length; i < len; i++) {
7626                     this.addClass(className[i]);
7627                 }
7628             }else{
7629                 if(className && !this.hasClass(className)){
7630                     this.dom.className = this.dom.className + " " + className;
7631                 }
7632             }
7633             return this;
7634         },
7635
7636         /**
7637          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7638          * @param {String/Array} className The CSS class to add, or an array of classes
7639          * @return {Roo.Element} this
7640          */
7641         radioClass : function(className){
7642             var siblings = this.dom.parentNode.childNodes;
7643             for(var i = 0; i < siblings.length; i++) {
7644                 var s = siblings[i];
7645                 if(s.nodeType == 1){
7646                     Roo.get(s).removeClass(className);
7647                 }
7648             }
7649             this.addClass(className);
7650             return this;
7651         },
7652
7653         /**
7654          * Removes one or more CSS classes from the element.
7655          * @param {String/Array} className The CSS class to remove, or an array of classes
7656          * @return {Roo.Element} this
7657          */
7658         removeClass : function(className){
7659             if(!className || !this.dom.className){
7660                 return this;
7661             }
7662             if(className instanceof Array){
7663                 for(var i = 0, len = className.length; i < len; i++) {
7664                     this.removeClass(className[i]);
7665                 }
7666             }else{
7667                 if(this.hasClass(className)){
7668                     var re = this.classReCache[className];
7669                     if (!re) {
7670                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7671                        this.classReCache[className] = re;
7672                     }
7673                     this.dom.className =
7674                         this.dom.className.replace(re, " ");
7675                 }
7676             }
7677             return this;
7678         },
7679
7680         // private
7681         classReCache: {},
7682
7683         /**
7684          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7685          * @param {String} className The CSS class to toggle
7686          * @return {Roo.Element} this
7687          */
7688         toggleClass : function(className){
7689             if(this.hasClass(className)){
7690                 this.removeClass(className);
7691             }else{
7692                 this.addClass(className);
7693             }
7694             return this;
7695         },
7696
7697         /**
7698          * Checks if the specified CSS class exists on this element's DOM node.
7699          * @param {String} className The CSS class to check for
7700          * @return {Boolean} True if the class exists, else false
7701          */
7702         hasClass : function(className){
7703             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7704         },
7705
7706         /**
7707          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7708          * @param {String} oldClassName The CSS class to replace
7709          * @param {String} newClassName The replacement CSS class
7710          * @return {Roo.Element} this
7711          */
7712         replaceClass : function(oldClassName, newClassName){
7713             this.removeClass(oldClassName);
7714             this.addClass(newClassName);
7715             return this;
7716         },
7717
7718         /**
7719          * Returns an object with properties matching the styles requested.
7720          * For example, el.getStyles('color', 'font-size', 'width') might return
7721          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7722          * @param {String} style1 A style name
7723          * @param {String} style2 A style name
7724          * @param {String} etc.
7725          * @return {Object} The style object
7726          */
7727         getStyles : function(){
7728             var a = arguments, len = a.length, r = {};
7729             for(var i = 0; i < len; i++){
7730                 r[a[i]] = this.getStyle(a[i]);
7731             }
7732             return r;
7733         },
7734
7735         /**
7736          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7737          * @param {String} property The style property whose value is returned.
7738          * @return {String} The current value of the style property for this element.
7739          */
7740         getStyle : function(){
7741             return view && view.getComputedStyle ?
7742                 function(prop){
7743                     var el = this.dom, v, cs, camel;
7744                     if(prop == 'float'){
7745                         prop = "cssFloat";
7746                     }
7747                     if(el.style && (v = el.style[prop])){
7748                         return v;
7749                     }
7750                     if(cs = view.getComputedStyle(el, "")){
7751                         if(!(camel = propCache[prop])){
7752                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7753                         }
7754                         return cs[camel];
7755                     }
7756                     return null;
7757                 } :
7758                 function(prop){
7759                     var el = this.dom, v, cs, camel;
7760                     if(prop == 'opacity'){
7761                         if(typeof el.style.filter == 'string'){
7762                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7763                             if(m){
7764                                 var fv = parseFloat(m[1]);
7765                                 if(!isNaN(fv)){
7766                                     return fv ? fv / 100 : 0;
7767                                 }
7768                             }
7769                         }
7770                         return 1;
7771                     }else if(prop == 'float'){
7772                         prop = "styleFloat";
7773                     }
7774                     if(!(camel = propCache[prop])){
7775                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7776                     }
7777                     if(v = el.style[camel]){
7778                         return v;
7779                     }
7780                     if(cs = el.currentStyle){
7781                         return cs[camel];
7782                     }
7783                     return null;
7784                 };
7785         }(),
7786
7787         /**
7788          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7789          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7790          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7791          * @return {Roo.Element} this
7792          */
7793         setStyle : function(prop, value){
7794             if(typeof prop == "string"){
7795                 
7796                 if (prop == 'float') {
7797                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7798                     return this;
7799                 }
7800                 
7801                 var camel;
7802                 if(!(camel = propCache[prop])){
7803                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7804                 }
7805                 
7806                 if(camel == 'opacity') {
7807                     this.setOpacity(value);
7808                 }else{
7809                     this.dom.style[camel] = value;
7810                 }
7811             }else{
7812                 for(var style in prop){
7813                     if(typeof prop[style] != "function"){
7814                        this.setStyle(style, prop[style]);
7815                     }
7816                 }
7817             }
7818             return this;
7819         },
7820
7821         /**
7822          * More flexible version of {@link #setStyle} for setting style properties.
7823          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7824          * a function which returns such a specification.
7825          * @return {Roo.Element} this
7826          */
7827         applyStyles : function(style){
7828             Roo.DomHelper.applyStyles(this.dom, style);
7829             return this;
7830         },
7831
7832         /**
7833           * 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).
7834           * @return {Number} The X position of the element
7835           */
7836         getX : function(){
7837             return D.getX(this.dom);
7838         },
7839
7840         /**
7841           * 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).
7842           * @return {Number} The Y position of the element
7843           */
7844         getY : function(){
7845             return D.getY(this.dom);
7846         },
7847
7848         /**
7849           * 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).
7850           * @return {Array} The XY position of the element
7851           */
7852         getXY : function(){
7853             return D.getXY(this.dom);
7854         },
7855
7856         /**
7857          * 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).
7858          * @param {Number} The X position of the element
7859          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7860          * @return {Roo.Element} this
7861          */
7862         setX : function(x, animate){
7863             if(!animate || !A){
7864                 D.setX(this.dom, x);
7865             }else{
7866                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7867             }
7868             return this;
7869         },
7870
7871         /**
7872          * 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).
7873          * @param {Number} The Y position of the element
7874          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7875          * @return {Roo.Element} this
7876          */
7877         setY : function(y, animate){
7878             if(!animate || !A){
7879                 D.setY(this.dom, y);
7880             }else{
7881                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7882             }
7883             return this;
7884         },
7885
7886         /**
7887          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7888          * @param {String} left The left CSS property value
7889          * @return {Roo.Element} this
7890          */
7891         setLeft : function(left){
7892             this.setStyle("left", this.addUnits(left));
7893             return this;
7894         },
7895
7896         /**
7897          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7898          * @param {String} top The top CSS property value
7899          * @return {Roo.Element} this
7900          */
7901         setTop : function(top){
7902             this.setStyle("top", this.addUnits(top));
7903             return this;
7904         },
7905
7906         /**
7907          * Sets the element's CSS right style.
7908          * @param {String} right The right CSS property value
7909          * @return {Roo.Element} this
7910          */
7911         setRight : function(right){
7912             this.setStyle("right", this.addUnits(right));
7913             return this;
7914         },
7915
7916         /**
7917          * Sets the element's CSS bottom style.
7918          * @param {String} bottom The bottom CSS property value
7919          * @return {Roo.Element} this
7920          */
7921         setBottom : function(bottom){
7922             this.setStyle("bottom", this.addUnits(bottom));
7923             return this;
7924         },
7925
7926         /**
7927          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7928          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7929          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7930          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7931          * @return {Roo.Element} this
7932          */
7933         setXY : function(pos, animate){
7934             if(!animate || !A){
7935                 D.setXY(this.dom, pos);
7936             }else{
7937                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7938             }
7939             return this;
7940         },
7941
7942         /**
7943          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7944          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7945          * @param {Number} x X value for new position (coordinates are page-based)
7946          * @param {Number} y Y value for new position (coordinates are page-based)
7947          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7948          * @return {Roo.Element} this
7949          */
7950         setLocation : function(x, y, animate){
7951             this.setXY([x, y], this.preanim(arguments, 2));
7952             return this;
7953         },
7954
7955         /**
7956          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7957          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7958          * @param {Number} x X value for new position (coordinates are page-based)
7959          * @param {Number} y Y value for new position (coordinates are page-based)
7960          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7961          * @return {Roo.Element} this
7962          */
7963         moveTo : function(x, y, animate){
7964             this.setXY([x, y], this.preanim(arguments, 2));
7965             return this;
7966         },
7967
7968         /**
7969          * Returns the region of the given element.
7970          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
7971          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
7972          */
7973         getRegion : function(){
7974             return D.getRegion(this.dom);
7975         },
7976
7977         /**
7978          * Returns the offset height of the element
7979          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
7980          * @return {Number} The element's height
7981          */
7982         getHeight : function(contentHeight){
7983             var h = this.dom.offsetHeight || 0;
7984             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
7985         },
7986
7987         /**
7988          * Returns the offset width of the element
7989          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
7990          * @return {Number} The element's width
7991          */
7992         getWidth : function(contentWidth){
7993             var w = this.dom.offsetWidth || 0;
7994             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
7995         },
7996
7997         /**
7998          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
7999          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8000          * if a height has not been set using CSS.
8001          * @return {Number}
8002          */
8003         getComputedHeight : function(){
8004             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8005             if(!h){
8006                 h = parseInt(this.getStyle('height'), 10) || 0;
8007                 if(!this.isBorderBox()){
8008                     h += this.getFrameWidth('tb');
8009                 }
8010             }
8011             return h;
8012         },
8013
8014         /**
8015          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8016          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8017          * if a width has not been set using CSS.
8018          * @return {Number}
8019          */
8020         getComputedWidth : function(){
8021             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8022             if(!w){
8023                 w = parseInt(this.getStyle('width'), 10) || 0;
8024                 if(!this.isBorderBox()){
8025                     w += this.getFrameWidth('lr');
8026                 }
8027             }
8028             return w;
8029         },
8030
8031         /**
8032          * Returns the size of the element.
8033          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8034          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8035          */
8036         getSize : function(contentSize){
8037             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8038         },
8039
8040         /**
8041          * Returns the width and height of the viewport.
8042          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8043          */
8044         getViewSize : function(){
8045             var d = this.dom, doc = document, aw = 0, ah = 0;
8046             if(d == doc || d == doc.body){
8047                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8048             }else{
8049                 return {
8050                     width : d.clientWidth,
8051                     height: d.clientHeight
8052                 };
8053             }
8054         },
8055
8056         /**
8057          * Returns the value of the "value" attribute
8058          * @param {Boolean} asNumber true to parse the value as a number
8059          * @return {String/Number}
8060          */
8061         getValue : function(asNumber){
8062             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8063         },
8064
8065         // private
8066         adjustWidth : function(width){
8067             if(typeof width == "number"){
8068                 if(this.autoBoxAdjust && !this.isBorderBox()){
8069                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8070                 }
8071                 if(width < 0){
8072                     width = 0;
8073                 }
8074             }
8075             return width;
8076         },
8077
8078         // private
8079         adjustHeight : function(height){
8080             if(typeof height == "number"){
8081                if(this.autoBoxAdjust && !this.isBorderBox()){
8082                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8083                }
8084                if(height < 0){
8085                    height = 0;
8086                }
8087             }
8088             return height;
8089         },
8090
8091         /**
8092          * Set the width of the element
8093          * @param {Number} width The new width
8094          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8095          * @return {Roo.Element} this
8096          */
8097         setWidth : function(width, animate){
8098             width = this.adjustWidth(width);
8099             if(!animate || !A){
8100                 this.dom.style.width = this.addUnits(width);
8101             }else{
8102                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8103             }
8104             return this;
8105         },
8106
8107         /**
8108          * Set the height of the element
8109          * @param {Number} height The new height
8110          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8111          * @return {Roo.Element} this
8112          */
8113          setHeight : function(height, animate){
8114             height = this.adjustHeight(height);
8115             if(!animate || !A){
8116                 this.dom.style.height = this.addUnits(height);
8117             }else{
8118                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8119             }
8120             return this;
8121         },
8122
8123         /**
8124          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8125          * @param {Number} width The new width
8126          * @param {Number} height The new height
8127          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8128          * @return {Roo.Element} this
8129          */
8130          setSize : function(width, height, animate){
8131             if(typeof width == "object"){ // in case of object from getSize()
8132                 height = width.height; width = width.width;
8133             }
8134             width = this.adjustWidth(width); height = this.adjustHeight(height);
8135             if(!animate || !A){
8136                 this.dom.style.width = this.addUnits(width);
8137                 this.dom.style.height = this.addUnits(height);
8138             }else{
8139                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8140             }
8141             return this;
8142         },
8143
8144         /**
8145          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8146          * @param {Number} x X value for new position (coordinates are page-based)
8147          * @param {Number} y Y value for new position (coordinates are page-based)
8148          * @param {Number} width The new width
8149          * @param {Number} height The new height
8150          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8151          * @return {Roo.Element} this
8152          */
8153         setBounds : function(x, y, width, height, animate){
8154             if(!animate || !A){
8155                 this.setSize(width, height);
8156                 this.setLocation(x, y);
8157             }else{
8158                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8159                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8160                               this.preanim(arguments, 4), 'motion');
8161             }
8162             return this;
8163         },
8164
8165         /**
8166          * 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.
8167          * @param {Roo.lib.Region} region The region to fill
8168          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8169          * @return {Roo.Element} this
8170          */
8171         setRegion : function(region, animate){
8172             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8173             return this;
8174         },
8175
8176         /**
8177          * Appends an event handler
8178          *
8179          * @param {String}   eventName     The type of event to append
8180          * @param {Function} fn        The method the event invokes
8181          * @param {Object} scope       (optional) The scope (this object) of the fn
8182          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8183          */
8184         addListener : function(eventName, fn, scope, options){
8185             if (this.dom) {
8186                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8187             }
8188         },
8189
8190         /**
8191          * Removes an event handler from this element
8192          * @param {String} eventName the type of event to remove
8193          * @param {Function} fn the method the event invokes
8194          * @return {Roo.Element} this
8195          */
8196         removeListener : function(eventName, fn){
8197             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8198             return this;
8199         },
8200
8201         /**
8202          * Removes all previous added listeners from this element
8203          * @return {Roo.Element} this
8204          */
8205         removeAllListeners : function(){
8206             E.purgeElement(this.dom);
8207             return this;
8208         },
8209
8210         relayEvent : function(eventName, observable){
8211             this.on(eventName, function(e){
8212                 observable.fireEvent(eventName, e);
8213             });
8214         },
8215
8216         /**
8217          * Set the opacity of the element
8218          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8219          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8220          * @return {Roo.Element} this
8221          */
8222          setOpacity : function(opacity, animate){
8223             if(!animate || !A){
8224                 var s = this.dom.style;
8225                 if(Roo.isIE){
8226                     s.zoom = 1;
8227                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8228                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8229                 }else{
8230                     s.opacity = opacity;
8231                 }
8232             }else{
8233                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8234             }
8235             return this;
8236         },
8237
8238         /**
8239          * Gets the left X coordinate
8240          * @param {Boolean} local True to get the local css position instead of page coordinate
8241          * @return {Number}
8242          */
8243         getLeft : function(local){
8244             if(!local){
8245                 return this.getX();
8246             }else{
8247                 return parseInt(this.getStyle("left"), 10) || 0;
8248             }
8249         },
8250
8251         /**
8252          * Gets the right X coordinate of the element (element X position + element width)
8253          * @param {Boolean} local True to get the local css position instead of page coordinate
8254          * @return {Number}
8255          */
8256         getRight : function(local){
8257             if(!local){
8258                 return this.getX() + this.getWidth();
8259             }else{
8260                 return (this.getLeft(true) + this.getWidth()) || 0;
8261             }
8262         },
8263
8264         /**
8265          * Gets the top Y coordinate
8266          * @param {Boolean} local True to get the local css position instead of page coordinate
8267          * @return {Number}
8268          */
8269         getTop : function(local) {
8270             if(!local){
8271                 return this.getY();
8272             }else{
8273                 return parseInt(this.getStyle("top"), 10) || 0;
8274             }
8275         },
8276
8277         /**
8278          * Gets the bottom Y coordinate of the element (element Y position + element height)
8279          * @param {Boolean} local True to get the local css position instead of page coordinate
8280          * @return {Number}
8281          */
8282         getBottom : function(local){
8283             if(!local){
8284                 return this.getY() + this.getHeight();
8285             }else{
8286                 return (this.getTop(true) + this.getHeight()) || 0;
8287             }
8288         },
8289
8290         /**
8291         * Initializes positioning on this element. If a desired position is not passed, it will make the
8292         * the element positioned relative IF it is not already positioned.
8293         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8294         * @param {Number} zIndex (optional) The zIndex to apply
8295         * @param {Number} x (optional) Set the page X position
8296         * @param {Number} y (optional) Set the page Y position
8297         */
8298         position : function(pos, zIndex, x, y){
8299             if(!pos){
8300                if(this.getStyle('position') == 'static'){
8301                    this.setStyle('position', 'relative');
8302                }
8303             }else{
8304                 this.setStyle("position", pos);
8305             }
8306             if(zIndex){
8307                 this.setStyle("z-index", zIndex);
8308             }
8309             if(x !== undefined && y !== undefined){
8310                 this.setXY([x, y]);
8311             }else if(x !== undefined){
8312                 this.setX(x);
8313             }else if(y !== undefined){
8314                 this.setY(y);
8315             }
8316         },
8317
8318         /**
8319         * Clear positioning back to the default when the document was loaded
8320         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8321         * @return {Roo.Element} this
8322          */
8323         clearPositioning : function(value){
8324             value = value ||'';
8325             this.setStyle({
8326                 "left": value,
8327                 "right": value,
8328                 "top": value,
8329                 "bottom": value,
8330                 "z-index": "",
8331                 "position" : "static"
8332             });
8333             return this;
8334         },
8335
8336         /**
8337         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8338         * snapshot before performing an update and then restoring the element.
8339         * @return {Object}
8340         */
8341         getPositioning : function(){
8342             var l = this.getStyle("left");
8343             var t = this.getStyle("top");
8344             return {
8345                 "position" : this.getStyle("position"),
8346                 "left" : l,
8347                 "right" : l ? "" : this.getStyle("right"),
8348                 "top" : t,
8349                 "bottom" : t ? "" : this.getStyle("bottom"),
8350                 "z-index" : this.getStyle("z-index")
8351             };
8352         },
8353
8354         /**
8355          * Gets the width of the border(s) for the specified side(s)
8356          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8357          * passing lr would get the border (l)eft width + the border (r)ight width.
8358          * @return {Number} The width of the sides passed added together
8359          */
8360         getBorderWidth : function(side){
8361             return this.addStyles(side, El.borders);
8362         },
8363
8364         /**
8365          * Gets the width of the padding(s) for the specified side(s)
8366          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8367          * passing lr would get the padding (l)eft + the padding (r)ight.
8368          * @return {Number} The padding of the sides passed added together
8369          */
8370         getPadding : function(side){
8371             return this.addStyles(side, El.paddings);
8372         },
8373
8374         /**
8375         * Set positioning with an object returned by getPositioning().
8376         * @param {Object} posCfg
8377         * @return {Roo.Element} this
8378          */
8379         setPositioning : function(pc){
8380             this.applyStyles(pc);
8381             if(pc.right == "auto"){
8382                 this.dom.style.right = "";
8383             }
8384             if(pc.bottom == "auto"){
8385                 this.dom.style.bottom = "";
8386             }
8387             return this;
8388         },
8389
8390         // private
8391         fixDisplay : function(){
8392             if(this.getStyle("display") == "none"){
8393                 this.setStyle("visibility", "hidden");
8394                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8395                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8396                     this.setStyle("display", "block");
8397                 }
8398             }
8399         },
8400
8401         /**
8402          * Quick set left and top adding default units
8403          * @param {String} left The left CSS property value
8404          * @param {String} top The top CSS property value
8405          * @return {Roo.Element} this
8406          */
8407          setLeftTop : function(left, top){
8408             this.dom.style.left = this.addUnits(left);
8409             this.dom.style.top = this.addUnits(top);
8410             return this;
8411         },
8412
8413         /**
8414          * Move this element relative to its current position.
8415          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8416          * @param {Number} distance How far to move the element in pixels
8417          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8418          * @return {Roo.Element} this
8419          */
8420          move : function(direction, distance, animate){
8421             var xy = this.getXY();
8422             direction = direction.toLowerCase();
8423             switch(direction){
8424                 case "l":
8425                 case "left":
8426                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8427                     break;
8428                case "r":
8429                case "right":
8430                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8431                     break;
8432                case "t":
8433                case "top":
8434                case "up":
8435                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8436                     break;
8437                case "b":
8438                case "bottom":
8439                case "down":
8440                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8441                     break;
8442             }
8443             return this;
8444         },
8445
8446         /**
8447          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8448          * @return {Roo.Element} this
8449          */
8450         clip : function(){
8451             if(!this.isClipped){
8452                this.isClipped = true;
8453                this.originalClip = {
8454                    "o": this.getStyle("overflow"),
8455                    "x": this.getStyle("overflow-x"),
8456                    "y": this.getStyle("overflow-y")
8457                };
8458                this.setStyle("overflow", "hidden");
8459                this.setStyle("overflow-x", "hidden");
8460                this.setStyle("overflow-y", "hidden");
8461             }
8462             return this;
8463         },
8464
8465         /**
8466          *  Return clipping (overflow) to original clipping before clip() was called
8467          * @return {Roo.Element} this
8468          */
8469         unclip : function(){
8470             if(this.isClipped){
8471                 this.isClipped = false;
8472                 var o = this.originalClip;
8473                 if(o.o){this.setStyle("overflow", o.o);}
8474                 if(o.x){this.setStyle("overflow-x", o.x);}
8475                 if(o.y){this.setStyle("overflow-y", o.y);}
8476             }
8477             return this;
8478         },
8479
8480
8481         /**
8482          * Gets the x,y coordinates specified by the anchor position on the element.
8483          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8484          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8485          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8486          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8487          * @return {Array} [x, y] An array containing the element's x and y coordinates
8488          */
8489         getAnchorXY : function(anchor, local, s){
8490             //Passing a different size is useful for pre-calculating anchors,
8491             //especially for anchored animations that change the el size.
8492
8493             var w, h, vp = false;
8494             if(!s){
8495                 var d = this.dom;
8496                 if(d == document.body || d == document){
8497                     vp = true;
8498                     w = D.getViewWidth(); h = D.getViewHeight();
8499                 }else{
8500                     w = this.getWidth(); h = this.getHeight();
8501                 }
8502             }else{
8503                 w = s.width;  h = s.height;
8504             }
8505             var x = 0, y = 0, r = Math.round;
8506             switch((anchor || "tl").toLowerCase()){
8507                 case "c":
8508                     x = r(w*.5);
8509                     y = r(h*.5);
8510                 break;
8511                 case "t":
8512                     x = r(w*.5);
8513                     y = 0;
8514                 break;
8515                 case "l":
8516                     x = 0;
8517                     y = r(h*.5);
8518                 break;
8519                 case "r":
8520                     x = w;
8521                     y = r(h*.5);
8522                 break;
8523                 case "b":
8524                     x = r(w*.5);
8525                     y = h;
8526                 break;
8527                 case "tl":
8528                     x = 0;
8529                     y = 0;
8530                 break;
8531                 case "bl":
8532                     x = 0;
8533                     y = h;
8534                 break;
8535                 case "br":
8536                     x = w;
8537                     y = h;
8538                 break;
8539                 case "tr":
8540                     x = w;
8541                     y = 0;
8542                 break;
8543             }
8544             if(local === true){
8545                 return [x, y];
8546             }
8547             if(vp){
8548                 var sc = this.getScroll();
8549                 return [x + sc.left, y + sc.top];
8550             }
8551             //Add the element's offset xy
8552             var o = this.getXY();
8553             return [x+o[0], y+o[1]];
8554         },
8555
8556         /**
8557          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8558          * supported position values.
8559          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8560          * @param {String} position The position to align to.
8561          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8562          * @return {Array} [x, y]
8563          */
8564         getAlignToXY : function(el, p, o){
8565             el = Roo.get(el);
8566             var d = this.dom;
8567             if(!el.dom){
8568                 throw "Element.alignTo with an element that doesn't exist";
8569             }
8570             var c = false; //constrain to viewport
8571             var p1 = "", p2 = "";
8572             o = o || [0,0];
8573
8574             if(!p){
8575                 p = "tl-bl";
8576             }else if(p == "?"){
8577                 p = "tl-bl?";
8578             }else if(p.indexOf("-") == -1){
8579                 p = "tl-" + p;
8580             }
8581             p = p.toLowerCase();
8582             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8583             if(!m){
8584                throw "Element.alignTo with an invalid alignment " + p;
8585             }
8586             p1 = m[1]; p2 = m[2]; c = !!m[3];
8587
8588             //Subtract the aligned el's internal xy from the target's offset xy
8589             //plus custom offset to get the aligned el's new offset xy
8590             var a1 = this.getAnchorXY(p1, true);
8591             var a2 = el.getAnchorXY(p2, false);
8592             var x = a2[0] - a1[0] + o[0];
8593             var y = a2[1] - a1[1] + o[1];
8594             if(c){
8595                 //constrain the aligned el to viewport if necessary
8596                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8597                 // 5px of margin for ie
8598                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8599
8600                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8601                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8602                 //otherwise swap the aligned el to the opposite border of the target.
8603                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8604                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8605                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
8606                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8607
8608                var doc = document;
8609                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8610                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8611
8612                if((x+w) > dw + scrollX){
8613                     x = swapX ? r.left-w : dw+scrollX-w;
8614                 }
8615                if(x < scrollX){
8616                    x = swapX ? r.right : scrollX;
8617                }
8618                if((y+h) > dh + scrollY){
8619                     y = swapY ? r.top-h : dh+scrollY-h;
8620                 }
8621                if (y < scrollY){
8622                    y = swapY ? r.bottom : scrollY;
8623                }
8624             }
8625             return [x,y];
8626         },
8627
8628         // private
8629         getConstrainToXY : function(){
8630             var os = {top:0, left:0, bottom:0, right: 0};
8631
8632             return function(el, local, offsets, proposedXY){
8633                 el = Roo.get(el);
8634                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8635
8636                 var vw, vh, vx = 0, vy = 0;
8637                 if(el.dom == document.body || el.dom == document){
8638                     vw = Roo.lib.Dom.getViewWidth();
8639                     vh = Roo.lib.Dom.getViewHeight();
8640                 }else{
8641                     vw = el.dom.clientWidth;
8642                     vh = el.dom.clientHeight;
8643                     if(!local){
8644                         var vxy = el.getXY();
8645                         vx = vxy[0];
8646                         vy = vxy[1];
8647                     }
8648                 }
8649
8650                 var s = el.getScroll();
8651
8652                 vx += offsets.left + s.left;
8653                 vy += offsets.top + s.top;
8654
8655                 vw -= offsets.right;
8656                 vh -= offsets.bottom;
8657
8658                 var vr = vx+vw;
8659                 var vb = vy+vh;
8660
8661                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8662                 var x = xy[0], y = xy[1];
8663                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8664
8665                 // only move it if it needs it
8666                 var moved = false;
8667
8668                 // first validate right/bottom
8669                 if((x + w) > vr){
8670                     x = vr - w;
8671                     moved = true;
8672                 }
8673                 if((y + h) > vb){
8674                     y = vb - h;
8675                     moved = true;
8676                 }
8677                 // then make sure top/left isn't negative
8678                 if(x < vx){
8679                     x = vx;
8680                     moved = true;
8681                 }
8682                 if(y < vy){
8683                     y = vy;
8684                     moved = true;
8685                 }
8686                 return moved ? [x, y] : false;
8687             };
8688         }(),
8689
8690         // private
8691         adjustForConstraints : function(xy, parent, offsets){
8692             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8693         },
8694
8695         /**
8696          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8697          * document it aligns it to the viewport.
8698          * The position parameter is optional, and can be specified in any one of the following formats:
8699          * <ul>
8700          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8701          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8702          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8703          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8704          *   <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
8705          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8706          * </ul>
8707          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8708          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8709          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8710          * that specified in order to enforce the viewport constraints.
8711          * Following are all of the supported anchor positions:
8712     <pre>
8713     Value  Description
8714     -----  -----------------------------
8715     tl     The top left corner (default)
8716     t      The center of the top edge
8717     tr     The top right corner
8718     l      The center of the left edge
8719     c      In the center of the element
8720     r      The center of the right edge
8721     bl     The bottom left corner
8722     b      The center of the bottom edge
8723     br     The bottom right corner
8724     </pre>
8725     Example Usage:
8726     <pre><code>
8727     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8728     el.alignTo("other-el");
8729
8730     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8731     el.alignTo("other-el", "tr?");
8732
8733     // align the bottom right corner of el with the center left edge of other-el
8734     el.alignTo("other-el", "br-l?");
8735
8736     // align the center of el with the bottom left corner of other-el and
8737     // adjust the x position by -6 pixels (and the y position by 0)
8738     el.alignTo("other-el", "c-bl", [-6, 0]);
8739     </code></pre>
8740          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8741          * @param {String} position The position to align to.
8742          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8743          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8744          * @return {Roo.Element} this
8745          */
8746         alignTo : function(element, position, offsets, animate){
8747             var xy = this.getAlignToXY(element, position, offsets);
8748             this.setXY(xy, this.preanim(arguments, 3));
8749             return this;
8750         },
8751
8752         /**
8753          * Anchors an element to another element and realigns it when the window is resized.
8754          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8755          * @param {String} position The position to align to.
8756          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8757          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8758          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8759          * is a number, it is used as the buffer delay (defaults to 50ms).
8760          * @param {Function} callback The function to call after the animation finishes
8761          * @return {Roo.Element} this
8762          */
8763         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8764             var action = function(){
8765                 this.alignTo(el, alignment, offsets, animate);
8766                 Roo.callback(callback, this);
8767             };
8768             Roo.EventManager.onWindowResize(action, this);
8769             var tm = typeof monitorScroll;
8770             if(tm != 'undefined'){
8771                 Roo.EventManager.on(window, 'scroll', action, this,
8772                     {buffer: tm == 'number' ? monitorScroll : 50});
8773             }
8774             action.call(this); // align immediately
8775             return this;
8776         },
8777         /**
8778          * Clears any opacity settings from this element. Required in some cases for IE.
8779          * @return {Roo.Element} this
8780          */
8781         clearOpacity : function(){
8782             if (window.ActiveXObject) {
8783                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8784                     this.dom.style.filter = "";
8785                 }
8786             } else {
8787                 this.dom.style.opacity = "";
8788                 this.dom.style["-moz-opacity"] = "";
8789                 this.dom.style["-khtml-opacity"] = "";
8790             }
8791             return this;
8792         },
8793
8794         /**
8795          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8796          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8797          * @return {Roo.Element} this
8798          */
8799         hide : function(animate){
8800             this.setVisible(false, this.preanim(arguments, 0));
8801             return this;
8802         },
8803
8804         /**
8805         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8806         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8807          * @return {Roo.Element} this
8808          */
8809         show : function(animate){
8810             this.setVisible(true, this.preanim(arguments, 0));
8811             return this;
8812         },
8813
8814         /**
8815          * @private Test if size has a unit, otherwise appends the default
8816          */
8817         addUnits : function(size){
8818             return Roo.Element.addUnits(size, this.defaultUnit);
8819         },
8820
8821         /**
8822          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8823          * @return {Roo.Element} this
8824          */
8825         beginMeasure : function(){
8826             var el = this.dom;
8827             if(el.offsetWidth || el.offsetHeight){
8828                 return this; // offsets work already
8829             }
8830             var changed = [];
8831             var p = this.dom, b = document.body; // start with this element
8832             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8833                 var pe = Roo.get(p);
8834                 if(pe.getStyle('display') == 'none'){
8835                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8836                     p.style.visibility = "hidden";
8837                     p.style.display = "block";
8838                 }
8839                 p = p.parentNode;
8840             }
8841             this._measureChanged = changed;
8842             return this;
8843
8844         },
8845
8846         /**
8847          * Restores displays to before beginMeasure was called
8848          * @return {Roo.Element} this
8849          */
8850         endMeasure : function(){
8851             var changed = this._measureChanged;
8852             if(changed){
8853                 for(var i = 0, len = changed.length; i < len; i++) {
8854                     var r = changed[i];
8855                     r.el.style.visibility = r.visibility;
8856                     r.el.style.display = "none";
8857                 }
8858                 this._measureChanged = null;
8859             }
8860             return this;
8861         },
8862
8863         /**
8864         * Update the innerHTML of this element, optionally searching for and processing scripts
8865         * @param {String} html The new HTML
8866         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8867         * @param {Function} callback For async script loading you can be noticed when the update completes
8868         * @return {Roo.Element} this
8869          */
8870         update : function(html, loadScripts, callback){
8871             if(typeof html == "undefined"){
8872                 html = "";
8873             }
8874             if(loadScripts !== true){
8875                 this.dom.innerHTML = html;
8876                 if(typeof callback == "function"){
8877                     callback();
8878                 }
8879                 return this;
8880             }
8881             var id = Roo.id();
8882             var dom = this.dom;
8883
8884             html += '<span id="' + id + '"></span>';
8885
8886             E.onAvailable(id, function(){
8887                 var hd = document.getElementsByTagName("head")[0];
8888                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8889                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8890                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8891
8892                 var match;
8893                 while(match = re.exec(html)){
8894                     var attrs = match[1];
8895                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8896                     if(srcMatch && srcMatch[2]){
8897                        var s = document.createElement("script");
8898                        s.src = srcMatch[2];
8899                        var typeMatch = attrs.match(typeRe);
8900                        if(typeMatch && typeMatch[2]){
8901                            s.type = typeMatch[2];
8902                        }
8903                        hd.appendChild(s);
8904                     }else if(match[2] && match[2].length > 0){
8905                         if(window.execScript) {
8906                            window.execScript(match[2]);
8907                         } else {
8908                             /**
8909                              * eval:var:id
8910                              * eval:var:dom
8911                              * eval:var:html
8912                              * 
8913                              */
8914                            window.eval(match[2]);
8915                         }
8916                     }
8917                 }
8918                 var el = document.getElementById(id);
8919                 if(el){el.parentNode.removeChild(el);}
8920                 if(typeof callback == "function"){
8921                     callback();
8922                 }
8923             });
8924             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8925             return this;
8926         },
8927
8928         /**
8929          * Direct access to the UpdateManager update() method (takes the same parameters).
8930          * @param {String/Function} url The url for this request or a function to call to get the url
8931          * @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}
8932          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8933          * @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.
8934          * @return {Roo.Element} this
8935          */
8936         load : function(){
8937             var um = this.getUpdateManager();
8938             um.update.apply(um, arguments);
8939             return this;
8940         },
8941
8942         /**
8943         * Gets this element's UpdateManager
8944         * @return {Roo.UpdateManager} The UpdateManager
8945         */
8946         getUpdateManager : function(){
8947             if(!this.updateManager){
8948                 this.updateManager = new Roo.UpdateManager(this);
8949             }
8950             return this.updateManager;
8951         },
8952
8953         /**
8954          * Disables text selection for this element (normalized across browsers)
8955          * @return {Roo.Element} this
8956          */
8957         unselectable : function(){
8958             this.dom.unselectable = "on";
8959             this.swallowEvent("selectstart", true);
8960             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
8961             this.addClass("x-unselectable");
8962             return this;
8963         },
8964
8965         /**
8966         * Calculates the x, y to center this element on the screen
8967         * @return {Array} The x, y values [x, y]
8968         */
8969         getCenterXY : function(){
8970             return this.getAlignToXY(document, 'c-c');
8971         },
8972
8973         /**
8974         * Centers the Element in either the viewport, or another Element.
8975         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
8976         */
8977         center : function(centerIn){
8978             this.alignTo(centerIn || document, 'c-c');
8979             return this;
8980         },
8981
8982         /**
8983          * Tests various css rules/browsers to determine if this element uses a border box
8984          * @return {Boolean}
8985          */
8986         isBorderBox : function(){
8987             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
8988         },
8989
8990         /**
8991          * Return a box {x, y, width, height} that can be used to set another elements
8992          * size/location to match this element.
8993          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
8994          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
8995          * @return {Object} box An object in the format {x, y, width, height}
8996          */
8997         getBox : function(contentBox, local){
8998             var xy;
8999             if(!local){
9000                 xy = this.getXY();
9001             }else{
9002                 var left = parseInt(this.getStyle("left"), 10) || 0;
9003                 var top = parseInt(this.getStyle("top"), 10) || 0;
9004                 xy = [left, top];
9005             }
9006             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9007             if(!contentBox){
9008                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9009             }else{
9010                 var l = this.getBorderWidth("l")+this.getPadding("l");
9011                 var r = this.getBorderWidth("r")+this.getPadding("r");
9012                 var t = this.getBorderWidth("t")+this.getPadding("t");
9013                 var b = this.getBorderWidth("b")+this.getPadding("b");
9014                 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)};
9015             }
9016             bx.right = bx.x + bx.width;
9017             bx.bottom = bx.y + bx.height;
9018             return bx;
9019         },
9020
9021         /**
9022          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9023          for more information about the sides.
9024          * @param {String} sides
9025          * @return {Number}
9026          */
9027         getFrameWidth : function(sides, onlyContentBox){
9028             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9029         },
9030
9031         /**
9032          * 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.
9033          * @param {Object} box The box to fill {x, y, width, height}
9034          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9035          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9036          * @return {Roo.Element} this
9037          */
9038         setBox : function(box, adjust, animate){
9039             var w = box.width, h = box.height;
9040             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9041                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9042                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9043             }
9044             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9045             return this;
9046         },
9047
9048         /**
9049          * Forces the browser to repaint this element
9050          * @return {Roo.Element} this
9051          */
9052          repaint : function(){
9053             var dom = this.dom;
9054             this.addClass("x-repaint");
9055             setTimeout(function(){
9056                 Roo.get(dom).removeClass("x-repaint");
9057             }, 1);
9058             return this;
9059         },
9060
9061         /**
9062          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9063          * then it returns the calculated width of the sides (see getPadding)
9064          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9065          * @return {Object/Number}
9066          */
9067         getMargins : function(side){
9068             if(!side){
9069                 return {
9070                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9071                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9072                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9073                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9074                 };
9075             }else{
9076                 return this.addStyles(side, El.margins);
9077              }
9078         },
9079
9080         // private
9081         addStyles : function(sides, styles){
9082             var val = 0, v, w;
9083             for(var i = 0, len = sides.length; i < len; i++){
9084                 v = this.getStyle(styles[sides.charAt(i)]);
9085                 if(v){
9086                      w = parseInt(v, 10);
9087                      if(w){ val += w; }
9088                 }
9089             }
9090             return val;
9091         },
9092
9093         /**
9094          * Creates a proxy element of this element
9095          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9096          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9097          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9098          * @return {Roo.Element} The new proxy element
9099          */
9100         createProxy : function(config, renderTo, matchBox){
9101             if(renderTo){
9102                 renderTo = Roo.getDom(renderTo);
9103             }else{
9104                 renderTo = document.body;
9105             }
9106             config = typeof config == "object" ?
9107                 config : {tag : "div", cls: config};
9108             var proxy = Roo.DomHelper.append(renderTo, config, true);
9109             if(matchBox){
9110                proxy.setBox(this.getBox());
9111             }
9112             return proxy;
9113         },
9114
9115         /**
9116          * Puts a mask over this element to disable user interaction. Requires core.css.
9117          * This method can only be applied to elements which accept child nodes.
9118          * @param {String} msg (optional) A message to display in the mask
9119          * @param {String} msgCls (optional) A css class to apply to the msg element
9120          * @return {Element} The mask  element
9121          */
9122         mask : function(msg, msgCls)
9123         {
9124             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9125                 this.setStyle("position", "relative");
9126             }
9127             if(!this._mask){
9128                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9129             }
9130             
9131             this.addClass("x-masked");
9132             this._mask.setDisplayed(true);
9133             
9134             // we wander
9135             var z = 0;
9136             var dom = this.dom;
9137             while (dom && dom.style) {
9138                 if (!isNaN(parseInt(dom.style.zIndex))) {
9139                     z = Math.max(z, parseInt(dom.style.zIndex));
9140                 }
9141                 dom = dom.parentNode;
9142             }
9143             // if we are masking the body - then it hides everything..
9144             if (this.dom == document.body) {
9145                 z = 1000000;
9146                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9147                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9148             }
9149            
9150             if(typeof msg == 'string'){
9151                 if(!this._maskMsg){
9152                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9153                         cls: "roo-el-mask-msg", 
9154                         cn: [
9155                             {
9156                                 tag: 'i',
9157                                 cls: 'fa fa-spinner fa-spin'
9158                             },
9159                             {
9160                                 tag: 'div'
9161                             }   
9162                         ]
9163                     }, true);
9164                 }
9165                 var mm = this._maskMsg;
9166                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9167                 if (mm.dom.lastChild) { // weird IE issue?
9168                     mm.dom.lastChild.innerHTML = msg;
9169                 }
9170                 mm.setDisplayed(true);
9171                 mm.center(this);
9172                 mm.setStyle('z-index', z + 102);
9173             }
9174             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9175                 this._mask.setHeight(this.getHeight());
9176             }
9177             this._mask.setStyle('z-index', z + 100);
9178             
9179             return this._mask;
9180         },
9181
9182         /**
9183          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9184          * it is cached for reuse.
9185          */
9186         unmask : function(removeEl){
9187             if(this._mask){
9188                 if(removeEl === true){
9189                     this._mask.remove();
9190                     delete this._mask;
9191                     if(this._maskMsg){
9192                         this._maskMsg.remove();
9193                         delete this._maskMsg;
9194                     }
9195                 }else{
9196                     this._mask.setDisplayed(false);
9197                     if(this._maskMsg){
9198                         this._maskMsg.setDisplayed(false);
9199                     }
9200                 }
9201             }
9202             this.removeClass("x-masked");
9203         },
9204
9205         /**
9206          * Returns true if this element is masked
9207          * @return {Boolean}
9208          */
9209         isMasked : function(){
9210             return this._mask && this._mask.isVisible();
9211         },
9212
9213         /**
9214          * Creates an iframe shim for this element to keep selects and other windowed objects from
9215          * showing through.
9216          * @return {Roo.Element} The new shim element
9217          */
9218         createShim : function(){
9219             var el = document.createElement('iframe');
9220             el.frameBorder = 'no';
9221             el.className = 'roo-shim';
9222             if(Roo.isIE && Roo.isSecure){
9223                 el.src = Roo.SSL_SECURE_URL;
9224             }
9225             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9226             shim.autoBoxAdjust = false;
9227             return shim;
9228         },
9229
9230         /**
9231          * Removes this element from the DOM and deletes it from the cache
9232          */
9233         remove : function(){
9234             if(this.dom.parentNode){
9235                 this.dom.parentNode.removeChild(this.dom);
9236             }
9237             delete El.cache[this.dom.id];
9238         },
9239
9240         /**
9241          * Sets up event handlers to add and remove a css class when the mouse is over this element
9242          * @param {String} className
9243          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9244          * mouseout events for children elements
9245          * @return {Roo.Element} this
9246          */
9247         addClassOnOver : function(className, preventFlicker){
9248             this.on("mouseover", function(){
9249                 Roo.fly(this, '_internal').addClass(className);
9250             }, this.dom);
9251             var removeFn = function(e){
9252                 if(preventFlicker !== true || !e.within(this, true)){
9253                     Roo.fly(this, '_internal').removeClass(className);
9254                 }
9255             };
9256             this.on("mouseout", removeFn, this.dom);
9257             return this;
9258         },
9259
9260         /**
9261          * Sets up event handlers to add and remove a css class when this element has the focus
9262          * @param {String} className
9263          * @return {Roo.Element} this
9264          */
9265         addClassOnFocus : function(className){
9266             this.on("focus", function(){
9267                 Roo.fly(this, '_internal').addClass(className);
9268             }, this.dom);
9269             this.on("blur", function(){
9270                 Roo.fly(this, '_internal').removeClass(className);
9271             }, this.dom);
9272             return this;
9273         },
9274         /**
9275          * 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)
9276          * @param {String} className
9277          * @return {Roo.Element} this
9278          */
9279         addClassOnClick : function(className){
9280             var dom = this.dom;
9281             this.on("mousedown", function(){
9282                 Roo.fly(dom, '_internal').addClass(className);
9283                 var d = Roo.get(document);
9284                 var fn = function(){
9285                     Roo.fly(dom, '_internal').removeClass(className);
9286                     d.removeListener("mouseup", fn);
9287                 };
9288                 d.on("mouseup", fn);
9289             });
9290             return this;
9291         },
9292
9293         /**
9294          * Stops the specified event from bubbling and optionally prevents the default action
9295          * @param {String} eventName
9296          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9297          * @return {Roo.Element} this
9298          */
9299         swallowEvent : function(eventName, preventDefault){
9300             var fn = function(e){
9301                 e.stopPropagation();
9302                 if(preventDefault){
9303                     e.preventDefault();
9304                 }
9305             };
9306             if(eventName instanceof Array){
9307                 for(var i = 0, len = eventName.length; i < len; i++){
9308                      this.on(eventName[i], fn);
9309                 }
9310                 return this;
9311             }
9312             this.on(eventName, fn);
9313             return this;
9314         },
9315
9316         /**
9317          * @private
9318          */
9319       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9320
9321         /**
9322          * Sizes this element to its parent element's dimensions performing
9323          * neccessary box adjustments.
9324          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9325          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9326          * @return {Roo.Element} this
9327          */
9328         fitToParent : function(monitorResize, targetParent) {
9329           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9330           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9331           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9332             return;
9333           }
9334           var p = Roo.get(targetParent || this.dom.parentNode);
9335           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9336           if (monitorResize === true) {
9337             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9338             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9339           }
9340           return this;
9341         },
9342
9343         /**
9344          * Gets the next sibling, skipping text nodes
9345          * @return {HTMLElement} The next sibling or null
9346          */
9347         getNextSibling : function(){
9348             var n = this.dom.nextSibling;
9349             while(n && n.nodeType != 1){
9350                 n = n.nextSibling;
9351             }
9352             return n;
9353         },
9354
9355         /**
9356          * Gets the previous sibling, skipping text nodes
9357          * @return {HTMLElement} The previous sibling or null
9358          */
9359         getPrevSibling : function(){
9360             var n = this.dom.previousSibling;
9361             while(n && n.nodeType != 1){
9362                 n = n.previousSibling;
9363             }
9364             return n;
9365         },
9366
9367
9368         /**
9369          * Appends the passed element(s) to this element
9370          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9371          * @return {Roo.Element} this
9372          */
9373         appendChild: function(el){
9374             el = Roo.get(el);
9375             el.appendTo(this);
9376             return this;
9377         },
9378
9379         /**
9380          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9381          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9382          * automatically generated with the specified attributes.
9383          * @param {HTMLElement} insertBefore (optional) a child element of this element
9384          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9385          * @return {Roo.Element} The new child element
9386          */
9387         createChild: function(config, insertBefore, returnDom){
9388             config = config || {tag:'div'};
9389             if(insertBefore){
9390                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9391             }
9392             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9393         },
9394
9395         /**
9396          * Appends this element to the passed element
9397          * @param {String/HTMLElement/Element} el The new parent element
9398          * @return {Roo.Element} this
9399          */
9400         appendTo: function(el){
9401             el = Roo.getDom(el);
9402             el.appendChild(this.dom);
9403             return this;
9404         },
9405
9406         /**
9407          * Inserts this element before the passed element in the DOM
9408          * @param {String/HTMLElement/Element} el The element to insert before
9409          * @return {Roo.Element} this
9410          */
9411         insertBefore: function(el){
9412             el = Roo.getDom(el);
9413             el.parentNode.insertBefore(this.dom, el);
9414             return this;
9415         },
9416
9417         /**
9418          * Inserts this element after the passed element in the DOM
9419          * @param {String/HTMLElement/Element} el The element to insert after
9420          * @return {Roo.Element} this
9421          */
9422         insertAfter: function(el){
9423             el = Roo.getDom(el);
9424             el.parentNode.insertBefore(this.dom, el.nextSibling);
9425             return this;
9426         },
9427
9428         /**
9429          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9430          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9431          * @return {Roo.Element} The new child
9432          */
9433         insertFirst: function(el, returnDom){
9434             el = el || {};
9435             if(typeof el == 'object' && !el.nodeType){ // dh config
9436                 return this.createChild(el, this.dom.firstChild, returnDom);
9437             }else{
9438                 el = Roo.getDom(el);
9439                 this.dom.insertBefore(el, this.dom.firstChild);
9440                 return !returnDom ? Roo.get(el) : el;
9441             }
9442         },
9443
9444         /**
9445          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9446          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9447          * @param {String} where (optional) 'before' or 'after' defaults to before
9448          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9449          * @return {Roo.Element} the inserted Element
9450          */
9451         insertSibling: function(el, where, returnDom){
9452             where = where ? where.toLowerCase() : 'before';
9453             el = el || {};
9454             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9455
9456             if(typeof el == 'object' && !el.nodeType){ // dh config
9457                 if(where == 'after' && !this.dom.nextSibling){
9458                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9459                 }else{
9460                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9461                 }
9462
9463             }else{
9464                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9465                             where == 'before' ? this.dom : this.dom.nextSibling);
9466                 if(!returnDom){
9467                     rt = Roo.get(rt);
9468                 }
9469             }
9470             return rt;
9471         },
9472
9473         /**
9474          * Creates and wraps this element with another element
9475          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9476          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9477          * @return {HTMLElement/Element} The newly created wrapper element
9478          */
9479         wrap: function(config, returnDom){
9480             if(!config){
9481                 config = {tag: "div"};
9482             }
9483             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9484             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9485             return newEl;
9486         },
9487
9488         /**
9489          * Replaces the passed element with this element
9490          * @param {String/HTMLElement/Element} el The element to replace
9491          * @return {Roo.Element} this
9492          */
9493         replace: function(el){
9494             el = Roo.get(el);
9495             this.insertBefore(el);
9496             el.remove();
9497             return this;
9498         },
9499
9500         /**
9501          * Inserts an html fragment into this element
9502          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9503          * @param {String} html The HTML fragment
9504          * @param {Boolean} returnEl True to return an Roo.Element
9505          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9506          */
9507         insertHtml : function(where, html, returnEl){
9508             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9509             return returnEl ? Roo.get(el) : el;
9510         },
9511
9512         /**
9513          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9514          * @param {Object} o The object with the attributes
9515          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9516          * @return {Roo.Element} this
9517          */
9518         set : function(o, useSet){
9519             var el = this.dom;
9520             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9521             for(var attr in o){
9522                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9523                 if(attr=="cls"){
9524                     el.className = o["cls"];
9525                 }else{
9526                     if(useSet) {
9527                         el.setAttribute(attr, o[attr]);
9528                     } else {
9529                         el[attr] = o[attr];
9530                     }
9531                 }
9532             }
9533             if(o.style){
9534                 Roo.DomHelper.applyStyles(el, o.style);
9535             }
9536             return this;
9537         },
9538
9539         /**
9540          * Convenience method for constructing a KeyMap
9541          * @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:
9542          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9543          * @param {Function} fn The function to call
9544          * @param {Object} scope (optional) The scope of the function
9545          * @return {Roo.KeyMap} The KeyMap created
9546          */
9547         addKeyListener : function(key, fn, scope){
9548             var config;
9549             if(typeof key != "object" || key instanceof Array){
9550                 config = {
9551                     key: key,
9552                     fn: fn,
9553                     scope: scope
9554                 };
9555             }else{
9556                 config = {
9557                     key : key.key,
9558                     shift : key.shift,
9559                     ctrl : key.ctrl,
9560                     alt : key.alt,
9561                     fn: fn,
9562                     scope: scope
9563                 };
9564             }
9565             return new Roo.KeyMap(this, config);
9566         },
9567
9568         /**
9569          * Creates a KeyMap for this element
9570          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9571          * @return {Roo.KeyMap} The KeyMap created
9572          */
9573         addKeyMap : function(config){
9574             return new Roo.KeyMap(this, config);
9575         },
9576
9577         /**
9578          * Returns true if this element is scrollable.
9579          * @return {Boolean}
9580          */
9581          isScrollable : function(){
9582             var dom = this.dom;
9583             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9584         },
9585
9586         /**
9587          * 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().
9588          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9589          * @param {Number} value The new scroll value
9590          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9591          * @return {Element} this
9592          */
9593
9594         scrollTo : function(side, value, animate){
9595             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9596             if(!animate || !A){
9597                 this.dom[prop] = value;
9598             }else{
9599                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9600                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9601             }
9602             return this;
9603         },
9604
9605         /**
9606          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9607          * within this element's scrollable range.
9608          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9609          * @param {Number} distance How far to scroll the element in pixels
9610          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9611          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9612          * was scrolled as far as it could go.
9613          */
9614          scroll : function(direction, distance, animate){
9615              if(!this.isScrollable()){
9616                  return;
9617              }
9618              var el = this.dom;
9619              var l = el.scrollLeft, t = el.scrollTop;
9620              var w = el.scrollWidth, h = el.scrollHeight;
9621              var cw = el.clientWidth, ch = el.clientHeight;
9622              direction = direction.toLowerCase();
9623              var scrolled = false;
9624              var a = this.preanim(arguments, 2);
9625              switch(direction){
9626                  case "l":
9627                  case "left":
9628                      if(w - l > cw){
9629                          var v = Math.min(l + distance, w-cw);
9630                          this.scrollTo("left", v, a);
9631                          scrolled = true;
9632                      }
9633                      break;
9634                 case "r":
9635                 case "right":
9636                      if(l > 0){
9637                          var v = Math.max(l - distance, 0);
9638                          this.scrollTo("left", v, a);
9639                          scrolled = true;
9640                      }
9641                      break;
9642                 case "t":
9643                 case "top":
9644                 case "up":
9645                      if(t > 0){
9646                          var v = Math.max(t - distance, 0);
9647                          this.scrollTo("top", v, a);
9648                          scrolled = true;
9649                      }
9650                      break;
9651                 case "b":
9652                 case "bottom":
9653                 case "down":
9654                      if(h - t > ch){
9655                          var v = Math.min(t + distance, h-ch);
9656                          this.scrollTo("top", v, a);
9657                          scrolled = true;
9658                      }
9659                      break;
9660              }
9661              return scrolled;
9662         },
9663
9664         /**
9665          * Translates the passed page coordinates into left/top css values for this element
9666          * @param {Number/Array} x The page x or an array containing [x, y]
9667          * @param {Number} y The page y
9668          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9669          */
9670         translatePoints : function(x, y){
9671             if(typeof x == 'object' || x instanceof Array){
9672                 y = x[1]; x = x[0];
9673             }
9674             var p = this.getStyle('position');
9675             var o = this.getXY();
9676
9677             var l = parseInt(this.getStyle('left'), 10);
9678             var t = parseInt(this.getStyle('top'), 10);
9679
9680             if(isNaN(l)){
9681                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9682             }
9683             if(isNaN(t)){
9684                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9685             }
9686
9687             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9688         },
9689
9690         /**
9691          * Returns the current scroll position of the element.
9692          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9693          */
9694         getScroll : function(){
9695             var d = this.dom, doc = document;
9696             if(d == doc || d == doc.body){
9697                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9698                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9699                 return {left: l, top: t};
9700             }else{
9701                 return {left: d.scrollLeft, top: d.scrollTop};
9702             }
9703         },
9704
9705         /**
9706          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9707          * are convert to standard 6 digit hex color.
9708          * @param {String} attr The css attribute
9709          * @param {String} defaultValue The default value to use when a valid color isn't found
9710          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9711          * YUI color anims.
9712          */
9713         getColor : function(attr, defaultValue, prefix){
9714             var v = this.getStyle(attr);
9715             if(!v || v == "transparent" || v == "inherit") {
9716                 return defaultValue;
9717             }
9718             var color = typeof prefix == "undefined" ? "#" : prefix;
9719             if(v.substr(0, 4) == "rgb("){
9720                 var rvs = v.slice(4, v.length -1).split(",");
9721                 for(var i = 0; i < 3; i++){
9722                     var h = parseInt(rvs[i]).toString(16);
9723                     if(h < 16){
9724                         h = "0" + h;
9725                     }
9726                     color += h;
9727                 }
9728             } else {
9729                 if(v.substr(0, 1) == "#"){
9730                     if(v.length == 4) {
9731                         for(var i = 1; i < 4; i++){
9732                             var c = v.charAt(i);
9733                             color +=  c + c;
9734                         }
9735                     }else if(v.length == 7){
9736                         color += v.substr(1);
9737                     }
9738                 }
9739             }
9740             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9741         },
9742
9743         /**
9744          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9745          * gradient background, rounded corners and a 4-way shadow.
9746          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9747          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9748          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9749          * @return {Roo.Element} this
9750          */
9751         boxWrap : function(cls){
9752             cls = cls || 'x-box';
9753             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9754             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9755             return el;
9756         },
9757
9758         /**
9759          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9760          * @param {String} namespace The namespace in which to look for the attribute
9761          * @param {String} name The attribute name
9762          * @return {String} The attribute value
9763          */
9764         getAttributeNS : Roo.isIE ? function(ns, name){
9765             var d = this.dom;
9766             var type = typeof d[ns+":"+name];
9767             if(type != 'undefined' && type != 'unknown'){
9768                 return d[ns+":"+name];
9769             }
9770             return d[name];
9771         } : function(ns, name){
9772             var d = this.dom;
9773             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9774         },
9775         
9776         
9777         /**
9778          * Sets or Returns the value the dom attribute value
9779          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9780          * @param {String} value (optional) The value to set the attribute to
9781          * @return {String} The attribute value
9782          */
9783         attr : function(name){
9784             if (arguments.length > 1) {
9785                 this.dom.setAttribute(name, arguments[1]);
9786                 return arguments[1];
9787             }
9788             if (typeof(name) == 'object') {
9789                 for(var i in name) {
9790                     this.attr(i, name[i]);
9791                 }
9792                 return name;
9793             }
9794             
9795             
9796             if (!this.dom.hasAttribute(name)) {
9797                 return undefined;
9798             }
9799             return this.dom.getAttribute(name);
9800         }
9801         
9802         
9803         
9804     };
9805
9806     var ep = El.prototype;
9807
9808     /**
9809      * Appends an event handler (Shorthand for addListener)
9810      * @param {String}   eventName     The type of event to append
9811      * @param {Function} fn        The method the event invokes
9812      * @param {Object} scope       (optional) The scope (this object) of the fn
9813      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9814      * @method
9815      */
9816     ep.on = ep.addListener;
9817         // backwards compat
9818     ep.mon = ep.addListener;
9819
9820     /**
9821      * Removes an event handler from this element (shorthand for removeListener)
9822      * @param {String} eventName the type of event to remove
9823      * @param {Function} fn the method the event invokes
9824      * @return {Roo.Element} this
9825      * @method
9826      */
9827     ep.un = ep.removeListener;
9828
9829     /**
9830      * true to automatically adjust width and height settings for box-model issues (default to true)
9831      */
9832     ep.autoBoxAdjust = true;
9833
9834     // private
9835     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9836
9837     // private
9838     El.addUnits = function(v, defaultUnit){
9839         if(v === "" || v == "auto"){
9840             return v;
9841         }
9842         if(v === undefined){
9843             return '';
9844         }
9845         if(typeof v == "number" || !El.unitPattern.test(v)){
9846             return v + (defaultUnit || 'px');
9847         }
9848         return v;
9849     };
9850
9851     // special markup used throughout Roo when box wrapping elements
9852     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>';
9853     /**
9854      * Visibility mode constant - Use visibility to hide element
9855      * @static
9856      * @type Number
9857      */
9858     El.VISIBILITY = 1;
9859     /**
9860      * Visibility mode constant - Use display to hide element
9861      * @static
9862      * @type Number
9863      */
9864     El.DISPLAY = 2;
9865
9866     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9867     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9868     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9869
9870
9871
9872     /**
9873      * @private
9874      */
9875     El.cache = {};
9876
9877     var docEl;
9878
9879     /**
9880      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9881      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9882      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9883      * @return {Element} The Element object
9884      * @static
9885      */
9886     El.get = function(el){
9887         var ex, elm, id;
9888         if(!el){ return null; }
9889         if(typeof el == "string"){ // element id
9890             if(!(elm = document.getElementById(el))){
9891                 return null;
9892             }
9893             if(ex = El.cache[el]){
9894                 ex.dom = elm;
9895             }else{
9896                 ex = El.cache[el] = new El(elm);
9897             }
9898             return ex;
9899         }else if(el.tagName){ // dom element
9900             if(!(id = el.id)){
9901                 id = Roo.id(el);
9902             }
9903             if(ex = El.cache[id]){
9904                 ex.dom = el;
9905             }else{
9906                 ex = El.cache[id] = new El(el);
9907             }
9908             return ex;
9909         }else if(el instanceof El){
9910             if(el != docEl){
9911                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9912                                                               // catch case where it hasn't been appended
9913                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9914             }
9915             return el;
9916         }else if(el.isComposite){
9917             return el;
9918         }else if(el instanceof Array){
9919             return El.select(el);
9920         }else if(el == document){
9921             // create a bogus element object representing the document object
9922             if(!docEl){
9923                 var f = function(){};
9924                 f.prototype = El.prototype;
9925                 docEl = new f();
9926                 docEl.dom = document;
9927             }
9928             return docEl;
9929         }
9930         return null;
9931     };
9932
9933     // private
9934     El.uncache = function(el){
9935         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9936             if(a[i]){
9937                 delete El.cache[a[i].id || a[i]];
9938             }
9939         }
9940     };
9941
9942     // private
9943     // Garbage collection - uncache elements/purge listeners on orphaned elements
9944     // so we don't hold a reference and cause the browser to retain them
9945     El.garbageCollect = function(){
9946         if(!Roo.enableGarbageCollector){
9947             clearInterval(El.collectorThread);
9948             return;
9949         }
9950         for(var eid in El.cache){
9951             var el = El.cache[eid], d = el.dom;
9952             // -------------------------------------------------------
9953             // Determining what is garbage:
9954             // -------------------------------------------------------
9955             // !d
9956             // dom node is null, definitely garbage
9957             // -------------------------------------------------------
9958             // !d.parentNode
9959             // no parentNode == direct orphan, definitely garbage
9960             // -------------------------------------------------------
9961             // !d.offsetParent && !document.getElementById(eid)
9962             // display none elements have no offsetParent so we will
9963             // also try to look it up by it's id. However, check
9964             // offsetParent first so we don't do unneeded lookups.
9965             // This enables collection of elements that are not orphans
9966             // directly, but somewhere up the line they have an orphan
9967             // parent.
9968             // -------------------------------------------------------
9969             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
9970                 delete El.cache[eid];
9971                 if(d && Roo.enableListenerCollection){
9972                     E.purgeElement(d);
9973                 }
9974             }
9975         }
9976     }
9977     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
9978
9979
9980     // dom is optional
9981     El.Flyweight = function(dom){
9982         this.dom = dom;
9983     };
9984     El.Flyweight.prototype = El.prototype;
9985
9986     El._flyweights = {};
9987     /**
9988      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9989      * the dom node can be overwritten by other code.
9990      * @param {String/HTMLElement} el The dom node or id
9991      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9992      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9993      * @static
9994      * @return {Element} The shared Element object
9995      */
9996     El.fly = function(el, named){
9997         named = named || '_global';
9998         el = Roo.getDom(el);
9999         if(!el){
10000             return null;
10001         }
10002         if(!El._flyweights[named]){
10003             El._flyweights[named] = new El.Flyweight();
10004         }
10005         El._flyweights[named].dom = el;
10006         return El._flyweights[named];
10007     };
10008
10009     /**
10010      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10011      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10012      * Shorthand of {@link Roo.Element#get}
10013      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10014      * @return {Element} The Element object
10015      * @member Roo
10016      * @method get
10017      */
10018     Roo.get = El.get;
10019     /**
10020      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10021      * the dom node can be overwritten by other code.
10022      * Shorthand of {@link Roo.Element#fly}
10023      * @param {String/HTMLElement} el The dom node or id
10024      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10025      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10026      * @static
10027      * @return {Element} The shared Element object
10028      * @member Roo
10029      * @method fly
10030      */
10031     Roo.fly = El.fly;
10032
10033     // speedy lookup for elements never to box adjust
10034     var noBoxAdjust = Roo.isStrict ? {
10035         select:1
10036     } : {
10037         input:1, select:1, textarea:1
10038     };
10039     if(Roo.isIE || Roo.isGecko){
10040         noBoxAdjust['button'] = 1;
10041     }
10042
10043
10044     Roo.EventManager.on(window, 'unload', function(){
10045         delete El.cache;
10046         delete El._flyweights;
10047     });
10048 })();
10049
10050
10051
10052
10053 if(Roo.DomQuery){
10054     Roo.Element.selectorFunction = Roo.DomQuery.select;
10055 }
10056
10057 Roo.Element.select = function(selector, unique, root){
10058     var els;
10059     if(typeof selector == "string"){
10060         els = Roo.Element.selectorFunction(selector, root);
10061     }else if(selector.length !== undefined){
10062         els = selector;
10063     }else{
10064         throw "Invalid selector";
10065     }
10066     if(unique === true){
10067         return new Roo.CompositeElement(els);
10068     }else{
10069         return new Roo.CompositeElementLite(els);
10070     }
10071 };
10072 /**
10073  * Selects elements based on the passed CSS selector to enable working on them as 1.
10074  * @param {String/Array} selector The CSS selector or an array of elements
10075  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10076  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10077  * @return {CompositeElementLite/CompositeElement}
10078  * @member Roo
10079  * @method select
10080  */
10081 Roo.select = Roo.Element.select;
10082
10083
10084
10085
10086
10087
10088
10089
10090
10091
10092
10093
10094
10095
10096 /*
10097  * Based on:
10098  * Ext JS Library 1.1.1
10099  * Copyright(c) 2006-2007, Ext JS, LLC.
10100  *
10101  * Originally Released Under LGPL - original licence link has changed is not relivant.
10102  *
10103  * Fork - LGPL
10104  * <script type="text/javascript">
10105  */
10106
10107
10108
10109 //Notifies Element that fx methods are available
10110 Roo.enableFx = true;
10111
10112 /**
10113  * @class Roo.Fx
10114  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10115  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10116  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10117  * Element effects to work.</p><br/>
10118  *
10119  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10120  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10121  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10122  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10123  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10124  * expected results and should be done with care.</p><br/>
10125  *
10126  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10127  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10128 <pre>
10129 Value  Description
10130 -----  -----------------------------
10131 tl     The top left corner
10132 t      The center of the top edge
10133 tr     The top right corner
10134 l      The center of the left edge
10135 r      The center of the right edge
10136 bl     The bottom left corner
10137 b      The center of the bottom edge
10138 br     The bottom right corner
10139 </pre>
10140  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10141  * below are common options that can be passed to any Fx method.</b>
10142  * @cfg {Function} callback A function called when the effect is finished
10143  * @cfg {Object} scope The scope of the effect function
10144  * @cfg {String} easing A valid Easing value for the effect
10145  * @cfg {String} afterCls A css class to apply after the effect
10146  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10147  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10148  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10149  * effects that end with the element being visually hidden, ignored otherwise)
10150  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10151  * a function which returns such a specification that will be applied to the Element after the effect finishes
10152  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10153  * @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
10154  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10155  */
10156 Roo.Fx = {
10157         /**
10158          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10159          * origin for the slide effect.  This function automatically handles wrapping the element with
10160          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10161          * Usage:
10162          *<pre><code>
10163 // default: slide the element in from the top
10164 el.slideIn();
10165
10166 // custom: slide the element in from the right with a 2-second duration
10167 el.slideIn('r', { duration: 2 });
10168
10169 // common config options shown with default values
10170 el.slideIn('t', {
10171     easing: 'easeOut',
10172     duration: .5
10173 });
10174 </code></pre>
10175          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10176          * @param {Object} options (optional) Object literal with any of the Fx config options
10177          * @return {Roo.Element} The Element
10178          */
10179     slideIn : function(anchor, o){
10180         var el = this.getFxEl();
10181         o = o || {};
10182
10183         el.queueFx(o, function(){
10184
10185             anchor = anchor || "t";
10186
10187             // fix display to visibility
10188             this.fixDisplay();
10189
10190             // restore values after effect
10191             var r = this.getFxRestore();
10192             var b = this.getBox();
10193             // fixed size for slide
10194             this.setSize(b);
10195
10196             // wrap if needed
10197             var wrap = this.fxWrap(r.pos, o, "hidden");
10198
10199             var st = this.dom.style;
10200             st.visibility = "visible";
10201             st.position = "absolute";
10202
10203             // clear out temp styles after slide and unwrap
10204             var after = function(){
10205                 el.fxUnwrap(wrap, r.pos, o);
10206                 st.width = r.width;
10207                 st.height = r.height;
10208                 el.afterFx(o);
10209             };
10210             // time to calc the positions
10211             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10212
10213             switch(anchor.toLowerCase()){
10214                 case "t":
10215                     wrap.setSize(b.width, 0);
10216                     st.left = st.bottom = "0";
10217                     a = {height: bh};
10218                 break;
10219                 case "l":
10220                     wrap.setSize(0, b.height);
10221                     st.right = st.top = "0";
10222                     a = {width: bw};
10223                 break;
10224                 case "r":
10225                     wrap.setSize(0, b.height);
10226                     wrap.setX(b.right);
10227                     st.left = st.top = "0";
10228                     a = {width: bw, points: pt};
10229                 break;
10230                 case "b":
10231                     wrap.setSize(b.width, 0);
10232                     wrap.setY(b.bottom);
10233                     st.left = st.top = "0";
10234                     a = {height: bh, points: pt};
10235                 break;
10236                 case "tl":
10237                     wrap.setSize(0, 0);
10238                     st.right = st.bottom = "0";
10239                     a = {width: bw, height: bh};
10240                 break;
10241                 case "bl":
10242                     wrap.setSize(0, 0);
10243                     wrap.setY(b.y+b.height);
10244                     st.right = st.top = "0";
10245                     a = {width: bw, height: bh, points: pt};
10246                 break;
10247                 case "br":
10248                     wrap.setSize(0, 0);
10249                     wrap.setXY([b.right, b.bottom]);
10250                     st.left = st.top = "0";
10251                     a = {width: bw, height: bh, points: pt};
10252                 break;
10253                 case "tr":
10254                     wrap.setSize(0, 0);
10255                     wrap.setX(b.x+b.width);
10256                     st.left = st.bottom = "0";
10257                     a = {width: bw, height: bh, points: pt};
10258                 break;
10259             }
10260             this.dom.style.visibility = "visible";
10261             wrap.show();
10262
10263             arguments.callee.anim = wrap.fxanim(a,
10264                 o,
10265                 'motion',
10266                 .5,
10267                 'easeOut', after);
10268         });
10269         return this;
10270     },
10271     
10272         /**
10273          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10274          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10275          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10276          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10277          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10278          * Usage:
10279          *<pre><code>
10280 // default: slide the element out to the top
10281 el.slideOut();
10282
10283 // custom: slide the element out to the right with a 2-second duration
10284 el.slideOut('r', { duration: 2 });
10285
10286 // common config options shown with default values
10287 el.slideOut('t', {
10288     easing: 'easeOut',
10289     duration: .5,
10290     remove: false,
10291     useDisplay: false
10292 });
10293 </code></pre>
10294          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10295          * @param {Object} options (optional) Object literal with any of the Fx config options
10296          * @return {Roo.Element} The Element
10297          */
10298     slideOut : function(anchor, o){
10299         var el = this.getFxEl();
10300         o = o || {};
10301
10302         el.queueFx(o, function(){
10303
10304             anchor = anchor || "t";
10305
10306             // restore values after effect
10307             var r = this.getFxRestore();
10308             
10309             var b = this.getBox();
10310             // fixed size for slide
10311             this.setSize(b);
10312
10313             // wrap if needed
10314             var wrap = this.fxWrap(r.pos, o, "visible");
10315
10316             var st = this.dom.style;
10317             st.visibility = "visible";
10318             st.position = "absolute";
10319
10320             wrap.setSize(b);
10321
10322             var after = function(){
10323                 if(o.useDisplay){
10324                     el.setDisplayed(false);
10325                 }else{
10326                     el.hide();
10327                 }
10328
10329                 el.fxUnwrap(wrap, r.pos, o);
10330
10331                 st.width = r.width;
10332                 st.height = r.height;
10333
10334                 el.afterFx(o);
10335             };
10336
10337             var a, zero = {to: 0};
10338             switch(anchor.toLowerCase()){
10339                 case "t":
10340                     st.left = st.bottom = "0";
10341                     a = {height: zero};
10342                 break;
10343                 case "l":
10344                     st.right = st.top = "0";
10345                     a = {width: zero};
10346                 break;
10347                 case "r":
10348                     st.left = st.top = "0";
10349                     a = {width: zero, points: {to:[b.right, b.y]}};
10350                 break;
10351                 case "b":
10352                     st.left = st.top = "0";
10353                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10354                 break;
10355                 case "tl":
10356                     st.right = st.bottom = "0";
10357                     a = {width: zero, height: zero};
10358                 break;
10359                 case "bl":
10360                     st.right = st.top = "0";
10361                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10362                 break;
10363                 case "br":
10364                     st.left = st.top = "0";
10365                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10366                 break;
10367                 case "tr":
10368                     st.left = st.bottom = "0";
10369                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10370                 break;
10371             }
10372
10373             arguments.callee.anim = wrap.fxanim(a,
10374                 o,
10375                 'motion',
10376                 .5,
10377                 "easeOut", after);
10378         });
10379         return this;
10380     },
10381
10382         /**
10383          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10384          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10385          * The element must be removed from the DOM using the 'remove' config option if desired.
10386          * Usage:
10387          *<pre><code>
10388 // default
10389 el.puff();
10390
10391 // common config options shown with default values
10392 el.puff({
10393     easing: 'easeOut',
10394     duration: .5,
10395     remove: false,
10396     useDisplay: false
10397 });
10398 </code></pre>
10399          * @param {Object} options (optional) Object literal with any of the Fx config options
10400          * @return {Roo.Element} The Element
10401          */
10402     puff : function(o){
10403         var el = this.getFxEl();
10404         o = o || {};
10405
10406         el.queueFx(o, function(){
10407             this.clearOpacity();
10408             this.show();
10409
10410             // restore values after effect
10411             var r = this.getFxRestore();
10412             var st = this.dom.style;
10413
10414             var after = function(){
10415                 if(o.useDisplay){
10416                     el.setDisplayed(false);
10417                 }else{
10418                     el.hide();
10419                 }
10420
10421                 el.clearOpacity();
10422
10423                 el.setPositioning(r.pos);
10424                 st.width = r.width;
10425                 st.height = r.height;
10426                 st.fontSize = '';
10427                 el.afterFx(o);
10428             };
10429
10430             var width = this.getWidth();
10431             var height = this.getHeight();
10432
10433             arguments.callee.anim = this.fxanim({
10434                     width : {to: this.adjustWidth(width * 2)},
10435                     height : {to: this.adjustHeight(height * 2)},
10436                     points : {by: [-(width * .5), -(height * .5)]},
10437                     opacity : {to: 0},
10438                     fontSize: {to:200, unit: "%"}
10439                 },
10440                 o,
10441                 'motion',
10442                 .5,
10443                 "easeOut", after);
10444         });
10445         return this;
10446     },
10447
10448         /**
10449          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10450          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10451          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10452          * Usage:
10453          *<pre><code>
10454 // default
10455 el.switchOff();
10456
10457 // all config options shown with default values
10458 el.switchOff({
10459     easing: 'easeIn',
10460     duration: .3,
10461     remove: false,
10462     useDisplay: false
10463 });
10464 </code></pre>
10465          * @param {Object} options (optional) Object literal with any of the Fx config options
10466          * @return {Roo.Element} The Element
10467          */
10468     switchOff : function(o){
10469         var el = this.getFxEl();
10470         o = o || {};
10471
10472         el.queueFx(o, function(){
10473             this.clearOpacity();
10474             this.clip();
10475
10476             // restore values after effect
10477             var r = this.getFxRestore();
10478             var st = this.dom.style;
10479
10480             var after = function(){
10481                 if(o.useDisplay){
10482                     el.setDisplayed(false);
10483                 }else{
10484                     el.hide();
10485                 }
10486
10487                 el.clearOpacity();
10488                 el.setPositioning(r.pos);
10489                 st.width = r.width;
10490                 st.height = r.height;
10491
10492                 el.afterFx(o);
10493             };
10494
10495             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10496                 this.clearOpacity();
10497                 (function(){
10498                     this.fxanim({
10499                         height:{to:1},
10500                         points:{by:[0, this.getHeight() * .5]}
10501                     }, o, 'motion', 0.3, 'easeIn', after);
10502                 }).defer(100, this);
10503             });
10504         });
10505         return this;
10506     },
10507
10508     /**
10509      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10510      * changed using the "attr" config option) and then fading back to the original color. If no original
10511      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10512      * Usage:
10513 <pre><code>
10514 // default: highlight background to yellow
10515 el.highlight();
10516
10517 // custom: highlight foreground text to blue for 2 seconds
10518 el.highlight("0000ff", { attr: 'color', duration: 2 });
10519
10520 // common config options shown with default values
10521 el.highlight("ffff9c", {
10522     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10523     endColor: (current color) or "ffffff",
10524     easing: 'easeIn',
10525     duration: 1
10526 });
10527 </code></pre>
10528      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10529      * @param {Object} options (optional) Object literal with any of the Fx config options
10530      * @return {Roo.Element} The Element
10531      */ 
10532     highlight : function(color, o){
10533         var el = this.getFxEl();
10534         o = o || {};
10535
10536         el.queueFx(o, function(){
10537             color = color || "ffff9c";
10538             attr = o.attr || "backgroundColor";
10539
10540             this.clearOpacity();
10541             this.show();
10542
10543             var origColor = this.getColor(attr);
10544             var restoreColor = this.dom.style[attr];
10545             endColor = (o.endColor || origColor) || "ffffff";
10546
10547             var after = function(){
10548                 el.dom.style[attr] = restoreColor;
10549                 el.afterFx(o);
10550             };
10551
10552             var a = {};
10553             a[attr] = {from: color, to: endColor};
10554             arguments.callee.anim = this.fxanim(a,
10555                 o,
10556                 'color',
10557                 1,
10558                 'easeIn', after);
10559         });
10560         return this;
10561     },
10562
10563    /**
10564     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10565     * Usage:
10566 <pre><code>
10567 // default: a single light blue ripple
10568 el.frame();
10569
10570 // custom: 3 red ripples lasting 3 seconds total
10571 el.frame("ff0000", 3, { duration: 3 });
10572
10573 // common config options shown with default values
10574 el.frame("C3DAF9", 1, {
10575     duration: 1 //duration of entire animation (not each individual ripple)
10576     // Note: Easing is not configurable and will be ignored if included
10577 });
10578 </code></pre>
10579     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10580     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10581     * @param {Object} options (optional) Object literal with any of the Fx config options
10582     * @return {Roo.Element} The Element
10583     */
10584     frame : function(color, count, o){
10585         var el = this.getFxEl();
10586         o = o || {};
10587
10588         el.queueFx(o, function(){
10589             color = color || "#C3DAF9";
10590             if(color.length == 6){
10591                 color = "#" + color;
10592             }
10593             count = count || 1;
10594             duration = o.duration || 1;
10595             this.show();
10596
10597             var b = this.getBox();
10598             var animFn = function(){
10599                 var proxy = this.createProxy({
10600
10601                      style:{
10602                         visbility:"hidden",
10603                         position:"absolute",
10604                         "z-index":"35000", // yee haw
10605                         border:"0px solid " + color
10606                      }
10607                   });
10608                 var scale = Roo.isBorderBox ? 2 : 1;
10609                 proxy.animate({
10610                     top:{from:b.y, to:b.y - 20},
10611                     left:{from:b.x, to:b.x - 20},
10612                     borderWidth:{from:0, to:10},
10613                     opacity:{from:1, to:0},
10614                     height:{from:b.height, to:(b.height + (20*scale))},
10615                     width:{from:b.width, to:(b.width + (20*scale))}
10616                 }, duration, function(){
10617                     proxy.remove();
10618                 });
10619                 if(--count > 0){
10620                      animFn.defer((duration/2)*1000, this);
10621                 }else{
10622                     el.afterFx(o);
10623                 }
10624             };
10625             animFn.call(this);
10626         });
10627         return this;
10628     },
10629
10630    /**
10631     * Creates a pause before any subsequent queued effects begin.  If there are
10632     * no effects queued after the pause it will have no effect.
10633     * Usage:
10634 <pre><code>
10635 el.pause(1);
10636 </code></pre>
10637     * @param {Number} seconds The length of time to pause (in seconds)
10638     * @return {Roo.Element} The Element
10639     */
10640     pause : function(seconds){
10641         var el = this.getFxEl();
10642         var o = {};
10643
10644         el.queueFx(o, function(){
10645             setTimeout(function(){
10646                 el.afterFx(o);
10647             }, seconds * 1000);
10648         });
10649         return this;
10650     },
10651
10652    /**
10653     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10654     * using the "endOpacity" config option.
10655     * Usage:
10656 <pre><code>
10657 // default: fade in from opacity 0 to 100%
10658 el.fadeIn();
10659
10660 // custom: fade in from opacity 0 to 75% over 2 seconds
10661 el.fadeIn({ endOpacity: .75, duration: 2});
10662
10663 // common config options shown with default values
10664 el.fadeIn({
10665     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10666     easing: 'easeOut',
10667     duration: .5
10668 });
10669 </code></pre>
10670     * @param {Object} options (optional) Object literal with any of the Fx config options
10671     * @return {Roo.Element} The Element
10672     */
10673     fadeIn : function(o){
10674         var el = this.getFxEl();
10675         o = o || {};
10676         el.queueFx(o, function(){
10677             this.setOpacity(0);
10678             this.fixDisplay();
10679             this.dom.style.visibility = 'visible';
10680             var to = o.endOpacity || 1;
10681             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10682                 o, null, .5, "easeOut", function(){
10683                 if(to == 1){
10684                     this.clearOpacity();
10685                 }
10686                 el.afterFx(o);
10687             });
10688         });
10689         return this;
10690     },
10691
10692    /**
10693     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10694     * using the "endOpacity" config option.
10695     * Usage:
10696 <pre><code>
10697 // default: fade out from the element's current opacity to 0
10698 el.fadeOut();
10699
10700 // custom: fade out from the element's current opacity to 25% over 2 seconds
10701 el.fadeOut({ endOpacity: .25, duration: 2});
10702
10703 // common config options shown with default values
10704 el.fadeOut({
10705     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10706     easing: 'easeOut',
10707     duration: .5
10708     remove: false,
10709     useDisplay: false
10710 });
10711 </code></pre>
10712     * @param {Object} options (optional) Object literal with any of the Fx config options
10713     * @return {Roo.Element} The Element
10714     */
10715     fadeOut : function(o){
10716         var el = this.getFxEl();
10717         o = o || {};
10718         el.queueFx(o, function(){
10719             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10720                 o, null, .5, "easeOut", function(){
10721                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10722                      this.dom.style.display = "none";
10723                 }else{
10724                      this.dom.style.visibility = "hidden";
10725                 }
10726                 this.clearOpacity();
10727                 el.afterFx(o);
10728             });
10729         });
10730         return this;
10731     },
10732
10733    /**
10734     * Animates the transition of an element's dimensions from a starting height/width
10735     * to an ending height/width.
10736     * Usage:
10737 <pre><code>
10738 // change height and width to 100x100 pixels
10739 el.scale(100, 100);
10740
10741 // common config options shown with default values.  The height and width will default to
10742 // the element's existing values if passed as null.
10743 el.scale(
10744     [element's width],
10745     [element's height], {
10746     easing: 'easeOut',
10747     duration: .35
10748 });
10749 </code></pre>
10750     * @param {Number} width  The new width (pass undefined to keep the original width)
10751     * @param {Number} height  The new height (pass undefined to keep the original height)
10752     * @param {Object} options (optional) Object literal with any of the Fx config options
10753     * @return {Roo.Element} The Element
10754     */
10755     scale : function(w, h, o){
10756         this.shift(Roo.apply({}, o, {
10757             width: w,
10758             height: h
10759         }));
10760         return this;
10761     },
10762
10763    /**
10764     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10765     * Any of these properties not specified in the config object will not be changed.  This effect 
10766     * requires that at least one new dimension, position or opacity setting must be passed in on
10767     * the config object in order for the function to have any effect.
10768     * Usage:
10769 <pre><code>
10770 // slide the element horizontally to x position 200 while changing the height and opacity
10771 el.shift({ x: 200, height: 50, opacity: .8 });
10772
10773 // common config options shown with default values.
10774 el.shift({
10775     width: [element's width],
10776     height: [element's height],
10777     x: [element's x position],
10778     y: [element's y position],
10779     opacity: [element's opacity],
10780     easing: 'easeOut',
10781     duration: .35
10782 });
10783 </code></pre>
10784     * @param {Object} options  Object literal with any of the Fx config options
10785     * @return {Roo.Element} The Element
10786     */
10787     shift : function(o){
10788         var el = this.getFxEl();
10789         o = o || {};
10790         el.queueFx(o, function(){
10791             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10792             if(w !== undefined){
10793                 a.width = {to: this.adjustWidth(w)};
10794             }
10795             if(h !== undefined){
10796                 a.height = {to: this.adjustHeight(h)};
10797             }
10798             if(x !== undefined || y !== undefined){
10799                 a.points = {to: [
10800                     x !== undefined ? x : this.getX(),
10801                     y !== undefined ? y : this.getY()
10802                 ]};
10803             }
10804             if(op !== undefined){
10805                 a.opacity = {to: op};
10806             }
10807             if(o.xy !== undefined){
10808                 a.points = {to: o.xy};
10809             }
10810             arguments.callee.anim = this.fxanim(a,
10811                 o, 'motion', .35, "easeOut", function(){
10812                 el.afterFx(o);
10813             });
10814         });
10815         return this;
10816     },
10817
10818         /**
10819          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10820          * ending point of the effect.
10821          * Usage:
10822          *<pre><code>
10823 // default: slide the element downward while fading out
10824 el.ghost();
10825
10826 // custom: slide the element out to the right with a 2-second duration
10827 el.ghost('r', { duration: 2 });
10828
10829 // common config options shown with default values
10830 el.ghost('b', {
10831     easing: 'easeOut',
10832     duration: .5
10833     remove: false,
10834     useDisplay: false
10835 });
10836 </code></pre>
10837          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10838          * @param {Object} options (optional) Object literal with any of the Fx config options
10839          * @return {Roo.Element} The Element
10840          */
10841     ghost : function(anchor, o){
10842         var el = this.getFxEl();
10843         o = o || {};
10844
10845         el.queueFx(o, function(){
10846             anchor = anchor || "b";
10847
10848             // restore values after effect
10849             var r = this.getFxRestore();
10850             var w = this.getWidth(),
10851                 h = this.getHeight();
10852
10853             var st = this.dom.style;
10854
10855             var after = function(){
10856                 if(o.useDisplay){
10857                     el.setDisplayed(false);
10858                 }else{
10859                     el.hide();
10860                 }
10861
10862                 el.clearOpacity();
10863                 el.setPositioning(r.pos);
10864                 st.width = r.width;
10865                 st.height = r.height;
10866
10867                 el.afterFx(o);
10868             };
10869
10870             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10871             switch(anchor.toLowerCase()){
10872                 case "t":
10873                     pt.by = [0, -h];
10874                 break;
10875                 case "l":
10876                     pt.by = [-w, 0];
10877                 break;
10878                 case "r":
10879                     pt.by = [w, 0];
10880                 break;
10881                 case "b":
10882                     pt.by = [0, h];
10883                 break;
10884                 case "tl":
10885                     pt.by = [-w, -h];
10886                 break;
10887                 case "bl":
10888                     pt.by = [-w, h];
10889                 break;
10890                 case "br":
10891                     pt.by = [w, h];
10892                 break;
10893                 case "tr":
10894                     pt.by = [w, -h];
10895                 break;
10896             }
10897
10898             arguments.callee.anim = this.fxanim(a,
10899                 o,
10900                 'motion',
10901                 .5,
10902                 "easeOut", after);
10903         });
10904         return this;
10905     },
10906
10907         /**
10908          * Ensures that all effects queued after syncFx is called on the element are
10909          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10910          * @return {Roo.Element} The Element
10911          */
10912     syncFx : function(){
10913         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10914             block : false,
10915             concurrent : true,
10916             stopFx : false
10917         });
10918         return this;
10919     },
10920
10921         /**
10922          * Ensures that all effects queued after sequenceFx is called on the element are
10923          * run in sequence.  This is the opposite of {@link #syncFx}.
10924          * @return {Roo.Element} The Element
10925          */
10926     sequenceFx : function(){
10927         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10928             block : false,
10929             concurrent : false,
10930             stopFx : false
10931         });
10932         return this;
10933     },
10934
10935         /* @private */
10936     nextFx : function(){
10937         var ef = this.fxQueue[0];
10938         if(ef){
10939             ef.call(this);
10940         }
10941     },
10942
10943         /**
10944          * Returns true if the element has any effects actively running or queued, else returns false.
10945          * @return {Boolean} True if element has active effects, else false
10946          */
10947     hasActiveFx : function(){
10948         return this.fxQueue && this.fxQueue[0];
10949     },
10950
10951         /**
10952          * Stops any running effects and clears the element's internal effects queue if it contains
10953          * any additional effects that haven't started yet.
10954          * @return {Roo.Element} The Element
10955          */
10956     stopFx : function(){
10957         if(this.hasActiveFx()){
10958             var cur = this.fxQueue[0];
10959             if(cur && cur.anim && cur.anim.isAnimated()){
10960                 this.fxQueue = [cur]; // clear out others
10961                 cur.anim.stop(true);
10962             }
10963         }
10964         return this;
10965     },
10966
10967         /* @private */
10968     beforeFx : function(o){
10969         if(this.hasActiveFx() && !o.concurrent){
10970            if(o.stopFx){
10971                this.stopFx();
10972                return true;
10973            }
10974            return false;
10975         }
10976         return true;
10977     },
10978
10979         /**
10980          * Returns true if the element is currently blocking so that no other effect can be queued
10981          * until this effect is finished, else returns false if blocking is not set.  This is commonly
10982          * used to ensure that an effect initiated by a user action runs to completion prior to the
10983          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
10984          * @return {Boolean} True if blocking, else false
10985          */
10986     hasFxBlock : function(){
10987         var q = this.fxQueue;
10988         return q && q[0] && q[0].block;
10989     },
10990
10991         /* @private */
10992     queueFx : function(o, fn){
10993         if(!this.fxQueue){
10994             this.fxQueue = [];
10995         }
10996         if(!this.hasFxBlock()){
10997             Roo.applyIf(o, this.fxDefaults);
10998             if(!o.concurrent){
10999                 var run = this.beforeFx(o);
11000                 fn.block = o.block;
11001                 this.fxQueue.push(fn);
11002                 if(run){
11003                     this.nextFx();
11004                 }
11005             }else{
11006                 fn.call(this);
11007             }
11008         }
11009         return this;
11010     },
11011
11012         /* @private */
11013     fxWrap : function(pos, o, vis){
11014         var wrap;
11015         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11016             var wrapXY;
11017             if(o.fixPosition){
11018                 wrapXY = this.getXY();
11019             }
11020             var div = document.createElement("div");
11021             div.style.visibility = vis;
11022             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11023             wrap.setPositioning(pos);
11024             if(wrap.getStyle("position") == "static"){
11025                 wrap.position("relative");
11026             }
11027             this.clearPositioning('auto');
11028             wrap.clip();
11029             wrap.dom.appendChild(this.dom);
11030             if(wrapXY){
11031                 wrap.setXY(wrapXY);
11032             }
11033         }
11034         return wrap;
11035     },
11036
11037         /* @private */
11038     fxUnwrap : function(wrap, pos, o){
11039         this.clearPositioning();
11040         this.setPositioning(pos);
11041         if(!o.wrap){
11042             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11043             wrap.remove();
11044         }
11045     },
11046
11047         /* @private */
11048     getFxRestore : function(){
11049         var st = this.dom.style;
11050         return {pos: this.getPositioning(), width: st.width, height : st.height};
11051     },
11052
11053         /* @private */
11054     afterFx : function(o){
11055         if(o.afterStyle){
11056             this.applyStyles(o.afterStyle);
11057         }
11058         if(o.afterCls){
11059             this.addClass(o.afterCls);
11060         }
11061         if(o.remove === true){
11062             this.remove();
11063         }
11064         Roo.callback(o.callback, o.scope, [this]);
11065         if(!o.concurrent){
11066             this.fxQueue.shift();
11067             this.nextFx();
11068         }
11069     },
11070
11071         /* @private */
11072     getFxEl : function(){ // support for composite element fx
11073         return Roo.get(this.dom);
11074     },
11075
11076         /* @private */
11077     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11078         animType = animType || 'run';
11079         opt = opt || {};
11080         var anim = Roo.lib.Anim[animType](
11081             this.dom, args,
11082             (opt.duration || defaultDur) || .35,
11083             (opt.easing || defaultEase) || 'easeOut',
11084             function(){
11085                 Roo.callback(cb, this);
11086             },
11087             this
11088         );
11089         opt.anim = anim;
11090         return anim;
11091     }
11092 };
11093
11094 // backwords compat
11095 Roo.Fx.resize = Roo.Fx.scale;
11096
11097 //When included, Roo.Fx is automatically applied to Element so that all basic
11098 //effects are available directly via the Element API
11099 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11100  * Based on:
11101  * Ext JS Library 1.1.1
11102  * Copyright(c) 2006-2007, Ext JS, LLC.
11103  *
11104  * Originally Released Under LGPL - original licence link has changed is not relivant.
11105  *
11106  * Fork - LGPL
11107  * <script type="text/javascript">
11108  */
11109
11110
11111 /**
11112  * @class Roo.CompositeElement
11113  * Standard composite class. Creates a Roo.Element for every element in the collection.
11114  * <br><br>
11115  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11116  * actions will be performed on all the elements in this collection.</b>
11117  * <br><br>
11118  * All methods return <i>this</i> and can be chained.
11119  <pre><code>
11120  var els = Roo.select("#some-el div.some-class", true);
11121  // or select directly from an existing element
11122  var el = Roo.get('some-el');
11123  el.select('div.some-class', true);
11124
11125  els.setWidth(100); // all elements become 100 width
11126  els.hide(true); // all elements fade out and hide
11127  // or
11128  els.setWidth(100).hide(true);
11129  </code></pre>
11130  */
11131 Roo.CompositeElement = function(els){
11132     this.elements = [];
11133     this.addElements(els);
11134 };
11135 Roo.CompositeElement.prototype = {
11136     isComposite: true,
11137     addElements : function(els){
11138         if(!els) {
11139             return this;
11140         }
11141         if(typeof els == "string"){
11142             els = Roo.Element.selectorFunction(els);
11143         }
11144         var yels = this.elements;
11145         var index = yels.length-1;
11146         for(var i = 0, len = els.length; i < len; i++) {
11147                 yels[++index] = Roo.get(els[i]);
11148         }
11149         return this;
11150     },
11151
11152     /**
11153     * Clears this composite and adds the elements returned by the passed selector.
11154     * @param {String/Array} els A string CSS selector, an array of elements or an element
11155     * @return {CompositeElement} this
11156     */
11157     fill : function(els){
11158         this.elements = [];
11159         this.add(els);
11160         return this;
11161     },
11162
11163     /**
11164     * Filters this composite to only elements that match the passed selector.
11165     * @param {String} selector A string CSS selector
11166     * @param {Boolean} inverse return inverse filter (not matches)
11167     * @return {CompositeElement} this
11168     */
11169     filter : function(selector, inverse){
11170         var els = [];
11171         inverse = inverse || false;
11172         this.each(function(el){
11173             var match = inverse ? !el.is(selector) : el.is(selector);
11174             if(match){
11175                 els[els.length] = el.dom;
11176             }
11177         });
11178         this.fill(els);
11179         return this;
11180     },
11181
11182     invoke : function(fn, args){
11183         var els = this.elements;
11184         for(var i = 0, len = els.length; i < len; i++) {
11185                 Roo.Element.prototype[fn].apply(els[i], args);
11186         }
11187         return this;
11188     },
11189     /**
11190     * Adds elements to this composite.
11191     * @param {String/Array} els A string CSS selector, an array of elements or an element
11192     * @return {CompositeElement} this
11193     */
11194     add : function(els){
11195         if(typeof els == "string"){
11196             this.addElements(Roo.Element.selectorFunction(els));
11197         }else if(els.length !== undefined){
11198             this.addElements(els);
11199         }else{
11200             this.addElements([els]);
11201         }
11202         return this;
11203     },
11204     /**
11205     * Calls the passed function passing (el, this, index) for each element in this composite.
11206     * @param {Function} fn The function to call
11207     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11208     * @return {CompositeElement} this
11209     */
11210     each : function(fn, scope){
11211         var els = this.elements;
11212         for(var i = 0, len = els.length; i < len; i++){
11213             if(fn.call(scope || els[i], els[i], this, i) === false) {
11214                 break;
11215             }
11216         }
11217         return this;
11218     },
11219
11220     /**
11221      * Returns the Element object at the specified index
11222      * @param {Number} index
11223      * @return {Roo.Element}
11224      */
11225     item : function(index){
11226         return this.elements[index] || null;
11227     },
11228
11229     /**
11230      * Returns the first Element
11231      * @return {Roo.Element}
11232      */
11233     first : function(){
11234         return this.item(0);
11235     },
11236
11237     /**
11238      * Returns the last Element
11239      * @return {Roo.Element}
11240      */
11241     last : function(){
11242         return this.item(this.elements.length-1);
11243     },
11244
11245     /**
11246      * Returns the number of elements in this composite
11247      * @return Number
11248      */
11249     getCount : function(){
11250         return this.elements.length;
11251     },
11252
11253     /**
11254      * Returns true if this composite contains the passed element
11255      * @return Boolean
11256      */
11257     contains : function(el){
11258         return this.indexOf(el) !== -1;
11259     },
11260
11261     /**
11262      * Returns true if this composite contains the passed element
11263      * @return Boolean
11264      */
11265     indexOf : function(el){
11266         return this.elements.indexOf(Roo.get(el));
11267     },
11268
11269
11270     /**
11271     * Removes the specified element(s).
11272     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11273     * or an array of any of those.
11274     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11275     * @return {CompositeElement} this
11276     */
11277     removeElement : function(el, removeDom){
11278         if(el instanceof Array){
11279             for(var i = 0, len = el.length; i < len; i++){
11280                 this.removeElement(el[i]);
11281             }
11282             return this;
11283         }
11284         var index = typeof el == 'number' ? el : this.indexOf(el);
11285         if(index !== -1){
11286             if(removeDom){
11287                 var d = this.elements[index];
11288                 if(d.dom){
11289                     d.remove();
11290                 }else{
11291                     d.parentNode.removeChild(d);
11292                 }
11293             }
11294             this.elements.splice(index, 1);
11295         }
11296         return this;
11297     },
11298
11299     /**
11300     * Replaces the specified element with the passed element.
11301     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11302     * to replace.
11303     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11304     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11305     * @return {CompositeElement} this
11306     */
11307     replaceElement : function(el, replacement, domReplace){
11308         var index = typeof el == 'number' ? el : this.indexOf(el);
11309         if(index !== -1){
11310             if(domReplace){
11311                 this.elements[index].replaceWith(replacement);
11312             }else{
11313                 this.elements.splice(index, 1, Roo.get(replacement))
11314             }
11315         }
11316         return this;
11317     },
11318
11319     /**
11320      * Removes all elements.
11321      */
11322     clear : function(){
11323         this.elements = [];
11324     }
11325 };
11326 (function(){
11327     Roo.CompositeElement.createCall = function(proto, fnName){
11328         if(!proto[fnName]){
11329             proto[fnName] = function(){
11330                 return this.invoke(fnName, arguments);
11331             };
11332         }
11333     };
11334     for(var fnName in Roo.Element.prototype){
11335         if(typeof Roo.Element.prototype[fnName] == "function"){
11336             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11337         }
11338     };
11339 })();
11340 /*
11341  * Based on:
11342  * Ext JS Library 1.1.1
11343  * Copyright(c) 2006-2007, Ext JS, LLC.
11344  *
11345  * Originally Released Under LGPL - original licence link has changed is not relivant.
11346  *
11347  * Fork - LGPL
11348  * <script type="text/javascript">
11349  */
11350
11351 /**
11352  * @class Roo.CompositeElementLite
11353  * @extends Roo.CompositeElement
11354  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11355  <pre><code>
11356  var els = Roo.select("#some-el div.some-class");
11357  // or select directly from an existing element
11358  var el = Roo.get('some-el');
11359  el.select('div.some-class');
11360
11361  els.setWidth(100); // all elements become 100 width
11362  els.hide(true); // all elements fade out and hide
11363  // or
11364  els.setWidth(100).hide(true);
11365  </code></pre><br><br>
11366  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11367  * actions will be performed on all the elements in this collection.</b>
11368  */
11369 Roo.CompositeElementLite = function(els){
11370     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11371     this.el = new Roo.Element.Flyweight();
11372 };
11373 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11374     addElements : function(els){
11375         if(els){
11376             if(els instanceof Array){
11377                 this.elements = this.elements.concat(els);
11378             }else{
11379                 var yels = this.elements;
11380                 var index = yels.length-1;
11381                 for(var i = 0, len = els.length; i < len; i++) {
11382                     yels[++index] = els[i];
11383                 }
11384             }
11385         }
11386         return this;
11387     },
11388     invoke : function(fn, args){
11389         var els = this.elements;
11390         var el = this.el;
11391         for(var i = 0, len = els.length; i < len; i++) {
11392             el.dom = els[i];
11393                 Roo.Element.prototype[fn].apply(el, args);
11394         }
11395         return this;
11396     },
11397     /**
11398      * Returns a flyweight Element of the dom element object at the specified index
11399      * @param {Number} index
11400      * @return {Roo.Element}
11401      */
11402     item : function(index){
11403         if(!this.elements[index]){
11404             return null;
11405         }
11406         this.el.dom = this.elements[index];
11407         return this.el;
11408     },
11409
11410     // fixes scope with flyweight
11411     addListener : function(eventName, handler, scope, opt){
11412         var els = this.elements;
11413         for(var i = 0, len = els.length; i < len; i++) {
11414             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11415         }
11416         return this;
11417     },
11418
11419     /**
11420     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11421     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11422     * a reference to the dom node, use el.dom.</b>
11423     * @param {Function} fn The function to call
11424     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11425     * @return {CompositeElement} this
11426     */
11427     each : function(fn, scope){
11428         var els = this.elements;
11429         var el = this.el;
11430         for(var i = 0, len = els.length; i < len; i++){
11431             el.dom = els[i];
11432                 if(fn.call(scope || el, el, this, i) === false){
11433                 break;
11434             }
11435         }
11436         return this;
11437     },
11438
11439     indexOf : function(el){
11440         return this.elements.indexOf(Roo.getDom(el));
11441     },
11442
11443     replaceElement : function(el, replacement, domReplace){
11444         var index = typeof el == 'number' ? el : this.indexOf(el);
11445         if(index !== -1){
11446             replacement = Roo.getDom(replacement);
11447             if(domReplace){
11448                 var d = this.elements[index];
11449                 d.parentNode.insertBefore(replacement, d);
11450                 d.parentNode.removeChild(d);
11451             }
11452             this.elements.splice(index, 1, replacement);
11453         }
11454         return this;
11455     }
11456 });
11457 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11458
11459 /*
11460  * Based on:
11461  * Ext JS Library 1.1.1
11462  * Copyright(c) 2006-2007, Ext JS, LLC.
11463  *
11464  * Originally Released Under LGPL - original licence link has changed is not relivant.
11465  *
11466  * Fork - LGPL
11467  * <script type="text/javascript">
11468  */
11469
11470  
11471
11472 /**
11473  * @class Roo.data.Connection
11474  * @extends Roo.util.Observable
11475  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11476  * either to a configured URL, or to a URL specified at request time. 
11477  * 
11478  * Requests made by this class are asynchronous, and will return immediately. No data from
11479  * the server will be available to the statement immediately following the {@link #request} call.
11480  * To process returned data, use a callback in the request options object, or an event listener.
11481  * 
11482  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11483  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11484  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11485  * property and, if present, the IFRAME's XML document as the responseXML property.
11486  * 
11487  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11488  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11489  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11490  * standard DOM methods.
11491  * @constructor
11492  * @param {Object} config a configuration object.
11493  */
11494 Roo.data.Connection = function(config){
11495     Roo.apply(this, config);
11496     this.addEvents({
11497         /**
11498          * @event beforerequest
11499          * Fires before a network request is made to retrieve a data object.
11500          * @param {Connection} conn This Connection object.
11501          * @param {Object} options The options config object passed to the {@link #request} method.
11502          */
11503         "beforerequest" : true,
11504         /**
11505          * @event requestcomplete
11506          * Fires if the request was successfully completed.
11507          * @param {Connection} conn This Connection object.
11508          * @param {Object} response The XHR object containing the response data.
11509          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11510          * @param {Object} options The options config object passed to the {@link #request} method.
11511          */
11512         "requestcomplete" : true,
11513         /**
11514          * @event requestexception
11515          * Fires if an error HTTP status was returned from the server.
11516          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11517          * @param {Connection} conn This Connection object.
11518          * @param {Object} response The XHR object containing the response data.
11519          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11520          * @param {Object} options The options config object passed to the {@link #request} method.
11521          */
11522         "requestexception" : true
11523     });
11524     Roo.data.Connection.superclass.constructor.call(this);
11525 };
11526
11527 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11528     /**
11529      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11530      */
11531     /**
11532      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11533      * extra parameters to each request made by this object. (defaults to undefined)
11534      */
11535     /**
11536      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11537      *  to each request made by this object. (defaults to undefined)
11538      */
11539     /**
11540      * @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)
11541      */
11542     /**
11543      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11544      */
11545     timeout : 30000,
11546     /**
11547      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11548      * @type Boolean
11549      */
11550     autoAbort:false,
11551
11552     /**
11553      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11554      * @type Boolean
11555      */
11556     disableCaching: true,
11557
11558     /**
11559      * Sends an HTTP request to a remote server.
11560      * @param {Object} options An object which may contain the following properties:<ul>
11561      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11562      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11563      * request, a url encoded string or a function to call to get either.</li>
11564      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11565      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11566      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11567      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11568      * <li>options {Object} The parameter to the request call.</li>
11569      * <li>success {Boolean} True if the request succeeded.</li>
11570      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11571      * </ul></li>
11572      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11573      * The callback is passed the following parameters:<ul>
11574      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11575      * <li>options {Object} The parameter to the request call.</li>
11576      * </ul></li>
11577      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11578      * The callback is passed the following parameters:<ul>
11579      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11580      * <li>options {Object} The parameter to the request call.</li>
11581      * </ul></li>
11582      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11583      * for the callback function. Defaults to the browser window.</li>
11584      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11585      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11586      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11587      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11588      * params for the post data. Any params will be appended to the URL.</li>
11589      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11590      * </ul>
11591      * @return {Number} transactionId
11592      */
11593     request : function(o){
11594         if(this.fireEvent("beforerequest", this, o) !== false){
11595             var p = o.params;
11596
11597             if(typeof p == "function"){
11598                 p = p.call(o.scope||window, o);
11599             }
11600             if(typeof p == "object"){
11601                 p = Roo.urlEncode(o.params);
11602             }
11603             if(this.extraParams){
11604                 var extras = Roo.urlEncode(this.extraParams);
11605                 p = p ? (p + '&' + extras) : extras;
11606             }
11607
11608             var url = o.url || this.url;
11609             if(typeof url == 'function'){
11610                 url = url.call(o.scope||window, o);
11611             }
11612
11613             if(o.form){
11614                 var form = Roo.getDom(o.form);
11615                 url = url || form.action;
11616
11617                 var enctype = form.getAttribute("enctype");
11618                 
11619                 if (o.formData) {
11620                     return this.doFormDataUpload(o,p,url);
11621                 }
11622                 
11623                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11624                     return this.doFormUpload(o, p, url);
11625                 }
11626                 var f = Roo.lib.Ajax.serializeForm(form);
11627                 p = p ? (p + '&' + f) : f;
11628             }
11629
11630             var hs = o.headers;
11631             if(this.defaultHeaders){
11632                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11633                 if(!o.headers){
11634                     o.headers = hs;
11635                 }
11636             }
11637
11638             var cb = {
11639                 success: this.handleResponse,
11640                 failure: this.handleFailure,
11641                 scope: this,
11642                 argument: {options: o},
11643                 timeout : o.timeout || this.timeout
11644             };
11645
11646             var method = o.method||this.method||(p ? "POST" : "GET");
11647
11648             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11649                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11650             }
11651
11652             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11653                 if(o.autoAbort){
11654                     this.abort();
11655                 }
11656             }else if(this.autoAbort !== false){
11657                 this.abort();
11658             }
11659
11660             if((method == 'GET' && p) || o.xmlData){
11661                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11662                 p = '';
11663             }
11664             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11665             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11666             Roo.lib.Ajax.useDefaultHeader == true;
11667             return this.transId;
11668         }else{
11669             Roo.callback(o.callback, o.scope, [o, null, null]);
11670             return null;
11671         }
11672     },
11673
11674     /**
11675      * Determine whether this object has a request outstanding.
11676      * @param {Number} transactionId (Optional) defaults to the last transaction
11677      * @return {Boolean} True if there is an outstanding request.
11678      */
11679     isLoading : function(transId){
11680         if(transId){
11681             return Roo.lib.Ajax.isCallInProgress(transId);
11682         }else{
11683             return this.transId ? true : false;
11684         }
11685     },
11686
11687     /**
11688      * Aborts any outstanding request.
11689      * @param {Number} transactionId (Optional) defaults to the last transaction
11690      */
11691     abort : function(transId){
11692         if(transId || this.isLoading()){
11693             Roo.lib.Ajax.abort(transId || this.transId);
11694         }
11695     },
11696
11697     // private
11698     handleResponse : function(response){
11699         this.transId = false;
11700         var options = response.argument.options;
11701         response.argument = options ? options.argument : null;
11702         this.fireEvent("requestcomplete", this, response, options);
11703         Roo.callback(options.success, options.scope, [response, options]);
11704         Roo.callback(options.callback, options.scope, [options, true, response]);
11705     },
11706
11707     // private
11708     handleFailure : function(response, e){
11709         this.transId = false;
11710         var options = response.argument.options;
11711         response.argument = options ? options.argument : null;
11712         this.fireEvent("requestexception", this, response, options, e);
11713         Roo.callback(options.failure, options.scope, [response, options]);
11714         Roo.callback(options.callback, options.scope, [options, false, response]);
11715     },
11716
11717     // private
11718     doFormUpload : function(o, ps, url){
11719         var id = Roo.id();
11720         var frame = document.createElement('iframe');
11721         frame.id = id;
11722         frame.name = id;
11723         frame.className = 'x-hidden';
11724         if(Roo.isIE){
11725             frame.src = Roo.SSL_SECURE_URL;
11726         }
11727         document.body.appendChild(frame);
11728
11729         if(Roo.isIE){
11730            document.frames[id].name = id;
11731         }
11732
11733         var form = Roo.getDom(o.form);
11734         form.target = id;
11735         form.method = 'POST';
11736         form.enctype = form.encoding = 'multipart/form-data';
11737         if(url){
11738             form.action = url;
11739         }
11740
11741         var hiddens, hd;
11742         if(ps){ // add dynamic params
11743             hiddens = [];
11744             ps = Roo.urlDecode(ps, false);
11745             for(var k in ps){
11746                 if(ps.hasOwnProperty(k)){
11747                     hd = document.createElement('input');
11748                     hd.type = 'hidden';
11749                     hd.name = k;
11750                     hd.value = ps[k];
11751                     form.appendChild(hd);
11752                     hiddens.push(hd);
11753                 }
11754             }
11755         }
11756
11757         function cb(){
11758             var r = {  // bogus response object
11759                 responseText : '',
11760                 responseXML : null
11761             };
11762
11763             r.argument = o ? o.argument : null;
11764
11765             try { //
11766                 var doc;
11767                 if(Roo.isIE){
11768                     doc = frame.contentWindow.document;
11769                 }else {
11770                     doc = (frame.contentDocument || window.frames[id].document);
11771                 }
11772                 if(doc && doc.body){
11773                     r.responseText = doc.body.innerHTML;
11774                 }
11775                 if(doc && doc.XMLDocument){
11776                     r.responseXML = doc.XMLDocument;
11777                 }else {
11778                     r.responseXML = doc;
11779                 }
11780             }
11781             catch(e) {
11782                 // ignore
11783             }
11784
11785             Roo.EventManager.removeListener(frame, 'load', cb, this);
11786
11787             this.fireEvent("requestcomplete", this, r, o);
11788             Roo.callback(o.success, o.scope, [r, o]);
11789             Roo.callback(o.callback, o.scope, [o, true, r]);
11790
11791             setTimeout(function(){document.body.removeChild(frame);}, 100);
11792         }
11793
11794         Roo.EventManager.on(frame, 'load', cb, this);
11795         form.submit();
11796
11797         if(hiddens){ // remove dynamic params
11798             for(var i = 0, len = hiddens.length; i < len; i++){
11799                 form.removeChild(hiddens[i]);
11800             }
11801         }
11802     },
11803     // this is a 'formdata version???'
11804     
11805     
11806     doFormDataUpload : function(o, ps, url)
11807     {
11808         var form = Roo.getDom(o.form);
11809         form.enctype = form.encoding = 'multipart/form-data';
11810         var formData = o.formData === true ? new FormData(form) : o.formData;
11811       
11812         var cb = {
11813             success: this.handleResponse,
11814             failure: this.handleFailure,
11815             scope: this,
11816             argument: {options: o},
11817             timeout : o.timeout || this.timeout
11818         };
11819  
11820         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11821             if(o.autoAbort){
11822                 this.abort();
11823             }
11824         }else if(this.autoAbort !== false){
11825             this.abort();
11826         }
11827
11828         //Roo.lib.Ajax.defaultPostHeader = null;
11829         Roo.lib.Ajax.useDefaultHeader = false;
11830         this.transId = Roo.lib.Ajax.request( "POST", url, cb, o.formData, o);
11831         Roo.lib.Ajax.useDefaultHeader = true;
11832  
11833          
11834     }
11835     
11836 });
11837 /*
11838  * Based on:
11839  * Ext JS Library 1.1.1
11840  * Copyright(c) 2006-2007, Ext JS, LLC.
11841  *
11842  * Originally Released Under LGPL - original licence link has changed is not relivant.
11843  *
11844  * Fork - LGPL
11845  * <script type="text/javascript">
11846  */
11847  
11848 /**
11849  * Global Ajax request class.
11850  * 
11851  * @class Roo.Ajax
11852  * @extends Roo.data.Connection
11853  * @static
11854  * 
11855  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11856  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11857  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11858  * @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)
11859  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11860  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11861  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11862  */
11863 Roo.Ajax = new Roo.data.Connection({
11864     // fix up the docs
11865     /**
11866      * @scope Roo.Ajax
11867      * @type {Boolear} 
11868      */
11869     autoAbort : false,
11870
11871     /**
11872      * Serialize the passed form into a url encoded string
11873      * @scope Roo.Ajax
11874      * @param {String/HTMLElement} form
11875      * @return {String}
11876      */
11877     serializeForm : function(form){
11878         return Roo.lib.Ajax.serializeForm(form);
11879     }
11880 });/*
11881  * Based on:
11882  * Ext JS Library 1.1.1
11883  * Copyright(c) 2006-2007, Ext JS, LLC.
11884  *
11885  * Originally Released Under LGPL - original licence link has changed is not relivant.
11886  *
11887  * Fork - LGPL
11888  * <script type="text/javascript">
11889  */
11890
11891  
11892 /**
11893  * @class Roo.UpdateManager
11894  * @extends Roo.util.Observable
11895  * Provides AJAX-style update for Element object.<br><br>
11896  * Usage:<br>
11897  * <pre><code>
11898  * // Get it from a Roo.Element object
11899  * var el = Roo.get("foo");
11900  * var mgr = el.getUpdateManager();
11901  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11902  * ...
11903  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11904  * <br>
11905  * // or directly (returns the same UpdateManager instance)
11906  * var mgr = new Roo.UpdateManager("myElementId");
11907  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11908  * mgr.on("update", myFcnNeedsToKnow);
11909  * <br>
11910    // short handed call directly from the element object
11911    Roo.get("foo").load({
11912         url: "bar.php",
11913         scripts:true,
11914         params: "for=bar",
11915         text: "Loading Foo..."
11916    });
11917  * </code></pre>
11918  * @constructor
11919  * Create new UpdateManager directly.
11920  * @param {String/HTMLElement/Roo.Element} el The element to update
11921  * @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).
11922  */
11923 Roo.UpdateManager = function(el, forceNew){
11924     el = Roo.get(el);
11925     if(!forceNew && el.updateManager){
11926         return el.updateManager;
11927     }
11928     /**
11929      * The Element object
11930      * @type Roo.Element
11931      */
11932     this.el = el;
11933     /**
11934      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11935      * @type String
11936      */
11937     this.defaultUrl = null;
11938
11939     this.addEvents({
11940         /**
11941          * @event beforeupdate
11942          * Fired before an update is made, return false from your handler and the update is cancelled.
11943          * @param {Roo.Element} el
11944          * @param {String/Object/Function} url
11945          * @param {String/Object} params
11946          */
11947         "beforeupdate": true,
11948         /**
11949          * @event update
11950          * Fired after successful update is made.
11951          * @param {Roo.Element} el
11952          * @param {Object} oResponseObject The response Object
11953          */
11954         "update": true,
11955         /**
11956          * @event failure
11957          * Fired on update failure.
11958          * @param {Roo.Element} el
11959          * @param {Object} oResponseObject The response Object
11960          */
11961         "failure": true
11962     });
11963     var d = Roo.UpdateManager.defaults;
11964     /**
11965      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
11966      * @type String
11967      */
11968     this.sslBlankUrl = d.sslBlankUrl;
11969     /**
11970      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
11971      * @type Boolean
11972      */
11973     this.disableCaching = d.disableCaching;
11974     /**
11975      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
11976      * @type String
11977      */
11978     this.indicatorText = d.indicatorText;
11979     /**
11980      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
11981      * @type String
11982      */
11983     this.showLoadIndicator = d.showLoadIndicator;
11984     /**
11985      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
11986      * @type Number
11987      */
11988     this.timeout = d.timeout;
11989
11990     /**
11991      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
11992      * @type Boolean
11993      */
11994     this.loadScripts = d.loadScripts;
11995
11996     /**
11997      * Transaction object of current executing transaction
11998      */
11999     this.transaction = null;
12000
12001     /**
12002      * @private
12003      */
12004     this.autoRefreshProcId = null;
12005     /**
12006      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12007      * @type Function
12008      */
12009     this.refreshDelegate = this.refresh.createDelegate(this);
12010     /**
12011      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12012      * @type Function
12013      */
12014     this.updateDelegate = this.update.createDelegate(this);
12015     /**
12016      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12017      * @type Function
12018      */
12019     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12020     /**
12021      * @private
12022      */
12023     this.successDelegate = this.processSuccess.createDelegate(this);
12024     /**
12025      * @private
12026      */
12027     this.failureDelegate = this.processFailure.createDelegate(this);
12028
12029     if(!this.renderer){
12030      /**
12031       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12032       */
12033     this.renderer = new Roo.UpdateManager.BasicRenderer();
12034     }
12035     
12036     Roo.UpdateManager.superclass.constructor.call(this);
12037 };
12038
12039 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12040     /**
12041      * Get the Element this UpdateManager is bound to
12042      * @return {Roo.Element} The element
12043      */
12044     getEl : function(){
12045         return this.el;
12046     },
12047     /**
12048      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12049      * @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:
12050 <pre><code>
12051 um.update({<br/>
12052     url: "your-url.php",<br/>
12053     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12054     callback: yourFunction,<br/>
12055     scope: yourObject, //(optional scope)  <br/>
12056     discardUrl: false, <br/>
12057     nocache: false,<br/>
12058     text: "Loading...",<br/>
12059     timeout: 30,<br/>
12060     scripts: false<br/>
12061 });
12062 </code></pre>
12063      * The only required property is url. The optional properties nocache, text and scripts
12064      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12065      * @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}
12066      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12067      * @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.
12068      */
12069     update : function(url, params, callback, discardUrl){
12070         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12071             var method = this.method,
12072                 cfg;
12073             if(typeof url == "object"){ // must be config object
12074                 cfg = url;
12075                 url = cfg.url;
12076                 params = params || cfg.params;
12077                 callback = callback || cfg.callback;
12078                 discardUrl = discardUrl || cfg.discardUrl;
12079                 if(callback && cfg.scope){
12080                     callback = callback.createDelegate(cfg.scope);
12081                 }
12082                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12083                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12084                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12085                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12086                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12087             }
12088             this.showLoading();
12089             if(!discardUrl){
12090                 this.defaultUrl = url;
12091             }
12092             if(typeof url == "function"){
12093                 url = url.call(this);
12094             }
12095
12096             method = method || (params ? "POST" : "GET");
12097             if(method == "GET"){
12098                 url = this.prepareUrl(url);
12099             }
12100
12101             var o = Roo.apply(cfg ||{}, {
12102                 url : url,
12103                 params: params,
12104                 success: this.successDelegate,
12105                 failure: this.failureDelegate,
12106                 callback: undefined,
12107                 timeout: (this.timeout*1000),
12108                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12109             });
12110             Roo.log("updated manager called with timeout of " + o.timeout);
12111             this.transaction = Roo.Ajax.request(o);
12112         }
12113     },
12114
12115     /**
12116      * 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.
12117      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12118      * @param {String/HTMLElement} form The form Id or form element
12119      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12120      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12121      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12122      */
12123     formUpdate : function(form, url, reset, callback){
12124         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12125             if(typeof url == "function"){
12126                 url = url.call(this);
12127             }
12128             form = Roo.getDom(form);
12129             this.transaction = Roo.Ajax.request({
12130                 form: form,
12131                 url:url,
12132                 success: this.successDelegate,
12133                 failure: this.failureDelegate,
12134                 timeout: (this.timeout*1000),
12135                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12136             });
12137             this.showLoading.defer(1, this);
12138         }
12139     },
12140
12141     /**
12142      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12143      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12144      */
12145     refresh : function(callback){
12146         if(this.defaultUrl == null){
12147             return;
12148         }
12149         this.update(this.defaultUrl, null, callback, true);
12150     },
12151
12152     /**
12153      * Set this element to auto refresh.
12154      * @param {Number} interval How often to update (in seconds).
12155      * @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)
12156      * @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}
12157      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12158      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12159      */
12160     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12161         if(refreshNow){
12162             this.update(url || this.defaultUrl, params, callback, true);
12163         }
12164         if(this.autoRefreshProcId){
12165             clearInterval(this.autoRefreshProcId);
12166         }
12167         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12168     },
12169
12170     /**
12171      * Stop auto refresh on this element.
12172      */
12173      stopAutoRefresh : function(){
12174         if(this.autoRefreshProcId){
12175             clearInterval(this.autoRefreshProcId);
12176             delete this.autoRefreshProcId;
12177         }
12178     },
12179
12180     isAutoRefreshing : function(){
12181        return this.autoRefreshProcId ? true : false;
12182     },
12183     /**
12184      * Called to update the element to "Loading" state. Override to perform custom action.
12185      */
12186     showLoading : function(){
12187         if(this.showLoadIndicator){
12188             this.el.update(this.indicatorText);
12189         }
12190     },
12191
12192     /**
12193      * Adds unique parameter to query string if disableCaching = true
12194      * @private
12195      */
12196     prepareUrl : function(url){
12197         if(this.disableCaching){
12198             var append = "_dc=" + (new Date().getTime());
12199             if(url.indexOf("?") !== -1){
12200                 url += "&" + append;
12201             }else{
12202                 url += "?" + append;
12203             }
12204         }
12205         return url;
12206     },
12207
12208     /**
12209      * @private
12210      */
12211     processSuccess : function(response){
12212         this.transaction = null;
12213         if(response.argument.form && response.argument.reset){
12214             try{ // put in try/catch since some older FF releases had problems with this
12215                 response.argument.form.reset();
12216             }catch(e){}
12217         }
12218         if(this.loadScripts){
12219             this.renderer.render(this.el, response, this,
12220                 this.updateComplete.createDelegate(this, [response]));
12221         }else{
12222             this.renderer.render(this.el, response, this);
12223             this.updateComplete(response);
12224         }
12225     },
12226
12227     updateComplete : function(response){
12228         this.fireEvent("update", this.el, response);
12229         if(typeof response.argument.callback == "function"){
12230             response.argument.callback(this.el, true, response);
12231         }
12232     },
12233
12234     /**
12235      * @private
12236      */
12237     processFailure : function(response){
12238         this.transaction = null;
12239         this.fireEvent("failure", this.el, response);
12240         if(typeof response.argument.callback == "function"){
12241             response.argument.callback(this.el, false, response);
12242         }
12243     },
12244
12245     /**
12246      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12247      * @param {Object} renderer The object implementing the render() method
12248      */
12249     setRenderer : function(renderer){
12250         this.renderer = renderer;
12251     },
12252
12253     getRenderer : function(){
12254        return this.renderer;
12255     },
12256
12257     /**
12258      * Set the defaultUrl used for updates
12259      * @param {String/Function} defaultUrl The url or a function to call to get the url
12260      */
12261     setDefaultUrl : function(defaultUrl){
12262         this.defaultUrl = defaultUrl;
12263     },
12264
12265     /**
12266      * Aborts the executing transaction
12267      */
12268     abort : function(){
12269         if(this.transaction){
12270             Roo.Ajax.abort(this.transaction);
12271         }
12272     },
12273
12274     /**
12275      * Returns true if an update is in progress
12276      * @return {Boolean}
12277      */
12278     isUpdating : function(){
12279         if(this.transaction){
12280             return Roo.Ajax.isLoading(this.transaction);
12281         }
12282         return false;
12283     }
12284 });
12285
12286 /**
12287  * @class Roo.UpdateManager.defaults
12288  * @static (not really - but it helps the doc tool)
12289  * The defaults collection enables customizing the default properties of UpdateManager
12290  */
12291    Roo.UpdateManager.defaults = {
12292        /**
12293          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12294          * @type Number
12295          */
12296          timeout : 30,
12297
12298          /**
12299          * True to process scripts by default (Defaults to false).
12300          * @type Boolean
12301          */
12302         loadScripts : false,
12303
12304         /**
12305         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12306         * @type String
12307         */
12308         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12309         /**
12310          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12311          * @type Boolean
12312          */
12313         disableCaching : false,
12314         /**
12315          * Whether to show indicatorText when loading (Defaults to true).
12316          * @type Boolean
12317          */
12318         showLoadIndicator : true,
12319         /**
12320          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12321          * @type String
12322          */
12323         indicatorText : '<div class="loading-indicator">Loading...</div>'
12324    };
12325
12326 /**
12327  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12328  *Usage:
12329  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12330  * @param {String/HTMLElement/Roo.Element} el The element to update
12331  * @param {String} url The url
12332  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12333  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12334  * @static
12335  * @deprecated
12336  * @member Roo.UpdateManager
12337  */
12338 Roo.UpdateManager.updateElement = function(el, url, params, options){
12339     var um = Roo.get(el, true).getUpdateManager();
12340     Roo.apply(um, options);
12341     um.update(url, params, options ? options.callback : null);
12342 };
12343 // alias for backwards compat
12344 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12345 /**
12346  * @class Roo.UpdateManager.BasicRenderer
12347  * Default Content renderer. Updates the elements innerHTML with the responseText.
12348  */
12349 Roo.UpdateManager.BasicRenderer = function(){};
12350
12351 Roo.UpdateManager.BasicRenderer.prototype = {
12352     /**
12353      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12354      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12355      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12356      * @param {Roo.Element} el The element being rendered
12357      * @param {Object} response The YUI Connect response object
12358      * @param {UpdateManager} updateManager The calling update manager
12359      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12360      */
12361      render : function(el, response, updateManager, callback){
12362         el.update(response.responseText, updateManager.loadScripts, callback);
12363     }
12364 };
12365 /*
12366  * Based on:
12367  * Roo JS
12368  * (c)) Alan Knowles
12369  * Licence : LGPL
12370  */
12371
12372
12373 /**
12374  * @class Roo.DomTemplate
12375  * @extends Roo.Template
12376  * An effort at a dom based template engine..
12377  *
12378  * Similar to XTemplate, except it uses dom parsing to create the template..
12379  *
12380  * Supported features:
12381  *
12382  *  Tags:
12383
12384 <pre><code>
12385       {a_variable} - output encoded.
12386       {a_variable.format:("Y-m-d")} - call a method on the variable
12387       {a_variable:raw} - unencoded output
12388       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12389       {a_variable:this.method_on_template(...)} - call a method on the template object.
12390  
12391 </code></pre>
12392  *  The tpl tag:
12393 <pre><code>
12394         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12395         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12396         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12397         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12398   
12399 </code></pre>
12400  *      
12401  */
12402 Roo.DomTemplate = function()
12403 {
12404      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12405      if (this.html) {
12406         this.compile();
12407      }
12408 };
12409
12410
12411 Roo.extend(Roo.DomTemplate, Roo.Template, {
12412     /**
12413      * id counter for sub templates.
12414      */
12415     id : 0,
12416     /**
12417      * flag to indicate if dom parser is inside a pre,
12418      * it will strip whitespace if not.
12419      */
12420     inPre : false,
12421     
12422     /**
12423      * The various sub templates
12424      */
12425     tpls : false,
12426     
12427     
12428     
12429     /**
12430      *
12431      * basic tag replacing syntax
12432      * WORD:WORD()
12433      *
12434      * // you can fake an object call by doing this
12435      *  x.t:(test,tesT) 
12436      * 
12437      */
12438     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12439     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12440     
12441     iterChild : function (node, method) {
12442         
12443         var oldPre = this.inPre;
12444         if (node.tagName == 'PRE') {
12445             this.inPre = true;
12446         }
12447         for( var i = 0; i < node.childNodes.length; i++) {
12448             method.call(this, node.childNodes[i]);
12449         }
12450         this.inPre = oldPre;
12451     },
12452     
12453     
12454     
12455     /**
12456      * compile the template
12457      *
12458      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12459      *
12460      */
12461     compile: function()
12462     {
12463         var s = this.html;
12464         
12465         // covert the html into DOM...
12466         var doc = false;
12467         var div =false;
12468         try {
12469             doc = document.implementation.createHTMLDocument("");
12470             doc.documentElement.innerHTML =   this.html  ;
12471             div = doc.documentElement;
12472         } catch (e) {
12473             // old IE... - nasty -- it causes all sorts of issues.. with
12474             // images getting pulled from server..
12475             div = document.createElement('div');
12476             div.innerHTML = this.html;
12477         }
12478         //doc.documentElement.innerHTML = htmlBody
12479          
12480         
12481         
12482         this.tpls = [];
12483         var _t = this;
12484         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12485         
12486         var tpls = this.tpls;
12487         
12488         // create a top level template from the snippet..
12489         
12490         //Roo.log(div.innerHTML);
12491         
12492         var tpl = {
12493             uid : 'master',
12494             id : this.id++,
12495             attr : false,
12496             value : false,
12497             body : div.innerHTML,
12498             
12499             forCall : false,
12500             execCall : false,
12501             dom : div,
12502             isTop : true
12503             
12504         };
12505         tpls.unshift(tpl);
12506         
12507         
12508         // compile them...
12509         this.tpls = [];
12510         Roo.each(tpls, function(tp){
12511             this.compileTpl(tp);
12512             this.tpls[tp.id] = tp;
12513         }, this);
12514         
12515         this.master = tpls[0];
12516         return this;
12517         
12518         
12519     },
12520     
12521     compileNode : function(node, istop) {
12522         // test for
12523         //Roo.log(node);
12524         
12525         
12526         // skip anything not a tag..
12527         if (node.nodeType != 1) {
12528             if (node.nodeType == 3 && !this.inPre) {
12529                 // reduce white space..
12530                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12531                 
12532             }
12533             return;
12534         }
12535         
12536         var tpl = {
12537             uid : false,
12538             id : false,
12539             attr : false,
12540             value : false,
12541             body : '',
12542             
12543             forCall : false,
12544             execCall : false,
12545             dom : false,
12546             isTop : istop
12547             
12548             
12549         };
12550         
12551         
12552         switch(true) {
12553             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12554             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12555             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12556             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12557             // no default..
12558         }
12559         
12560         
12561         if (!tpl.attr) {
12562             // just itterate children..
12563             this.iterChild(node,this.compileNode);
12564             return;
12565         }
12566         tpl.uid = this.id++;
12567         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12568         node.removeAttribute('roo-'+ tpl.attr);
12569         if (tpl.attr != 'name') {
12570             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12571             node.parentNode.replaceChild(placeholder,  node);
12572         } else {
12573             
12574             var placeholder =  document.createElement('span');
12575             placeholder.className = 'roo-tpl-' + tpl.value;
12576             node.parentNode.replaceChild(placeholder,  node);
12577         }
12578         
12579         // parent now sees '{domtplXXXX}
12580         this.iterChild(node,this.compileNode);
12581         
12582         // we should now have node body...
12583         var div = document.createElement('div');
12584         div.appendChild(node);
12585         tpl.dom = node;
12586         // this has the unfortunate side effect of converting tagged attributes
12587         // eg. href="{...}" into %7C...%7D
12588         // this has been fixed by searching for those combo's although it's a bit hacky..
12589         
12590         
12591         tpl.body = div.innerHTML;
12592         
12593         
12594          
12595         tpl.id = tpl.uid;
12596         switch(tpl.attr) {
12597             case 'for' :
12598                 switch (tpl.value) {
12599                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12600                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12601                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12602                 }
12603                 break;
12604             
12605             case 'exec':
12606                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12607                 break;
12608             
12609             case 'if':     
12610                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12611                 break;
12612             
12613             case 'name':
12614                 tpl.id  = tpl.value; // replace non characters???
12615                 break;
12616             
12617         }
12618         
12619         
12620         this.tpls.push(tpl);
12621         
12622         
12623         
12624     },
12625     
12626     
12627     
12628     
12629     /**
12630      * Compile a segment of the template into a 'sub-template'
12631      *
12632      * 
12633      * 
12634      *
12635      */
12636     compileTpl : function(tpl)
12637     {
12638         var fm = Roo.util.Format;
12639         var useF = this.disableFormats !== true;
12640         
12641         var sep = Roo.isGecko ? "+\n" : ",\n";
12642         
12643         var undef = function(str) {
12644             Roo.debug && Roo.log("Property not found :"  + str);
12645             return '';
12646         };
12647           
12648         //Roo.log(tpl.body);
12649         
12650         
12651         
12652         var fn = function(m, lbrace, name, format, args)
12653         {
12654             //Roo.log("ARGS");
12655             //Roo.log(arguments);
12656             args = args ? args.replace(/\\'/g,"'") : args;
12657             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12658             if (typeof(format) == 'undefined') {
12659                 format =  'htmlEncode'; 
12660             }
12661             if (format == 'raw' ) {
12662                 format = false;
12663             }
12664             
12665             if(name.substr(0, 6) == 'domtpl'){
12666                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12667             }
12668             
12669             // build an array of options to determine if value is undefined..
12670             
12671             // basically get 'xxxx.yyyy' then do
12672             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12673             //    (function () { Roo.log("Property not found"); return ''; })() :
12674             //    ......
12675             
12676             var udef_ar = [];
12677             var lookfor = '';
12678             Roo.each(name.split('.'), function(st) {
12679                 lookfor += (lookfor.length ? '.': '') + st;
12680                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12681             });
12682             
12683             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12684             
12685             
12686             if(format && useF){
12687                 
12688                 args = args ? ',' + args : "";
12689                  
12690                 if(format.substr(0, 5) != "this."){
12691                     format = "fm." + format + '(';
12692                 }else{
12693                     format = 'this.call("'+ format.substr(5) + '", ';
12694                     args = ", values";
12695                 }
12696                 
12697                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12698             }
12699              
12700             if (args && args.length) {
12701                 // called with xxyx.yuu:(test,test)
12702                 // change to ()
12703                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12704             }
12705             // raw.. - :raw modifier..
12706             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12707             
12708         };
12709         var body;
12710         // branched to use + in gecko and [].join() in others
12711         if(Roo.isGecko){
12712             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12713                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12714                     "';};};";
12715         }else{
12716             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12717             body.push(tpl.body.replace(/(\r\n|\n)/g,
12718                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12719             body.push("'].join('');};};");
12720             body = body.join('');
12721         }
12722         
12723         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12724        
12725         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12726         eval(body);
12727         
12728         return this;
12729     },
12730      
12731     /**
12732      * same as applyTemplate, except it's done to one of the subTemplates
12733      * when using named templates, you can do:
12734      *
12735      * var str = pl.applySubTemplate('your-name', values);
12736      *
12737      * 
12738      * @param {Number} id of the template
12739      * @param {Object} values to apply to template
12740      * @param {Object} parent (normaly the instance of this object)
12741      */
12742     applySubTemplate : function(id, values, parent)
12743     {
12744         
12745         
12746         var t = this.tpls[id];
12747         
12748         
12749         try { 
12750             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12751                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12752                 return '';
12753             }
12754         } catch(e) {
12755             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12756             Roo.log(values);
12757           
12758             return '';
12759         }
12760         try { 
12761             
12762             if(t.execCall && t.execCall.call(this, values, parent)){
12763                 return '';
12764             }
12765         } catch(e) {
12766             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12767             Roo.log(values);
12768             return '';
12769         }
12770         
12771         try {
12772             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12773             parent = t.target ? values : parent;
12774             if(t.forCall && vs instanceof Array){
12775                 var buf = [];
12776                 for(var i = 0, len = vs.length; i < len; i++){
12777                     try {
12778                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12779                     } catch (e) {
12780                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12781                         Roo.log(e.body);
12782                         //Roo.log(t.compiled);
12783                         Roo.log(vs[i]);
12784                     }   
12785                 }
12786                 return buf.join('');
12787             }
12788         } catch (e) {
12789             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12790             Roo.log(values);
12791             return '';
12792         }
12793         try {
12794             return t.compiled.call(this, vs, parent);
12795         } catch (e) {
12796             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12797             Roo.log(e.body);
12798             //Roo.log(t.compiled);
12799             Roo.log(values);
12800             return '';
12801         }
12802     },
12803
12804    
12805
12806     applyTemplate : function(values){
12807         return this.master.compiled.call(this, values, {});
12808         //var s = this.subs;
12809     },
12810
12811     apply : function(){
12812         return this.applyTemplate.apply(this, arguments);
12813     }
12814
12815  });
12816
12817 Roo.DomTemplate.from = function(el){
12818     el = Roo.getDom(el);
12819     return new Roo.Domtemplate(el.value || el.innerHTML);
12820 };/*
12821  * Based on:
12822  * Ext JS Library 1.1.1
12823  * Copyright(c) 2006-2007, Ext JS, LLC.
12824  *
12825  * Originally Released Under LGPL - original licence link has changed is not relivant.
12826  *
12827  * Fork - LGPL
12828  * <script type="text/javascript">
12829  */
12830
12831 /**
12832  * @class Roo.util.DelayedTask
12833  * Provides a convenient method of performing setTimeout where a new
12834  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12835  * You can use this class to buffer
12836  * the keypress events for a certain number of milliseconds, and perform only if they stop
12837  * for that amount of time.
12838  * @constructor The parameters to this constructor serve as defaults and are not required.
12839  * @param {Function} fn (optional) The default function to timeout
12840  * @param {Object} scope (optional) The default scope of that timeout
12841  * @param {Array} args (optional) The default Array of arguments
12842  */
12843 Roo.util.DelayedTask = function(fn, scope, args){
12844     var id = null, d, t;
12845
12846     var call = function(){
12847         var now = new Date().getTime();
12848         if(now - t >= d){
12849             clearInterval(id);
12850             id = null;
12851             fn.apply(scope, args || []);
12852         }
12853     };
12854     /**
12855      * Cancels any pending timeout and queues a new one
12856      * @param {Number} delay The milliseconds to delay
12857      * @param {Function} newFn (optional) Overrides function passed to constructor
12858      * @param {Object} newScope (optional) Overrides scope passed to constructor
12859      * @param {Array} newArgs (optional) Overrides args passed to constructor
12860      */
12861     this.delay = function(delay, newFn, newScope, newArgs){
12862         if(id && delay != d){
12863             this.cancel();
12864         }
12865         d = delay;
12866         t = new Date().getTime();
12867         fn = newFn || fn;
12868         scope = newScope || scope;
12869         args = newArgs || args;
12870         if(!id){
12871             id = setInterval(call, d);
12872         }
12873     };
12874
12875     /**
12876      * Cancel the last queued timeout
12877      */
12878     this.cancel = function(){
12879         if(id){
12880             clearInterval(id);
12881             id = null;
12882         }
12883     };
12884 };/*
12885  * Based on:
12886  * Ext JS Library 1.1.1
12887  * Copyright(c) 2006-2007, Ext JS, LLC.
12888  *
12889  * Originally Released Under LGPL - original licence link has changed is not relivant.
12890  *
12891  * Fork - LGPL
12892  * <script type="text/javascript">
12893  */
12894  
12895  
12896 Roo.util.TaskRunner = function(interval){
12897     interval = interval || 10;
12898     var tasks = [], removeQueue = [];
12899     var id = 0;
12900     var running = false;
12901
12902     var stopThread = function(){
12903         running = false;
12904         clearInterval(id);
12905         id = 0;
12906     };
12907
12908     var startThread = function(){
12909         if(!running){
12910             running = true;
12911             id = setInterval(runTasks, interval);
12912         }
12913     };
12914
12915     var removeTask = function(task){
12916         removeQueue.push(task);
12917         if(task.onStop){
12918             task.onStop();
12919         }
12920     };
12921
12922     var runTasks = function(){
12923         if(removeQueue.length > 0){
12924             for(var i = 0, len = removeQueue.length; i < len; i++){
12925                 tasks.remove(removeQueue[i]);
12926             }
12927             removeQueue = [];
12928             if(tasks.length < 1){
12929                 stopThread();
12930                 return;
12931             }
12932         }
12933         var now = new Date().getTime();
12934         for(var i = 0, len = tasks.length; i < len; ++i){
12935             var t = tasks[i];
12936             var itime = now - t.taskRunTime;
12937             if(t.interval <= itime){
12938                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
12939                 t.taskRunTime = now;
12940                 if(rt === false || t.taskRunCount === t.repeat){
12941                     removeTask(t);
12942                     return;
12943                 }
12944             }
12945             if(t.duration && t.duration <= (now - t.taskStartTime)){
12946                 removeTask(t);
12947             }
12948         }
12949     };
12950
12951     /**
12952      * Queues a new task.
12953      * @param {Object} task
12954      */
12955     this.start = function(task){
12956         tasks.push(task);
12957         task.taskStartTime = new Date().getTime();
12958         task.taskRunTime = 0;
12959         task.taskRunCount = 0;
12960         startThread();
12961         return task;
12962     };
12963
12964     this.stop = function(task){
12965         removeTask(task);
12966         return task;
12967     };
12968
12969     this.stopAll = function(){
12970         stopThread();
12971         for(var i = 0, len = tasks.length; i < len; i++){
12972             if(tasks[i].onStop){
12973                 tasks[i].onStop();
12974             }
12975         }
12976         tasks = [];
12977         removeQueue = [];
12978     };
12979 };
12980
12981 Roo.TaskMgr = new Roo.util.TaskRunner();/*
12982  * Based on:
12983  * Ext JS Library 1.1.1
12984  * Copyright(c) 2006-2007, Ext JS, LLC.
12985  *
12986  * Originally Released Under LGPL - original licence link has changed is not relivant.
12987  *
12988  * Fork - LGPL
12989  * <script type="text/javascript">
12990  */
12991
12992  
12993 /**
12994  * @class Roo.util.MixedCollection
12995  * @extends Roo.util.Observable
12996  * A Collection class that maintains both numeric indexes and keys and exposes events.
12997  * @constructor
12998  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
12999  * collection (defaults to false)
13000  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13001  * and return the key value for that item.  This is used when available to look up the key on items that
13002  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13003  * equivalent to providing an implementation for the {@link #getKey} method.
13004  */
13005 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13006     this.items = [];
13007     this.map = {};
13008     this.keys = [];
13009     this.length = 0;
13010     this.addEvents({
13011         /**
13012          * @event clear
13013          * Fires when the collection is cleared.
13014          */
13015         "clear" : true,
13016         /**
13017          * @event add
13018          * Fires when an item is added to the collection.
13019          * @param {Number} index The index at which the item was added.
13020          * @param {Object} o The item added.
13021          * @param {String} key The key associated with the added item.
13022          */
13023         "add" : true,
13024         /**
13025          * @event replace
13026          * Fires when an item is replaced in the collection.
13027          * @param {String} key he key associated with the new added.
13028          * @param {Object} old The item being replaced.
13029          * @param {Object} new The new item.
13030          */
13031         "replace" : true,
13032         /**
13033          * @event remove
13034          * Fires when an item is removed from the collection.
13035          * @param {Object} o The item being removed.
13036          * @param {String} key (optional) The key associated with the removed item.
13037          */
13038         "remove" : true,
13039         "sort" : true
13040     });
13041     this.allowFunctions = allowFunctions === true;
13042     if(keyFn){
13043         this.getKey = keyFn;
13044     }
13045     Roo.util.MixedCollection.superclass.constructor.call(this);
13046 };
13047
13048 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13049     allowFunctions : false,
13050     
13051 /**
13052  * Adds an item to the collection.
13053  * @param {String} key The key to associate with the item
13054  * @param {Object} o The item to add.
13055  * @return {Object} The item added.
13056  */
13057     add : function(key, o){
13058         if(arguments.length == 1){
13059             o = arguments[0];
13060             key = this.getKey(o);
13061         }
13062         if(typeof key == "undefined" || key === null){
13063             this.length++;
13064             this.items.push(o);
13065             this.keys.push(null);
13066         }else{
13067             var old = this.map[key];
13068             if(old){
13069                 return this.replace(key, o);
13070             }
13071             this.length++;
13072             this.items.push(o);
13073             this.map[key] = o;
13074             this.keys.push(key);
13075         }
13076         this.fireEvent("add", this.length-1, o, key);
13077         return o;
13078     },
13079        
13080 /**
13081   * MixedCollection has a generic way to fetch keys if you implement getKey.
13082 <pre><code>
13083 // normal way
13084 var mc = new Roo.util.MixedCollection();
13085 mc.add(someEl.dom.id, someEl);
13086 mc.add(otherEl.dom.id, otherEl);
13087 //and so on
13088
13089 // using getKey
13090 var mc = new Roo.util.MixedCollection();
13091 mc.getKey = function(el){
13092    return el.dom.id;
13093 };
13094 mc.add(someEl);
13095 mc.add(otherEl);
13096
13097 // or via the constructor
13098 var mc = new Roo.util.MixedCollection(false, function(el){
13099    return el.dom.id;
13100 });
13101 mc.add(someEl);
13102 mc.add(otherEl);
13103 </code></pre>
13104  * @param o {Object} The item for which to find the key.
13105  * @return {Object} The key for the passed item.
13106  */
13107     getKey : function(o){
13108          return o.id; 
13109     },
13110    
13111 /**
13112  * Replaces an item in the collection.
13113  * @param {String} key The key associated with the item to replace, or the item to replace.
13114  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13115  * @return {Object}  The new item.
13116  */
13117     replace : function(key, o){
13118         if(arguments.length == 1){
13119             o = arguments[0];
13120             key = this.getKey(o);
13121         }
13122         var old = this.item(key);
13123         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13124              return this.add(key, o);
13125         }
13126         var index = this.indexOfKey(key);
13127         this.items[index] = o;
13128         this.map[key] = o;
13129         this.fireEvent("replace", key, old, o);
13130         return o;
13131     },
13132    
13133 /**
13134  * Adds all elements of an Array or an Object to the collection.
13135  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13136  * an Array of values, each of which are added to the collection.
13137  */
13138     addAll : function(objs){
13139         if(arguments.length > 1 || objs instanceof Array){
13140             var args = arguments.length > 1 ? arguments : objs;
13141             for(var i = 0, len = args.length; i < len; i++){
13142                 this.add(args[i]);
13143             }
13144         }else{
13145             for(var key in objs){
13146                 if(this.allowFunctions || typeof objs[key] != "function"){
13147                     this.add(key, objs[key]);
13148                 }
13149             }
13150         }
13151     },
13152    
13153 /**
13154  * Executes the specified function once for every item in the collection, passing each
13155  * item as the first and only parameter. returning false from the function will stop the iteration.
13156  * @param {Function} fn The function to execute for each item.
13157  * @param {Object} scope (optional) The scope in which to execute the function.
13158  */
13159     each : function(fn, scope){
13160         var items = [].concat(this.items); // each safe for removal
13161         for(var i = 0, len = items.length; i < len; i++){
13162             if(fn.call(scope || items[i], items[i], i, len) === false){
13163                 break;
13164             }
13165         }
13166     },
13167    
13168 /**
13169  * Executes the specified function once for every key in the collection, passing each
13170  * key, and its associated item as the first two parameters.
13171  * @param {Function} fn The function to execute for each item.
13172  * @param {Object} scope (optional) The scope in which to execute the function.
13173  */
13174     eachKey : function(fn, scope){
13175         for(var i = 0, len = this.keys.length; i < len; i++){
13176             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13177         }
13178     },
13179    
13180 /**
13181  * Returns the first item in the collection which elicits a true return value from the
13182  * passed selection function.
13183  * @param {Function} fn The selection function to execute for each item.
13184  * @param {Object} scope (optional) The scope in which to execute the function.
13185  * @return {Object} The first item in the collection which returned true from the selection function.
13186  */
13187     find : function(fn, scope){
13188         for(var i = 0, len = this.items.length; i < len; i++){
13189             if(fn.call(scope || window, this.items[i], this.keys[i])){
13190                 return this.items[i];
13191             }
13192         }
13193         return null;
13194     },
13195    
13196 /**
13197  * Inserts an item at the specified index in the collection.
13198  * @param {Number} index The index to insert the item at.
13199  * @param {String} key The key to associate with the new item, or the item itself.
13200  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13201  * @return {Object} The item inserted.
13202  */
13203     insert : function(index, key, o){
13204         if(arguments.length == 2){
13205             o = arguments[1];
13206             key = this.getKey(o);
13207         }
13208         if(index >= this.length){
13209             return this.add(key, o);
13210         }
13211         this.length++;
13212         this.items.splice(index, 0, o);
13213         if(typeof key != "undefined" && key != null){
13214             this.map[key] = o;
13215         }
13216         this.keys.splice(index, 0, key);
13217         this.fireEvent("add", index, o, key);
13218         return o;
13219     },
13220    
13221 /**
13222  * Removed an item from the collection.
13223  * @param {Object} o The item to remove.
13224  * @return {Object} The item removed.
13225  */
13226     remove : function(o){
13227         return this.removeAt(this.indexOf(o));
13228     },
13229    
13230 /**
13231  * Remove an item from a specified index in the collection.
13232  * @param {Number} index The index within the collection of the item to remove.
13233  */
13234     removeAt : function(index){
13235         if(index < this.length && index >= 0){
13236             this.length--;
13237             var o = this.items[index];
13238             this.items.splice(index, 1);
13239             var key = this.keys[index];
13240             if(typeof key != "undefined"){
13241                 delete this.map[key];
13242             }
13243             this.keys.splice(index, 1);
13244             this.fireEvent("remove", o, key);
13245         }
13246     },
13247    
13248 /**
13249  * Removed an item associated with the passed key fom the collection.
13250  * @param {String} key The key of the item to remove.
13251  */
13252     removeKey : function(key){
13253         return this.removeAt(this.indexOfKey(key));
13254     },
13255    
13256 /**
13257  * Returns the number of items in the collection.
13258  * @return {Number} the number of items in the collection.
13259  */
13260     getCount : function(){
13261         return this.length; 
13262     },
13263    
13264 /**
13265  * Returns index within the collection of the passed Object.
13266  * @param {Object} o The item to find the index of.
13267  * @return {Number} index of the item.
13268  */
13269     indexOf : function(o){
13270         if(!this.items.indexOf){
13271             for(var i = 0, len = this.items.length; i < len; i++){
13272                 if(this.items[i] == o) {
13273                     return i;
13274                 }
13275             }
13276             return -1;
13277         }else{
13278             return this.items.indexOf(o);
13279         }
13280     },
13281    
13282 /**
13283  * Returns index within the collection of the passed key.
13284  * @param {String} key The key to find the index of.
13285  * @return {Number} index of the key.
13286  */
13287     indexOfKey : function(key){
13288         if(!this.keys.indexOf){
13289             for(var i = 0, len = this.keys.length; i < len; i++){
13290                 if(this.keys[i] == key) {
13291                     return i;
13292                 }
13293             }
13294             return -1;
13295         }else{
13296             return this.keys.indexOf(key);
13297         }
13298     },
13299    
13300 /**
13301  * Returns the item associated with the passed key OR index. Key has priority over index.
13302  * @param {String/Number} key The key or index of the item.
13303  * @return {Object} The item associated with the passed key.
13304  */
13305     item : function(key){
13306         if (key === 'length') {
13307             return null;
13308         }
13309         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13310         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13311     },
13312     
13313 /**
13314  * Returns the item at the specified index.
13315  * @param {Number} index The index of the item.
13316  * @return {Object}
13317  */
13318     itemAt : function(index){
13319         return this.items[index];
13320     },
13321     
13322 /**
13323  * Returns the item associated with the passed key.
13324  * @param {String/Number} key The key of the item.
13325  * @return {Object} The item associated with the passed key.
13326  */
13327     key : function(key){
13328         return this.map[key];
13329     },
13330    
13331 /**
13332  * Returns true if the collection contains the passed Object as an item.
13333  * @param {Object} o  The Object to look for in the collection.
13334  * @return {Boolean} True if the collection contains the Object as an item.
13335  */
13336     contains : function(o){
13337         return this.indexOf(o) != -1;
13338     },
13339    
13340 /**
13341  * Returns true if the collection contains the passed Object as a key.
13342  * @param {String} key The key to look for in the collection.
13343  * @return {Boolean} True if the collection contains the Object as a key.
13344  */
13345     containsKey : function(key){
13346         return typeof this.map[key] != "undefined";
13347     },
13348    
13349 /**
13350  * Removes all items from the collection.
13351  */
13352     clear : function(){
13353         this.length = 0;
13354         this.items = [];
13355         this.keys = [];
13356         this.map = {};
13357         this.fireEvent("clear");
13358     },
13359    
13360 /**
13361  * Returns the first item in the collection.
13362  * @return {Object} the first item in the collection..
13363  */
13364     first : function(){
13365         return this.items[0]; 
13366     },
13367    
13368 /**
13369  * Returns the last item in the collection.
13370  * @return {Object} the last item in the collection..
13371  */
13372     last : function(){
13373         return this.items[this.length-1];   
13374     },
13375     
13376     _sort : function(property, dir, fn){
13377         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13378         fn = fn || function(a, b){
13379             return a-b;
13380         };
13381         var c = [], k = this.keys, items = this.items;
13382         for(var i = 0, len = items.length; i < len; i++){
13383             c[c.length] = {key: k[i], value: items[i], index: i};
13384         }
13385         c.sort(function(a, b){
13386             var v = fn(a[property], b[property]) * dsc;
13387             if(v == 0){
13388                 v = (a.index < b.index ? -1 : 1);
13389             }
13390             return v;
13391         });
13392         for(var i = 0, len = c.length; i < len; i++){
13393             items[i] = c[i].value;
13394             k[i] = c[i].key;
13395         }
13396         this.fireEvent("sort", this);
13397     },
13398     
13399     /**
13400      * Sorts this collection with the passed comparison function
13401      * @param {String} direction (optional) "ASC" or "DESC"
13402      * @param {Function} fn (optional) comparison function
13403      */
13404     sort : function(dir, fn){
13405         this._sort("value", dir, fn);
13406     },
13407     
13408     /**
13409      * Sorts this collection by keys
13410      * @param {String} direction (optional) "ASC" or "DESC"
13411      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13412      */
13413     keySort : function(dir, fn){
13414         this._sort("key", dir, fn || function(a, b){
13415             return String(a).toUpperCase()-String(b).toUpperCase();
13416         });
13417     },
13418     
13419     /**
13420      * Returns a range of items in this collection
13421      * @param {Number} startIndex (optional) defaults to 0
13422      * @param {Number} endIndex (optional) default to the last item
13423      * @return {Array} An array of items
13424      */
13425     getRange : function(start, end){
13426         var items = this.items;
13427         if(items.length < 1){
13428             return [];
13429         }
13430         start = start || 0;
13431         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13432         var r = [];
13433         if(start <= end){
13434             for(var i = start; i <= end; i++) {
13435                     r[r.length] = items[i];
13436             }
13437         }else{
13438             for(var i = start; i >= end; i--) {
13439                     r[r.length] = items[i];
13440             }
13441         }
13442         return r;
13443     },
13444         
13445     /**
13446      * Filter the <i>objects</i> in this collection by a specific property. 
13447      * Returns a new collection that has been filtered.
13448      * @param {String} property A property on your objects
13449      * @param {String/RegExp} value Either string that the property values 
13450      * should start with or a RegExp to test against the property
13451      * @return {MixedCollection} The new filtered collection
13452      */
13453     filter : function(property, value){
13454         if(!value.exec){ // not a regex
13455             value = String(value);
13456             if(value.length == 0){
13457                 return this.clone();
13458             }
13459             value = new RegExp("^" + Roo.escapeRe(value), "i");
13460         }
13461         return this.filterBy(function(o){
13462             return o && value.test(o[property]);
13463         });
13464         },
13465     
13466     /**
13467      * Filter by a function. * Returns a new collection that has been filtered.
13468      * The passed function will be called with each 
13469      * object in the collection. If the function returns true, the value is included 
13470      * otherwise it is filtered.
13471      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13472      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13473      * @return {MixedCollection} The new filtered collection
13474      */
13475     filterBy : function(fn, scope){
13476         var r = new Roo.util.MixedCollection();
13477         r.getKey = this.getKey;
13478         var k = this.keys, it = this.items;
13479         for(var i = 0, len = it.length; i < len; i++){
13480             if(fn.call(scope||this, it[i], k[i])){
13481                                 r.add(k[i], it[i]);
13482                         }
13483         }
13484         return r;
13485     },
13486     
13487     /**
13488      * Creates a duplicate of this collection
13489      * @return {MixedCollection}
13490      */
13491     clone : function(){
13492         var r = new Roo.util.MixedCollection();
13493         var k = this.keys, it = this.items;
13494         for(var i = 0, len = it.length; i < len; i++){
13495             r.add(k[i], it[i]);
13496         }
13497         r.getKey = this.getKey;
13498         return r;
13499     }
13500 });
13501 /**
13502  * Returns the item associated with the passed key or index.
13503  * @method
13504  * @param {String/Number} key The key or index of the item.
13505  * @return {Object} The item associated with the passed key.
13506  */
13507 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13508  * Based on:
13509  * Ext JS Library 1.1.1
13510  * Copyright(c) 2006-2007, Ext JS, LLC.
13511  *
13512  * Originally Released Under LGPL - original licence link has changed is not relivant.
13513  *
13514  * Fork - LGPL
13515  * <script type="text/javascript">
13516  */
13517 /**
13518  * @class Roo.util.JSON
13519  * Modified version of Douglas Crockford"s json.js that doesn"t
13520  * mess with the Object prototype 
13521  * http://www.json.org/js.html
13522  * @singleton
13523  */
13524 Roo.util.JSON = new (function(){
13525     var useHasOwn = {}.hasOwnProperty ? true : false;
13526     
13527     // crashes Safari in some instances
13528     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13529     
13530     var pad = function(n) {
13531         return n < 10 ? "0" + n : n;
13532     };
13533     
13534     var m = {
13535         "\b": '\\b',
13536         "\t": '\\t',
13537         "\n": '\\n',
13538         "\f": '\\f',
13539         "\r": '\\r',
13540         '"' : '\\"',
13541         "\\": '\\\\'
13542     };
13543
13544     var encodeString = function(s){
13545         if (/["\\\x00-\x1f]/.test(s)) {
13546             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13547                 var c = m[b];
13548                 if(c){
13549                     return c;
13550                 }
13551                 c = b.charCodeAt();
13552                 return "\\u00" +
13553                     Math.floor(c / 16).toString(16) +
13554                     (c % 16).toString(16);
13555             }) + '"';
13556         }
13557         return '"' + s + '"';
13558     };
13559     
13560     var encodeArray = function(o){
13561         var a = ["["], b, i, l = o.length, v;
13562             for (i = 0; i < l; i += 1) {
13563                 v = o[i];
13564                 switch (typeof v) {
13565                     case "undefined":
13566                     case "function":
13567                     case "unknown":
13568                         break;
13569                     default:
13570                         if (b) {
13571                             a.push(',');
13572                         }
13573                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13574                         b = true;
13575                 }
13576             }
13577             a.push("]");
13578             return a.join("");
13579     };
13580     
13581     var encodeDate = function(o){
13582         return '"' + o.getFullYear() + "-" +
13583                 pad(o.getMonth() + 1) + "-" +
13584                 pad(o.getDate()) + "T" +
13585                 pad(o.getHours()) + ":" +
13586                 pad(o.getMinutes()) + ":" +
13587                 pad(o.getSeconds()) + '"';
13588     };
13589     
13590     /**
13591      * Encodes an Object, Array or other value
13592      * @param {Mixed} o The variable to encode
13593      * @return {String} The JSON string
13594      */
13595     this.encode = function(o)
13596     {
13597         // should this be extended to fully wrap stringify..
13598         
13599         if(typeof o == "undefined" || o === null){
13600             return "null";
13601         }else if(o instanceof Array){
13602             return encodeArray(o);
13603         }else if(o instanceof Date){
13604             return encodeDate(o);
13605         }else if(typeof o == "string"){
13606             return encodeString(o);
13607         }else if(typeof o == "number"){
13608             return isFinite(o) ? String(o) : "null";
13609         }else if(typeof o == "boolean"){
13610             return String(o);
13611         }else {
13612             var a = ["{"], b, i, v;
13613             for (i in o) {
13614                 if(!useHasOwn || o.hasOwnProperty(i)) {
13615                     v = o[i];
13616                     switch (typeof v) {
13617                     case "undefined":
13618                     case "function":
13619                     case "unknown":
13620                         break;
13621                     default:
13622                         if(b){
13623                             a.push(',');
13624                         }
13625                         a.push(this.encode(i), ":",
13626                                 v === null ? "null" : this.encode(v));
13627                         b = true;
13628                     }
13629                 }
13630             }
13631             a.push("}");
13632             return a.join("");
13633         }
13634     };
13635     
13636     /**
13637      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13638      * @param {String} json The JSON string
13639      * @return {Object} The resulting object
13640      */
13641     this.decode = function(json){
13642         
13643         return  /** eval:var:json */ eval("(" + json + ')');
13644     };
13645 })();
13646 /** 
13647  * Shorthand for {@link Roo.util.JSON#encode}
13648  * @member Roo encode 
13649  * @method */
13650 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13651 /** 
13652  * Shorthand for {@link Roo.util.JSON#decode}
13653  * @member Roo decode 
13654  * @method */
13655 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13656 /*
13657  * Based on:
13658  * Ext JS Library 1.1.1
13659  * Copyright(c) 2006-2007, Ext JS, LLC.
13660  *
13661  * Originally Released Under LGPL - original licence link has changed is not relivant.
13662  *
13663  * Fork - LGPL
13664  * <script type="text/javascript">
13665  */
13666  
13667 /**
13668  * @class Roo.util.Format
13669  * Reusable data formatting functions
13670  * @singleton
13671  */
13672 Roo.util.Format = function(){
13673     var trimRe = /^\s+|\s+$/g;
13674     return {
13675         /**
13676          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13677          * @param {String} value The string to truncate
13678          * @param {Number} length The maximum length to allow before truncating
13679          * @return {String} The converted text
13680          */
13681         ellipsis : function(value, len){
13682             if(value && value.length > len){
13683                 return value.substr(0, len-3)+"...";
13684             }
13685             return value;
13686         },
13687
13688         /**
13689          * Checks a reference and converts it to empty string if it is undefined
13690          * @param {Mixed} value Reference to check
13691          * @return {Mixed} Empty string if converted, otherwise the original value
13692          */
13693         undef : function(value){
13694             return typeof value != "undefined" ? value : "";
13695         },
13696
13697         /**
13698          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13699          * @param {String} value The string to encode
13700          * @return {String} The encoded text
13701          */
13702         htmlEncode : function(value){
13703             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13704         },
13705
13706         /**
13707          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13708          * @param {String} value The string to decode
13709          * @return {String} The decoded text
13710          */
13711         htmlDecode : function(value){
13712             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13713         },
13714
13715         /**
13716          * Trims any whitespace from either side of a string
13717          * @param {String} value The text to trim
13718          * @return {String} The trimmed text
13719          */
13720         trim : function(value){
13721             return String(value).replace(trimRe, "");
13722         },
13723
13724         /**
13725          * Returns a substring from within an original string
13726          * @param {String} value The original text
13727          * @param {Number} start The start index of the substring
13728          * @param {Number} length The length of the substring
13729          * @return {String} The substring
13730          */
13731         substr : function(value, start, length){
13732             return String(value).substr(start, length);
13733         },
13734
13735         /**
13736          * Converts a string to all lower case letters
13737          * @param {String} value The text to convert
13738          * @return {String} The converted text
13739          */
13740         lowercase : function(value){
13741             return String(value).toLowerCase();
13742         },
13743
13744         /**
13745          * Converts a string to all upper case letters
13746          * @param {String} value The text to convert
13747          * @return {String} The converted text
13748          */
13749         uppercase : function(value){
13750             return String(value).toUpperCase();
13751         },
13752
13753         /**
13754          * Converts the first character only of a string to upper case
13755          * @param {String} value The text to convert
13756          * @return {String} The converted text
13757          */
13758         capitalize : function(value){
13759             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13760         },
13761
13762         // private
13763         call : function(value, fn){
13764             if(arguments.length > 2){
13765                 var args = Array.prototype.slice.call(arguments, 2);
13766                 args.unshift(value);
13767                  
13768                 return /** eval:var:value */  eval(fn).apply(window, args);
13769             }else{
13770                 /** eval:var:value */
13771                 return /** eval:var:value */ eval(fn).call(window, value);
13772             }
13773         },
13774
13775        
13776         /**
13777          * safer version of Math.toFixed..??/
13778          * @param {Number/String} value The numeric value to format
13779          * @param {Number/String} value Decimal places 
13780          * @return {String} The formatted currency string
13781          */
13782         toFixed : function(v, n)
13783         {
13784             // why not use to fixed - precision is buggered???
13785             if (!n) {
13786                 return Math.round(v-0);
13787             }
13788             var fact = Math.pow(10,n+1);
13789             v = (Math.round((v-0)*fact))/fact;
13790             var z = (''+fact).substring(2);
13791             if (v == Math.floor(v)) {
13792                 return Math.floor(v) + '.' + z;
13793             }
13794             
13795             // now just padd decimals..
13796             var ps = String(v).split('.');
13797             var fd = (ps[1] + z);
13798             var r = fd.substring(0,n); 
13799             var rm = fd.substring(n); 
13800             if (rm < 5) {
13801                 return ps[0] + '.' + r;
13802             }
13803             r*=1; // turn it into a number;
13804             r++;
13805             if (String(r).length != n) {
13806                 ps[0]*=1;
13807                 ps[0]++;
13808                 r = String(r).substring(1); // chop the end off.
13809             }
13810             
13811             return ps[0] + '.' + r;
13812              
13813         },
13814         
13815         /**
13816          * Format a number as US currency
13817          * @param {Number/String} value The numeric value to format
13818          * @return {String} The formatted currency string
13819          */
13820         usMoney : function(v){
13821             return '$' + Roo.util.Format.number(v);
13822         },
13823         
13824         /**
13825          * Format a number
13826          * eventually this should probably emulate php's number_format
13827          * @param {Number/String} value The numeric value to format
13828          * @param {Number} decimals number of decimal places
13829          * @param {String} delimiter for thousands (default comma)
13830          * @return {String} The formatted currency string
13831          */
13832         number : function(v, decimals, thousandsDelimiter)
13833         {
13834             // multiply and round.
13835             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13836             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13837             
13838             var mul = Math.pow(10, decimals);
13839             var zero = String(mul).substring(1);
13840             v = (Math.round((v-0)*mul))/mul;
13841             
13842             // if it's '0' number.. then
13843             
13844             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13845             v = String(v);
13846             var ps = v.split('.');
13847             var whole = ps[0];
13848             
13849             var r = /(\d+)(\d{3})/;
13850             // add comma's
13851             
13852             if(thousandsDelimiter.length != 0) {
13853                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13854             } 
13855             
13856             var sub = ps[1] ?
13857                     // has decimals..
13858                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13859                     // does not have decimals
13860                     (decimals ? ('.' + zero) : '');
13861             
13862             
13863             return whole + sub ;
13864         },
13865         
13866         /**
13867          * Parse a value into a formatted date using the specified format pattern.
13868          * @param {Mixed} value The value to format
13869          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13870          * @return {String} The formatted date string
13871          */
13872         date : function(v, format){
13873             if(!v){
13874                 return "";
13875             }
13876             if(!(v instanceof Date)){
13877                 v = new Date(Date.parse(v));
13878             }
13879             return v.dateFormat(format || Roo.util.Format.defaults.date);
13880         },
13881
13882         /**
13883          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13884          * @param {String} format Any valid date format string
13885          * @return {Function} The date formatting function
13886          */
13887         dateRenderer : function(format){
13888             return function(v){
13889                 return Roo.util.Format.date(v, format);  
13890             };
13891         },
13892
13893         // private
13894         stripTagsRE : /<\/?[^>]+>/gi,
13895         
13896         /**
13897          * Strips all HTML tags
13898          * @param {Mixed} value The text from which to strip tags
13899          * @return {String} The stripped text
13900          */
13901         stripTags : function(v){
13902             return !v ? v : String(v).replace(this.stripTagsRE, "");
13903         }
13904     };
13905 }();
13906 Roo.util.Format.defaults = {
13907     date : 'd/M/Y'
13908 };/*
13909  * Based on:
13910  * Ext JS Library 1.1.1
13911  * Copyright(c) 2006-2007, Ext JS, LLC.
13912  *
13913  * Originally Released Under LGPL - original licence link has changed is not relivant.
13914  *
13915  * Fork - LGPL
13916  * <script type="text/javascript">
13917  */
13918
13919
13920  
13921
13922 /**
13923  * @class Roo.MasterTemplate
13924  * @extends Roo.Template
13925  * Provides a template that can have child templates. The syntax is:
13926 <pre><code>
13927 var t = new Roo.MasterTemplate(
13928         '&lt;select name="{name}"&gt;',
13929                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13930         '&lt;/select&gt;'
13931 );
13932 t.add('options', {value: 'foo', text: 'bar'});
13933 // or you can add multiple child elements in one shot
13934 t.addAll('options', [
13935     {value: 'foo', text: 'bar'},
13936     {value: 'foo2', text: 'bar2'},
13937     {value: 'foo3', text: 'bar3'}
13938 ]);
13939 // then append, applying the master template values
13940 t.append('my-form', {name: 'my-select'});
13941 </code></pre>
13942 * A name attribute for the child template is not required if you have only one child
13943 * template or you want to refer to them by index.
13944  */
13945 Roo.MasterTemplate = function(){
13946     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
13947     this.originalHtml = this.html;
13948     var st = {};
13949     var m, re = this.subTemplateRe;
13950     re.lastIndex = 0;
13951     var subIndex = 0;
13952     while(m = re.exec(this.html)){
13953         var name = m[1], content = m[2];
13954         st[subIndex] = {
13955             name: name,
13956             index: subIndex,
13957             buffer: [],
13958             tpl : new Roo.Template(content)
13959         };
13960         if(name){
13961             st[name] = st[subIndex];
13962         }
13963         st[subIndex].tpl.compile();
13964         st[subIndex].tpl.call = this.call.createDelegate(this);
13965         subIndex++;
13966     }
13967     this.subCount = subIndex;
13968     this.subs = st;
13969 };
13970 Roo.extend(Roo.MasterTemplate, Roo.Template, {
13971     /**
13972     * The regular expression used to match sub templates
13973     * @type RegExp
13974     * @property
13975     */
13976     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
13977
13978     /**
13979      * Applies the passed values to a child template.
13980      * @param {String/Number} name (optional) The name or index of the child template
13981      * @param {Array/Object} values The values to be applied to the template
13982      * @return {MasterTemplate} this
13983      */
13984      add : function(name, values){
13985         if(arguments.length == 1){
13986             values = arguments[0];
13987             name = 0;
13988         }
13989         var s = this.subs[name];
13990         s.buffer[s.buffer.length] = s.tpl.apply(values);
13991         return this;
13992     },
13993
13994     /**
13995      * Applies all the passed values to a child template.
13996      * @param {String/Number} name (optional) The name or index of the child template
13997      * @param {Array} values The values to be applied to the template, this should be an array of objects.
13998      * @param {Boolean} reset (optional) True to reset the template first
13999      * @return {MasterTemplate} this
14000      */
14001     fill : function(name, values, reset){
14002         var a = arguments;
14003         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14004             values = a[0];
14005             name = 0;
14006             reset = a[1];
14007         }
14008         if(reset){
14009             this.reset();
14010         }
14011         for(var i = 0, len = values.length; i < len; i++){
14012             this.add(name, values[i]);
14013         }
14014         return this;
14015     },
14016
14017     /**
14018      * Resets the template for reuse
14019      * @return {MasterTemplate} this
14020      */
14021      reset : function(){
14022         var s = this.subs;
14023         for(var i = 0; i < this.subCount; i++){
14024             s[i].buffer = [];
14025         }
14026         return this;
14027     },
14028
14029     applyTemplate : function(values){
14030         var s = this.subs;
14031         var replaceIndex = -1;
14032         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14033             return s[++replaceIndex].buffer.join("");
14034         });
14035         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14036     },
14037
14038     apply : function(){
14039         return this.applyTemplate.apply(this, arguments);
14040     },
14041
14042     compile : function(){return this;}
14043 });
14044
14045 /**
14046  * Alias for fill().
14047  * @method
14048  */
14049 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14050  /**
14051  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14052  * var tpl = Roo.MasterTemplate.from('element-id');
14053  * @param {String/HTMLElement} el
14054  * @param {Object} config
14055  * @static
14056  */
14057 Roo.MasterTemplate.from = function(el, config){
14058     el = Roo.getDom(el);
14059     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14060 };/*
14061  * Based on:
14062  * Ext JS Library 1.1.1
14063  * Copyright(c) 2006-2007, Ext JS, LLC.
14064  *
14065  * Originally Released Under LGPL - original licence link has changed is not relivant.
14066  *
14067  * Fork - LGPL
14068  * <script type="text/javascript">
14069  */
14070
14071  
14072 /**
14073  * @class Roo.util.CSS
14074  * Utility class for manipulating CSS rules
14075  * @singleton
14076  */
14077 Roo.util.CSS = function(){
14078         var rules = null;
14079         var doc = document;
14080
14081     var camelRe = /(-[a-z])/gi;
14082     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14083
14084    return {
14085    /**
14086     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14087     * tag and appended to the HEAD of the document.
14088     * @param {String|Object} cssText The text containing the css rules
14089     * @param {String} id An id to add to the stylesheet for later removal
14090     * @return {StyleSheet}
14091     */
14092     createStyleSheet : function(cssText, id){
14093         var ss;
14094         var head = doc.getElementsByTagName("head")[0];
14095         var nrules = doc.createElement("style");
14096         nrules.setAttribute("type", "text/css");
14097         if(id){
14098             nrules.setAttribute("id", id);
14099         }
14100         if (typeof(cssText) != 'string') {
14101             // support object maps..
14102             // not sure if this a good idea.. 
14103             // perhaps it should be merged with the general css handling
14104             // and handle js style props.
14105             var cssTextNew = [];
14106             for(var n in cssText) {
14107                 var citems = [];
14108                 for(var k in cssText[n]) {
14109                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14110                 }
14111                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14112                 
14113             }
14114             cssText = cssTextNew.join("\n");
14115             
14116         }
14117        
14118        
14119        if(Roo.isIE){
14120            head.appendChild(nrules);
14121            ss = nrules.styleSheet;
14122            ss.cssText = cssText;
14123        }else{
14124            try{
14125                 nrules.appendChild(doc.createTextNode(cssText));
14126            }catch(e){
14127                nrules.cssText = cssText; 
14128            }
14129            head.appendChild(nrules);
14130            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14131        }
14132        this.cacheStyleSheet(ss);
14133        return ss;
14134    },
14135
14136    /**
14137     * Removes a style or link tag by id
14138     * @param {String} id The id of the tag
14139     */
14140    removeStyleSheet : function(id){
14141        var existing = doc.getElementById(id);
14142        if(existing){
14143            existing.parentNode.removeChild(existing);
14144        }
14145    },
14146
14147    /**
14148     * Dynamically swaps an existing stylesheet reference for a new one
14149     * @param {String} id The id of an existing link tag to remove
14150     * @param {String} url The href of the new stylesheet to include
14151     */
14152    swapStyleSheet : function(id, url){
14153        this.removeStyleSheet(id);
14154        var ss = doc.createElement("link");
14155        ss.setAttribute("rel", "stylesheet");
14156        ss.setAttribute("type", "text/css");
14157        ss.setAttribute("id", id);
14158        ss.setAttribute("href", url);
14159        doc.getElementsByTagName("head")[0].appendChild(ss);
14160    },
14161    
14162    /**
14163     * Refresh the rule cache if you have dynamically added stylesheets
14164     * @return {Object} An object (hash) of rules indexed by selector
14165     */
14166    refreshCache : function(){
14167        return this.getRules(true);
14168    },
14169
14170    // private
14171    cacheStyleSheet : function(stylesheet){
14172        if(!rules){
14173            rules = {};
14174        }
14175        try{// try catch for cross domain access issue
14176            var ssRules = stylesheet.cssRules || stylesheet.rules;
14177            for(var j = ssRules.length-1; j >= 0; --j){
14178                rules[ssRules[j].selectorText] = ssRules[j];
14179            }
14180        }catch(e){}
14181    },
14182    
14183    /**
14184     * Gets all css rules for the document
14185     * @param {Boolean} refreshCache true to refresh the internal cache
14186     * @return {Object} An object (hash) of rules indexed by selector
14187     */
14188    getRules : function(refreshCache){
14189                 if(rules == null || refreshCache){
14190                         rules = {};
14191                         var ds = doc.styleSheets;
14192                         for(var i =0, len = ds.length; i < len; i++){
14193                             try{
14194                         this.cacheStyleSheet(ds[i]);
14195                     }catch(e){} 
14196                 }
14197                 }
14198                 return rules;
14199         },
14200         
14201         /**
14202     * Gets an an individual CSS rule by selector(s)
14203     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14204     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14205     * @return {CSSRule} The CSS rule or null if one is not found
14206     */
14207    getRule : function(selector, refreshCache){
14208                 var rs = this.getRules(refreshCache);
14209                 if(!(selector instanceof Array)){
14210                     return rs[selector];
14211                 }
14212                 for(var i = 0; i < selector.length; i++){
14213                         if(rs[selector[i]]){
14214                                 return rs[selector[i]];
14215                         }
14216                 }
14217                 return null;
14218         },
14219         
14220         
14221         /**
14222     * Updates a rule property
14223     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14224     * @param {String} property The css property
14225     * @param {String} value The new value for the property
14226     * @return {Boolean} true If a rule was found and updated
14227     */
14228    updateRule : function(selector, property, value){
14229                 if(!(selector instanceof Array)){
14230                         var rule = this.getRule(selector);
14231                         if(rule){
14232                                 rule.style[property.replace(camelRe, camelFn)] = value;
14233                                 return true;
14234                         }
14235                 }else{
14236                         for(var i = 0; i < selector.length; i++){
14237                                 if(this.updateRule(selector[i], property, value)){
14238                                         return true;
14239                                 }
14240                         }
14241                 }
14242                 return false;
14243         }
14244    };   
14245 }();/*
14246  * Based on:
14247  * Ext JS Library 1.1.1
14248  * Copyright(c) 2006-2007, Ext JS, LLC.
14249  *
14250  * Originally Released Under LGPL - original licence link has changed is not relivant.
14251  *
14252  * Fork - LGPL
14253  * <script type="text/javascript">
14254  */
14255
14256  
14257
14258 /**
14259  * @class Roo.util.ClickRepeater
14260  * @extends Roo.util.Observable
14261  * 
14262  * A wrapper class which can be applied to any element. Fires a "click" event while the
14263  * mouse is pressed. The interval between firings may be specified in the config but
14264  * defaults to 10 milliseconds.
14265  * 
14266  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14267  * 
14268  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14269  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14270  * Similar to an autorepeat key delay.
14271  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14272  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14273  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14274  *           "interval" and "delay" are ignored. "immediate" is honored.
14275  * @cfg {Boolean} preventDefault True to prevent the default click event
14276  * @cfg {Boolean} stopDefault True to stop the default click event
14277  * 
14278  * @history
14279  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14280  *     2007-02-02 jvs Renamed to ClickRepeater
14281  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14282  *
14283  *  @constructor
14284  * @param {String/HTMLElement/Element} el The element to listen on
14285  * @param {Object} config
14286  **/
14287 Roo.util.ClickRepeater = function(el, config)
14288 {
14289     this.el = Roo.get(el);
14290     this.el.unselectable();
14291
14292     Roo.apply(this, config);
14293
14294     this.addEvents({
14295     /**
14296      * @event mousedown
14297      * Fires when the mouse button is depressed.
14298      * @param {Roo.util.ClickRepeater} this
14299      */
14300         "mousedown" : true,
14301     /**
14302      * @event click
14303      * Fires on a specified interval during the time the element is pressed.
14304      * @param {Roo.util.ClickRepeater} this
14305      */
14306         "click" : true,
14307     /**
14308      * @event mouseup
14309      * Fires when the mouse key is released.
14310      * @param {Roo.util.ClickRepeater} this
14311      */
14312         "mouseup" : true
14313     });
14314
14315     this.el.on("mousedown", this.handleMouseDown, this);
14316     if(this.preventDefault || this.stopDefault){
14317         this.el.on("click", function(e){
14318             if(this.preventDefault){
14319                 e.preventDefault();
14320             }
14321             if(this.stopDefault){
14322                 e.stopEvent();
14323             }
14324         }, this);
14325     }
14326
14327     // allow inline handler
14328     if(this.handler){
14329         this.on("click", this.handler,  this.scope || this);
14330     }
14331
14332     Roo.util.ClickRepeater.superclass.constructor.call(this);
14333 };
14334
14335 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14336     interval : 20,
14337     delay: 250,
14338     preventDefault : true,
14339     stopDefault : false,
14340     timer : 0,
14341
14342     // private
14343     handleMouseDown : function(){
14344         clearTimeout(this.timer);
14345         this.el.blur();
14346         if(this.pressClass){
14347             this.el.addClass(this.pressClass);
14348         }
14349         this.mousedownTime = new Date();
14350
14351         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14352         this.el.on("mouseout", this.handleMouseOut, this);
14353
14354         this.fireEvent("mousedown", this);
14355         this.fireEvent("click", this);
14356         
14357         this.timer = this.click.defer(this.delay || this.interval, this);
14358     },
14359
14360     // private
14361     click : function(){
14362         this.fireEvent("click", this);
14363         this.timer = this.click.defer(this.getInterval(), this);
14364     },
14365
14366     // private
14367     getInterval: function(){
14368         if(!this.accelerate){
14369             return this.interval;
14370         }
14371         var pressTime = this.mousedownTime.getElapsed();
14372         if(pressTime < 500){
14373             return 400;
14374         }else if(pressTime < 1700){
14375             return 320;
14376         }else if(pressTime < 2600){
14377             return 250;
14378         }else if(pressTime < 3500){
14379             return 180;
14380         }else if(pressTime < 4400){
14381             return 140;
14382         }else if(pressTime < 5300){
14383             return 80;
14384         }else if(pressTime < 6200){
14385             return 50;
14386         }else{
14387             return 10;
14388         }
14389     },
14390
14391     // private
14392     handleMouseOut : function(){
14393         clearTimeout(this.timer);
14394         if(this.pressClass){
14395             this.el.removeClass(this.pressClass);
14396         }
14397         this.el.on("mouseover", this.handleMouseReturn, this);
14398     },
14399
14400     // private
14401     handleMouseReturn : function(){
14402         this.el.un("mouseover", this.handleMouseReturn);
14403         if(this.pressClass){
14404             this.el.addClass(this.pressClass);
14405         }
14406         this.click();
14407     },
14408
14409     // private
14410     handleMouseUp : function(){
14411         clearTimeout(this.timer);
14412         this.el.un("mouseover", this.handleMouseReturn);
14413         this.el.un("mouseout", this.handleMouseOut);
14414         Roo.get(document).un("mouseup", this.handleMouseUp);
14415         this.el.removeClass(this.pressClass);
14416         this.fireEvent("mouseup", this);
14417     }
14418 });/*
14419  * Based on:
14420  * Ext JS Library 1.1.1
14421  * Copyright(c) 2006-2007, Ext JS, LLC.
14422  *
14423  * Originally Released Under LGPL - original licence link has changed is not relivant.
14424  *
14425  * Fork - LGPL
14426  * <script type="text/javascript">
14427  */
14428
14429  
14430 /**
14431  * @class Roo.KeyNav
14432  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14433  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14434  * way to implement custom navigation schemes for any UI component.</p>
14435  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14436  * pageUp, pageDown, del, home, end.  Usage:</p>
14437  <pre><code>
14438 var nav = new Roo.KeyNav("my-element", {
14439     "left" : function(e){
14440         this.moveLeft(e.ctrlKey);
14441     },
14442     "right" : function(e){
14443         this.moveRight(e.ctrlKey);
14444     },
14445     "enter" : function(e){
14446         this.save();
14447     },
14448     scope : this
14449 });
14450 </code></pre>
14451  * @constructor
14452  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14453  * @param {Object} config The config
14454  */
14455 Roo.KeyNav = function(el, config){
14456     this.el = Roo.get(el);
14457     Roo.apply(this, config);
14458     if(!this.disabled){
14459         this.disabled = true;
14460         this.enable();
14461     }
14462 };
14463
14464 Roo.KeyNav.prototype = {
14465     /**
14466      * @cfg {Boolean} disabled
14467      * True to disable this KeyNav instance (defaults to false)
14468      */
14469     disabled : false,
14470     /**
14471      * @cfg {String} defaultEventAction
14472      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14473      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14474      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14475      */
14476     defaultEventAction: "stopEvent",
14477     /**
14478      * @cfg {Boolean} forceKeyDown
14479      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14480      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14481      * handle keydown instead of keypress.
14482      */
14483     forceKeyDown : false,
14484
14485     // private
14486     prepareEvent : function(e){
14487         var k = e.getKey();
14488         var h = this.keyToHandler[k];
14489         //if(h && this[h]){
14490         //    e.stopPropagation();
14491         //}
14492         if(Roo.isSafari && h && k >= 37 && k <= 40){
14493             e.stopEvent();
14494         }
14495     },
14496
14497     // private
14498     relay : function(e){
14499         var k = e.getKey();
14500         var h = this.keyToHandler[k];
14501         if(h && this[h]){
14502             if(this.doRelay(e, this[h], h) !== true){
14503                 e[this.defaultEventAction]();
14504             }
14505         }
14506     },
14507
14508     // private
14509     doRelay : function(e, h, hname){
14510         return h.call(this.scope || this, e);
14511     },
14512
14513     // possible handlers
14514     enter : false,
14515     left : false,
14516     right : false,
14517     up : false,
14518     down : false,
14519     tab : false,
14520     esc : false,
14521     pageUp : false,
14522     pageDown : false,
14523     del : false,
14524     home : false,
14525     end : false,
14526
14527     // quick lookup hash
14528     keyToHandler : {
14529         37 : "left",
14530         39 : "right",
14531         38 : "up",
14532         40 : "down",
14533         33 : "pageUp",
14534         34 : "pageDown",
14535         46 : "del",
14536         36 : "home",
14537         35 : "end",
14538         13 : "enter",
14539         27 : "esc",
14540         9  : "tab"
14541     },
14542
14543         /**
14544          * Enable this KeyNav
14545          */
14546         enable: function(){
14547                 if(this.disabled){
14548             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14549             // the EventObject will normalize Safari automatically
14550             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14551                 this.el.on("keydown", this.relay,  this);
14552             }else{
14553                 this.el.on("keydown", this.prepareEvent,  this);
14554                 this.el.on("keypress", this.relay,  this);
14555             }
14556                     this.disabled = false;
14557                 }
14558         },
14559
14560         /**
14561          * Disable this KeyNav
14562          */
14563         disable: function(){
14564                 if(!this.disabled){
14565                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14566                 this.el.un("keydown", this.relay);
14567             }else{
14568                 this.el.un("keydown", this.prepareEvent);
14569                 this.el.un("keypress", this.relay);
14570             }
14571                     this.disabled = true;
14572                 }
14573         }
14574 };/*
14575  * Based on:
14576  * Ext JS Library 1.1.1
14577  * Copyright(c) 2006-2007, Ext JS, LLC.
14578  *
14579  * Originally Released Under LGPL - original licence link has changed is not relivant.
14580  *
14581  * Fork - LGPL
14582  * <script type="text/javascript">
14583  */
14584
14585  
14586 /**
14587  * @class Roo.KeyMap
14588  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14589  * The constructor accepts the same config object as defined by {@link #addBinding}.
14590  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14591  * combination it will call the function with this signature (if the match is a multi-key
14592  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14593  * A KeyMap can also handle a string representation of keys.<br />
14594  * Usage:
14595  <pre><code>
14596 // map one key by key code
14597 var map = new Roo.KeyMap("my-element", {
14598     key: 13, // or Roo.EventObject.ENTER
14599     fn: myHandler,
14600     scope: myObject
14601 });
14602
14603 // map multiple keys to one action by string
14604 var map = new Roo.KeyMap("my-element", {
14605     key: "a\r\n\t",
14606     fn: myHandler,
14607     scope: myObject
14608 });
14609
14610 // map multiple keys to multiple actions by strings and array of codes
14611 var map = new Roo.KeyMap("my-element", [
14612     {
14613         key: [10,13],
14614         fn: function(){ alert("Return was pressed"); }
14615     }, {
14616         key: "abc",
14617         fn: function(){ alert('a, b or c was pressed'); }
14618     }, {
14619         key: "\t",
14620         ctrl:true,
14621         shift:true,
14622         fn: function(){ alert('Control + shift + tab was pressed.'); }
14623     }
14624 ]);
14625 </code></pre>
14626  * <b>Note: A KeyMap starts enabled</b>
14627  * @constructor
14628  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14629  * @param {Object} config The config (see {@link #addBinding})
14630  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14631  */
14632 Roo.KeyMap = function(el, config, eventName){
14633     this.el  = Roo.get(el);
14634     this.eventName = eventName || "keydown";
14635     this.bindings = [];
14636     if(config){
14637         this.addBinding(config);
14638     }
14639     this.enable();
14640 };
14641
14642 Roo.KeyMap.prototype = {
14643     /**
14644      * True to stop the event from bubbling and prevent the default browser action if the
14645      * key was handled by the KeyMap (defaults to false)
14646      * @type Boolean
14647      */
14648     stopEvent : false,
14649
14650     /**
14651      * Add a new binding to this KeyMap. The following config object properties are supported:
14652      * <pre>
14653 Property    Type             Description
14654 ----------  ---------------  ----------------------------------------------------------------------
14655 key         String/Array     A single keycode or an array of keycodes to handle
14656 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14657 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14658 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14659 fn          Function         The function to call when KeyMap finds the expected key combination
14660 scope       Object           The scope of the callback function
14661 </pre>
14662      *
14663      * Usage:
14664      * <pre><code>
14665 // Create a KeyMap
14666 var map = new Roo.KeyMap(document, {
14667     key: Roo.EventObject.ENTER,
14668     fn: handleKey,
14669     scope: this
14670 });
14671
14672 //Add a new binding to the existing KeyMap later
14673 map.addBinding({
14674     key: 'abc',
14675     shift: true,
14676     fn: handleKey,
14677     scope: this
14678 });
14679 </code></pre>
14680      * @param {Object/Array} config A single KeyMap config or an array of configs
14681      */
14682         addBinding : function(config){
14683         if(config instanceof Array){
14684             for(var i = 0, len = config.length; i < len; i++){
14685                 this.addBinding(config[i]);
14686             }
14687             return;
14688         }
14689         var keyCode = config.key,
14690             shift = config.shift, 
14691             ctrl = config.ctrl, 
14692             alt = config.alt,
14693             fn = config.fn,
14694             scope = config.scope;
14695         if(typeof keyCode == "string"){
14696             var ks = [];
14697             var keyString = keyCode.toUpperCase();
14698             for(var j = 0, len = keyString.length; j < len; j++){
14699                 ks.push(keyString.charCodeAt(j));
14700             }
14701             keyCode = ks;
14702         }
14703         var keyArray = keyCode instanceof Array;
14704         var handler = function(e){
14705             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14706                 var k = e.getKey();
14707                 if(keyArray){
14708                     for(var i = 0, len = keyCode.length; i < len; i++){
14709                         if(keyCode[i] == k){
14710                           if(this.stopEvent){
14711                               e.stopEvent();
14712                           }
14713                           fn.call(scope || window, k, e);
14714                           return;
14715                         }
14716                     }
14717                 }else{
14718                     if(k == keyCode){
14719                         if(this.stopEvent){
14720                            e.stopEvent();
14721                         }
14722                         fn.call(scope || window, k, e);
14723                     }
14724                 }
14725             }
14726         };
14727         this.bindings.push(handler);  
14728         },
14729
14730     /**
14731      * Shorthand for adding a single key listener
14732      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14733      * following options:
14734      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14735      * @param {Function} fn The function to call
14736      * @param {Object} scope (optional) The scope of the function
14737      */
14738     on : function(key, fn, scope){
14739         var keyCode, shift, ctrl, alt;
14740         if(typeof key == "object" && !(key instanceof Array)){
14741             keyCode = key.key;
14742             shift = key.shift;
14743             ctrl = key.ctrl;
14744             alt = key.alt;
14745         }else{
14746             keyCode = key;
14747         }
14748         this.addBinding({
14749             key: keyCode,
14750             shift: shift,
14751             ctrl: ctrl,
14752             alt: alt,
14753             fn: fn,
14754             scope: scope
14755         })
14756     },
14757
14758     // private
14759     handleKeyDown : function(e){
14760             if(this.enabled){ //just in case
14761             var b = this.bindings;
14762             for(var i = 0, len = b.length; i < len; i++){
14763                 b[i].call(this, e);
14764             }
14765             }
14766         },
14767         
14768         /**
14769          * Returns true if this KeyMap is enabled
14770          * @return {Boolean} 
14771          */
14772         isEnabled : function(){
14773             return this.enabled;  
14774         },
14775         
14776         /**
14777          * Enables this KeyMap
14778          */
14779         enable: function(){
14780                 if(!this.enabled){
14781                     this.el.on(this.eventName, this.handleKeyDown, this);
14782                     this.enabled = true;
14783                 }
14784         },
14785
14786         /**
14787          * Disable this KeyMap
14788          */
14789         disable: function(){
14790                 if(this.enabled){
14791                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14792                     this.enabled = false;
14793                 }
14794         }
14795 };/*
14796  * Based on:
14797  * Ext JS Library 1.1.1
14798  * Copyright(c) 2006-2007, Ext JS, LLC.
14799  *
14800  * Originally Released Under LGPL - original licence link has changed is not relivant.
14801  *
14802  * Fork - LGPL
14803  * <script type="text/javascript">
14804  */
14805
14806  
14807 /**
14808  * @class Roo.util.TextMetrics
14809  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14810  * wide, in pixels, a given block of text will be.
14811  * @singleton
14812  */
14813 Roo.util.TextMetrics = function(){
14814     var shared;
14815     return {
14816         /**
14817          * Measures the size of the specified text
14818          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14819          * that can affect the size of the rendered text
14820          * @param {String} text The text to measure
14821          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14822          * in order to accurately measure the text height
14823          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14824          */
14825         measure : function(el, text, fixedWidth){
14826             if(!shared){
14827                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14828             }
14829             shared.bind(el);
14830             shared.setFixedWidth(fixedWidth || 'auto');
14831             return shared.getSize(text);
14832         },
14833
14834         /**
14835          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14836          * the overhead of multiple calls to initialize the style properties on each measurement.
14837          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14838          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14839          * in order to accurately measure the text height
14840          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14841          */
14842         createInstance : function(el, fixedWidth){
14843             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14844         }
14845     };
14846 }();
14847
14848  
14849
14850 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14851     var ml = new Roo.Element(document.createElement('div'));
14852     document.body.appendChild(ml.dom);
14853     ml.position('absolute');
14854     ml.setLeftTop(-1000, -1000);
14855     ml.hide();
14856
14857     if(fixedWidth){
14858         ml.setWidth(fixedWidth);
14859     }
14860      
14861     var instance = {
14862         /**
14863          * Returns the size of the specified text based on the internal element's style and width properties
14864          * @memberOf Roo.util.TextMetrics.Instance#
14865          * @param {String} text The text to measure
14866          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14867          */
14868         getSize : function(text){
14869             ml.update(text);
14870             var s = ml.getSize();
14871             ml.update('');
14872             return s;
14873         },
14874
14875         /**
14876          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14877          * that can affect the size of the rendered text
14878          * @memberOf Roo.util.TextMetrics.Instance#
14879          * @param {String/HTMLElement} el The element, dom node or id
14880          */
14881         bind : function(el){
14882             ml.setStyle(
14883                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14884             );
14885         },
14886
14887         /**
14888          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14889          * to set a fixed width in order to accurately measure the text height.
14890          * @memberOf Roo.util.TextMetrics.Instance#
14891          * @param {Number} width The width to set on the element
14892          */
14893         setFixedWidth : function(width){
14894             ml.setWidth(width);
14895         },
14896
14897         /**
14898          * Returns the measured width of the specified text
14899          * @memberOf Roo.util.TextMetrics.Instance#
14900          * @param {String} text The text to measure
14901          * @return {Number} width The width in pixels
14902          */
14903         getWidth : function(text){
14904             ml.dom.style.width = 'auto';
14905             return this.getSize(text).width;
14906         },
14907
14908         /**
14909          * Returns the measured height of the specified text.  For multiline text, be sure to call
14910          * {@link #setFixedWidth} if necessary.
14911          * @memberOf Roo.util.TextMetrics.Instance#
14912          * @param {String} text The text to measure
14913          * @return {Number} height The height in pixels
14914          */
14915         getHeight : function(text){
14916             return this.getSize(text).height;
14917         }
14918     };
14919
14920     instance.bind(bindTo);
14921
14922     return instance;
14923 };
14924
14925 // backwards compat
14926 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14927  * Based on:
14928  * Ext JS Library 1.1.1
14929  * Copyright(c) 2006-2007, Ext JS, LLC.
14930  *
14931  * Originally Released Under LGPL - original licence link has changed is not relivant.
14932  *
14933  * Fork - LGPL
14934  * <script type="text/javascript">
14935  */
14936
14937 /**
14938  * @class Roo.state.Provider
14939  * Abstract base class for state provider implementations. This class provides methods
14940  * for encoding and decoding <b>typed</b> variables including dates and defines the 
14941  * Provider interface.
14942  */
14943 Roo.state.Provider = function(){
14944     /**
14945      * @event statechange
14946      * Fires when a state change occurs.
14947      * @param {Provider} this This state provider
14948      * @param {String} key The state key which was changed
14949      * @param {String} value The encoded value for the state
14950      */
14951     this.addEvents({
14952         "statechange": true
14953     });
14954     this.state = {};
14955     Roo.state.Provider.superclass.constructor.call(this);
14956 };
14957 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
14958     /**
14959      * Returns the current value for a key
14960      * @param {String} name The key name
14961      * @param {Mixed} defaultValue A default value to return if the key's value is not found
14962      * @return {Mixed} The state data
14963      */
14964     get : function(name, defaultValue){
14965         return typeof this.state[name] == "undefined" ?
14966             defaultValue : this.state[name];
14967     },
14968     
14969     /**
14970      * Clears a value from the state
14971      * @param {String} name The key name
14972      */
14973     clear : function(name){
14974         delete this.state[name];
14975         this.fireEvent("statechange", this, name, null);
14976     },
14977     
14978     /**
14979      * Sets the value for a key
14980      * @param {String} name The key name
14981      * @param {Mixed} value The value to set
14982      */
14983     set : function(name, value){
14984         this.state[name] = value;
14985         this.fireEvent("statechange", this, name, value);
14986     },
14987     
14988     /**
14989      * Decodes a string previously encoded with {@link #encodeValue}.
14990      * @param {String} value The value to decode
14991      * @return {Mixed} The decoded value
14992      */
14993     decodeValue : function(cookie){
14994         var re = /^(a|n|d|b|s|o)\:(.*)$/;
14995         var matches = re.exec(unescape(cookie));
14996         if(!matches || !matches[1]) {
14997             return; // non state cookie
14998         }
14999         var type = matches[1];
15000         var v = matches[2];
15001         switch(type){
15002             case "n":
15003                 return parseFloat(v);
15004             case "d":
15005                 return new Date(Date.parse(v));
15006             case "b":
15007                 return (v == "1");
15008             case "a":
15009                 var all = [];
15010                 var values = v.split("^");
15011                 for(var i = 0, len = values.length; i < len; i++){
15012                     all.push(this.decodeValue(values[i]));
15013                 }
15014                 return all;
15015            case "o":
15016                 var all = {};
15017                 var values = v.split("^");
15018                 for(var i = 0, len = values.length; i < len; i++){
15019                     var kv = values[i].split("=");
15020                     all[kv[0]] = this.decodeValue(kv[1]);
15021                 }
15022                 return all;
15023            default:
15024                 return v;
15025         }
15026     },
15027     
15028     /**
15029      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15030      * @param {Mixed} value The value to encode
15031      * @return {String} The encoded value
15032      */
15033     encodeValue : function(v){
15034         var enc;
15035         if(typeof v == "number"){
15036             enc = "n:" + v;
15037         }else if(typeof v == "boolean"){
15038             enc = "b:" + (v ? "1" : "0");
15039         }else if(v instanceof Date){
15040             enc = "d:" + v.toGMTString();
15041         }else if(v instanceof Array){
15042             var flat = "";
15043             for(var i = 0, len = v.length; i < len; i++){
15044                 flat += this.encodeValue(v[i]);
15045                 if(i != len-1) {
15046                     flat += "^";
15047                 }
15048             }
15049             enc = "a:" + flat;
15050         }else if(typeof v == "object"){
15051             var flat = "";
15052             for(var key in v){
15053                 if(typeof v[key] != "function"){
15054                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15055                 }
15056             }
15057             enc = "o:" + flat.substring(0, flat.length-1);
15058         }else{
15059             enc = "s:" + v;
15060         }
15061         return escape(enc);        
15062     }
15063 });
15064
15065 /*
15066  * Based on:
15067  * Ext JS Library 1.1.1
15068  * Copyright(c) 2006-2007, Ext JS, LLC.
15069  *
15070  * Originally Released Under LGPL - original licence link has changed is not relivant.
15071  *
15072  * Fork - LGPL
15073  * <script type="text/javascript">
15074  */
15075 /**
15076  * @class Roo.state.Manager
15077  * This is the global state manager. By default all components that are "state aware" check this class
15078  * for state information if you don't pass them a custom state provider. In order for this class
15079  * to be useful, it must be initialized with a provider when your application initializes.
15080  <pre><code>
15081 // in your initialization function
15082 init : function(){
15083    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15084    ...
15085    // supposed you have a {@link Roo.BorderLayout}
15086    var layout = new Roo.BorderLayout(...);
15087    layout.restoreState();
15088    // or a {Roo.BasicDialog}
15089    var dialog = new Roo.BasicDialog(...);
15090    dialog.restoreState();
15091  </code></pre>
15092  * @singleton
15093  */
15094 Roo.state.Manager = function(){
15095     var provider = new Roo.state.Provider();
15096     
15097     return {
15098         /**
15099          * Configures the default state provider for your application
15100          * @param {Provider} stateProvider The state provider to set
15101          */
15102         setProvider : function(stateProvider){
15103             provider = stateProvider;
15104         },
15105         
15106         /**
15107          * Returns the current value for a key
15108          * @param {String} name The key name
15109          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15110          * @return {Mixed} The state data
15111          */
15112         get : function(key, defaultValue){
15113             return provider.get(key, defaultValue);
15114         },
15115         
15116         /**
15117          * Sets the value for a key
15118          * @param {String} name The key name
15119          * @param {Mixed} value The state data
15120          */
15121          set : function(key, value){
15122             provider.set(key, value);
15123         },
15124         
15125         /**
15126          * Clears a value from the state
15127          * @param {String} name The key name
15128          */
15129         clear : function(key){
15130             provider.clear(key);
15131         },
15132         
15133         /**
15134          * Gets the currently configured state provider
15135          * @return {Provider} The state provider
15136          */
15137         getProvider : function(){
15138             return provider;
15139         }
15140     };
15141 }();
15142 /*
15143  * Based on:
15144  * Ext JS Library 1.1.1
15145  * Copyright(c) 2006-2007, Ext JS, LLC.
15146  *
15147  * Originally Released Under LGPL - original licence link has changed is not relivant.
15148  *
15149  * Fork - LGPL
15150  * <script type="text/javascript">
15151  */
15152 /**
15153  * @class Roo.state.CookieProvider
15154  * @extends Roo.state.Provider
15155  * The default Provider implementation which saves state via cookies.
15156  * <br />Usage:
15157  <pre><code>
15158    var cp = new Roo.state.CookieProvider({
15159        path: "/cgi-bin/",
15160        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15161        domain: "roojs.com"
15162    })
15163    Roo.state.Manager.setProvider(cp);
15164  </code></pre>
15165  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15166  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15167  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15168  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15169  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15170  * domain the page is running on including the 'www' like 'www.roojs.com')
15171  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15172  * @constructor
15173  * Create a new CookieProvider
15174  * @param {Object} config The configuration object
15175  */
15176 Roo.state.CookieProvider = function(config){
15177     Roo.state.CookieProvider.superclass.constructor.call(this);
15178     this.path = "/";
15179     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15180     this.domain = null;
15181     this.secure = false;
15182     Roo.apply(this, config);
15183     this.state = this.readCookies();
15184 };
15185
15186 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15187     // private
15188     set : function(name, value){
15189         if(typeof value == "undefined" || value === null){
15190             this.clear(name);
15191             return;
15192         }
15193         this.setCookie(name, value);
15194         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15195     },
15196
15197     // private
15198     clear : function(name){
15199         this.clearCookie(name);
15200         Roo.state.CookieProvider.superclass.clear.call(this, name);
15201     },
15202
15203     // private
15204     readCookies : function(){
15205         var cookies = {};
15206         var c = document.cookie + ";";
15207         var re = /\s?(.*?)=(.*?);/g;
15208         var matches;
15209         while((matches = re.exec(c)) != null){
15210             var name = matches[1];
15211             var value = matches[2];
15212             if(name && name.substring(0,3) == "ys-"){
15213                 cookies[name.substr(3)] = this.decodeValue(value);
15214             }
15215         }
15216         return cookies;
15217     },
15218
15219     // private
15220     setCookie : function(name, value){
15221         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15222            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15223            ((this.path == null) ? "" : ("; path=" + this.path)) +
15224            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15225            ((this.secure == true) ? "; secure" : "");
15226     },
15227
15228     // private
15229     clearCookie : function(name){
15230         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15231            ((this.path == null) ? "" : ("; path=" + this.path)) +
15232            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15233            ((this.secure == true) ? "; secure" : "");
15234     }
15235 });/*
15236  * Based on:
15237  * Ext JS Library 1.1.1
15238  * Copyright(c) 2006-2007, Ext JS, LLC.
15239  *
15240  * Originally Released Under LGPL - original licence link has changed is not relivant.
15241  *
15242  * Fork - LGPL
15243  * <script type="text/javascript">
15244  */
15245  
15246
15247 /**
15248  * @class Roo.ComponentMgr
15249  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15250  * @singleton
15251  */
15252 Roo.ComponentMgr = function(){
15253     var all = new Roo.util.MixedCollection();
15254
15255     return {
15256         /**
15257          * Registers a component.
15258          * @param {Roo.Component} c The component
15259          */
15260         register : function(c){
15261             all.add(c);
15262         },
15263
15264         /**
15265          * Unregisters a component.
15266          * @param {Roo.Component} c The component
15267          */
15268         unregister : function(c){
15269             all.remove(c);
15270         },
15271
15272         /**
15273          * Returns a component by id
15274          * @param {String} id The component id
15275          */
15276         get : function(id){
15277             return all.get(id);
15278         },
15279
15280         /**
15281          * Registers a function that will be called when a specified component is added to ComponentMgr
15282          * @param {String} id The component id
15283          * @param {Funtction} fn The callback function
15284          * @param {Object} scope The scope of the callback
15285          */
15286         onAvailable : function(id, fn, scope){
15287             all.on("add", function(index, o){
15288                 if(o.id == id){
15289                     fn.call(scope || o, o);
15290                     all.un("add", fn, scope);
15291                 }
15292             });
15293         }
15294     };
15295 }();/*
15296  * Based on:
15297  * Ext JS Library 1.1.1
15298  * Copyright(c) 2006-2007, Ext JS, LLC.
15299  *
15300  * Originally Released Under LGPL - original licence link has changed is not relivant.
15301  *
15302  * Fork - LGPL
15303  * <script type="text/javascript">
15304  */
15305  
15306 /**
15307  * @class Roo.Component
15308  * @extends Roo.util.Observable
15309  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15310  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15311  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15312  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15313  * All visual components (widgets) that require rendering into a layout should subclass Component.
15314  * @constructor
15315  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15316  * 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
15317  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15318  */
15319 Roo.Component = function(config){
15320     config = config || {};
15321     if(config.tagName || config.dom || typeof config == "string"){ // element object
15322         config = {el: config, id: config.id || config};
15323     }
15324     this.initialConfig = config;
15325
15326     Roo.apply(this, config);
15327     this.addEvents({
15328         /**
15329          * @event disable
15330          * Fires after the component is disabled.
15331              * @param {Roo.Component} this
15332              */
15333         disable : true,
15334         /**
15335          * @event enable
15336          * Fires after the component is enabled.
15337              * @param {Roo.Component} this
15338              */
15339         enable : true,
15340         /**
15341          * @event beforeshow
15342          * Fires before the component is shown.  Return false to stop the show.
15343              * @param {Roo.Component} this
15344              */
15345         beforeshow : true,
15346         /**
15347          * @event show
15348          * Fires after the component is shown.
15349              * @param {Roo.Component} this
15350              */
15351         show : true,
15352         /**
15353          * @event beforehide
15354          * Fires before the component is hidden. Return false to stop the hide.
15355              * @param {Roo.Component} this
15356              */
15357         beforehide : true,
15358         /**
15359          * @event hide
15360          * Fires after the component is hidden.
15361              * @param {Roo.Component} this
15362              */
15363         hide : true,
15364         /**
15365          * @event beforerender
15366          * Fires before the component is rendered. Return false to stop the render.
15367              * @param {Roo.Component} this
15368              */
15369         beforerender : true,
15370         /**
15371          * @event render
15372          * Fires after the component is rendered.
15373              * @param {Roo.Component} this
15374              */
15375         render : true,
15376         /**
15377          * @event beforedestroy
15378          * Fires before the component is destroyed. Return false to stop the destroy.
15379              * @param {Roo.Component} this
15380              */
15381         beforedestroy : true,
15382         /**
15383          * @event destroy
15384          * Fires after the component is destroyed.
15385              * @param {Roo.Component} this
15386              */
15387         destroy : true
15388     });
15389     if(!this.id){
15390         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15391     }
15392     Roo.ComponentMgr.register(this);
15393     Roo.Component.superclass.constructor.call(this);
15394     this.initComponent();
15395     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15396         this.render(this.renderTo);
15397         delete this.renderTo;
15398     }
15399 };
15400
15401 /** @private */
15402 Roo.Component.AUTO_ID = 1000;
15403
15404 Roo.extend(Roo.Component, Roo.util.Observable, {
15405     /**
15406      * @scope Roo.Component.prototype
15407      * @type {Boolean}
15408      * true if this component is hidden. Read-only.
15409      */
15410     hidden : false,
15411     /**
15412      * @type {Boolean}
15413      * true if this component is disabled. Read-only.
15414      */
15415     disabled : false,
15416     /**
15417      * @type {Boolean}
15418      * true if this component has been rendered. Read-only.
15419      */
15420     rendered : false,
15421     
15422     /** @cfg {String} disableClass
15423      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15424      */
15425     disabledClass : "x-item-disabled",
15426         /** @cfg {Boolean} allowDomMove
15427          * Whether the component can move the Dom node when rendering (defaults to true).
15428          */
15429     allowDomMove : true,
15430     /** @cfg {String} hideMode (display|visibility)
15431      * How this component should hidden. Supported values are
15432      * "visibility" (css visibility), "offsets" (negative offset position) and
15433      * "display" (css display) - defaults to "display".
15434      */
15435     hideMode: 'display',
15436
15437     /** @private */
15438     ctype : "Roo.Component",
15439
15440     /**
15441      * @cfg {String} actionMode 
15442      * which property holds the element that used for  hide() / show() / disable() / enable()
15443      * default is 'el' 
15444      */
15445     actionMode : "el",
15446
15447     /** @private */
15448     getActionEl : function(){
15449         return this[this.actionMode];
15450     },
15451
15452     initComponent : Roo.emptyFn,
15453     /**
15454      * If this is a lazy rendering component, render it to its container element.
15455      * @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.
15456      */
15457     render : function(container, position){
15458         
15459         if(this.rendered){
15460             return this;
15461         }
15462         
15463         if(this.fireEvent("beforerender", this) === false){
15464             return false;
15465         }
15466         
15467         if(!container && this.el){
15468             this.el = Roo.get(this.el);
15469             container = this.el.dom.parentNode;
15470             this.allowDomMove = false;
15471         }
15472         this.container = Roo.get(container);
15473         this.rendered = true;
15474         if(position !== undefined){
15475             if(typeof position == 'number'){
15476                 position = this.container.dom.childNodes[position];
15477             }else{
15478                 position = Roo.getDom(position);
15479             }
15480         }
15481         this.onRender(this.container, position || null);
15482         if(this.cls){
15483             this.el.addClass(this.cls);
15484             delete this.cls;
15485         }
15486         if(this.style){
15487             this.el.applyStyles(this.style);
15488             delete this.style;
15489         }
15490         this.fireEvent("render", this);
15491         this.afterRender(this.container);
15492         if(this.hidden){
15493             this.hide();
15494         }
15495         if(this.disabled){
15496             this.disable();
15497         }
15498
15499         return this;
15500         
15501     },
15502
15503     /** @private */
15504     // default function is not really useful
15505     onRender : function(ct, position){
15506         if(this.el){
15507             this.el = Roo.get(this.el);
15508             if(this.allowDomMove !== false){
15509                 ct.dom.insertBefore(this.el.dom, position);
15510             }
15511         }
15512     },
15513
15514     /** @private */
15515     getAutoCreate : function(){
15516         var cfg = typeof this.autoCreate == "object" ?
15517                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15518         if(this.id && !cfg.id){
15519             cfg.id = this.id;
15520         }
15521         return cfg;
15522     },
15523
15524     /** @private */
15525     afterRender : Roo.emptyFn,
15526
15527     /**
15528      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15529      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15530      */
15531     destroy : function(){
15532         if(this.fireEvent("beforedestroy", this) !== false){
15533             this.purgeListeners();
15534             this.beforeDestroy();
15535             if(this.rendered){
15536                 this.el.removeAllListeners();
15537                 this.el.remove();
15538                 if(this.actionMode == "container"){
15539                     this.container.remove();
15540                 }
15541             }
15542             this.onDestroy();
15543             Roo.ComponentMgr.unregister(this);
15544             this.fireEvent("destroy", this);
15545         }
15546     },
15547
15548         /** @private */
15549     beforeDestroy : function(){
15550
15551     },
15552
15553         /** @private */
15554         onDestroy : function(){
15555
15556     },
15557
15558     /**
15559      * Returns the underlying {@link Roo.Element}.
15560      * @return {Roo.Element} The element
15561      */
15562     getEl : function(){
15563         return this.el;
15564     },
15565
15566     /**
15567      * Returns the id of this component.
15568      * @return {String}
15569      */
15570     getId : function(){
15571         return this.id;
15572     },
15573
15574     /**
15575      * Try to focus this component.
15576      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15577      * @return {Roo.Component} this
15578      */
15579     focus : function(selectText){
15580         if(this.rendered){
15581             this.el.focus();
15582             if(selectText === true){
15583                 this.el.dom.select();
15584             }
15585         }
15586         return this;
15587     },
15588
15589     /** @private */
15590     blur : function(){
15591         if(this.rendered){
15592             this.el.blur();
15593         }
15594         return this;
15595     },
15596
15597     /**
15598      * Disable this component.
15599      * @return {Roo.Component} this
15600      */
15601     disable : function(){
15602         if(this.rendered){
15603             this.onDisable();
15604         }
15605         this.disabled = true;
15606         this.fireEvent("disable", this);
15607         return this;
15608     },
15609
15610         // private
15611     onDisable : function(){
15612         this.getActionEl().addClass(this.disabledClass);
15613         this.el.dom.disabled = true;
15614     },
15615
15616     /**
15617      * Enable this component.
15618      * @return {Roo.Component} this
15619      */
15620     enable : function(){
15621         if(this.rendered){
15622             this.onEnable();
15623         }
15624         this.disabled = false;
15625         this.fireEvent("enable", this);
15626         return this;
15627     },
15628
15629         // private
15630     onEnable : function(){
15631         this.getActionEl().removeClass(this.disabledClass);
15632         this.el.dom.disabled = false;
15633     },
15634
15635     /**
15636      * Convenience function for setting disabled/enabled by boolean.
15637      * @param {Boolean} disabled
15638      */
15639     setDisabled : function(disabled){
15640         this[disabled ? "disable" : "enable"]();
15641     },
15642
15643     /**
15644      * Show this component.
15645      * @return {Roo.Component} this
15646      */
15647     show: function(){
15648         if(this.fireEvent("beforeshow", this) !== false){
15649             this.hidden = false;
15650             if(this.rendered){
15651                 this.onShow();
15652             }
15653             this.fireEvent("show", this);
15654         }
15655         return this;
15656     },
15657
15658     // private
15659     onShow : function(){
15660         var ae = this.getActionEl();
15661         if(this.hideMode == 'visibility'){
15662             ae.dom.style.visibility = "visible";
15663         }else if(this.hideMode == 'offsets'){
15664             ae.removeClass('x-hidden');
15665         }else{
15666             ae.dom.style.display = "";
15667         }
15668     },
15669
15670     /**
15671      * Hide this component.
15672      * @return {Roo.Component} this
15673      */
15674     hide: function(){
15675         if(this.fireEvent("beforehide", this) !== false){
15676             this.hidden = true;
15677             if(this.rendered){
15678                 this.onHide();
15679             }
15680             this.fireEvent("hide", this);
15681         }
15682         return this;
15683     },
15684
15685     // private
15686     onHide : function(){
15687         var ae = this.getActionEl();
15688         if(this.hideMode == 'visibility'){
15689             ae.dom.style.visibility = "hidden";
15690         }else if(this.hideMode == 'offsets'){
15691             ae.addClass('x-hidden');
15692         }else{
15693             ae.dom.style.display = "none";
15694         }
15695     },
15696
15697     /**
15698      * Convenience function to hide or show this component by boolean.
15699      * @param {Boolean} visible True to show, false to hide
15700      * @return {Roo.Component} this
15701      */
15702     setVisible: function(visible){
15703         if(visible) {
15704             this.show();
15705         }else{
15706             this.hide();
15707         }
15708         return this;
15709     },
15710
15711     /**
15712      * Returns true if this component is visible.
15713      */
15714     isVisible : function(){
15715         return this.getActionEl().isVisible();
15716     },
15717
15718     cloneConfig : function(overrides){
15719         overrides = overrides || {};
15720         var id = overrides.id || Roo.id();
15721         var cfg = Roo.applyIf(overrides, this.initialConfig);
15722         cfg.id = id; // prevent dup id
15723         return new this.constructor(cfg);
15724     }
15725 });/*
15726  * Based on:
15727  * Ext JS Library 1.1.1
15728  * Copyright(c) 2006-2007, Ext JS, LLC.
15729  *
15730  * Originally Released Under LGPL - original licence link has changed is not relivant.
15731  *
15732  * Fork - LGPL
15733  * <script type="text/javascript">
15734  */
15735
15736 /**
15737  * @class Roo.BoxComponent
15738  * @extends Roo.Component
15739  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15740  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15741  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15742  * layout containers.
15743  * @constructor
15744  * @param {Roo.Element/String/Object} config The configuration options.
15745  */
15746 Roo.BoxComponent = function(config){
15747     Roo.Component.call(this, config);
15748     this.addEvents({
15749         /**
15750          * @event resize
15751          * Fires after the component is resized.
15752              * @param {Roo.Component} this
15753              * @param {Number} adjWidth The box-adjusted width that was set
15754              * @param {Number} adjHeight The box-adjusted height that was set
15755              * @param {Number} rawWidth The width that was originally specified
15756              * @param {Number} rawHeight The height that was originally specified
15757              */
15758         resize : true,
15759         /**
15760          * @event move
15761          * Fires after the component is moved.
15762              * @param {Roo.Component} this
15763              * @param {Number} x The new x position
15764              * @param {Number} y The new y position
15765              */
15766         move : true
15767     });
15768 };
15769
15770 Roo.extend(Roo.BoxComponent, Roo.Component, {
15771     // private, set in afterRender to signify that the component has been rendered
15772     boxReady : false,
15773     // private, used to defer height settings to subclasses
15774     deferHeight: false,
15775     /** @cfg {Number} width
15776      * width (optional) size of component
15777      */
15778      /** @cfg {Number} height
15779      * height (optional) size of component
15780      */
15781      
15782     /**
15783      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15784      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15785      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15786      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15787      * @return {Roo.BoxComponent} this
15788      */
15789     setSize : function(w, h){
15790         // support for standard size objects
15791         if(typeof w == 'object'){
15792             h = w.height;
15793             w = w.width;
15794         }
15795         // not rendered
15796         if(!this.boxReady){
15797             this.width = w;
15798             this.height = h;
15799             return this;
15800         }
15801
15802         // prevent recalcs when not needed
15803         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15804             return this;
15805         }
15806         this.lastSize = {width: w, height: h};
15807
15808         var adj = this.adjustSize(w, h);
15809         var aw = adj.width, ah = adj.height;
15810         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15811             var rz = this.getResizeEl();
15812             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15813                 rz.setSize(aw, ah);
15814             }else if(!this.deferHeight && ah !== undefined){
15815                 rz.setHeight(ah);
15816             }else if(aw !== undefined){
15817                 rz.setWidth(aw);
15818             }
15819             this.onResize(aw, ah, w, h);
15820             this.fireEvent('resize', this, aw, ah, w, h);
15821         }
15822         return this;
15823     },
15824
15825     /**
15826      * Gets the current size of the component's underlying element.
15827      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15828      */
15829     getSize : function(){
15830         return this.el.getSize();
15831     },
15832
15833     /**
15834      * Gets the current XY position of the component's underlying element.
15835      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15836      * @return {Array} The XY position of the element (e.g., [100, 200])
15837      */
15838     getPosition : function(local){
15839         if(local === true){
15840             return [this.el.getLeft(true), this.el.getTop(true)];
15841         }
15842         return this.xy || this.el.getXY();
15843     },
15844
15845     /**
15846      * Gets the current box measurements of the component's underlying element.
15847      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15848      * @returns {Object} box An object in the format {x, y, width, height}
15849      */
15850     getBox : function(local){
15851         var s = this.el.getSize();
15852         if(local){
15853             s.x = this.el.getLeft(true);
15854             s.y = this.el.getTop(true);
15855         }else{
15856             var xy = this.xy || this.el.getXY();
15857             s.x = xy[0];
15858             s.y = xy[1];
15859         }
15860         return s;
15861     },
15862
15863     /**
15864      * Sets the current box measurements of the component's underlying element.
15865      * @param {Object} box An object in the format {x, y, width, height}
15866      * @returns {Roo.BoxComponent} this
15867      */
15868     updateBox : function(box){
15869         this.setSize(box.width, box.height);
15870         this.setPagePosition(box.x, box.y);
15871         return this;
15872     },
15873
15874     // protected
15875     getResizeEl : function(){
15876         return this.resizeEl || this.el;
15877     },
15878
15879     // protected
15880     getPositionEl : function(){
15881         return this.positionEl || this.el;
15882     },
15883
15884     /**
15885      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15886      * This method fires the move event.
15887      * @param {Number} left The new left
15888      * @param {Number} top The new top
15889      * @returns {Roo.BoxComponent} this
15890      */
15891     setPosition : function(x, y){
15892         this.x = x;
15893         this.y = y;
15894         if(!this.boxReady){
15895             return this;
15896         }
15897         var adj = this.adjustPosition(x, y);
15898         var ax = adj.x, ay = adj.y;
15899
15900         var el = this.getPositionEl();
15901         if(ax !== undefined || ay !== undefined){
15902             if(ax !== undefined && ay !== undefined){
15903                 el.setLeftTop(ax, ay);
15904             }else if(ax !== undefined){
15905                 el.setLeft(ax);
15906             }else if(ay !== undefined){
15907                 el.setTop(ay);
15908             }
15909             this.onPosition(ax, ay);
15910             this.fireEvent('move', this, ax, ay);
15911         }
15912         return this;
15913     },
15914
15915     /**
15916      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15917      * This method fires the move event.
15918      * @param {Number} x The new x position
15919      * @param {Number} y The new y position
15920      * @returns {Roo.BoxComponent} this
15921      */
15922     setPagePosition : function(x, y){
15923         this.pageX = x;
15924         this.pageY = y;
15925         if(!this.boxReady){
15926             return;
15927         }
15928         if(x === undefined || y === undefined){ // cannot translate undefined points
15929             return;
15930         }
15931         var p = this.el.translatePoints(x, y);
15932         this.setPosition(p.left, p.top);
15933         return this;
15934     },
15935
15936     // private
15937     onRender : function(ct, position){
15938         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
15939         if(this.resizeEl){
15940             this.resizeEl = Roo.get(this.resizeEl);
15941         }
15942         if(this.positionEl){
15943             this.positionEl = Roo.get(this.positionEl);
15944         }
15945     },
15946
15947     // private
15948     afterRender : function(){
15949         Roo.BoxComponent.superclass.afterRender.call(this);
15950         this.boxReady = true;
15951         this.setSize(this.width, this.height);
15952         if(this.x || this.y){
15953             this.setPosition(this.x, this.y);
15954         }
15955         if(this.pageX || this.pageY){
15956             this.setPagePosition(this.pageX, this.pageY);
15957         }
15958     },
15959
15960     /**
15961      * Force the component's size to recalculate based on the underlying element's current height and width.
15962      * @returns {Roo.BoxComponent} this
15963      */
15964     syncSize : function(){
15965         delete this.lastSize;
15966         this.setSize(this.el.getWidth(), this.el.getHeight());
15967         return this;
15968     },
15969
15970     /**
15971      * Called after the component is resized, this method is empty by default but can be implemented by any
15972      * subclass that needs to perform custom logic after a resize occurs.
15973      * @param {Number} adjWidth The box-adjusted width that was set
15974      * @param {Number} adjHeight The box-adjusted height that was set
15975      * @param {Number} rawWidth The width that was originally specified
15976      * @param {Number} rawHeight The height that was originally specified
15977      */
15978     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
15979
15980     },
15981
15982     /**
15983      * Called after the component is moved, this method is empty by default but can be implemented by any
15984      * subclass that needs to perform custom logic after a move occurs.
15985      * @param {Number} x The new x position
15986      * @param {Number} y The new y position
15987      */
15988     onPosition : function(x, y){
15989
15990     },
15991
15992     // private
15993     adjustSize : function(w, h){
15994         if(this.autoWidth){
15995             w = 'auto';
15996         }
15997         if(this.autoHeight){
15998             h = 'auto';
15999         }
16000         return {width : w, height: h};
16001     },
16002
16003     // private
16004     adjustPosition : function(x, y){
16005         return {x : x, y: y};
16006     }
16007 });/*
16008  * Original code for Roojs - LGPL
16009  * <script type="text/javascript">
16010  */
16011  
16012 /**
16013  * @class Roo.XComponent
16014  * A delayed Element creator...
16015  * Or a way to group chunks of interface together.
16016  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16017  *  used in conjunction with XComponent.build() it will create an instance of each element,
16018  *  then call addxtype() to build the User interface.
16019  * 
16020  * Mypart.xyx = new Roo.XComponent({
16021
16022     parent : 'Mypart.xyz', // empty == document.element.!!
16023     order : '001',
16024     name : 'xxxx'
16025     region : 'xxxx'
16026     disabled : function() {} 
16027      
16028     tree : function() { // return an tree of xtype declared components
16029         var MODULE = this;
16030         return 
16031         {
16032             xtype : 'NestedLayoutPanel',
16033             // technicall
16034         }
16035      ]
16036  *})
16037  *
16038  *
16039  * It can be used to build a big heiracy, with parent etc.
16040  * or you can just use this to render a single compoent to a dom element
16041  * MYPART.render(Roo.Element | String(id) | dom_element )
16042  *
16043  *
16044  * Usage patterns.
16045  *
16046  * Classic Roo
16047  *
16048  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16049  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16050  *
16051  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16052  *
16053  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16054  * - if mulitple topModules exist, the last one is defined as the top module.
16055  *
16056  * Embeded Roo
16057  * 
16058  * When the top level or multiple modules are to embedded into a existing HTML page,
16059  * the parent element can container '#id' of the element where the module will be drawn.
16060  *
16061  * Bootstrap Roo
16062  *
16063  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16064  * it relies more on a include mechanism, where sub modules are included into an outer page.
16065  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16066  * 
16067  * Bootstrap Roo Included elements
16068  *
16069  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16070  * hence confusing the component builder as it thinks there are multiple top level elements. 
16071  *
16072  * String Over-ride & Translations
16073  *
16074  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16075  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16076  * are needed. @see Roo.XComponent.overlayString  
16077  * 
16078  * 
16079  * 
16080  * @extends Roo.util.Observable
16081  * @constructor
16082  * @param cfg {Object} configuration of component
16083  * 
16084  */
16085 Roo.XComponent = function(cfg) {
16086     Roo.apply(this, cfg);
16087     this.addEvents({ 
16088         /**
16089              * @event built
16090              * Fires when this the componnt is built
16091              * @param {Roo.XComponent} c the component
16092              */
16093         'built' : true
16094         
16095     });
16096     this.region = this.region || 'center'; // default..
16097     Roo.XComponent.register(this);
16098     this.modules = false;
16099     this.el = false; // where the layout goes..
16100     
16101     
16102 }
16103 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16104     /**
16105      * @property el
16106      * The created element (with Roo.factory())
16107      * @type {Roo.Layout}
16108      */
16109     el  : false,
16110     
16111     /**
16112      * @property el
16113      * for BC  - use el in new code
16114      * @type {Roo.Layout}
16115      */
16116     panel : false,
16117     
16118     /**
16119      * @property layout
16120      * for BC  - use el in new code
16121      * @type {Roo.Layout}
16122      */
16123     layout : false,
16124     
16125      /**
16126      * @cfg {Function|boolean} disabled
16127      * If this module is disabled by some rule, return true from the funtion
16128      */
16129     disabled : false,
16130     
16131     /**
16132      * @cfg {String} parent 
16133      * Name of parent element which it get xtype added to..
16134      */
16135     parent: false,
16136     
16137     /**
16138      * @cfg {String} order
16139      * Used to set the order in which elements are created (usefull for multiple tabs)
16140      */
16141     
16142     order : false,
16143     /**
16144      * @cfg {String} name
16145      * String to display while loading.
16146      */
16147     name : false,
16148     /**
16149      * @cfg {String} region
16150      * Region to render component to (defaults to center)
16151      */
16152     region : 'center',
16153     
16154     /**
16155      * @cfg {Array} items
16156      * A single item array - the first element is the root of the tree..
16157      * It's done this way to stay compatible with the Xtype system...
16158      */
16159     items : false,
16160     
16161     /**
16162      * @property _tree
16163      * The method that retuns the tree of parts that make up this compoennt 
16164      * @type {function}
16165      */
16166     _tree  : false,
16167     
16168      /**
16169      * render
16170      * render element to dom or tree
16171      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16172      */
16173     
16174     render : function(el)
16175     {
16176         
16177         el = el || false;
16178         var hp = this.parent ? 1 : 0;
16179         Roo.debug &&  Roo.log(this);
16180         
16181         var tree = this._tree ? this._tree() : this.tree();
16182
16183         
16184         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16185             // if parent is a '#.....' string, then let's use that..
16186             var ename = this.parent.substr(1);
16187             this.parent = false;
16188             Roo.debug && Roo.log(ename);
16189             switch (ename) {
16190                 case 'bootstrap-body':
16191                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16192                         // this is the BorderLayout standard?
16193                        this.parent = { el : true };
16194                        break;
16195                     }
16196                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16197                         // need to insert stuff...
16198                         this.parent =  {
16199                              el : new Roo.bootstrap.layout.Border({
16200                                  el : document.body, 
16201                      
16202                                  center: {
16203                                     titlebar: false,
16204                                     autoScroll:false,
16205                                     closeOnTab: true,
16206                                     tabPosition: 'top',
16207                                       //resizeTabs: true,
16208                                     alwaysShowTabs: true,
16209                                     hideTabs: false
16210                                      //minTabWidth: 140
16211                                  }
16212                              })
16213                         
16214                          };
16215                          break;
16216                     }
16217                          
16218                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16219                         this.parent = { el :  new  Roo.bootstrap.Body() };
16220                         Roo.debug && Roo.log("setting el to doc body");
16221                          
16222                     } else {
16223                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16224                     }
16225                     break;
16226                 case 'bootstrap':
16227                     this.parent = { el : true};
16228                     // fall through
16229                 default:
16230                     el = Roo.get(ename);
16231                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16232                         this.parent = { el : true};
16233                     }
16234                     
16235                     break;
16236             }
16237                 
16238             
16239             if (!el && !this.parent) {
16240                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16241                 return;
16242             }
16243         }
16244         
16245         Roo.debug && Roo.log("EL:");
16246         Roo.debug && Roo.log(el);
16247         Roo.debug && Roo.log("this.parent.el:");
16248         Roo.debug && Roo.log(this.parent.el);
16249         
16250
16251         // altertive root elements ??? - we need a better way to indicate these.
16252         var is_alt = Roo.XComponent.is_alt ||
16253                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16254                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16255                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16256         
16257         
16258         
16259         if (!this.parent && is_alt) {
16260             //el = Roo.get(document.body);
16261             this.parent = { el : true };
16262         }
16263             
16264             
16265         
16266         if (!this.parent) {
16267             
16268             Roo.debug && Roo.log("no parent - creating one");
16269             
16270             el = el ? Roo.get(el) : false;      
16271             
16272             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16273                 
16274                 this.parent =  {
16275                     el : new Roo.bootstrap.layout.Border({
16276                         el: el || document.body,
16277                     
16278                         center: {
16279                             titlebar: false,
16280                             autoScroll:false,
16281                             closeOnTab: true,
16282                             tabPosition: 'top',
16283                              //resizeTabs: true,
16284                             alwaysShowTabs: false,
16285                             hideTabs: true,
16286                             minTabWidth: 140,
16287                             overflow: 'visible'
16288                          }
16289                      })
16290                 };
16291             } else {
16292             
16293                 // it's a top level one..
16294                 this.parent =  {
16295                     el : new Roo.BorderLayout(el || document.body, {
16296                         center: {
16297                             titlebar: false,
16298                             autoScroll:false,
16299                             closeOnTab: true,
16300                             tabPosition: 'top',
16301                              //resizeTabs: true,
16302                             alwaysShowTabs: el && hp? false :  true,
16303                             hideTabs: el || !hp ? true :  false,
16304                             minTabWidth: 140
16305                          }
16306                     })
16307                 };
16308             }
16309         }
16310         
16311         if (!this.parent.el) {
16312                 // probably an old style ctor, which has been disabled.
16313                 return;
16314
16315         }
16316                 // The 'tree' method is  '_tree now' 
16317             
16318         tree.region = tree.region || this.region;
16319         var is_body = false;
16320         if (this.parent.el === true) {
16321             // bootstrap... - body..
16322             if (el) {
16323                 tree.el = el;
16324             }
16325             this.parent.el = Roo.factory(tree);
16326             is_body = true;
16327         }
16328         
16329         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16330         this.fireEvent('built', this);
16331         
16332         this.panel = this.el;
16333         this.layout = this.panel.layout;
16334         this.parentLayout = this.parent.layout  || false;  
16335          
16336     }
16337     
16338 });
16339
16340 Roo.apply(Roo.XComponent, {
16341     /**
16342      * @property  hideProgress
16343      * true to disable the building progress bar.. usefull on single page renders.
16344      * @type Boolean
16345      */
16346     hideProgress : false,
16347     /**
16348      * @property  buildCompleted
16349      * True when the builder has completed building the interface.
16350      * @type Boolean
16351      */
16352     buildCompleted : false,
16353      
16354     /**
16355      * @property  topModule
16356      * the upper most module - uses document.element as it's constructor.
16357      * @type Object
16358      */
16359      
16360     topModule  : false,
16361       
16362     /**
16363      * @property  modules
16364      * array of modules to be created by registration system.
16365      * @type {Array} of Roo.XComponent
16366      */
16367     
16368     modules : [],
16369     /**
16370      * @property  elmodules
16371      * array of modules to be created by which use #ID 
16372      * @type {Array} of Roo.XComponent
16373      */
16374      
16375     elmodules : [],
16376
16377      /**
16378      * @property  is_alt
16379      * Is an alternative Root - normally used by bootstrap or other systems,
16380      *    where the top element in the tree can wrap 'body' 
16381      * @type {boolean}  (default false)
16382      */
16383      
16384     is_alt : false,
16385     /**
16386      * @property  build_from_html
16387      * Build elements from html - used by bootstrap HTML stuff 
16388      *    - this is cleared after build is completed
16389      * @type {boolean}    (default false)
16390      */
16391      
16392     build_from_html : false,
16393     /**
16394      * Register components to be built later.
16395      *
16396      * This solves the following issues
16397      * - Building is not done on page load, but after an authentication process has occured.
16398      * - Interface elements are registered on page load
16399      * - Parent Interface elements may not be loaded before child, so this handles that..
16400      * 
16401      *
16402      * example:
16403      * 
16404      * MyApp.register({
16405           order : '000001',
16406           module : 'Pman.Tab.projectMgr',
16407           region : 'center',
16408           parent : 'Pman.layout',
16409           disabled : false,  // or use a function..
16410         })
16411      
16412      * * @param {Object} details about module
16413      */
16414     register : function(obj) {
16415                 
16416         Roo.XComponent.event.fireEvent('register', obj);
16417         switch(typeof(obj.disabled) ) {
16418                 
16419             case 'undefined':
16420                 break;
16421             
16422             case 'function':
16423                 if ( obj.disabled() ) {
16424                         return;
16425                 }
16426                 break;
16427             
16428             default:
16429                 if (obj.disabled || obj.region == '#disabled') {
16430                         return;
16431                 }
16432                 break;
16433         }
16434                 
16435         this.modules.push(obj);
16436          
16437     },
16438     /**
16439      * convert a string to an object..
16440      * eg. 'AAA.BBB' -> finds AAA.BBB
16441
16442      */
16443     
16444     toObject : function(str)
16445     {
16446         if (!str || typeof(str) == 'object') {
16447             return str;
16448         }
16449         if (str.substring(0,1) == '#') {
16450             return str;
16451         }
16452
16453         var ar = str.split('.');
16454         var rt, o;
16455         rt = ar.shift();
16456             /** eval:var:o */
16457         try {
16458             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16459         } catch (e) {
16460             throw "Module not found : " + str;
16461         }
16462         
16463         if (o === false) {
16464             throw "Module not found : " + str;
16465         }
16466         Roo.each(ar, function(e) {
16467             if (typeof(o[e]) == 'undefined') {
16468                 throw "Module not found : " + str;
16469             }
16470             o = o[e];
16471         });
16472         
16473         return o;
16474         
16475     },
16476     
16477     
16478     /**
16479      * move modules into their correct place in the tree..
16480      * 
16481      */
16482     preBuild : function ()
16483     {
16484         var _t = this;
16485         Roo.each(this.modules , function (obj)
16486         {
16487             Roo.XComponent.event.fireEvent('beforebuild', obj);
16488             
16489             var opar = obj.parent;
16490             try { 
16491                 obj.parent = this.toObject(opar);
16492             } catch(e) {
16493                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
16494                 return;
16495             }
16496             
16497             if (!obj.parent) {
16498                 Roo.debug && Roo.log("GOT top level module");
16499                 Roo.debug && Roo.log(obj);
16500                 obj.modules = new Roo.util.MixedCollection(false, 
16501                     function(o) { return o.order + '' }
16502                 );
16503                 this.topModule = obj;
16504                 return;
16505             }
16506                         // parent is a string (usually a dom element name..)
16507             if (typeof(obj.parent) == 'string') {
16508                 this.elmodules.push(obj);
16509                 return;
16510             }
16511             if (obj.parent.constructor != Roo.XComponent) {
16512                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
16513             }
16514             if (!obj.parent.modules) {
16515                 obj.parent.modules = new Roo.util.MixedCollection(false, 
16516                     function(o) { return o.order + '' }
16517                 );
16518             }
16519             if (obj.parent.disabled) {
16520                 obj.disabled = true;
16521             }
16522             obj.parent.modules.add(obj);
16523         }, this);
16524     },
16525     
16526      /**
16527      * make a list of modules to build.
16528      * @return {Array} list of modules. 
16529      */ 
16530     
16531     buildOrder : function()
16532     {
16533         var _this = this;
16534         var cmp = function(a,b) {   
16535             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
16536         };
16537         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
16538             throw "No top level modules to build";
16539         }
16540         
16541         // make a flat list in order of modules to build.
16542         var mods = this.topModule ? [ this.topModule ] : [];
16543                 
16544         
16545         // elmodules (is a list of DOM based modules )
16546         Roo.each(this.elmodules, function(e) {
16547             mods.push(e);
16548             if (!this.topModule &&
16549                 typeof(e.parent) == 'string' &&
16550                 e.parent.substring(0,1) == '#' &&
16551                 Roo.get(e.parent.substr(1))
16552                ) {
16553                 
16554                 _this.topModule = e;
16555             }
16556             
16557         });
16558
16559         
16560         // add modules to their parents..
16561         var addMod = function(m) {
16562             Roo.debug && Roo.log("build Order: add: " + m.name);
16563                 
16564             mods.push(m);
16565             if (m.modules && !m.disabled) {
16566                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
16567                 m.modules.keySort('ASC',  cmp );
16568                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
16569     
16570                 m.modules.each(addMod);
16571             } else {
16572                 Roo.debug && Roo.log("build Order: no child modules");
16573             }
16574             // not sure if this is used any more..
16575             if (m.finalize) {
16576                 m.finalize.name = m.name + " (clean up) ";
16577                 mods.push(m.finalize);
16578             }
16579             
16580         }
16581         if (this.topModule && this.topModule.modules) { 
16582             this.topModule.modules.keySort('ASC',  cmp );
16583             this.topModule.modules.each(addMod);
16584         } 
16585         return mods;
16586     },
16587     
16588      /**
16589      * Build the registered modules.
16590      * @param {Object} parent element.
16591      * @param {Function} optional method to call after module has been added.
16592      * 
16593      */ 
16594    
16595     build : function(opts) 
16596     {
16597         
16598         if (typeof(opts) != 'undefined') {
16599             Roo.apply(this,opts);
16600         }
16601         
16602         this.preBuild();
16603         var mods = this.buildOrder();
16604       
16605         //this.allmods = mods;
16606         //Roo.debug && Roo.log(mods);
16607         //return;
16608         if (!mods.length) { // should not happen
16609             throw "NO modules!!!";
16610         }
16611         
16612         
16613         var msg = "Building Interface...";
16614         // flash it up as modal - so we store the mask!?
16615         if (!this.hideProgress && Roo.MessageBox) {
16616             Roo.MessageBox.show({ title: 'loading' });
16617             Roo.MessageBox.show({
16618                title: "Please wait...",
16619                msg: msg,
16620                width:450,
16621                progress:true,
16622                buttons : false,
16623                closable:false,
16624                modal: false
16625               
16626             });
16627         }
16628         var total = mods.length;
16629         
16630         var _this = this;
16631         var progressRun = function() {
16632             if (!mods.length) {
16633                 Roo.debug && Roo.log('hide?');
16634                 if (!this.hideProgress && Roo.MessageBox) {
16635                     Roo.MessageBox.hide();
16636                 }
16637                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
16638                 
16639                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
16640                 
16641                 // THE END...
16642                 return false;   
16643             }
16644             
16645             var m = mods.shift();
16646             
16647             
16648             Roo.debug && Roo.log(m);
16649             // not sure if this is supported any more.. - modules that are are just function
16650             if (typeof(m) == 'function') { 
16651                 m.call(this);
16652                 return progressRun.defer(10, _this);
16653             } 
16654             
16655             
16656             msg = "Building Interface " + (total  - mods.length) + 
16657                     " of " + total + 
16658                     (m.name ? (' - ' + m.name) : '');
16659                         Roo.debug && Roo.log(msg);
16660             if (!_this.hideProgress &&  Roo.MessageBox) { 
16661                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
16662             }
16663             
16664          
16665             // is the module disabled?
16666             var disabled = (typeof(m.disabled) == 'function') ?
16667                 m.disabled.call(m.module.disabled) : m.disabled;    
16668             
16669             
16670             if (disabled) {
16671                 return progressRun(); // we do not update the display!
16672             }
16673             
16674             // now build 
16675             
16676                         
16677                         
16678             m.render();
16679             // it's 10 on top level, and 1 on others??? why...
16680             return progressRun.defer(10, _this);
16681              
16682         }
16683         progressRun.defer(1, _this);
16684      
16685         
16686         
16687     },
16688     /**
16689      * Overlay a set of modified strings onto a component
16690      * This is dependant on our builder exporting the strings and 'named strings' elements.
16691      * 
16692      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
16693      * @param {Object} associative array of 'named' string and it's new value.
16694      * 
16695      */
16696         overlayStrings : function( component, strings )
16697     {
16698         if (typeof(component['_named_strings']) == 'undefined') {
16699             throw "ERROR: component does not have _named_strings";
16700         }
16701         for ( var k in strings ) {
16702             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
16703             if (md !== false) {
16704                 component['_strings'][md] = strings[k];
16705             } else {
16706                 Roo.log('could not find named string: ' + k + ' in');
16707                 Roo.log(component);
16708             }
16709             
16710         }
16711         
16712     },
16713     
16714         
16715         /**
16716          * Event Object.
16717          *
16718          *
16719          */
16720         event: false, 
16721     /**
16722          * wrapper for event.on - aliased later..  
16723          * Typically use to register a event handler for register:
16724          *
16725          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
16726          *
16727          */
16728     on : false
16729    
16730     
16731     
16732 });
16733
16734 Roo.XComponent.event = new Roo.util.Observable({
16735                 events : { 
16736                         /**
16737                          * @event register
16738                          * Fires when an Component is registered,
16739                          * set the disable property on the Component to stop registration.
16740                          * @param {Roo.XComponent} c the component being registerd.
16741                          * 
16742                          */
16743                         'register' : true,
16744             /**
16745                          * @event beforebuild
16746                          * Fires before each Component is built
16747                          * can be used to apply permissions.
16748                          * @param {Roo.XComponent} c the component being registerd.
16749                          * 
16750                          */
16751                         'beforebuild' : true,
16752                         /**
16753                          * @event buildcomplete
16754                          * Fires on the top level element when all elements have been built
16755                          * @param {Roo.XComponent} the top level component.
16756                          */
16757                         'buildcomplete' : true
16758                         
16759                 }
16760 });
16761
16762 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
16763  //
16764  /**
16765  * marked - a markdown parser
16766  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
16767  * https://github.com/chjj/marked
16768  */
16769
16770
16771 /**
16772  *
16773  * Roo.Markdown - is a very crude wrapper around marked..
16774  *
16775  * usage:
16776  * 
16777  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
16778  * 
16779  * Note: move the sample code to the bottom of this
16780  * file before uncommenting it.
16781  *
16782  */
16783
16784 Roo.Markdown = {};
16785 Roo.Markdown.toHtml = function(text) {
16786     
16787     var c = new Roo.Markdown.marked.setOptions({
16788             renderer: new Roo.Markdown.marked.Renderer(),
16789             gfm: true,
16790             tables: true,
16791             breaks: false,
16792             pedantic: false,
16793             sanitize: false,
16794             smartLists: true,
16795             smartypants: false
16796           });
16797     // A FEW HACKS!!?
16798     
16799     text = text.replace(/\\\n/g,' ');
16800     return Roo.Markdown.marked(text);
16801 };
16802 //
16803 // converter
16804 //
16805 // Wraps all "globals" so that the only thing
16806 // exposed is makeHtml().
16807 //
16808 (function() {
16809     
16810      /**
16811          * eval:var:escape
16812          * eval:var:unescape
16813          * eval:var:replace
16814          */
16815       
16816     /**
16817      * Helpers
16818      */
16819     
16820     var escape = function (html, encode) {
16821       return html
16822         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
16823         .replace(/</g, '&lt;')
16824         .replace(/>/g, '&gt;')
16825         .replace(/"/g, '&quot;')
16826         .replace(/'/g, '&#39;');
16827     }
16828     
16829     var unescape = function (html) {
16830         // explicitly match decimal, hex, and named HTML entities 
16831       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
16832         n = n.toLowerCase();
16833         if (n === 'colon') { return ':'; }
16834         if (n.charAt(0) === '#') {
16835           return n.charAt(1) === 'x'
16836             ? String.fromCharCode(parseInt(n.substring(2), 16))
16837             : String.fromCharCode(+n.substring(1));
16838         }
16839         return '';
16840       });
16841     }
16842     
16843     var replace = function (regex, opt) {
16844       regex = regex.source;
16845       opt = opt || '';
16846       return function self(name, val) {
16847         if (!name) { return new RegExp(regex, opt); }
16848         val = val.source || val;
16849         val = val.replace(/(^|[^\[])\^/g, '$1');
16850         regex = regex.replace(name, val);
16851         return self;
16852       };
16853     }
16854
16855
16856          /**
16857          * eval:var:noop
16858     */
16859     var noop = function () {}
16860     noop.exec = noop;
16861     
16862          /**
16863          * eval:var:merge
16864     */
16865     var merge = function (obj) {
16866       var i = 1
16867         , target
16868         , key;
16869     
16870       for (; i < arguments.length; i++) {
16871         target = arguments[i];
16872         for (key in target) {
16873           if (Object.prototype.hasOwnProperty.call(target, key)) {
16874             obj[key] = target[key];
16875           }
16876         }
16877       }
16878     
16879       return obj;
16880     }
16881     
16882     
16883     /**
16884      * Block-Level Grammar
16885      */
16886     
16887     
16888     
16889     
16890     var block = {
16891       newline: /^\n+/,
16892       code: /^( {4}[^\n]+\n*)+/,
16893       fences: noop,
16894       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
16895       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
16896       nptable: noop,
16897       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
16898       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
16899       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
16900       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
16901       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
16902       table: noop,
16903       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
16904       text: /^[^\n]+/
16905     };
16906     
16907     block.bullet = /(?:[*+-]|\d+\.)/;
16908     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
16909     block.item = replace(block.item, 'gm')
16910       (/bull/g, block.bullet)
16911       ();
16912     
16913     block.list = replace(block.list)
16914       (/bull/g, block.bullet)
16915       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
16916       ('def', '\\n+(?=' + block.def.source + ')')
16917       ();
16918     
16919     block.blockquote = replace(block.blockquote)
16920       ('def', block.def)
16921       ();
16922     
16923     block._tag = '(?!(?:'
16924       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
16925       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
16926       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
16927     
16928     block.html = replace(block.html)
16929       ('comment', /<!--[\s\S]*?-->/)
16930       ('closed', /<(tag)[\s\S]+?<\/\1>/)
16931       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
16932       (/tag/g, block._tag)
16933       ();
16934     
16935     block.paragraph = replace(block.paragraph)
16936       ('hr', block.hr)
16937       ('heading', block.heading)
16938       ('lheading', block.lheading)
16939       ('blockquote', block.blockquote)
16940       ('tag', '<' + block._tag)
16941       ('def', block.def)
16942       ();
16943     
16944     /**
16945      * Normal Block Grammar
16946      */
16947     
16948     block.normal = merge({}, block);
16949     
16950     /**
16951      * GFM Block Grammar
16952      */
16953     
16954     block.gfm = merge({}, block.normal, {
16955       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
16956       paragraph: /^/,
16957       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
16958     });
16959     
16960     block.gfm.paragraph = replace(block.paragraph)
16961       ('(?!', '(?!'
16962         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
16963         + block.list.source.replace('\\1', '\\3') + '|')
16964       ();
16965     
16966     /**
16967      * GFM + Tables Block Grammar
16968      */
16969     
16970     block.tables = merge({}, block.gfm, {
16971       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
16972       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
16973     });
16974     
16975     /**
16976      * Block Lexer
16977      */
16978     
16979     var Lexer = function (options) {
16980       this.tokens = [];
16981       this.tokens.links = {};
16982       this.options = options || marked.defaults;
16983       this.rules = block.normal;
16984     
16985       if (this.options.gfm) {
16986         if (this.options.tables) {
16987           this.rules = block.tables;
16988         } else {
16989           this.rules = block.gfm;
16990         }
16991       }
16992     }
16993     
16994     /**
16995      * Expose Block Rules
16996      */
16997     
16998     Lexer.rules = block;
16999     
17000     /**
17001      * Static Lex Method
17002      */
17003     
17004     Lexer.lex = function(src, options) {
17005       var lexer = new Lexer(options);
17006       return lexer.lex(src);
17007     };
17008     
17009     /**
17010      * Preprocessing
17011      */
17012     
17013     Lexer.prototype.lex = function(src) {
17014       src = src
17015         .replace(/\r\n|\r/g, '\n')
17016         .replace(/\t/g, '    ')
17017         .replace(/\u00a0/g, ' ')
17018         .replace(/\u2424/g, '\n');
17019     
17020       return this.token(src, true);
17021     };
17022     
17023     /**
17024      * Lexing
17025      */
17026     
17027     Lexer.prototype.token = function(src, top, bq) {
17028       var src = src.replace(/^ +$/gm, '')
17029         , next
17030         , loose
17031         , cap
17032         , bull
17033         , b
17034         , item
17035         , space
17036         , i
17037         , l;
17038     
17039       while (src) {
17040         // newline
17041         if (cap = this.rules.newline.exec(src)) {
17042           src = src.substring(cap[0].length);
17043           if (cap[0].length > 1) {
17044             this.tokens.push({
17045               type: 'space'
17046             });
17047           }
17048         }
17049     
17050         // code
17051         if (cap = this.rules.code.exec(src)) {
17052           src = src.substring(cap[0].length);
17053           cap = cap[0].replace(/^ {4}/gm, '');
17054           this.tokens.push({
17055             type: 'code',
17056             text: !this.options.pedantic
17057               ? cap.replace(/\n+$/, '')
17058               : cap
17059           });
17060           continue;
17061         }
17062     
17063         // fences (gfm)
17064         if (cap = this.rules.fences.exec(src)) {
17065           src = src.substring(cap[0].length);
17066           this.tokens.push({
17067             type: 'code',
17068             lang: cap[2],
17069             text: cap[3] || ''
17070           });
17071           continue;
17072         }
17073     
17074         // heading
17075         if (cap = this.rules.heading.exec(src)) {
17076           src = src.substring(cap[0].length);
17077           this.tokens.push({
17078             type: 'heading',
17079             depth: cap[1].length,
17080             text: cap[2]
17081           });
17082           continue;
17083         }
17084     
17085         // table no leading pipe (gfm)
17086         if (top && (cap = this.rules.nptable.exec(src))) {
17087           src = src.substring(cap[0].length);
17088     
17089           item = {
17090             type: 'table',
17091             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17092             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17093             cells: cap[3].replace(/\n$/, '').split('\n')
17094           };
17095     
17096           for (i = 0; i < item.align.length; i++) {
17097             if (/^ *-+: *$/.test(item.align[i])) {
17098               item.align[i] = 'right';
17099             } else if (/^ *:-+: *$/.test(item.align[i])) {
17100               item.align[i] = 'center';
17101             } else if (/^ *:-+ *$/.test(item.align[i])) {
17102               item.align[i] = 'left';
17103             } else {
17104               item.align[i] = null;
17105             }
17106           }
17107     
17108           for (i = 0; i < item.cells.length; i++) {
17109             item.cells[i] = item.cells[i].split(/ *\| */);
17110           }
17111     
17112           this.tokens.push(item);
17113     
17114           continue;
17115         }
17116     
17117         // lheading
17118         if (cap = this.rules.lheading.exec(src)) {
17119           src = src.substring(cap[0].length);
17120           this.tokens.push({
17121             type: 'heading',
17122             depth: cap[2] === '=' ? 1 : 2,
17123             text: cap[1]
17124           });
17125           continue;
17126         }
17127     
17128         // hr
17129         if (cap = this.rules.hr.exec(src)) {
17130           src = src.substring(cap[0].length);
17131           this.tokens.push({
17132             type: 'hr'
17133           });
17134           continue;
17135         }
17136     
17137         // blockquote
17138         if (cap = this.rules.blockquote.exec(src)) {
17139           src = src.substring(cap[0].length);
17140     
17141           this.tokens.push({
17142             type: 'blockquote_start'
17143           });
17144     
17145           cap = cap[0].replace(/^ *> ?/gm, '');
17146     
17147           // Pass `top` to keep the current
17148           // "toplevel" state. This is exactly
17149           // how markdown.pl works.
17150           this.token(cap, top, true);
17151     
17152           this.tokens.push({
17153             type: 'blockquote_end'
17154           });
17155     
17156           continue;
17157         }
17158     
17159         // list
17160         if (cap = this.rules.list.exec(src)) {
17161           src = src.substring(cap[0].length);
17162           bull = cap[2];
17163     
17164           this.tokens.push({
17165             type: 'list_start',
17166             ordered: bull.length > 1
17167           });
17168     
17169           // Get each top-level item.
17170           cap = cap[0].match(this.rules.item);
17171     
17172           next = false;
17173           l = cap.length;
17174           i = 0;
17175     
17176           for (; i < l; i++) {
17177             item = cap[i];
17178     
17179             // Remove the list item's bullet
17180             // so it is seen as the next token.
17181             space = item.length;
17182             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17183     
17184             // Outdent whatever the
17185             // list item contains. Hacky.
17186             if (~item.indexOf('\n ')) {
17187               space -= item.length;
17188               item = !this.options.pedantic
17189                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17190                 : item.replace(/^ {1,4}/gm, '');
17191             }
17192     
17193             // Determine whether the next list item belongs here.
17194             // Backpedal if it does not belong in this list.
17195             if (this.options.smartLists && i !== l - 1) {
17196               b = block.bullet.exec(cap[i + 1])[0];
17197               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17198                 src = cap.slice(i + 1).join('\n') + src;
17199                 i = l - 1;
17200               }
17201             }
17202     
17203             // Determine whether item is loose or not.
17204             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17205             // for discount behavior.
17206             loose = next || /\n\n(?!\s*$)/.test(item);
17207             if (i !== l - 1) {
17208               next = item.charAt(item.length - 1) === '\n';
17209               if (!loose) { loose = next; }
17210             }
17211     
17212             this.tokens.push({
17213               type: loose
17214                 ? 'loose_item_start'
17215                 : 'list_item_start'
17216             });
17217     
17218             // Recurse.
17219             this.token(item, false, bq);
17220     
17221             this.tokens.push({
17222               type: 'list_item_end'
17223             });
17224           }
17225     
17226           this.tokens.push({
17227             type: 'list_end'
17228           });
17229     
17230           continue;
17231         }
17232     
17233         // html
17234         if (cap = this.rules.html.exec(src)) {
17235           src = src.substring(cap[0].length);
17236           this.tokens.push({
17237             type: this.options.sanitize
17238               ? 'paragraph'
17239               : 'html',
17240             pre: !this.options.sanitizer
17241               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17242             text: cap[0]
17243           });
17244           continue;
17245         }
17246     
17247         // def
17248         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17249           src = src.substring(cap[0].length);
17250           this.tokens.links[cap[1].toLowerCase()] = {
17251             href: cap[2],
17252             title: cap[3]
17253           };
17254           continue;
17255         }
17256     
17257         // table (gfm)
17258         if (top && (cap = this.rules.table.exec(src))) {
17259           src = src.substring(cap[0].length);
17260     
17261           item = {
17262             type: 'table',
17263             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17264             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17265             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17266           };
17267     
17268           for (i = 0; i < item.align.length; i++) {
17269             if (/^ *-+: *$/.test(item.align[i])) {
17270               item.align[i] = 'right';
17271             } else if (/^ *:-+: *$/.test(item.align[i])) {
17272               item.align[i] = 'center';
17273             } else if (/^ *:-+ *$/.test(item.align[i])) {
17274               item.align[i] = 'left';
17275             } else {
17276               item.align[i] = null;
17277             }
17278           }
17279     
17280           for (i = 0; i < item.cells.length; i++) {
17281             item.cells[i] = item.cells[i]
17282               .replace(/^ *\| *| *\| *$/g, '')
17283               .split(/ *\| */);
17284           }
17285     
17286           this.tokens.push(item);
17287     
17288           continue;
17289         }
17290     
17291         // top-level paragraph
17292         if (top && (cap = this.rules.paragraph.exec(src))) {
17293           src = src.substring(cap[0].length);
17294           this.tokens.push({
17295             type: 'paragraph',
17296             text: cap[1].charAt(cap[1].length - 1) === '\n'
17297               ? cap[1].slice(0, -1)
17298               : cap[1]
17299           });
17300           continue;
17301         }
17302     
17303         // text
17304         if (cap = this.rules.text.exec(src)) {
17305           // Top-level should never reach here.
17306           src = src.substring(cap[0].length);
17307           this.tokens.push({
17308             type: 'text',
17309             text: cap[0]
17310           });
17311           continue;
17312         }
17313     
17314         if (src) {
17315           throw new
17316             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17317         }
17318       }
17319     
17320       return this.tokens;
17321     };
17322     
17323     /**
17324      * Inline-Level Grammar
17325      */
17326     
17327     var inline = {
17328       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17329       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17330       url: noop,
17331       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17332       link: /^!?\[(inside)\]\(href\)/,
17333       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17334       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17335       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17336       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17337       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17338       br: /^ {2,}\n(?!\s*$)/,
17339       del: noop,
17340       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17341     };
17342     
17343     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17344     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17345     
17346     inline.link = replace(inline.link)
17347       ('inside', inline._inside)
17348       ('href', inline._href)
17349       ();
17350     
17351     inline.reflink = replace(inline.reflink)
17352       ('inside', inline._inside)
17353       ();
17354     
17355     /**
17356      * Normal Inline Grammar
17357      */
17358     
17359     inline.normal = merge({}, inline);
17360     
17361     /**
17362      * Pedantic Inline Grammar
17363      */
17364     
17365     inline.pedantic = merge({}, inline.normal, {
17366       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17367       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17368     });
17369     
17370     /**
17371      * GFM Inline Grammar
17372      */
17373     
17374     inline.gfm = merge({}, inline.normal, {
17375       escape: replace(inline.escape)('])', '~|])')(),
17376       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17377       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17378       text: replace(inline.text)
17379         (']|', '~]|')
17380         ('|', '|https?://|')
17381         ()
17382     });
17383     
17384     /**
17385      * GFM + Line Breaks Inline Grammar
17386      */
17387     
17388     inline.breaks = merge({}, inline.gfm, {
17389       br: replace(inline.br)('{2,}', '*')(),
17390       text: replace(inline.gfm.text)('{2,}', '*')()
17391     });
17392     
17393     /**
17394      * Inline Lexer & Compiler
17395      */
17396     
17397     var InlineLexer  = function (links, options) {
17398       this.options = options || marked.defaults;
17399       this.links = links;
17400       this.rules = inline.normal;
17401       this.renderer = this.options.renderer || new Renderer;
17402       this.renderer.options = this.options;
17403     
17404       if (!this.links) {
17405         throw new
17406           Error('Tokens array requires a `links` property.');
17407       }
17408     
17409       if (this.options.gfm) {
17410         if (this.options.breaks) {
17411           this.rules = inline.breaks;
17412         } else {
17413           this.rules = inline.gfm;
17414         }
17415       } else if (this.options.pedantic) {
17416         this.rules = inline.pedantic;
17417       }
17418     }
17419     
17420     /**
17421      * Expose Inline Rules
17422      */
17423     
17424     InlineLexer.rules = inline;
17425     
17426     /**
17427      * Static Lexing/Compiling Method
17428      */
17429     
17430     InlineLexer.output = function(src, links, options) {
17431       var inline = new InlineLexer(links, options);
17432       return inline.output(src);
17433     };
17434     
17435     /**
17436      * Lexing/Compiling
17437      */
17438     
17439     InlineLexer.prototype.output = function(src) {
17440       var out = ''
17441         , link
17442         , text
17443         , href
17444         , cap;
17445     
17446       while (src) {
17447         // escape
17448         if (cap = this.rules.escape.exec(src)) {
17449           src = src.substring(cap[0].length);
17450           out += cap[1];
17451           continue;
17452         }
17453     
17454         // autolink
17455         if (cap = this.rules.autolink.exec(src)) {
17456           src = src.substring(cap[0].length);
17457           if (cap[2] === '@') {
17458             text = cap[1].charAt(6) === ':'
17459               ? this.mangle(cap[1].substring(7))
17460               : this.mangle(cap[1]);
17461             href = this.mangle('mailto:') + text;
17462           } else {
17463             text = escape(cap[1]);
17464             href = text;
17465           }
17466           out += this.renderer.link(href, null, text);
17467           continue;
17468         }
17469     
17470         // url (gfm)
17471         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17472           src = src.substring(cap[0].length);
17473           text = escape(cap[1]);
17474           href = text;
17475           out += this.renderer.link(href, null, text);
17476           continue;
17477         }
17478     
17479         // tag
17480         if (cap = this.rules.tag.exec(src)) {
17481           if (!this.inLink && /^<a /i.test(cap[0])) {
17482             this.inLink = true;
17483           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
17484             this.inLink = false;
17485           }
17486           src = src.substring(cap[0].length);
17487           out += this.options.sanitize
17488             ? this.options.sanitizer
17489               ? this.options.sanitizer(cap[0])
17490               : escape(cap[0])
17491             : cap[0];
17492           continue;
17493         }
17494     
17495         // link
17496         if (cap = this.rules.link.exec(src)) {
17497           src = src.substring(cap[0].length);
17498           this.inLink = true;
17499           out += this.outputLink(cap, {
17500             href: cap[2],
17501             title: cap[3]
17502           });
17503           this.inLink = false;
17504           continue;
17505         }
17506     
17507         // reflink, nolink
17508         if ((cap = this.rules.reflink.exec(src))
17509             || (cap = this.rules.nolink.exec(src))) {
17510           src = src.substring(cap[0].length);
17511           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
17512           link = this.links[link.toLowerCase()];
17513           if (!link || !link.href) {
17514             out += cap[0].charAt(0);
17515             src = cap[0].substring(1) + src;
17516             continue;
17517           }
17518           this.inLink = true;
17519           out += this.outputLink(cap, link);
17520           this.inLink = false;
17521           continue;
17522         }
17523     
17524         // strong
17525         if (cap = this.rules.strong.exec(src)) {
17526           src = src.substring(cap[0].length);
17527           out += this.renderer.strong(this.output(cap[2] || cap[1]));
17528           continue;
17529         }
17530     
17531         // em
17532         if (cap = this.rules.em.exec(src)) {
17533           src = src.substring(cap[0].length);
17534           out += this.renderer.em(this.output(cap[2] || cap[1]));
17535           continue;
17536         }
17537     
17538         // code
17539         if (cap = this.rules.code.exec(src)) {
17540           src = src.substring(cap[0].length);
17541           out += this.renderer.codespan(escape(cap[2], true));
17542           continue;
17543         }
17544     
17545         // br
17546         if (cap = this.rules.br.exec(src)) {
17547           src = src.substring(cap[0].length);
17548           out += this.renderer.br();
17549           continue;
17550         }
17551     
17552         // del (gfm)
17553         if (cap = this.rules.del.exec(src)) {
17554           src = src.substring(cap[0].length);
17555           out += this.renderer.del(this.output(cap[1]));
17556           continue;
17557         }
17558     
17559         // text
17560         if (cap = this.rules.text.exec(src)) {
17561           src = src.substring(cap[0].length);
17562           out += this.renderer.text(escape(this.smartypants(cap[0])));
17563           continue;
17564         }
17565     
17566         if (src) {
17567           throw new
17568             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17569         }
17570       }
17571     
17572       return out;
17573     };
17574     
17575     /**
17576      * Compile Link
17577      */
17578     
17579     InlineLexer.prototype.outputLink = function(cap, link) {
17580       var href = escape(link.href)
17581         , title = link.title ? escape(link.title) : null;
17582     
17583       return cap[0].charAt(0) !== '!'
17584         ? this.renderer.link(href, title, this.output(cap[1]))
17585         : this.renderer.image(href, title, escape(cap[1]));
17586     };
17587     
17588     /**
17589      * Smartypants Transformations
17590      */
17591     
17592     InlineLexer.prototype.smartypants = function(text) {
17593       if (!this.options.smartypants)  { return text; }
17594       return text
17595         // em-dashes
17596         .replace(/---/g, '\u2014')
17597         // en-dashes
17598         .replace(/--/g, '\u2013')
17599         // opening singles
17600         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
17601         // closing singles & apostrophes
17602         .replace(/'/g, '\u2019')
17603         // opening doubles
17604         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
17605         // closing doubles
17606         .replace(/"/g, '\u201d')
17607         // ellipses
17608         .replace(/\.{3}/g, '\u2026');
17609     };
17610     
17611     /**
17612      * Mangle Links
17613      */
17614     
17615     InlineLexer.prototype.mangle = function(text) {
17616       if (!this.options.mangle) { return text; }
17617       var out = ''
17618         , l = text.length
17619         , i = 0
17620         , ch;
17621     
17622       for (; i < l; i++) {
17623         ch = text.charCodeAt(i);
17624         if (Math.random() > 0.5) {
17625           ch = 'x' + ch.toString(16);
17626         }
17627         out += '&#' + ch + ';';
17628       }
17629     
17630       return out;
17631     };
17632     
17633     /**
17634      * Renderer
17635      */
17636     
17637      /**
17638          * eval:var:Renderer
17639     */
17640     
17641     var Renderer   = function (options) {
17642       this.options = options || {};
17643     }
17644     
17645     Renderer.prototype.code = function(code, lang, escaped) {
17646       if (this.options.highlight) {
17647         var out = this.options.highlight(code, lang);
17648         if (out != null && out !== code) {
17649           escaped = true;
17650           code = out;
17651         }
17652       } else {
17653             // hack!!! - it's already escapeD?
17654             escaped = true;
17655       }
17656     
17657       if (!lang) {
17658         return '<pre><code>'
17659           + (escaped ? code : escape(code, true))
17660           + '\n</code></pre>';
17661       }
17662     
17663       return '<pre><code class="'
17664         + this.options.langPrefix
17665         + escape(lang, true)
17666         + '">'
17667         + (escaped ? code : escape(code, true))
17668         + '\n</code></pre>\n';
17669     };
17670     
17671     Renderer.prototype.blockquote = function(quote) {
17672       return '<blockquote>\n' + quote + '</blockquote>\n';
17673     };
17674     
17675     Renderer.prototype.html = function(html) {
17676       return html;
17677     };
17678     
17679     Renderer.prototype.heading = function(text, level, raw) {
17680       return '<h'
17681         + level
17682         + ' id="'
17683         + this.options.headerPrefix
17684         + raw.toLowerCase().replace(/[^\w]+/g, '-')
17685         + '">'
17686         + text
17687         + '</h'
17688         + level
17689         + '>\n';
17690     };
17691     
17692     Renderer.prototype.hr = function() {
17693       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
17694     };
17695     
17696     Renderer.prototype.list = function(body, ordered) {
17697       var type = ordered ? 'ol' : 'ul';
17698       return '<' + type + '>\n' + body + '</' + type + '>\n';
17699     };
17700     
17701     Renderer.prototype.listitem = function(text) {
17702       return '<li>' + text + '</li>\n';
17703     };
17704     
17705     Renderer.prototype.paragraph = function(text) {
17706       return '<p>' + text + '</p>\n';
17707     };
17708     
17709     Renderer.prototype.table = function(header, body) {
17710       return '<table class="table table-striped">\n'
17711         + '<thead>\n'
17712         + header
17713         + '</thead>\n'
17714         + '<tbody>\n'
17715         + body
17716         + '</tbody>\n'
17717         + '</table>\n';
17718     };
17719     
17720     Renderer.prototype.tablerow = function(content) {
17721       return '<tr>\n' + content + '</tr>\n';
17722     };
17723     
17724     Renderer.prototype.tablecell = function(content, flags) {
17725       var type = flags.header ? 'th' : 'td';
17726       var tag = flags.align
17727         ? '<' + type + ' style="text-align:' + flags.align + '">'
17728         : '<' + type + '>';
17729       return tag + content + '</' + type + '>\n';
17730     };
17731     
17732     // span level renderer
17733     Renderer.prototype.strong = function(text) {
17734       return '<strong>' + text + '</strong>';
17735     };
17736     
17737     Renderer.prototype.em = function(text) {
17738       return '<em>' + text + '</em>';
17739     };
17740     
17741     Renderer.prototype.codespan = function(text) {
17742       return '<code>' + text + '</code>';
17743     };
17744     
17745     Renderer.prototype.br = function() {
17746       return this.options.xhtml ? '<br/>' : '<br>';
17747     };
17748     
17749     Renderer.prototype.del = function(text) {
17750       return '<del>' + text + '</del>';
17751     };
17752     
17753     Renderer.prototype.link = function(href, title, text) {
17754       if (this.options.sanitize) {
17755         try {
17756           var prot = decodeURIComponent(unescape(href))
17757             .replace(/[^\w:]/g, '')
17758             .toLowerCase();
17759         } catch (e) {
17760           return '';
17761         }
17762         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
17763           return '';
17764         }
17765       }
17766       var out = '<a href="' + href + '"';
17767       if (title) {
17768         out += ' title="' + title + '"';
17769       }
17770       out += '>' + text + '</a>';
17771       return out;
17772     };
17773     
17774     Renderer.prototype.image = function(href, title, text) {
17775       var out = '<img src="' + href + '" alt="' + text + '"';
17776       if (title) {
17777         out += ' title="' + title + '"';
17778       }
17779       out += this.options.xhtml ? '/>' : '>';
17780       return out;
17781     };
17782     
17783     Renderer.prototype.text = function(text) {
17784       return text;
17785     };
17786     
17787     /**
17788      * Parsing & Compiling
17789      */
17790          /**
17791          * eval:var:Parser
17792     */
17793     
17794     var Parser= function (options) {
17795       this.tokens = [];
17796       this.token = null;
17797       this.options = options || marked.defaults;
17798       this.options.renderer = this.options.renderer || new Renderer;
17799       this.renderer = this.options.renderer;
17800       this.renderer.options = this.options;
17801     }
17802     
17803     /**
17804      * Static Parse Method
17805      */
17806     
17807     Parser.parse = function(src, options, renderer) {
17808       var parser = new Parser(options, renderer);
17809       return parser.parse(src);
17810     };
17811     
17812     /**
17813      * Parse Loop
17814      */
17815     
17816     Parser.prototype.parse = function(src) {
17817       this.inline = new InlineLexer(src.links, this.options, this.renderer);
17818       this.tokens = src.reverse();
17819     
17820       var out = '';
17821       while (this.next()) {
17822         out += this.tok();
17823       }
17824     
17825       return out;
17826     };
17827     
17828     /**
17829      * Next Token
17830      */
17831     
17832     Parser.prototype.next = function() {
17833       return this.token = this.tokens.pop();
17834     };
17835     
17836     /**
17837      * Preview Next Token
17838      */
17839     
17840     Parser.prototype.peek = function() {
17841       return this.tokens[this.tokens.length - 1] || 0;
17842     };
17843     
17844     /**
17845      * Parse Text Tokens
17846      */
17847     
17848     Parser.prototype.parseText = function() {
17849       var body = this.token.text;
17850     
17851       while (this.peek().type === 'text') {
17852         body += '\n' + this.next().text;
17853       }
17854     
17855       return this.inline.output(body);
17856     };
17857     
17858     /**
17859      * Parse Current Token
17860      */
17861     
17862     Parser.prototype.tok = function() {
17863       switch (this.token.type) {
17864         case 'space': {
17865           return '';
17866         }
17867         case 'hr': {
17868           return this.renderer.hr();
17869         }
17870         case 'heading': {
17871           return this.renderer.heading(
17872             this.inline.output(this.token.text),
17873             this.token.depth,
17874             this.token.text);
17875         }
17876         case 'code': {
17877           return this.renderer.code(this.token.text,
17878             this.token.lang,
17879             this.token.escaped);
17880         }
17881         case 'table': {
17882           var header = ''
17883             , body = ''
17884             , i
17885             , row
17886             , cell
17887             , flags
17888             , j;
17889     
17890           // header
17891           cell = '';
17892           for (i = 0; i < this.token.header.length; i++) {
17893             flags = { header: true, align: this.token.align[i] };
17894             cell += this.renderer.tablecell(
17895               this.inline.output(this.token.header[i]),
17896               { header: true, align: this.token.align[i] }
17897             );
17898           }
17899           header += this.renderer.tablerow(cell);
17900     
17901           for (i = 0; i < this.token.cells.length; i++) {
17902             row = this.token.cells[i];
17903     
17904             cell = '';
17905             for (j = 0; j < row.length; j++) {
17906               cell += this.renderer.tablecell(
17907                 this.inline.output(row[j]),
17908                 { header: false, align: this.token.align[j] }
17909               );
17910             }
17911     
17912             body += this.renderer.tablerow(cell);
17913           }
17914           return this.renderer.table(header, body);
17915         }
17916         case 'blockquote_start': {
17917           var body = '';
17918     
17919           while (this.next().type !== 'blockquote_end') {
17920             body += this.tok();
17921           }
17922     
17923           return this.renderer.blockquote(body);
17924         }
17925         case 'list_start': {
17926           var body = ''
17927             , ordered = this.token.ordered;
17928     
17929           while (this.next().type !== 'list_end') {
17930             body += this.tok();
17931           }
17932     
17933           return this.renderer.list(body, ordered);
17934         }
17935         case 'list_item_start': {
17936           var body = '';
17937     
17938           while (this.next().type !== 'list_item_end') {
17939             body += this.token.type === 'text'
17940               ? this.parseText()
17941               : this.tok();
17942           }
17943     
17944           return this.renderer.listitem(body);
17945         }
17946         case 'loose_item_start': {
17947           var body = '';
17948     
17949           while (this.next().type !== 'list_item_end') {
17950             body += this.tok();
17951           }
17952     
17953           return this.renderer.listitem(body);
17954         }
17955         case 'html': {
17956           var html = !this.token.pre && !this.options.pedantic
17957             ? this.inline.output(this.token.text)
17958             : this.token.text;
17959           return this.renderer.html(html);
17960         }
17961         case 'paragraph': {
17962           return this.renderer.paragraph(this.inline.output(this.token.text));
17963         }
17964         case 'text': {
17965           return this.renderer.paragraph(this.parseText());
17966         }
17967       }
17968     };
17969   
17970     
17971     /**
17972      * Marked
17973      */
17974          /**
17975          * eval:var:marked
17976     */
17977     var marked = function (src, opt, callback) {
17978       if (callback || typeof opt === 'function') {
17979         if (!callback) {
17980           callback = opt;
17981           opt = null;
17982         }
17983     
17984         opt = merge({}, marked.defaults, opt || {});
17985     
17986         var highlight = opt.highlight
17987           , tokens
17988           , pending
17989           , i = 0;
17990     
17991         try {
17992           tokens = Lexer.lex(src, opt)
17993         } catch (e) {
17994           return callback(e);
17995         }
17996     
17997         pending = tokens.length;
17998          /**
17999          * eval:var:done
18000     */
18001         var done = function(err) {
18002           if (err) {
18003             opt.highlight = highlight;
18004             return callback(err);
18005           }
18006     
18007           var out;
18008     
18009           try {
18010             out = Parser.parse(tokens, opt);
18011           } catch (e) {
18012             err = e;
18013           }
18014     
18015           opt.highlight = highlight;
18016     
18017           return err
18018             ? callback(err)
18019             : callback(null, out);
18020         };
18021     
18022         if (!highlight || highlight.length < 3) {
18023           return done();
18024         }
18025     
18026         delete opt.highlight;
18027     
18028         if (!pending) { return done(); }
18029     
18030         for (; i < tokens.length; i++) {
18031           (function(token) {
18032             if (token.type !== 'code') {
18033               return --pending || done();
18034             }
18035             return highlight(token.text, token.lang, function(err, code) {
18036               if (err) { return done(err); }
18037               if (code == null || code === token.text) {
18038                 return --pending || done();
18039               }
18040               token.text = code;
18041               token.escaped = true;
18042               --pending || done();
18043             });
18044           })(tokens[i]);
18045         }
18046     
18047         return;
18048       }
18049       try {
18050         if (opt) { opt = merge({}, marked.defaults, opt); }
18051         return Parser.parse(Lexer.lex(src, opt), opt);
18052       } catch (e) {
18053         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18054         if ((opt || marked.defaults).silent) {
18055           return '<p>An error occured:</p><pre>'
18056             + escape(e.message + '', true)
18057             + '</pre>';
18058         }
18059         throw e;
18060       }
18061     }
18062     
18063     /**
18064      * Options
18065      */
18066     
18067     marked.options =
18068     marked.setOptions = function(opt) {
18069       merge(marked.defaults, opt);
18070       return marked;
18071     };
18072     
18073     marked.defaults = {
18074       gfm: true,
18075       tables: true,
18076       breaks: false,
18077       pedantic: false,
18078       sanitize: false,
18079       sanitizer: null,
18080       mangle: true,
18081       smartLists: false,
18082       silent: false,
18083       highlight: null,
18084       langPrefix: 'lang-',
18085       smartypants: false,
18086       headerPrefix: '',
18087       renderer: new Renderer,
18088       xhtml: false
18089     };
18090     
18091     /**
18092      * Expose
18093      */
18094     
18095     marked.Parser = Parser;
18096     marked.parser = Parser.parse;
18097     
18098     marked.Renderer = Renderer;
18099     
18100     marked.Lexer = Lexer;
18101     marked.lexer = Lexer.lex;
18102     
18103     marked.InlineLexer = InlineLexer;
18104     marked.inlineLexer = InlineLexer.output;
18105     
18106     marked.parse = marked;
18107     
18108     Roo.Markdown.marked = marked;
18109
18110 })();/*
18111  * Based on:
18112  * Ext JS Library 1.1.1
18113  * Copyright(c) 2006-2007, Ext JS, LLC.
18114  *
18115  * Originally Released Under LGPL - original licence link has changed is not relivant.
18116  *
18117  * Fork - LGPL
18118  * <script type="text/javascript">
18119  */
18120
18121
18122
18123 /*
18124  * These classes are derivatives of the similarly named classes in the YUI Library.
18125  * The original license:
18126  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18127  * Code licensed under the BSD License:
18128  * http://developer.yahoo.net/yui/license.txt
18129  */
18130
18131 (function() {
18132
18133 var Event=Roo.EventManager;
18134 var Dom=Roo.lib.Dom;
18135
18136 /**
18137  * @class Roo.dd.DragDrop
18138  * @extends Roo.util.Observable
18139  * Defines the interface and base operation of items that that can be
18140  * dragged or can be drop targets.  It was designed to be extended, overriding
18141  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18142  * Up to three html elements can be associated with a DragDrop instance:
18143  * <ul>
18144  * <li>linked element: the element that is passed into the constructor.
18145  * This is the element which defines the boundaries for interaction with
18146  * other DragDrop objects.</li>
18147  * <li>handle element(s): The drag operation only occurs if the element that
18148  * was clicked matches a handle element.  By default this is the linked
18149  * element, but there are times that you will want only a portion of the
18150  * linked element to initiate the drag operation, and the setHandleElId()
18151  * method provides a way to define this.</li>
18152  * <li>drag element: this represents the element that would be moved along
18153  * with the cursor during a drag operation.  By default, this is the linked
18154  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18155  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18156  * </li>
18157  * </ul>
18158  * This class should not be instantiated until the onload event to ensure that
18159  * the associated elements are available.
18160  * The following would define a DragDrop obj that would interact with any
18161  * other DragDrop obj in the "group1" group:
18162  * <pre>
18163  *  dd = new Roo.dd.DragDrop("div1", "group1");
18164  * </pre>
18165  * Since none of the event handlers have been implemented, nothing would
18166  * actually happen if you were to run the code above.  Normally you would
18167  * override this class or one of the default implementations, but you can
18168  * also override the methods you want on an instance of the class...
18169  * <pre>
18170  *  dd.onDragDrop = function(e, id) {
18171  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18172  *  }
18173  * </pre>
18174  * @constructor
18175  * @param {String} id of the element that is linked to this instance
18176  * @param {String} sGroup the group of related DragDrop objects
18177  * @param {object} config an object containing configurable attributes
18178  *                Valid properties for DragDrop:
18179  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18180  */
18181 Roo.dd.DragDrop = function(id, sGroup, config) {
18182     if (id) {
18183         this.init(id, sGroup, config);
18184     }
18185     
18186 };
18187
18188 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18189
18190     /**
18191      * The id of the element associated with this object.  This is what we
18192      * refer to as the "linked element" because the size and position of
18193      * this element is used to determine when the drag and drop objects have
18194      * interacted.
18195      * @property id
18196      * @type String
18197      */
18198     id: null,
18199
18200     /**
18201      * Configuration attributes passed into the constructor
18202      * @property config
18203      * @type object
18204      */
18205     config: null,
18206
18207     /**
18208      * The id of the element that will be dragged.  By default this is same
18209      * as the linked element , but could be changed to another element. Ex:
18210      * Roo.dd.DDProxy
18211      * @property dragElId
18212      * @type String
18213      * @private
18214      */
18215     dragElId: null,
18216
18217     /**
18218      * the id of the element that initiates the drag operation.  By default
18219      * this is the linked element, but could be changed to be a child of this
18220      * element.  This lets us do things like only starting the drag when the
18221      * header element within the linked html element is clicked.
18222      * @property handleElId
18223      * @type String
18224      * @private
18225      */
18226     handleElId: null,
18227
18228     /**
18229      * An associative array of HTML tags that will be ignored if clicked.
18230      * @property invalidHandleTypes
18231      * @type {string: string}
18232      */
18233     invalidHandleTypes: null,
18234
18235     /**
18236      * An associative array of ids for elements that will be ignored if clicked
18237      * @property invalidHandleIds
18238      * @type {string: string}
18239      */
18240     invalidHandleIds: null,
18241
18242     /**
18243      * An indexted array of css class names for elements that will be ignored
18244      * if clicked.
18245      * @property invalidHandleClasses
18246      * @type string[]
18247      */
18248     invalidHandleClasses: null,
18249
18250     /**
18251      * The linked element's absolute X position at the time the drag was
18252      * started
18253      * @property startPageX
18254      * @type int
18255      * @private
18256      */
18257     startPageX: 0,
18258
18259     /**
18260      * The linked element's absolute X position at the time the drag was
18261      * started
18262      * @property startPageY
18263      * @type int
18264      * @private
18265      */
18266     startPageY: 0,
18267
18268     /**
18269      * The group defines a logical collection of DragDrop objects that are
18270      * related.  Instances only get events when interacting with other
18271      * DragDrop object in the same group.  This lets us define multiple
18272      * groups using a single DragDrop subclass if we want.
18273      * @property groups
18274      * @type {string: string}
18275      */
18276     groups: null,
18277
18278     /**
18279      * Individual drag/drop instances can be locked.  This will prevent
18280      * onmousedown start drag.
18281      * @property locked
18282      * @type boolean
18283      * @private
18284      */
18285     locked: false,
18286
18287     /**
18288      * Lock this instance
18289      * @method lock
18290      */
18291     lock: function() { this.locked = true; },
18292
18293     /**
18294      * Unlock this instace
18295      * @method unlock
18296      */
18297     unlock: function() { this.locked = false; },
18298
18299     /**
18300      * By default, all insances can be a drop target.  This can be disabled by
18301      * setting isTarget to false.
18302      * @method isTarget
18303      * @type boolean
18304      */
18305     isTarget: true,
18306
18307     /**
18308      * The padding configured for this drag and drop object for calculating
18309      * the drop zone intersection with this object.
18310      * @method padding
18311      * @type int[]
18312      */
18313     padding: null,
18314
18315     /**
18316      * Cached reference to the linked element
18317      * @property _domRef
18318      * @private
18319      */
18320     _domRef: null,
18321
18322     /**
18323      * Internal typeof flag
18324      * @property __ygDragDrop
18325      * @private
18326      */
18327     __ygDragDrop: true,
18328
18329     /**
18330      * Set to true when horizontal contraints are applied
18331      * @property constrainX
18332      * @type boolean
18333      * @private
18334      */
18335     constrainX: false,
18336
18337     /**
18338      * Set to true when vertical contraints are applied
18339      * @property constrainY
18340      * @type boolean
18341      * @private
18342      */
18343     constrainY: false,
18344
18345     /**
18346      * The left constraint
18347      * @property minX
18348      * @type int
18349      * @private
18350      */
18351     minX: 0,
18352
18353     /**
18354      * The right constraint
18355      * @property maxX
18356      * @type int
18357      * @private
18358      */
18359     maxX: 0,
18360
18361     /**
18362      * The up constraint
18363      * @property minY
18364      * @type int
18365      * @type int
18366      * @private
18367      */
18368     minY: 0,
18369
18370     /**
18371      * The down constraint
18372      * @property maxY
18373      * @type int
18374      * @private
18375      */
18376     maxY: 0,
18377
18378     /**
18379      * Maintain offsets when we resetconstraints.  Set to true when you want
18380      * the position of the element relative to its parent to stay the same
18381      * when the page changes
18382      *
18383      * @property maintainOffset
18384      * @type boolean
18385      */
18386     maintainOffset: false,
18387
18388     /**
18389      * Array of pixel locations the element will snap to if we specified a
18390      * horizontal graduation/interval.  This array is generated automatically
18391      * when you define a tick interval.
18392      * @property xTicks
18393      * @type int[]
18394      */
18395     xTicks: null,
18396
18397     /**
18398      * Array of pixel locations the element will snap to if we specified a
18399      * vertical graduation/interval.  This array is generated automatically
18400      * when you define a tick interval.
18401      * @property yTicks
18402      * @type int[]
18403      */
18404     yTicks: null,
18405
18406     /**
18407      * By default the drag and drop instance will only respond to the primary
18408      * button click (left button for a right-handed mouse).  Set to true to
18409      * allow drag and drop to start with any mouse click that is propogated
18410      * by the browser
18411      * @property primaryButtonOnly
18412      * @type boolean
18413      */
18414     primaryButtonOnly: true,
18415
18416     /**
18417      * The availabe property is false until the linked dom element is accessible.
18418      * @property available
18419      * @type boolean
18420      */
18421     available: false,
18422
18423     /**
18424      * By default, drags can only be initiated if the mousedown occurs in the
18425      * region the linked element is.  This is done in part to work around a
18426      * bug in some browsers that mis-report the mousedown if the previous
18427      * mouseup happened outside of the window.  This property is set to true
18428      * if outer handles are defined.
18429      *
18430      * @property hasOuterHandles
18431      * @type boolean
18432      * @default false
18433      */
18434     hasOuterHandles: false,
18435
18436     /**
18437      * Code that executes immediately before the startDrag event
18438      * @method b4StartDrag
18439      * @private
18440      */
18441     b4StartDrag: function(x, y) { },
18442
18443     /**
18444      * Abstract method called after a drag/drop object is clicked
18445      * and the drag or mousedown time thresholds have beeen met.
18446      * @method startDrag
18447      * @param {int} X click location
18448      * @param {int} Y click location
18449      */
18450     startDrag: function(x, y) { /* override this */ },
18451
18452     /**
18453      * Code that executes immediately before the onDrag event
18454      * @method b4Drag
18455      * @private
18456      */
18457     b4Drag: function(e) { },
18458
18459     /**
18460      * Abstract method called during the onMouseMove event while dragging an
18461      * object.
18462      * @method onDrag
18463      * @param {Event} e the mousemove event
18464      */
18465     onDrag: function(e) { /* override this */ },
18466
18467     /**
18468      * Abstract method called when this element fist begins hovering over
18469      * another DragDrop obj
18470      * @method onDragEnter
18471      * @param {Event} e the mousemove event
18472      * @param {String|DragDrop[]} id In POINT mode, the element
18473      * id this is hovering over.  In INTERSECT mode, an array of one or more
18474      * dragdrop items being hovered over.
18475      */
18476     onDragEnter: function(e, id) { /* override this */ },
18477
18478     /**
18479      * Code that executes immediately before the onDragOver event
18480      * @method b4DragOver
18481      * @private
18482      */
18483     b4DragOver: function(e) { },
18484
18485     /**
18486      * Abstract method called when this element is hovering over another
18487      * DragDrop obj
18488      * @method onDragOver
18489      * @param {Event} e the mousemove event
18490      * @param {String|DragDrop[]} id In POINT mode, the element
18491      * id this is hovering over.  In INTERSECT mode, an array of dd items
18492      * being hovered over.
18493      */
18494     onDragOver: function(e, id) { /* override this */ },
18495
18496     /**
18497      * Code that executes immediately before the onDragOut event
18498      * @method b4DragOut
18499      * @private
18500      */
18501     b4DragOut: function(e) { },
18502
18503     /**
18504      * Abstract method called when we are no longer hovering over an element
18505      * @method onDragOut
18506      * @param {Event} e the mousemove event
18507      * @param {String|DragDrop[]} id In POINT mode, the element
18508      * id this was hovering over.  In INTERSECT mode, an array of dd items
18509      * that the mouse is no longer over.
18510      */
18511     onDragOut: function(e, id) { /* override this */ },
18512
18513     /**
18514      * Code that executes immediately before the onDragDrop event
18515      * @method b4DragDrop
18516      * @private
18517      */
18518     b4DragDrop: function(e) { },
18519
18520     /**
18521      * Abstract method called when this item is dropped on another DragDrop
18522      * obj
18523      * @method onDragDrop
18524      * @param {Event} e the mouseup event
18525      * @param {String|DragDrop[]} id In POINT mode, the element
18526      * id this was dropped on.  In INTERSECT mode, an array of dd items this
18527      * was dropped on.
18528      */
18529     onDragDrop: function(e, id) { /* override this */ },
18530
18531     /**
18532      * Abstract method called when this item is dropped on an area with no
18533      * drop target
18534      * @method onInvalidDrop
18535      * @param {Event} e the mouseup event
18536      */
18537     onInvalidDrop: function(e) { /* override this */ },
18538
18539     /**
18540      * Code that executes immediately before the endDrag event
18541      * @method b4EndDrag
18542      * @private
18543      */
18544     b4EndDrag: function(e) { },
18545
18546     /**
18547      * Fired when we are done dragging the object
18548      * @method endDrag
18549      * @param {Event} e the mouseup event
18550      */
18551     endDrag: function(e) { /* override this */ },
18552
18553     /**
18554      * Code executed immediately before the onMouseDown event
18555      * @method b4MouseDown
18556      * @param {Event} e the mousedown event
18557      * @private
18558      */
18559     b4MouseDown: function(e) {  },
18560
18561     /**
18562      * Event handler that fires when a drag/drop obj gets a mousedown
18563      * @method onMouseDown
18564      * @param {Event} e the mousedown event
18565      */
18566     onMouseDown: function(e) { /* override this */ },
18567
18568     /**
18569      * Event handler that fires when a drag/drop obj gets a mouseup
18570      * @method onMouseUp
18571      * @param {Event} e the mouseup event
18572      */
18573     onMouseUp: function(e) { /* override this */ },
18574
18575     /**
18576      * Override the onAvailable method to do what is needed after the initial
18577      * position was determined.
18578      * @method onAvailable
18579      */
18580     onAvailable: function () {
18581     },
18582
18583     /*
18584      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
18585      * @type Object
18586      */
18587     defaultPadding : {left:0, right:0, top:0, bottom:0},
18588
18589     /*
18590      * Initializes the drag drop object's constraints to restrict movement to a certain element.
18591  *
18592  * Usage:
18593  <pre><code>
18594  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
18595                 { dragElId: "existingProxyDiv" });
18596  dd.startDrag = function(){
18597      this.constrainTo("parent-id");
18598  };
18599  </code></pre>
18600  * Or you can initalize it using the {@link Roo.Element} object:
18601  <pre><code>
18602  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
18603      startDrag : function(){
18604          this.constrainTo("parent-id");
18605      }
18606  });
18607  </code></pre>
18608      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
18609      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
18610      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
18611      * an object containing the sides to pad. For example: {right:10, bottom:10}
18612      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
18613      */
18614     constrainTo : function(constrainTo, pad, inContent){
18615         if(typeof pad == "number"){
18616             pad = {left: pad, right:pad, top:pad, bottom:pad};
18617         }
18618         pad = pad || this.defaultPadding;
18619         var b = Roo.get(this.getEl()).getBox();
18620         var ce = Roo.get(constrainTo);
18621         var s = ce.getScroll();
18622         var c, cd = ce.dom;
18623         if(cd == document.body){
18624             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
18625         }else{
18626             xy = ce.getXY();
18627             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
18628         }
18629
18630
18631         var topSpace = b.y - c.y;
18632         var leftSpace = b.x - c.x;
18633
18634         this.resetConstraints();
18635         this.setXConstraint(leftSpace - (pad.left||0), // left
18636                 c.width - leftSpace - b.width - (pad.right||0) //right
18637         );
18638         this.setYConstraint(topSpace - (pad.top||0), //top
18639                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
18640         );
18641     },
18642
18643     /**
18644      * Returns a reference to the linked element
18645      * @method getEl
18646      * @return {HTMLElement} the html element
18647      */
18648     getEl: function() {
18649         if (!this._domRef) {
18650             this._domRef = Roo.getDom(this.id);
18651         }
18652
18653         return this._domRef;
18654     },
18655
18656     /**
18657      * Returns a reference to the actual element to drag.  By default this is
18658      * the same as the html element, but it can be assigned to another
18659      * element. An example of this can be found in Roo.dd.DDProxy
18660      * @method getDragEl
18661      * @return {HTMLElement} the html element
18662      */
18663     getDragEl: function() {
18664         return Roo.getDom(this.dragElId);
18665     },
18666
18667     /**
18668      * Sets up the DragDrop object.  Must be called in the constructor of any
18669      * Roo.dd.DragDrop subclass
18670      * @method init
18671      * @param id the id of the linked element
18672      * @param {String} sGroup the group of related items
18673      * @param {object} config configuration attributes
18674      */
18675     init: function(id, sGroup, config) {
18676         this.initTarget(id, sGroup, config);
18677         if (!Roo.isTouch) {
18678             Event.on(this.id, "mousedown", this.handleMouseDown, this);
18679         }
18680         Event.on(this.id, "touchstart", this.handleMouseDown, this);
18681         // Event.on(this.id, "selectstart", Event.preventDefault);
18682     },
18683
18684     /**
18685      * Initializes Targeting functionality only... the object does not
18686      * get a mousedown handler.
18687      * @method initTarget
18688      * @param id the id of the linked element
18689      * @param {String} sGroup the group of related items
18690      * @param {object} config configuration attributes
18691      */
18692     initTarget: function(id, sGroup, config) {
18693
18694         // configuration attributes
18695         this.config = config || {};
18696
18697         // create a local reference to the drag and drop manager
18698         this.DDM = Roo.dd.DDM;
18699         // initialize the groups array
18700         this.groups = {};
18701
18702         // assume that we have an element reference instead of an id if the
18703         // parameter is not a string
18704         if (typeof id !== "string") {
18705             id = Roo.id(id);
18706         }
18707
18708         // set the id
18709         this.id = id;
18710
18711         // add to an interaction group
18712         this.addToGroup((sGroup) ? sGroup : "default");
18713
18714         // We don't want to register this as the handle with the manager
18715         // so we just set the id rather than calling the setter.
18716         this.handleElId = id;
18717
18718         // the linked element is the element that gets dragged by default
18719         this.setDragElId(id);
18720
18721         // by default, clicked anchors will not start drag operations.
18722         this.invalidHandleTypes = { A: "A" };
18723         this.invalidHandleIds = {};
18724         this.invalidHandleClasses = [];
18725
18726         this.applyConfig();
18727
18728         this.handleOnAvailable();
18729     },
18730
18731     /**
18732      * Applies the configuration parameters that were passed into the constructor.
18733      * This is supposed to happen at each level through the inheritance chain.  So
18734      * a DDProxy implentation will execute apply config on DDProxy, DD, and
18735      * DragDrop in order to get all of the parameters that are available in
18736      * each object.
18737      * @method applyConfig
18738      */
18739     applyConfig: function() {
18740
18741         // configurable properties:
18742         //    padding, isTarget, maintainOffset, primaryButtonOnly
18743         this.padding           = this.config.padding || [0, 0, 0, 0];
18744         this.isTarget          = (this.config.isTarget !== false);
18745         this.maintainOffset    = (this.config.maintainOffset);
18746         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
18747
18748     },
18749
18750     /**
18751      * Executed when the linked element is available
18752      * @method handleOnAvailable
18753      * @private
18754      */
18755     handleOnAvailable: function() {
18756         this.available = true;
18757         this.resetConstraints();
18758         this.onAvailable();
18759     },
18760
18761      /**
18762      * Configures the padding for the target zone in px.  Effectively expands
18763      * (or reduces) the virtual object size for targeting calculations.
18764      * Supports css-style shorthand; if only one parameter is passed, all sides
18765      * will have that padding, and if only two are passed, the top and bottom
18766      * will have the first param, the left and right the second.
18767      * @method setPadding
18768      * @param {int} iTop    Top pad
18769      * @param {int} iRight  Right pad
18770      * @param {int} iBot    Bot pad
18771      * @param {int} iLeft   Left pad
18772      */
18773     setPadding: function(iTop, iRight, iBot, iLeft) {
18774         // this.padding = [iLeft, iRight, iTop, iBot];
18775         if (!iRight && 0 !== iRight) {
18776             this.padding = [iTop, iTop, iTop, iTop];
18777         } else if (!iBot && 0 !== iBot) {
18778             this.padding = [iTop, iRight, iTop, iRight];
18779         } else {
18780             this.padding = [iTop, iRight, iBot, iLeft];
18781         }
18782     },
18783
18784     /**
18785      * Stores the initial placement of the linked element.
18786      * @method setInitialPosition
18787      * @param {int} diffX   the X offset, default 0
18788      * @param {int} diffY   the Y offset, default 0
18789      */
18790     setInitPosition: function(diffX, diffY) {
18791         var el = this.getEl();
18792
18793         if (!this.DDM.verifyEl(el)) {
18794             return;
18795         }
18796
18797         var dx = diffX || 0;
18798         var dy = diffY || 0;
18799
18800         var p = Dom.getXY( el );
18801
18802         this.initPageX = p[0] - dx;
18803         this.initPageY = p[1] - dy;
18804
18805         this.lastPageX = p[0];
18806         this.lastPageY = p[1];
18807
18808
18809         this.setStartPosition(p);
18810     },
18811
18812     /**
18813      * Sets the start position of the element.  This is set when the obj
18814      * is initialized, the reset when a drag is started.
18815      * @method setStartPosition
18816      * @param pos current position (from previous lookup)
18817      * @private
18818      */
18819     setStartPosition: function(pos) {
18820         var p = pos || Dom.getXY( this.getEl() );
18821         this.deltaSetXY = null;
18822
18823         this.startPageX = p[0];
18824         this.startPageY = p[1];
18825     },
18826
18827     /**
18828      * Add this instance to a group of related drag/drop objects.  All
18829      * instances belong to at least one group, and can belong to as many
18830      * groups as needed.
18831      * @method addToGroup
18832      * @param sGroup {string} the name of the group
18833      */
18834     addToGroup: function(sGroup) {
18835         this.groups[sGroup] = true;
18836         this.DDM.regDragDrop(this, sGroup);
18837     },
18838
18839     /**
18840      * Remove's this instance from the supplied interaction group
18841      * @method removeFromGroup
18842      * @param {string}  sGroup  The group to drop
18843      */
18844     removeFromGroup: function(sGroup) {
18845         if (this.groups[sGroup]) {
18846             delete this.groups[sGroup];
18847         }
18848
18849         this.DDM.removeDDFromGroup(this, sGroup);
18850     },
18851
18852     /**
18853      * Allows you to specify that an element other than the linked element
18854      * will be moved with the cursor during a drag
18855      * @method setDragElId
18856      * @param id {string} the id of the element that will be used to initiate the drag
18857      */
18858     setDragElId: function(id) {
18859         this.dragElId = id;
18860     },
18861
18862     /**
18863      * Allows you to specify a child of the linked element that should be
18864      * used to initiate the drag operation.  An example of this would be if
18865      * you have a content div with text and links.  Clicking anywhere in the
18866      * content area would normally start the drag operation.  Use this method
18867      * to specify that an element inside of the content div is the element
18868      * that starts the drag operation.
18869      * @method setHandleElId
18870      * @param id {string} the id of the element that will be used to
18871      * initiate the drag.
18872      */
18873     setHandleElId: function(id) {
18874         if (typeof id !== "string") {
18875             id = Roo.id(id);
18876         }
18877         this.handleElId = id;
18878         this.DDM.regHandle(this.id, id);
18879     },
18880
18881     /**
18882      * Allows you to set an element outside of the linked element as a drag
18883      * handle
18884      * @method setOuterHandleElId
18885      * @param id the id of the element that will be used to initiate the drag
18886      */
18887     setOuterHandleElId: function(id) {
18888         if (typeof id !== "string") {
18889             id = Roo.id(id);
18890         }
18891         Event.on(id, "mousedown",
18892                 this.handleMouseDown, this);
18893         this.setHandleElId(id);
18894
18895         this.hasOuterHandles = true;
18896     },
18897
18898     /**
18899      * Remove all drag and drop hooks for this element
18900      * @method unreg
18901      */
18902     unreg: function() {
18903         Event.un(this.id, "mousedown",
18904                 this.handleMouseDown);
18905         Event.un(this.id, "touchstart",
18906                 this.handleMouseDown);
18907         this._domRef = null;
18908         this.DDM._remove(this);
18909     },
18910
18911     destroy : function(){
18912         this.unreg();
18913     },
18914
18915     /**
18916      * Returns true if this instance is locked, or the drag drop mgr is locked
18917      * (meaning that all drag/drop is disabled on the page.)
18918      * @method isLocked
18919      * @return {boolean} true if this obj or all drag/drop is locked, else
18920      * false
18921      */
18922     isLocked: function() {
18923         return (this.DDM.isLocked() || this.locked);
18924     },
18925
18926     /**
18927      * Fired when this object is clicked
18928      * @method handleMouseDown
18929      * @param {Event} e
18930      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
18931      * @private
18932      */
18933     handleMouseDown: function(e, oDD){
18934      
18935         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
18936             //Roo.log('not touch/ button !=0');
18937             return;
18938         }
18939         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
18940             return; // double touch..
18941         }
18942         
18943
18944         if (this.isLocked()) {
18945             //Roo.log('locked');
18946             return;
18947         }
18948
18949         this.DDM.refreshCache(this.groups);
18950 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
18951         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
18952         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
18953             //Roo.log('no outer handes or not over target');
18954                 // do nothing.
18955         } else {
18956 //            Roo.log('check validator');
18957             if (this.clickValidator(e)) {
18958 //                Roo.log('validate success');
18959                 // set the initial element position
18960                 this.setStartPosition();
18961
18962
18963                 this.b4MouseDown(e);
18964                 this.onMouseDown(e);
18965
18966                 this.DDM.handleMouseDown(e, this);
18967
18968                 this.DDM.stopEvent(e);
18969             } else {
18970
18971
18972             }
18973         }
18974     },
18975
18976     clickValidator: function(e) {
18977         var target = e.getTarget();
18978         return ( this.isValidHandleChild(target) &&
18979                     (this.id == this.handleElId ||
18980                         this.DDM.handleWasClicked(target, this.id)) );
18981     },
18982
18983     /**
18984      * Allows you to specify a tag name that should not start a drag operation
18985      * when clicked.  This is designed to facilitate embedding links within a
18986      * drag handle that do something other than start the drag.
18987      * @method addInvalidHandleType
18988      * @param {string} tagName the type of element to exclude
18989      */
18990     addInvalidHandleType: function(tagName) {
18991         var type = tagName.toUpperCase();
18992         this.invalidHandleTypes[type] = type;
18993     },
18994
18995     /**
18996      * Lets you to specify an element id for a child of a drag handle
18997      * that should not initiate a drag
18998      * @method addInvalidHandleId
18999      * @param {string} id the element id of the element you wish to ignore
19000      */
19001     addInvalidHandleId: function(id) {
19002         if (typeof id !== "string") {
19003             id = Roo.id(id);
19004         }
19005         this.invalidHandleIds[id] = id;
19006     },
19007
19008     /**
19009      * Lets you specify a css class of elements that will not initiate a drag
19010      * @method addInvalidHandleClass
19011      * @param {string} cssClass the class of the elements you wish to ignore
19012      */
19013     addInvalidHandleClass: function(cssClass) {
19014         this.invalidHandleClasses.push(cssClass);
19015     },
19016
19017     /**
19018      * Unsets an excluded tag name set by addInvalidHandleType
19019      * @method removeInvalidHandleType
19020      * @param {string} tagName the type of element to unexclude
19021      */
19022     removeInvalidHandleType: function(tagName) {
19023         var type = tagName.toUpperCase();
19024         // this.invalidHandleTypes[type] = null;
19025         delete this.invalidHandleTypes[type];
19026     },
19027
19028     /**
19029      * Unsets an invalid handle id
19030      * @method removeInvalidHandleId
19031      * @param {string} id the id of the element to re-enable
19032      */
19033     removeInvalidHandleId: function(id) {
19034         if (typeof id !== "string") {
19035             id = Roo.id(id);
19036         }
19037         delete this.invalidHandleIds[id];
19038     },
19039
19040     /**
19041      * Unsets an invalid css class
19042      * @method removeInvalidHandleClass
19043      * @param {string} cssClass the class of the element(s) you wish to
19044      * re-enable
19045      */
19046     removeInvalidHandleClass: function(cssClass) {
19047         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19048             if (this.invalidHandleClasses[i] == cssClass) {
19049                 delete this.invalidHandleClasses[i];
19050             }
19051         }
19052     },
19053
19054     /**
19055      * Checks the tag exclusion list to see if this click should be ignored
19056      * @method isValidHandleChild
19057      * @param {HTMLElement} node the HTMLElement to evaluate
19058      * @return {boolean} true if this is a valid tag type, false if not
19059      */
19060     isValidHandleChild: function(node) {
19061
19062         var valid = true;
19063         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19064         var nodeName;
19065         try {
19066             nodeName = node.nodeName.toUpperCase();
19067         } catch(e) {
19068             nodeName = node.nodeName;
19069         }
19070         valid = valid && !this.invalidHandleTypes[nodeName];
19071         valid = valid && !this.invalidHandleIds[node.id];
19072
19073         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19074             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19075         }
19076
19077
19078         return valid;
19079
19080     },
19081
19082     /**
19083      * Create the array of horizontal tick marks if an interval was specified
19084      * in setXConstraint().
19085      * @method setXTicks
19086      * @private
19087      */
19088     setXTicks: function(iStartX, iTickSize) {
19089         this.xTicks = [];
19090         this.xTickSize = iTickSize;
19091
19092         var tickMap = {};
19093
19094         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19095             if (!tickMap[i]) {
19096                 this.xTicks[this.xTicks.length] = i;
19097                 tickMap[i] = true;
19098             }
19099         }
19100
19101         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19102             if (!tickMap[i]) {
19103                 this.xTicks[this.xTicks.length] = i;
19104                 tickMap[i] = true;
19105             }
19106         }
19107
19108         this.xTicks.sort(this.DDM.numericSort) ;
19109     },
19110
19111     /**
19112      * Create the array of vertical tick marks if an interval was specified in
19113      * setYConstraint().
19114      * @method setYTicks
19115      * @private
19116      */
19117     setYTicks: function(iStartY, iTickSize) {
19118         this.yTicks = [];
19119         this.yTickSize = iTickSize;
19120
19121         var tickMap = {};
19122
19123         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19124             if (!tickMap[i]) {
19125                 this.yTicks[this.yTicks.length] = i;
19126                 tickMap[i] = true;
19127             }
19128         }
19129
19130         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19131             if (!tickMap[i]) {
19132                 this.yTicks[this.yTicks.length] = i;
19133                 tickMap[i] = true;
19134             }
19135         }
19136
19137         this.yTicks.sort(this.DDM.numericSort) ;
19138     },
19139
19140     /**
19141      * By default, the element can be dragged any place on the screen.  Use
19142      * this method to limit the horizontal travel of the element.  Pass in
19143      * 0,0 for the parameters if you want to lock the drag to the y axis.
19144      * @method setXConstraint
19145      * @param {int} iLeft the number of pixels the element can move to the left
19146      * @param {int} iRight the number of pixels the element can move to the
19147      * right
19148      * @param {int} iTickSize optional parameter for specifying that the
19149      * element
19150      * should move iTickSize pixels at a time.
19151      */
19152     setXConstraint: function(iLeft, iRight, iTickSize) {
19153         this.leftConstraint = iLeft;
19154         this.rightConstraint = iRight;
19155
19156         this.minX = this.initPageX - iLeft;
19157         this.maxX = this.initPageX + iRight;
19158         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19159
19160         this.constrainX = true;
19161     },
19162
19163     /**
19164      * Clears any constraints applied to this instance.  Also clears ticks
19165      * since they can't exist independent of a constraint at this time.
19166      * @method clearConstraints
19167      */
19168     clearConstraints: function() {
19169         this.constrainX = false;
19170         this.constrainY = false;
19171         this.clearTicks();
19172     },
19173
19174     /**
19175      * Clears any tick interval defined for this instance
19176      * @method clearTicks
19177      */
19178     clearTicks: function() {
19179         this.xTicks = null;
19180         this.yTicks = null;
19181         this.xTickSize = 0;
19182         this.yTickSize = 0;
19183     },
19184
19185     /**
19186      * By default, the element can be dragged any place on the screen.  Set
19187      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19188      * parameters if you want to lock the drag to the x axis.
19189      * @method setYConstraint
19190      * @param {int} iUp the number of pixels the element can move up
19191      * @param {int} iDown the number of pixels the element can move down
19192      * @param {int} iTickSize optional parameter for specifying that the
19193      * element should move iTickSize pixels at a time.
19194      */
19195     setYConstraint: function(iUp, iDown, iTickSize) {
19196         this.topConstraint = iUp;
19197         this.bottomConstraint = iDown;
19198
19199         this.minY = this.initPageY - iUp;
19200         this.maxY = this.initPageY + iDown;
19201         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19202
19203         this.constrainY = true;
19204
19205     },
19206
19207     /**
19208      * resetConstraints must be called if you manually reposition a dd element.
19209      * @method resetConstraints
19210      * @param {boolean} maintainOffset
19211      */
19212     resetConstraints: function() {
19213
19214
19215         // Maintain offsets if necessary
19216         if (this.initPageX || this.initPageX === 0) {
19217             // figure out how much this thing has moved
19218             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19219             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19220
19221             this.setInitPosition(dx, dy);
19222
19223         // This is the first time we have detected the element's position
19224         } else {
19225             this.setInitPosition();
19226         }
19227
19228         if (this.constrainX) {
19229             this.setXConstraint( this.leftConstraint,
19230                                  this.rightConstraint,
19231                                  this.xTickSize        );
19232         }
19233
19234         if (this.constrainY) {
19235             this.setYConstraint( this.topConstraint,
19236                                  this.bottomConstraint,
19237                                  this.yTickSize         );
19238         }
19239     },
19240
19241     /**
19242      * Normally the drag element is moved pixel by pixel, but we can specify
19243      * that it move a number of pixels at a time.  This method resolves the
19244      * location when we have it set up like this.
19245      * @method getTick
19246      * @param {int} val where we want to place the object
19247      * @param {int[]} tickArray sorted array of valid points
19248      * @return {int} the closest tick
19249      * @private
19250      */
19251     getTick: function(val, tickArray) {
19252
19253         if (!tickArray) {
19254             // If tick interval is not defined, it is effectively 1 pixel,
19255             // so we return the value passed to us.
19256             return val;
19257         } else if (tickArray[0] >= val) {
19258             // The value is lower than the first tick, so we return the first
19259             // tick.
19260             return tickArray[0];
19261         } else {
19262             for (var i=0, len=tickArray.length; i<len; ++i) {
19263                 var next = i + 1;
19264                 if (tickArray[next] && tickArray[next] >= val) {
19265                     var diff1 = val - tickArray[i];
19266                     var diff2 = tickArray[next] - val;
19267                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19268                 }
19269             }
19270
19271             // The value is larger than the last tick, so we return the last
19272             // tick.
19273             return tickArray[tickArray.length - 1];
19274         }
19275     },
19276
19277     /**
19278      * toString method
19279      * @method toString
19280      * @return {string} string representation of the dd obj
19281      */
19282     toString: function() {
19283         return ("DragDrop " + this.id);
19284     }
19285
19286 });
19287
19288 })();
19289 /*
19290  * Based on:
19291  * Ext JS Library 1.1.1
19292  * Copyright(c) 2006-2007, Ext JS, LLC.
19293  *
19294  * Originally Released Under LGPL - original licence link has changed is not relivant.
19295  *
19296  * Fork - LGPL
19297  * <script type="text/javascript">
19298  */
19299
19300
19301 /**
19302  * The drag and drop utility provides a framework for building drag and drop
19303  * applications.  In addition to enabling drag and drop for specific elements,
19304  * the drag and drop elements are tracked by the manager class, and the
19305  * interactions between the various elements are tracked during the drag and
19306  * the implementing code is notified about these important moments.
19307  */
19308
19309 // Only load the library once.  Rewriting the manager class would orphan
19310 // existing drag and drop instances.
19311 if (!Roo.dd.DragDropMgr) {
19312
19313 /**
19314  * @class Roo.dd.DragDropMgr
19315  * DragDropMgr is a singleton that tracks the element interaction for
19316  * all DragDrop items in the window.  Generally, you will not call
19317  * this class directly, but it does have helper methods that could
19318  * be useful in your DragDrop implementations.
19319  * @singleton
19320  */
19321 Roo.dd.DragDropMgr = function() {
19322
19323     var Event = Roo.EventManager;
19324
19325     return {
19326
19327         /**
19328          * Two dimensional Array of registered DragDrop objects.  The first
19329          * dimension is the DragDrop item group, the second the DragDrop
19330          * object.
19331          * @property ids
19332          * @type {string: string}
19333          * @private
19334          * @static
19335          */
19336         ids: {},
19337
19338         /**
19339          * Array of element ids defined as drag handles.  Used to determine
19340          * if the element that generated the mousedown event is actually the
19341          * handle and not the html element itself.
19342          * @property handleIds
19343          * @type {string: string}
19344          * @private
19345          * @static
19346          */
19347         handleIds: {},
19348
19349         /**
19350          * the DragDrop object that is currently being dragged
19351          * @property dragCurrent
19352          * @type DragDrop
19353          * @private
19354          * @static
19355          **/
19356         dragCurrent: null,
19357
19358         /**
19359          * the DragDrop object(s) that are being hovered over
19360          * @property dragOvers
19361          * @type Array
19362          * @private
19363          * @static
19364          */
19365         dragOvers: {},
19366
19367         /**
19368          * the X distance between the cursor and the object being dragged
19369          * @property deltaX
19370          * @type int
19371          * @private
19372          * @static
19373          */
19374         deltaX: 0,
19375
19376         /**
19377          * the Y distance between the cursor and the object being dragged
19378          * @property deltaY
19379          * @type int
19380          * @private
19381          * @static
19382          */
19383         deltaY: 0,
19384
19385         /**
19386          * Flag to determine if we should prevent the default behavior of the
19387          * events we define. By default this is true, but this can be set to
19388          * false if you need the default behavior (not recommended)
19389          * @property preventDefault
19390          * @type boolean
19391          * @static
19392          */
19393         preventDefault: true,
19394
19395         /**
19396          * Flag to determine if we should stop the propagation of the events
19397          * we generate. This is true by default but you may want to set it to
19398          * false if the html element contains other features that require the
19399          * mouse click.
19400          * @property stopPropagation
19401          * @type boolean
19402          * @static
19403          */
19404         stopPropagation: true,
19405
19406         /**
19407          * Internal flag that is set to true when drag and drop has been
19408          * intialized
19409          * @property initialized
19410          * @private
19411          * @static
19412          */
19413         initalized: false,
19414
19415         /**
19416          * All drag and drop can be disabled.
19417          * @property locked
19418          * @private
19419          * @static
19420          */
19421         locked: false,
19422
19423         /**
19424          * Called the first time an element is registered.
19425          * @method init
19426          * @private
19427          * @static
19428          */
19429         init: function() {
19430             this.initialized = true;
19431         },
19432
19433         /**
19434          * In point mode, drag and drop interaction is defined by the
19435          * location of the cursor during the drag/drop
19436          * @property POINT
19437          * @type int
19438          * @static
19439          */
19440         POINT: 0,
19441
19442         /**
19443          * In intersect mode, drag and drop interactio nis defined by the
19444          * overlap of two or more drag and drop objects.
19445          * @property INTERSECT
19446          * @type int
19447          * @static
19448          */
19449         INTERSECT: 1,
19450
19451         /**
19452          * The current drag and drop mode.  Default: POINT
19453          * @property mode
19454          * @type int
19455          * @static
19456          */
19457         mode: 0,
19458
19459         /**
19460          * Runs method on all drag and drop objects
19461          * @method _execOnAll
19462          * @private
19463          * @static
19464          */
19465         _execOnAll: function(sMethod, args) {
19466             for (var i in this.ids) {
19467                 for (var j in this.ids[i]) {
19468                     var oDD = this.ids[i][j];
19469                     if (! this.isTypeOfDD(oDD)) {
19470                         continue;
19471                     }
19472                     oDD[sMethod].apply(oDD, args);
19473                 }
19474             }
19475         },
19476
19477         /**
19478          * Drag and drop initialization.  Sets up the global event handlers
19479          * @method _onLoad
19480          * @private
19481          * @static
19482          */
19483         _onLoad: function() {
19484
19485             this.init();
19486
19487             if (!Roo.isTouch) {
19488                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
19489                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
19490             }
19491             Event.on(document, "touchend",   this.handleMouseUp, this, true);
19492             Event.on(document, "touchmove", this.handleMouseMove, this, true);
19493             
19494             Event.on(window,   "unload",    this._onUnload, this, true);
19495             Event.on(window,   "resize",    this._onResize, this, true);
19496             // Event.on(window,   "mouseout",    this._test);
19497
19498         },
19499
19500         /**
19501          * Reset constraints on all drag and drop objs
19502          * @method _onResize
19503          * @private
19504          * @static
19505          */
19506         _onResize: function(e) {
19507             this._execOnAll("resetConstraints", []);
19508         },
19509
19510         /**
19511          * Lock all drag and drop functionality
19512          * @method lock
19513          * @static
19514          */
19515         lock: function() { this.locked = true; },
19516
19517         /**
19518          * Unlock all drag and drop functionality
19519          * @method unlock
19520          * @static
19521          */
19522         unlock: function() { this.locked = false; },
19523
19524         /**
19525          * Is drag and drop locked?
19526          * @method isLocked
19527          * @return {boolean} True if drag and drop is locked, false otherwise.
19528          * @static
19529          */
19530         isLocked: function() { return this.locked; },
19531
19532         /**
19533          * Location cache that is set for all drag drop objects when a drag is
19534          * initiated, cleared when the drag is finished.
19535          * @property locationCache
19536          * @private
19537          * @static
19538          */
19539         locationCache: {},
19540
19541         /**
19542          * Set useCache to false if you want to force object the lookup of each
19543          * drag and drop linked element constantly during a drag.
19544          * @property useCache
19545          * @type boolean
19546          * @static
19547          */
19548         useCache: true,
19549
19550         /**
19551          * The number of pixels that the mouse needs to move after the
19552          * mousedown before the drag is initiated.  Default=3;
19553          * @property clickPixelThresh
19554          * @type int
19555          * @static
19556          */
19557         clickPixelThresh: 3,
19558
19559         /**
19560          * The number of milliseconds after the mousedown event to initiate the
19561          * drag if we don't get a mouseup event. Default=1000
19562          * @property clickTimeThresh
19563          * @type int
19564          * @static
19565          */
19566         clickTimeThresh: 350,
19567
19568         /**
19569          * Flag that indicates that either the drag pixel threshold or the
19570          * mousdown time threshold has been met
19571          * @property dragThreshMet
19572          * @type boolean
19573          * @private
19574          * @static
19575          */
19576         dragThreshMet: false,
19577
19578         /**
19579          * Timeout used for the click time threshold
19580          * @property clickTimeout
19581          * @type Object
19582          * @private
19583          * @static
19584          */
19585         clickTimeout: null,
19586
19587         /**
19588          * The X position of the mousedown event stored for later use when a
19589          * drag threshold is met.
19590          * @property startX
19591          * @type int
19592          * @private
19593          * @static
19594          */
19595         startX: 0,
19596
19597         /**
19598          * The Y position of the mousedown event stored for later use when a
19599          * drag threshold is met.
19600          * @property startY
19601          * @type int
19602          * @private
19603          * @static
19604          */
19605         startY: 0,
19606
19607         /**
19608          * Each DragDrop instance must be registered with the DragDropMgr.
19609          * This is executed in DragDrop.init()
19610          * @method regDragDrop
19611          * @param {DragDrop} oDD the DragDrop object to register
19612          * @param {String} sGroup the name of the group this element belongs to
19613          * @static
19614          */
19615         regDragDrop: function(oDD, sGroup) {
19616             if (!this.initialized) { this.init(); }
19617
19618             if (!this.ids[sGroup]) {
19619                 this.ids[sGroup] = {};
19620             }
19621             this.ids[sGroup][oDD.id] = oDD;
19622         },
19623
19624         /**
19625          * Removes the supplied dd instance from the supplied group. Executed
19626          * by DragDrop.removeFromGroup, so don't call this function directly.
19627          * @method removeDDFromGroup
19628          * @private
19629          * @static
19630          */
19631         removeDDFromGroup: function(oDD, sGroup) {
19632             if (!this.ids[sGroup]) {
19633                 this.ids[sGroup] = {};
19634             }
19635
19636             var obj = this.ids[sGroup];
19637             if (obj && obj[oDD.id]) {
19638                 delete obj[oDD.id];
19639             }
19640         },
19641
19642         /**
19643          * Unregisters a drag and drop item.  This is executed in
19644          * DragDrop.unreg, use that method instead of calling this directly.
19645          * @method _remove
19646          * @private
19647          * @static
19648          */
19649         _remove: function(oDD) {
19650             for (var g in oDD.groups) {
19651                 if (g && this.ids[g][oDD.id]) {
19652                     delete this.ids[g][oDD.id];
19653                 }
19654             }
19655             delete this.handleIds[oDD.id];
19656         },
19657
19658         /**
19659          * Each DragDrop handle element must be registered.  This is done
19660          * automatically when executing DragDrop.setHandleElId()
19661          * @method regHandle
19662          * @param {String} sDDId the DragDrop id this element is a handle for
19663          * @param {String} sHandleId the id of the element that is the drag
19664          * handle
19665          * @static
19666          */
19667         regHandle: function(sDDId, sHandleId) {
19668             if (!this.handleIds[sDDId]) {
19669                 this.handleIds[sDDId] = {};
19670             }
19671             this.handleIds[sDDId][sHandleId] = sHandleId;
19672         },
19673
19674         /**
19675          * Utility function to determine if a given element has been
19676          * registered as a drag drop item.
19677          * @method isDragDrop
19678          * @param {String} id the element id to check
19679          * @return {boolean} true if this element is a DragDrop item,
19680          * false otherwise
19681          * @static
19682          */
19683         isDragDrop: function(id) {
19684             return ( this.getDDById(id) ) ? true : false;
19685         },
19686
19687         /**
19688          * Returns the drag and drop instances that are in all groups the
19689          * passed in instance belongs to.
19690          * @method getRelated
19691          * @param {DragDrop} p_oDD the obj to get related data for
19692          * @param {boolean} bTargetsOnly if true, only return targetable objs
19693          * @return {DragDrop[]} the related instances
19694          * @static
19695          */
19696         getRelated: function(p_oDD, bTargetsOnly) {
19697             var oDDs = [];
19698             for (var i in p_oDD.groups) {
19699                 for (j in this.ids[i]) {
19700                     var dd = this.ids[i][j];
19701                     if (! this.isTypeOfDD(dd)) {
19702                         continue;
19703                     }
19704                     if (!bTargetsOnly || dd.isTarget) {
19705                         oDDs[oDDs.length] = dd;
19706                     }
19707                 }
19708             }
19709
19710             return oDDs;
19711         },
19712
19713         /**
19714          * Returns true if the specified dd target is a legal target for
19715          * the specifice drag obj
19716          * @method isLegalTarget
19717          * @param {DragDrop} the drag obj
19718          * @param {DragDrop} the target
19719          * @return {boolean} true if the target is a legal target for the
19720          * dd obj
19721          * @static
19722          */
19723         isLegalTarget: function (oDD, oTargetDD) {
19724             var targets = this.getRelated(oDD, true);
19725             for (var i=0, len=targets.length;i<len;++i) {
19726                 if (targets[i].id == oTargetDD.id) {
19727                     return true;
19728                 }
19729             }
19730
19731             return false;
19732         },
19733
19734         /**
19735          * My goal is to be able to transparently determine if an object is
19736          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
19737          * returns "object", oDD.constructor.toString() always returns
19738          * "DragDrop" and not the name of the subclass.  So for now it just
19739          * evaluates a well-known variable in DragDrop.
19740          * @method isTypeOfDD
19741          * @param {Object} the object to evaluate
19742          * @return {boolean} true if typeof oDD = DragDrop
19743          * @static
19744          */
19745         isTypeOfDD: function (oDD) {
19746             return (oDD && oDD.__ygDragDrop);
19747         },
19748
19749         /**
19750          * Utility function to determine if a given element has been
19751          * registered as a drag drop handle for the given Drag Drop object.
19752          * @method isHandle
19753          * @param {String} id the element id to check
19754          * @return {boolean} true if this element is a DragDrop handle, false
19755          * otherwise
19756          * @static
19757          */
19758         isHandle: function(sDDId, sHandleId) {
19759             return ( this.handleIds[sDDId] &&
19760                             this.handleIds[sDDId][sHandleId] );
19761         },
19762
19763         /**
19764          * Returns the DragDrop instance for a given id
19765          * @method getDDById
19766          * @param {String} id the id of the DragDrop object
19767          * @return {DragDrop} the drag drop object, null if it is not found
19768          * @static
19769          */
19770         getDDById: function(id) {
19771             for (var i in this.ids) {
19772                 if (this.ids[i][id]) {
19773                     return this.ids[i][id];
19774                 }
19775             }
19776             return null;
19777         },
19778
19779         /**
19780          * Fired after a registered DragDrop object gets the mousedown event.
19781          * Sets up the events required to track the object being dragged
19782          * @method handleMouseDown
19783          * @param {Event} e the event
19784          * @param oDD the DragDrop object being dragged
19785          * @private
19786          * @static
19787          */
19788         handleMouseDown: function(e, oDD) {
19789             if(Roo.QuickTips){
19790                 Roo.QuickTips.disable();
19791             }
19792             this.currentTarget = e.getTarget();
19793
19794             this.dragCurrent = oDD;
19795
19796             var el = oDD.getEl();
19797
19798             // track start position
19799             this.startX = e.getPageX();
19800             this.startY = e.getPageY();
19801
19802             this.deltaX = this.startX - el.offsetLeft;
19803             this.deltaY = this.startY - el.offsetTop;
19804
19805             this.dragThreshMet = false;
19806
19807             this.clickTimeout = setTimeout(
19808                     function() {
19809                         var DDM = Roo.dd.DDM;
19810                         DDM.startDrag(DDM.startX, DDM.startY);
19811                     },
19812                     this.clickTimeThresh );
19813         },
19814
19815         /**
19816          * Fired when either the drag pixel threshol or the mousedown hold
19817          * time threshold has been met.
19818          * @method startDrag
19819          * @param x {int} the X position of the original mousedown
19820          * @param y {int} the Y position of the original mousedown
19821          * @static
19822          */
19823         startDrag: function(x, y) {
19824             clearTimeout(this.clickTimeout);
19825             if (this.dragCurrent) {
19826                 this.dragCurrent.b4StartDrag(x, y);
19827                 this.dragCurrent.startDrag(x, y);
19828             }
19829             this.dragThreshMet = true;
19830         },
19831
19832         /**
19833          * Internal function to handle the mouseup event.  Will be invoked
19834          * from the context of the document.
19835          * @method handleMouseUp
19836          * @param {Event} e the event
19837          * @private
19838          * @static
19839          */
19840         handleMouseUp: function(e) {
19841
19842             if(Roo.QuickTips){
19843                 Roo.QuickTips.enable();
19844             }
19845             if (! this.dragCurrent) {
19846                 return;
19847             }
19848
19849             clearTimeout(this.clickTimeout);
19850
19851             if (this.dragThreshMet) {
19852                 this.fireEvents(e, true);
19853             } else {
19854             }
19855
19856             this.stopDrag(e);
19857
19858             this.stopEvent(e);
19859         },
19860
19861         /**
19862          * Utility to stop event propagation and event default, if these
19863          * features are turned on.
19864          * @method stopEvent
19865          * @param {Event} e the event as returned by this.getEvent()
19866          * @static
19867          */
19868         stopEvent: function(e){
19869             if(this.stopPropagation) {
19870                 e.stopPropagation();
19871             }
19872
19873             if (this.preventDefault) {
19874                 e.preventDefault();
19875             }
19876         },
19877
19878         /**
19879          * Internal function to clean up event handlers after the drag
19880          * operation is complete
19881          * @method stopDrag
19882          * @param {Event} e the event
19883          * @private
19884          * @static
19885          */
19886         stopDrag: function(e) {
19887             // Fire the drag end event for the item that was dragged
19888             if (this.dragCurrent) {
19889                 if (this.dragThreshMet) {
19890                     this.dragCurrent.b4EndDrag(e);
19891                     this.dragCurrent.endDrag(e);
19892                 }
19893
19894                 this.dragCurrent.onMouseUp(e);
19895             }
19896
19897             this.dragCurrent = null;
19898             this.dragOvers = {};
19899         },
19900
19901         /**
19902          * Internal function to handle the mousemove event.  Will be invoked
19903          * from the context of the html element.
19904          *
19905          * @TODO figure out what we can do about mouse events lost when the
19906          * user drags objects beyond the window boundary.  Currently we can
19907          * detect this in internet explorer by verifying that the mouse is
19908          * down during the mousemove event.  Firefox doesn't give us the
19909          * button state on the mousemove event.
19910          * @method handleMouseMove
19911          * @param {Event} e the event
19912          * @private
19913          * @static
19914          */
19915         handleMouseMove: function(e) {
19916             if (! this.dragCurrent) {
19917                 return true;
19918             }
19919
19920             // var button = e.which || e.button;
19921
19922             // check for IE mouseup outside of page boundary
19923             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
19924                 this.stopEvent(e);
19925                 return this.handleMouseUp(e);
19926             }
19927
19928             if (!this.dragThreshMet) {
19929                 var diffX = Math.abs(this.startX - e.getPageX());
19930                 var diffY = Math.abs(this.startY - e.getPageY());
19931                 if (diffX > this.clickPixelThresh ||
19932                             diffY > this.clickPixelThresh) {
19933                     this.startDrag(this.startX, this.startY);
19934                 }
19935             }
19936
19937             if (this.dragThreshMet) {
19938                 this.dragCurrent.b4Drag(e);
19939                 this.dragCurrent.onDrag(e);
19940                 if(!this.dragCurrent.moveOnly){
19941                     this.fireEvents(e, false);
19942                 }
19943             }
19944
19945             this.stopEvent(e);
19946
19947             return true;
19948         },
19949
19950         /**
19951          * Iterates over all of the DragDrop elements to find ones we are
19952          * hovering over or dropping on
19953          * @method fireEvents
19954          * @param {Event} e the event
19955          * @param {boolean} isDrop is this a drop op or a mouseover op?
19956          * @private
19957          * @static
19958          */
19959         fireEvents: function(e, isDrop) {
19960             var dc = this.dragCurrent;
19961
19962             // If the user did the mouse up outside of the window, we could
19963             // get here even though we have ended the drag.
19964             if (!dc || dc.isLocked()) {
19965                 return;
19966             }
19967
19968             var pt = e.getPoint();
19969
19970             // cache the previous dragOver array
19971             var oldOvers = [];
19972
19973             var outEvts   = [];
19974             var overEvts  = [];
19975             var dropEvts  = [];
19976             var enterEvts = [];
19977
19978             // Check to see if the object(s) we were hovering over is no longer
19979             // being hovered over so we can fire the onDragOut event
19980             for (var i in this.dragOvers) {
19981
19982                 var ddo = this.dragOvers[i];
19983
19984                 if (! this.isTypeOfDD(ddo)) {
19985                     continue;
19986                 }
19987
19988                 if (! this.isOverTarget(pt, ddo, this.mode)) {
19989                     outEvts.push( ddo );
19990                 }
19991
19992                 oldOvers[i] = true;
19993                 delete this.dragOvers[i];
19994             }
19995
19996             for (var sGroup in dc.groups) {
19997
19998                 if ("string" != typeof sGroup) {
19999                     continue;
20000                 }
20001
20002                 for (i in this.ids[sGroup]) {
20003                     var oDD = this.ids[sGroup][i];
20004                     if (! this.isTypeOfDD(oDD)) {
20005                         continue;
20006                     }
20007
20008                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20009                         if (this.isOverTarget(pt, oDD, this.mode)) {
20010                             // look for drop interactions
20011                             if (isDrop) {
20012                                 dropEvts.push( oDD );
20013                             // look for drag enter and drag over interactions
20014                             } else {
20015
20016                                 // initial drag over: dragEnter fires
20017                                 if (!oldOvers[oDD.id]) {
20018                                     enterEvts.push( oDD );
20019                                 // subsequent drag overs: dragOver fires
20020                                 } else {
20021                                     overEvts.push( oDD );
20022                                 }
20023
20024                                 this.dragOvers[oDD.id] = oDD;
20025                             }
20026                         }
20027                     }
20028                 }
20029             }
20030
20031             if (this.mode) {
20032                 if (outEvts.length) {
20033                     dc.b4DragOut(e, outEvts);
20034                     dc.onDragOut(e, outEvts);
20035                 }
20036
20037                 if (enterEvts.length) {
20038                     dc.onDragEnter(e, enterEvts);
20039                 }
20040
20041                 if (overEvts.length) {
20042                     dc.b4DragOver(e, overEvts);
20043                     dc.onDragOver(e, overEvts);
20044                 }
20045
20046                 if (dropEvts.length) {
20047                     dc.b4DragDrop(e, dropEvts);
20048                     dc.onDragDrop(e, dropEvts);
20049                 }
20050
20051             } else {
20052                 // fire dragout events
20053                 var len = 0;
20054                 for (i=0, len=outEvts.length; i<len; ++i) {
20055                     dc.b4DragOut(e, outEvts[i].id);
20056                     dc.onDragOut(e, outEvts[i].id);
20057                 }
20058
20059                 // fire enter events
20060                 for (i=0,len=enterEvts.length; i<len; ++i) {
20061                     // dc.b4DragEnter(e, oDD.id);
20062                     dc.onDragEnter(e, enterEvts[i].id);
20063                 }
20064
20065                 // fire over events
20066                 for (i=0,len=overEvts.length; i<len; ++i) {
20067                     dc.b4DragOver(e, overEvts[i].id);
20068                     dc.onDragOver(e, overEvts[i].id);
20069                 }
20070
20071                 // fire drop events
20072                 for (i=0, len=dropEvts.length; i<len; ++i) {
20073                     dc.b4DragDrop(e, dropEvts[i].id);
20074                     dc.onDragDrop(e, dropEvts[i].id);
20075                 }
20076
20077             }
20078
20079             // notify about a drop that did not find a target
20080             if (isDrop && !dropEvts.length) {
20081                 dc.onInvalidDrop(e);
20082             }
20083
20084         },
20085
20086         /**
20087          * Helper function for getting the best match from the list of drag
20088          * and drop objects returned by the drag and drop events when we are
20089          * in INTERSECT mode.  It returns either the first object that the
20090          * cursor is over, or the object that has the greatest overlap with
20091          * the dragged element.
20092          * @method getBestMatch
20093          * @param  {DragDrop[]} dds The array of drag and drop objects
20094          * targeted
20095          * @return {DragDrop}       The best single match
20096          * @static
20097          */
20098         getBestMatch: function(dds) {
20099             var winner = null;
20100             // Return null if the input is not what we expect
20101             //if (!dds || !dds.length || dds.length == 0) {
20102                // winner = null;
20103             // If there is only one item, it wins
20104             //} else if (dds.length == 1) {
20105
20106             var len = dds.length;
20107
20108             if (len == 1) {
20109                 winner = dds[0];
20110             } else {
20111                 // Loop through the targeted items
20112                 for (var i=0; i<len; ++i) {
20113                     var dd = dds[i];
20114                     // If the cursor is over the object, it wins.  If the
20115                     // cursor is over multiple matches, the first one we come
20116                     // to wins.
20117                     if (dd.cursorIsOver) {
20118                         winner = dd;
20119                         break;
20120                     // Otherwise the object with the most overlap wins
20121                     } else {
20122                         if (!winner ||
20123                             winner.overlap.getArea() < dd.overlap.getArea()) {
20124                             winner = dd;
20125                         }
20126                     }
20127                 }
20128             }
20129
20130             return winner;
20131         },
20132
20133         /**
20134          * Refreshes the cache of the top-left and bottom-right points of the
20135          * drag and drop objects in the specified group(s).  This is in the
20136          * format that is stored in the drag and drop instance, so typical
20137          * usage is:
20138          * <code>
20139          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20140          * </code>
20141          * Alternatively:
20142          * <code>
20143          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20144          * </code>
20145          * @TODO this really should be an indexed array.  Alternatively this
20146          * method could accept both.
20147          * @method refreshCache
20148          * @param {Object} groups an associative array of groups to refresh
20149          * @static
20150          */
20151         refreshCache: function(groups) {
20152             for (var sGroup in groups) {
20153                 if ("string" != typeof sGroup) {
20154                     continue;
20155                 }
20156                 for (var i in this.ids[sGroup]) {
20157                     var oDD = this.ids[sGroup][i];
20158
20159                     if (this.isTypeOfDD(oDD)) {
20160                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20161                         var loc = this.getLocation(oDD);
20162                         if (loc) {
20163                             this.locationCache[oDD.id] = loc;
20164                         } else {
20165                             delete this.locationCache[oDD.id];
20166                             // this will unregister the drag and drop object if
20167                             // the element is not in a usable state
20168                             // oDD.unreg();
20169                         }
20170                     }
20171                 }
20172             }
20173         },
20174
20175         /**
20176          * This checks to make sure an element exists and is in the DOM.  The
20177          * main purpose is to handle cases where innerHTML is used to remove
20178          * drag and drop objects from the DOM.  IE provides an 'unspecified
20179          * error' when trying to access the offsetParent of such an element
20180          * @method verifyEl
20181          * @param {HTMLElement} el the element to check
20182          * @return {boolean} true if the element looks usable
20183          * @static
20184          */
20185         verifyEl: function(el) {
20186             if (el) {
20187                 var parent;
20188                 if(Roo.isIE){
20189                     try{
20190                         parent = el.offsetParent;
20191                     }catch(e){}
20192                 }else{
20193                     parent = el.offsetParent;
20194                 }
20195                 if (parent) {
20196                     return true;
20197                 }
20198             }
20199
20200             return false;
20201         },
20202
20203         /**
20204          * Returns a Region object containing the drag and drop element's position
20205          * and size, including the padding configured for it
20206          * @method getLocation
20207          * @param {DragDrop} oDD the drag and drop object to get the
20208          *                       location for
20209          * @return {Roo.lib.Region} a Region object representing the total area
20210          *                             the element occupies, including any padding
20211          *                             the instance is configured for.
20212          * @static
20213          */
20214         getLocation: function(oDD) {
20215             if (! this.isTypeOfDD(oDD)) {
20216                 return null;
20217             }
20218
20219             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20220
20221             try {
20222                 pos= Roo.lib.Dom.getXY(el);
20223             } catch (e) { }
20224
20225             if (!pos) {
20226                 return null;
20227             }
20228
20229             x1 = pos[0];
20230             x2 = x1 + el.offsetWidth;
20231             y1 = pos[1];
20232             y2 = y1 + el.offsetHeight;
20233
20234             t = y1 - oDD.padding[0];
20235             r = x2 + oDD.padding[1];
20236             b = y2 + oDD.padding[2];
20237             l = x1 - oDD.padding[3];
20238
20239             return new Roo.lib.Region( t, r, b, l );
20240         },
20241
20242         /**
20243          * Checks the cursor location to see if it over the target
20244          * @method isOverTarget
20245          * @param {Roo.lib.Point} pt The point to evaluate
20246          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20247          * @return {boolean} true if the mouse is over the target
20248          * @private
20249          * @static
20250          */
20251         isOverTarget: function(pt, oTarget, intersect) {
20252             // use cache if available
20253             var loc = this.locationCache[oTarget.id];
20254             if (!loc || !this.useCache) {
20255                 loc = this.getLocation(oTarget);
20256                 this.locationCache[oTarget.id] = loc;
20257
20258             }
20259
20260             if (!loc) {
20261                 return false;
20262             }
20263
20264             oTarget.cursorIsOver = loc.contains( pt );
20265
20266             // DragDrop is using this as a sanity check for the initial mousedown
20267             // in this case we are done.  In POINT mode, if the drag obj has no
20268             // contraints, we are also done. Otherwise we need to evaluate the
20269             // location of the target as related to the actual location of the
20270             // dragged element.
20271             var dc = this.dragCurrent;
20272             if (!dc || !dc.getTargetCoord ||
20273                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20274                 return oTarget.cursorIsOver;
20275             }
20276
20277             oTarget.overlap = null;
20278
20279             // Get the current location of the drag element, this is the
20280             // location of the mouse event less the delta that represents
20281             // where the original mousedown happened on the element.  We
20282             // need to consider constraints and ticks as well.
20283             var pos = dc.getTargetCoord(pt.x, pt.y);
20284
20285             var el = dc.getDragEl();
20286             var curRegion = new Roo.lib.Region( pos.y,
20287                                                    pos.x + el.offsetWidth,
20288                                                    pos.y + el.offsetHeight,
20289                                                    pos.x );
20290
20291             var overlap = curRegion.intersect(loc);
20292
20293             if (overlap) {
20294                 oTarget.overlap = overlap;
20295                 return (intersect) ? true : oTarget.cursorIsOver;
20296             } else {
20297                 return false;
20298             }
20299         },
20300
20301         /**
20302          * unload event handler
20303          * @method _onUnload
20304          * @private
20305          * @static
20306          */
20307         _onUnload: function(e, me) {
20308             Roo.dd.DragDropMgr.unregAll();
20309         },
20310
20311         /**
20312          * Cleans up the drag and drop events and objects.
20313          * @method unregAll
20314          * @private
20315          * @static
20316          */
20317         unregAll: function() {
20318
20319             if (this.dragCurrent) {
20320                 this.stopDrag();
20321                 this.dragCurrent = null;
20322             }
20323
20324             this._execOnAll("unreg", []);
20325
20326             for (i in this.elementCache) {
20327                 delete this.elementCache[i];
20328             }
20329
20330             this.elementCache = {};
20331             this.ids = {};
20332         },
20333
20334         /**
20335          * A cache of DOM elements
20336          * @property elementCache
20337          * @private
20338          * @static
20339          */
20340         elementCache: {},
20341
20342         /**
20343          * Get the wrapper for the DOM element specified
20344          * @method getElWrapper
20345          * @param {String} id the id of the element to get
20346          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20347          * @private
20348          * @deprecated This wrapper isn't that useful
20349          * @static
20350          */
20351         getElWrapper: function(id) {
20352             var oWrapper = this.elementCache[id];
20353             if (!oWrapper || !oWrapper.el) {
20354                 oWrapper = this.elementCache[id] =
20355                     new this.ElementWrapper(Roo.getDom(id));
20356             }
20357             return oWrapper;
20358         },
20359
20360         /**
20361          * Returns the actual DOM element
20362          * @method getElement
20363          * @param {String} id the id of the elment to get
20364          * @return {Object} The element
20365          * @deprecated use Roo.getDom instead
20366          * @static
20367          */
20368         getElement: function(id) {
20369             return Roo.getDom(id);
20370         },
20371
20372         /**
20373          * Returns the style property for the DOM element (i.e.,
20374          * document.getElById(id).style)
20375          * @method getCss
20376          * @param {String} id the id of the elment to get
20377          * @return {Object} The style property of the element
20378          * @deprecated use Roo.getDom instead
20379          * @static
20380          */
20381         getCss: function(id) {
20382             var el = Roo.getDom(id);
20383             return (el) ? el.style : null;
20384         },
20385
20386         /**
20387          * Inner class for cached elements
20388          * @class DragDropMgr.ElementWrapper
20389          * @for DragDropMgr
20390          * @private
20391          * @deprecated
20392          */
20393         ElementWrapper: function(el) {
20394                 /**
20395                  * The element
20396                  * @property el
20397                  */
20398                 this.el = el || null;
20399                 /**
20400                  * The element id
20401                  * @property id
20402                  */
20403                 this.id = this.el && el.id;
20404                 /**
20405                  * A reference to the style property
20406                  * @property css
20407                  */
20408                 this.css = this.el && el.style;
20409             },
20410
20411         /**
20412          * Returns the X position of an html element
20413          * @method getPosX
20414          * @param el the element for which to get the position
20415          * @return {int} the X coordinate
20416          * @for DragDropMgr
20417          * @deprecated use Roo.lib.Dom.getX instead
20418          * @static
20419          */
20420         getPosX: function(el) {
20421             return Roo.lib.Dom.getX(el);
20422         },
20423
20424         /**
20425          * Returns the Y position of an html element
20426          * @method getPosY
20427          * @param el the element for which to get the position
20428          * @return {int} the Y coordinate
20429          * @deprecated use Roo.lib.Dom.getY instead
20430          * @static
20431          */
20432         getPosY: function(el) {
20433             return Roo.lib.Dom.getY(el);
20434         },
20435
20436         /**
20437          * Swap two nodes.  In IE, we use the native method, for others we
20438          * emulate the IE behavior
20439          * @method swapNode
20440          * @param n1 the first node to swap
20441          * @param n2 the other node to swap
20442          * @static
20443          */
20444         swapNode: function(n1, n2) {
20445             if (n1.swapNode) {
20446                 n1.swapNode(n2);
20447             } else {
20448                 var p = n2.parentNode;
20449                 var s = n2.nextSibling;
20450
20451                 if (s == n1) {
20452                     p.insertBefore(n1, n2);
20453                 } else if (n2 == n1.nextSibling) {
20454                     p.insertBefore(n2, n1);
20455                 } else {
20456                     n1.parentNode.replaceChild(n2, n1);
20457                     p.insertBefore(n1, s);
20458                 }
20459             }
20460         },
20461
20462         /**
20463          * Returns the current scroll position
20464          * @method getScroll
20465          * @private
20466          * @static
20467          */
20468         getScroll: function () {
20469             var t, l, dde=document.documentElement, db=document.body;
20470             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20471                 t = dde.scrollTop;
20472                 l = dde.scrollLeft;
20473             } else if (db) {
20474                 t = db.scrollTop;
20475                 l = db.scrollLeft;
20476             } else {
20477
20478             }
20479             return { top: t, left: l };
20480         },
20481
20482         /**
20483          * Returns the specified element style property
20484          * @method getStyle
20485          * @param {HTMLElement} el          the element
20486          * @param {string}      styleProp   the style property
20487          * @return {string} The value of the style property
20488          * @deprecated use Roo.lib.Dom.getStyle
20489          * @static
20490          */
20491         getStyle: function(el, styleProp) {
20492             return Roo.fly(el).getStyle(styleProp);
20493         },
20494
20495         /**
20496          * Gets the scrollTop
20497          * @method getScrollTop
20498          * @return {int} the document's scrollTop
20499          * @static
20500          */
20501         getScrollTop: function () { return this.getScroll().top; },
20502
20503         /**
20504          * Gets the scrollLeft
20505          * @method getScrollLeft
20506          * @return {int} the document's scrollTop
20507          * @static
20508          */
20509         getScrollLeft: function () { return this.getScroll().left; },
20510
20511         /**
20512          * Sets the x/y position of an element to the location of the
20513          * target element.
20514          * @method moveToEl
20515          * @param {HTMLElement} moveEl      The element to move
20516          * @param {HTMLElement} targetEl    The position reference element
20517          * @static
20518          */
20519         moveToEl: function (moveEl, targetEl) {
20520             var aCoord = Roo.lib.Dom.getXY(targetEl);
20521             Roo.lib.Dom.setXY(moveEl, aCoord);
20522         },
20523
20524         /**
20525          * Numeric array sort function
20526          * @method numericSort
20527          * @static
20528          */
20529         numericSort: function(a, b) { return (a - b); },
20530
20531         /**
20532          * Internal counter
20533          * @property _timeoutCount
20534          * @private
20535          * @static
20536          */
20537         _timeoutCount: 0,
20538
20539         /**
20540          * Trying to make the load order less important.  Without this we get
20541          * an error if this file is loaded before the Event Utility.
20542          * @method _addListeners
20543          * @private
20544          * @static
20545          */
20546         _addListeners: function() {
20547             var DDM = Roo.dd.DDM;
20548             if ( Roo.lib.Event && document ) {
20549                 DDM._onLoad();
20550             } else {
20551                 if (DDM._timeoutCount > 2000) {
20552                 } else {
20553                     setTimeout(DDM._addListeners, 10);
20554                     if (document && document.body) {
20555                         DDM._timeoutCount += 1;
20556                     }
20557                 }
20558             }
20559         },
20560
20561         /**
20562          * Recursively searches the immediate parent and all child nodes for
20563          * the handle element in order to determine wheter or not it was
20564          * clicked.
20565          * @method handleWasClicked
20566          * @param node the html element to inspect
20567          * @static
20568          */
20569         handleWasClicked: function(node, id) {
20570             if (this.isHandle(id, node.id)) {
20571                 return true;
20572             } else {
20573                 // check to see if this is a text node child of the one we want
20574                 var p = node.parentNode;
20575
20576                 while (p) {
20577                     if (this.isHandle(id, p.id)) {
20578                         return true;
20579                     } else {
20580                         p = p.parentNode;
20581                     }
20582                 }
20583             }
20584
20585             return false;
20586         }
20587
20588     };
20589
20590 }();
20591
20592 // shorter alias, save a few bytes
20593 Roo.dd.DDM = Roo.dd.DragDropMgr;
20594 Roo.dd.DDM._addListeners();
20595
20596 }/*
20597  * Based on:
20598  * Ext JS Library 1.1.1
20599  * Copyright(c) 2006-2007, Ext JS, LLC.
20600  *
20601  * Originally Released Under LGPL - original licence link has changed is not relivant.
20602  *
20603  * Fork - LGPL
20604  * <script type="text/javascript">
20605  */
20606
20607 /**
20608  * @class Roo.dd.DD
20609  * A DragDrop implementation where the linked element follows the
20610  * mouse cursor during a drag.
20611  * @extends Roo.dd.DragDrop
20612  * @constructor
20613  * @param {String} id the id of the linked element
20614  * @param {String} sGroup the group of related DragDrop items
20615  * @param {object} config an object containing configurable attributes
20616  *                Valid properties for DD:
20617  *                    scroll
20618  */
20619 Roo.dd.DD = function(id, sGroup, config) {
20620     if (id) {
20621         this.init(id, sGroup, config);
20622     }
20623 };
20624
20625 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
20626
20627     /**
20628      * When set to true, the utility automatically tries to scroll the browser
20629      * window wehn a drag and drop element is dragged near the viewport boundary.
20630      * Defaults to true.
20631      * @property scroll
20632      * @type boolean
20633      */
20634     scroll: true,
20635
20636     /**
20637      * Sets the pointer offset to the distance between the linked element's top
20638      * left corner and the location the element was clicked
20639      * @method autoOffset
20640      * @param {int} iPageX the X coordinate of the click
20641      * @param {int} iPageY the Y coordinate of the click
20642      */
20643     autoOffset: function(iPageX, iPageY) {
20644         var x = iPageX - this.startPageX;
20645         var y = iPageY - this.startPageY;
20646         this.setDelta(x, y);
20647     },
20648
20649     /**
20650      * Sets the pointer offset.  You can call this directly to force the
20651      * offset to be in a particular location (e.g., pass in 0,0 to set it
20652      * to the center of the object)
20653      * @method setDelta
20654      * @param {int} iDeltaX the distance from the left
20655      * @param {int} iDeltaY the distance from the top
20656      */
20657     setDelta: function(iDeltaX, iDeltaY) {
20658         this.deltaX = iDeltaX;
20659         this.deltaY = iDeltaY;
20660     },
20661
20662     /**
20663      * Sets the drag element to the location of the mousedown or click event,
20664      * maintaining the cursor location relative to the location on the element
20665      * that was clicked.  Override this if you want to place the element in a
20666      * location other than where the cursor is.
20667      * @method setDragElPos
20668      * @param {int} iPageX the X coordinate of the mousedown or drag event
20669      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20670      */
20671     setDragElPos: function(iPageX, iPageY) {
20672         // the first time we do this, we are going to check to make sure
20673         // the element has css positioning
20674
20675         var el = this.getDragEl();
20676         this.alignElWithMouse(el, iPageX, iPageY);
20677     },
20678
20679     /**
20680      * Sets the element to the location of the mousedown or click event,
20681      * maintaining the cursor location relative to the location on the element
20682      * that was clicked.  Override this if you want to place the element in a
20683      * location other than where the cursor is.
20684      * @method alignElWithMouse
20685      * @param {HTMLElement} el the element to move
20686      * @param {int} iPageX the X coordinate of the mousedown or drag event
20687      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20688      */
20689     alignElWithMouse: function(el, iPageX, iPageY) {
20690         var oCoord = this.getTargetCoord(iPageX, iPageY);
20691         var fly = el.dom ? el : Roo.fly(el);
20692         if (!this.deltaSetXY) {
20693             var aCoord = [oCoord.x, oCoord.y];
20694             fly.setXY(aCoord);
20695             var newLeft = fly.getLeft(true);
20696             var newTop  = fly.getTop(true);
20697             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
20698         } else {
20699             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
20700         }
20701
20702         this.cachePosition(oCoord.x, oCoord.y);
20703         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
20704         return oCoord;
20705     },
20706
20707     /**
20708      * Saves the most recent position so that we can reset the constraints and
20709      * tick marks on-demand.  We need to know this so that we can calculate the
20710      * number of pixels the element is offset from its original position.
20711      * @method cachePosition
20712      * @param iPageX the current x position (optional, this just makes it so we
20713      * don't have to look it up again)
20714      * @param iPageY the current y position (optional, this just makes it so we
20715      * don't have to look it up again)
20716      */
20717     cachePosition: function(iPageX, iPageY) {
20718         if (iPageX) {
20719             this.lastPageX = iPageX;
20720             this.lastPageY = iPageY;
20721         } else {
20722             var aCoord = Roo.lib.Dom.getXY(this.getEl());
20723             this.lastPageX = aCoord[0];
20724             this.lastPageY = aCoord[1];
20725         }
20726     },
20727
20728     /**
20729      * Auto-scroll the window if the dragged object has been moved beyond the
20730      * visible window boundary.
20731      * @method autoScroll
20732      * @param {int} x the drag element's x position
20733      * @param {int} y the drag element's y position
20734      * @param {int} h the height of the drag element
20735      * @param {int} w the width of the drag element
20736      * @private
20737      */
20738     autoScroll: function(x, y, h, w) {
20739
20740         if (this.scroll) {
20741             // The client height
20742             var clientH = Roo.lib.Dom.getViewWidth();
20743
20744             // The client width
20745             var clientW = Roo.lib.Dom.getViewHeight();
20746
20747             // The amt scrolled down
20748             var st = this.DDM.getScrollTop();
20749
20750             // The amt scrolled right
20751             var sl = this.DDM.getScrollLeft();
20752
20753             // Location of the bottom of the element
20754             var bot = h + y;
20755
20756             // Location of the right of the element
20757             var right = w + x;
20758
20759             // The distance from the cursor to the bottom of the visible area,
20760             // adjusted so that we don't scroll if the cursor is beyond the
20761             // element drag constraints
20762             var toBot = (clientH + st - y - this.deltaY);
20763
20764             // The distance from the cursor to the right of the visible area
20765             var toRight = (clientW + sl - x - this.deltaX);
20766
20767
20768             // How close to the edge the cursor must be before we scroll
20769             // var thresh = (document.all) ? 100 : 40;
20770             var thresh = 40;
20771
20772             // How many pixels to scroll per autoscroll op.  This helps to reduce
20773             // clunky scrolling. IE is more sensitive about this ... it needs this
20774             // value to be higher.
20775             var scrAmt = (document.all) ? 80 : 30;
20776
20777             // Scroll down if we are near the bottom of the visible page and the
20778             // obj extends below the crease
20779             if ( bot > clientH && toBot < thresh ) {
20780                 window.scrollTo(sl, st + scrAmt);
20781             }
20782
20783             // Scroll up if the window is scrolled down and the top of the object
20784             // goes above the top border
20785             if ( y < st && st > 0 && y - st < thresh ) {
20786                 window.scrollTo(sl, st - scrAmt);
20787             }
20788
20789             // Scroll right if the obj is beyond the right border and the cursor is
20790             // near the border.
20791             if ( right > clientW && toRight < thresh ) {
20792                 window.scrollTo(sl + scrAmt, st);
20793             }
20794
20795             // Scroll left if the window has been scrolled to the right and the obj
20796             // extends past the left border
20797             if ( x < sl && sl > 0 && x - sl < thresh ) {
20798                 window.scrollTo(sl - scrAmt, st);
20799             }
20800         }
20801     },
20802
20803     /**
20804      * Finds the location the element should be placed if we want to move
20805      * it to where the mouse location less the click offset would place us.
20806      * @method getTargetCoord
20807      * @param {int} iPageX the X coordinate of the click
20808      * @param {int} iPageY the Y coordinate of the click
20809      * @return an object that contains the coordinates (Object.x and Object.y)
20810      * @private
20811      */
20812     getTargetCoord: function(iPageX, iPageY) {
20813
20814
20815         var x = iPageX - this.deltaX;
20816         var y = iPageY - this.deltaY;
20817
20818         if (this.constrainX) {
20819             if (x < this.minX) { x = this.minX; }
20820             if (x > this.maxX) { x = this.maxX; }
20821         }
20822
20823         if (this.constrainY) {
20824             if (y < this.minY) { y = this.minY; }
20825             if (y > this.maxY) { y = this.maxY; }
20826         }
20827
20828         x = this.getTick(x, this.xTicks);
20829         y = this.getTick(y, this.yTicks);
20830
20831
20832         return {x:x, y:y};
20833     },
20834
20835     /*
20836      * Sets up config options specific to this class. Overrides
20837      * Roo.dd.DragDrop, but all versions of this method through the
20838      * inheritance chain are called
20839      */
20840     applyConfig: function() {
20841         Roo.dd.DD.superclass.applyConfig.call(this);
20842         this.scroll = (this.config.scroll !== false);
20843     },
20844
20845     /*
20846      * Event that fires prior to the onMouseDown event.  Overrides
20847      * Roo.dd.DragDrop.
20848      */
20849     b4MouseDown: function(e) {
20850         // this.resetConstraints();
20851         this.autoOffset(e.getPageX(),
20852                             e.getPageY());
20853     },
20854
20855     /*
20856      * Event that fires prior to the onDrag event.  Overrides
20857      * Roo.dd.DragDrop.
20858      */
20859     b4Drag: function(e) {
20860         this.setDragElPos(e.getPageX(),
20861                             e.getPageY());
20862     },
20863
20864     toString: function() {
20865         return ("DD " + this.id);
20866     }
20867
20868     //////////////////////////////////////////////////////////////////////////
20869     // Debugging ygDragDrop events that can be overridden
20870     //////////////////////////////////////////////////////////////////////////
20871     /*
20872     startDrag: function(x, y) {
20873     },
20874
20875     onDrag: function(e) {
20876     },
20877
20878     onDragEnter: function(e, id) {
20879     },
20880
20881     onDragOver: function(e, id) {
20882     },
20883
20884     onDragOut: function(e, id) {
20885     },
20886
20887     onDragDrop: function(e, id) {
20888     },
20889
20890     endDrag: function(e) {
20891     }
20892
20893     */
20894
20895 });/*
20896  * Based on:
20897  * Ext JS Library 1.1.1
20898  * Copyright(c) 2006-2007, Ext JS, LLC.
20899  *
20900  * Originally Released Under LGPL - original licence link has changed is not relivant.
20901  *
20902  * Fork - LGPL
20903  * <script type="text/javascript">
20904  */
20905
20906 /**
20907  * @class Roo.dd.DDProxy
20908  * A DragDrop implementation that inserts an empty, bordered div into
20909  * the document that follows the cursor during drag operations.  At the time of
20910  * the click, the frame div is resized to the dimensions of the linked html
20911  * element, and moved to the exact location of the linked element.
20912  *
20913  * References to the "frame" element refer to the single proxy element that
20914  * was created to be dragged in place of all DDProxy elements on the
20915  * page.
20916  *
20917  * @extends Roo.dd.DD
20918  * @constructor
20919  * @param {String} id the id of the linked html element
20920  * @param {String} sGroup the group of related DragDrop objects
20921  * @param {object} config an object containing configurable attributes
20922  *                Valid properties for DDProxy in addition to those in DragDrop:
20923  *                   resizeFrame, centerFrame, dragElId
20924  */
20925 Roo.dd.DDProxy = function(id, sGroup, config) {
20926     if (id) {
20927         this.init(id, sGroup, config);
20928         this.initFrame();
20929     }
20930 };
20931
20932 /**
20933  * The default drag frame div id
20934  * @property Roo.dd.DDProxy.dragElId
20935  * @type String
20936  * @static
20937  */
20938 Roo.dd.DDProxy.dragElId = "ygddfdiv";
20939
20940 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
20941
20942     /**
20943      * By default we resize the drag frame to be the same size as the element
20944      * we want to drag (this is to get the frame effect).  We can turn it off
20945      * if we want a different behavior.
20946      * @property resizeFrame
20947      * @type boolean
20948      */
20949     resizeFrame: true,
20950
20951     /**
20952      * By default the frame is positioned exactly where the drag element is, so
20953      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
20954      * you do not have constraints on the obj is to have the drag frame centered
20955      * around the cursor.  Set centerFrame to true for this effect.
20956      * @property centerFrame
20957      * @type boolean
20958      */
20959     centerFrame: false,
20960
20961     /**
20962      * Creates the proxy element if it does not yet exist
20963      * @method createFrame
20964      */
20965     createFrame: function() {
20966         var self = this;
20967         var body = document.body;
20968
20969         if (!body || !body.firstChild) {
20970             setTimeout( function() { self.createFrame(); }, 50 );
20971             return;
20972         }
20973
20974         var div = this.getDragEl();
20975
20976         if (!div) {
20977             div    = document.createElement("div");
20978             div.id = this.dragElId;
20979             var s  = div.style;
20980
20981             s.position   = "absolute";
20982             s.visibility = "hidden";
20983             s.cursor     = "move";
20984             s.border     = "2px solid #aaa";
20985             s.zIndex     = 999;
20986
20987             // appendChild can blow up IE if invoked prior to the window load event
20988             // while rendering a table.  It is possible there are other scenarios
20989             // that would cause this to happen as well.
20990             body.insertBefore(div, body.firstChild);
20991         }
20992     },
20993
20994     /**
20995      * Initialization for the drag frame element.  Must be called in the
20996      * constructor of all subclasses
20997      * @method initFrame
20998      */
20999     initFrame: function() {
21000         this.createFrame();
21001     },
21002
21003     applyConfig: function() {
21004         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21005
21006         this.resizeFrame = (this.config.resizeFrame !== false);
21007         this.centerFrame = (this.config.centerFrame);
21008         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21009     },
21010
21011     /**
21012      * Resizes the drag frame to the dimensions of the clicked object, positions
21013      * it over the object, and finally displays it
21014      * @method showFrame
21015      * @param {int} iPageX X click position
21016      * @param {int} iPageY Y click position
21017      * @private
21018      */
21019     showFrame: function(iPageX, iPageY) {
21020         var el = this.getEl();
21021         var dragEl = this.getDragEl();
21022         var s = dragEl.style;
21023
21024         this._resizeProxy();
21025
21026         if (this.centerFrame) {
21027             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21028                            Math.round(parseInt(s.height, 10)/2) );
21029         }
21030
21031         this.setDragElPos(iPageX, iPageY);
21032
21033         Roo.fly(dragEl).show();
21034     },
21035
21036     /**
21037      * The proxy is automatically resized to the dimensions of the linked
21038      * element when a drag is initiated, unless resizeFrame is set to false
21039      * @method _resizeProxy
21040      * @private
21041      */
21042     _resizeProxy: function() {
21043         if (this.resizeFrame) {
21044             var el = this.getEl();
21045             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21046         }
21047     },
21048
21049     // overrides Roo.dd.DragDrop
21050     b4MouseDown: function(e) {
21051         var x = e.getPageX();
21052         var y = e.getPageY();
21053         this.autoOffset(x, y);
21054         this.setDragElPos(x, y);
21055     },
21056
21057     // overrides Roo.dd.DragDrop
21058     b4StartDrag: function(x, y) {
21059         // show the drag frame
21060         this.showFrame(x, y);
21061     },
21062
21063     // overrides Roo.dd.DragDrop
21064     b4EndDrag: function(e) {
21065         Roo.fly(this.getDragEl()).hide();
21066     },
21067
21068     // overrides Roo.dd.DragDrop
21069     // By default we try to move the element to the last location of the frame.
21070     // This is so that the default behavior mirrors that of Roo.dd.DD.
21071     endDrag: function(e) {
21072
21073         var lel = this.getEl();
21074         var del = this.getDragEl();
21075
21076         // Show the drag frame briefly so we can get its position
21077         del.style.visibility = "";
21078
21079         this.beforeMove();
21080         // Hide the linked element before the move to get around a Safari
21081         // rendering bug.
21082         lel.style.visibility = "hidden";
21083         Roo.dd.DDM.moveToEl(lel, del);
21084         del.style.visibility = "hidden";
21085         lel.style.visibility = "";
21086
21087         this.afterDrag();
21088     },
21089
21090     beforeMove : function(){
21091
21092     },
21093
21094     afterDrag : function(){
21095
21096     },
21097
21098     toString: function() {
21099         return ("DDProxy " + this.id);
21100     }
21101
21102 });
21103 /*
21104  * Based on:
21105  * Ext JS Library 1.1.1
21106  * Copyright(c) 2006-2007, Ext JS, LLC.
21107  *
21108  * Originally Released Under LGPL - original licence link has changed is not relivant.
21109  *
21110  * Fork - LGPL
21111  * <script type="text/javascript">
21112  */
21113
21114  /**
21115  * @class Roo.dd.DDTarget
21116  * A DragDrop implementation that does not move, but can be a drop
21117  * target.  You would get the same result by simply omitting implementation
21118  * for the event callbacks, but this way we reduce the processing cost of the
21119  * event listener and the callbacks.
21120  * @extends Roo.dd.DragDrop
21121  * @constructor
21122  * @param {String} id the id of the element that is a drop target
21123  * @param {String} sGroup the group of related DragDrop objects
21124  * @param {object} config an object containing configurable attributes
21125  *                 Valid properties for DDTarget in addition to those in
21126  *                 DragDrop:
21127  *                    none
21128  */
21129 Roo.dd.DDTarget = function(id, sGroup, config) {
21130     if (id) {
21131         this.initTarget(id, sGroup, config);
21132     }
21133     if (config && (config.listeners || config.events)) { 
21134         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21135             listeners : config.listeners || {}, 
21136             events : config.events || {} 
21137         });    
21138     }
21139 };
21140
21141 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21142 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21143     toString: function() {
21144         return ("DDTarget " + this.id);
21145     }
21146 });
21147 /*
21148  * Based on:
21149  * Ext JS Library 1.1.1
21150  * Copyright(c) 2006-2007, Ext JS, LLC.
21151  *
21152  * Originally Released Under LGPL - original licence link has changed is not relivant.
21153  *
21154  * Fork - LGPL
21155  * <script type="text/javascript">
21156  */
21157  
21158
21159 /**
21160  * @class Roo.dd.ScrollManager
21161  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21162  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21163  * @singleton
21164  */
21165 Roo.dd.ScrollManager = function(){
21166     var ddm = Roo.dd.DragDropMgr;
21167     var els = {};
21168     var dragEl = null;
21169     var proc = {};
21170     
21171     
21172     
21173     var onStop = function(e){
21174         dragEl = null;
21175         clearProc();
21176     };
21177     
21178     var triggerRefresh = function(){
21179         if(ddm.dragCurrent){
21180              ddm.refreshCache(ddm.dragCurrent.groups);
21181         }
21182     };
21183     
21184     var doScroll = function(){
21185         if(ddm.dragCurrent){
21186             var dds = Roo.dd.ScrollManager;
21187             if(!dds.animate){
21188                 if(proc.el.scroll(proc.dir, dds.increment)){
21189                     triggerRefresh();
21190                 }
21191             }else{
21192                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21193             }
21194         }
21195     };
21196     
21197     var clearProc = function(){
21198         if(proc.id){
21199             clearInterval(proc.id);
21200         }
21201         proc.id = 0;
21202         proc.el = null;
21203         proc.dir = "";
21204     };
21205     
21206     var startProc = function(el, dir){
21207          Roo.log('scroll startproc');
21208         clearProc();
21209         proc.el = el;
21210         proc.dir = dir;
21211         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21212     };
21213     
21214     var onFire = function(e, isDrop){
21215        
21216         if(isDrop || !ddm.dragCurrent){ return; }
21217         var dds = Roo.dd.ScrollManager;
21218         if(!dragEl || dragEl != ddm.dragCurrent){
21219             dragEl = ddm.dragCurrent;
21220             // refresh regions on drag start
21221             dds.refreshCache();
21222         }
21223         
21224         var xy = Roo.lib.Event.getXY(e);
21225         var pt = new Roo.lib.Point(xy[0], xy[1]);
21226         for(var id in els){
21227             var el = els[id], r = el._region;
21228             if(r && r.contains(pt) && el.isScrollable()){
21229                 if(r.bottom - pt.y <= dds.thresh){
21230                     if(proc.el != el){
21231                         startProc(el, "down");
21232                     }
21233                     return;
21234                 }else if(r.right - pt.x <= dds.thresh){
21235                     if(proc.el != el){
21236                         startProc(el, "left");
21237                     }
21238                     return;
21239                 }else if(pt.y - r.top <= dds.thresh){
21240                     if(proc.el != el){
21241                         startProc(el, "up");
21242                     }
21243                     return;
21244                 }else if(pt.x - r.left <= dds.thresh){
21245                     if(proc.el != el){
21246                         startProc(el, "right");
21247                     }
21248                     return;
21249                 }
21250             }
21251         }
21252         clearProc();
21253     };
21254     
21255     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21256     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21257     
21258     return {
21259         /**
21260          * Registers new overflow element(s) to auto scroll
21261          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21262          */
21263         register : function(el){
21264             if(el instanceof Array){
21265                 for(var i = 0, len = el.length; i < len; i++) {
21266                         this.register(el[i]);
21267                 }
21268             }else{
21269                 el = Roo.get(el);
21270                 els[el.id] = el;
21271             }
21272             Roo.dd.ScrollManager.els = els;
21273         },
21274         
21275         /**
21276          * Unregisters overflow element(s) so they are no longer scrolled
21277          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21278          */
21279         unregister : function(el){
21280             if(el instanceof Array){
21281                 for(var i = 0, len = el.length; i < len; i++) {
21282                         this.unregister(el[i]);
21283                 }
21284             }else{
21285                 el = Roo.get(el);
21286                 delete els[el.id];
21287             }
21288         },
21289         
21290         /**
21291          * The number of pixels from the edge of a container the pointer needs to be to 
21292          * trigger scrolling (defaults to 25)
21293          * @type Number
21294          */
21295         thresh : 25,
21296         
21297         /**
21298          * The number of pixels to scroll in each scroll increment (defaults to 50)
21299          * @type Number
21300          */
21301         increment : 100,
21302         
21303         /**
21304          * The frequency of scrolls in milliseconds (defaults to 500)
21305          * @type Number
21306          */
21307         frequency : 500,
21308         
21309         /**
21310          * True to animate the scroll (defaults to true)
21311          * @type Boolean
21312          */
21313         animate: true,
21314         
21315         /**
21316          * The animation duration in seconds - 
21317          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21318          * @type Number
21319          */
21320         animDuration: .4,
21321         
21322         /**
21323          * Manually trigger a cache refresh.
21324          */
21325         refreshCache : function(){
21326             for(var id in els){
21327                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21328                     els[id]._region = els[id].getRegion();
21329                 }
21330             }
21331         }
21332     };
21333 }();/*
21334  * Based on:
21335  * Ext JS Library 1.1.1
21336  * Copyright(c) 2006-2007, Ext JS, LLC.
21337  *
21338  * Originally Released Under LGPL - original licence link has changed is not relivant.
21339  *
21340  * Fork - LGPL
21341  * <script type="text/javascript">
21342  */
21343  
21344
21345 /**
21346  * @class Roo.dd.Registry
21347  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21348  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21349  * @singleton
21350  */
21351 Roo.dd.Registry = function(){
21352     var elements = {}; 
21353     var handles = {}; 
21354     var autoIdSeed = 0;
21355
21356     var getId = function(el, autogen){
21357         if(typeof el == "string"){
21358             return el;
21359         }
21360         var id = el.id;
21361         if(!id && autogen !== false){
21362             id = "roodd-" + (++autoIdSeed);
21363             el.id = id;
21364         }
21365         return id;
21366     };
21367     
21368     return {
21369     /**
21370      * Register a drag drop element
21371      * @param {String|HTMLElement} element The id or DOM node to register
21372      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21373      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21374      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21375      * populated in the data object (if applicable):
21376      * <pre>
21377 Value      Description<br />
21378 ---------  ------------------------------------------<br />
21379 handles    Array of DOM nodes that trigger dragging<br />
21380            for the element being registered<br />
21381 isHandle   True if the element passed in triggers<br />
21382            dragging itself, else false
21383 </pre>
21384      */
21385         register : function(el, data){
21386             data = data || {};
21387             if(typeof el == "string"){
21388                 el = document.getElementById(el);
21389             }
21390             data.ddel = el;
21391             elements[getId(el)] = data;
21392             if(data.isHandle !== false){
21393                 handles[data.ddel.id] = data;
21394             }
21395             if(data.handles){
21396                 var hs = data.handles;
21397                 for(var i = 0, len = hs.length; i < len; i++){
21398                         handles[getId(hs[i])] = data;
21399                 }
21400             }
21401         },
21402
21403     /**
21404      * Unregister a drag drop element
21405      * @param {String|HTMLElement}  element The id or DOM node to unregister
21406      */
21407         unregister : function(el){
21408             var id = getId(el, false);
21409             var data = elements[id];
21410             if(data){
21411                 delete elements[id];
21412                 if(data.handles){
21413                     var hs = data.handles;
21414                     for(var i = 0, len = hs.length; i < len; i++){
21415                         delete handles[getId(hs[i], false)];
21416                     }
21417                 }
21418             }
21419         },
21420
21421     /**
21422      * Returns the handle registered for a DOM Node by id
21423      * @param {String|HTMLElement} id The DOM node or id to look up
21424      * @return {Object} handle The custom handle data
21425      */
21426         getHandle : function(id){
21427             if(typeof id != "string"){ // must be element?
21428                 id = id.id;
21429             }
21430             return handles[id];
21431         },
21432
21433     /**
21434      * Returns the handle that is registered for the DOM node that is the target of the event
21435      * @param {Event} e The event
21436      * @return {Object} handle The custom handle data
21437      */
21438         getHandleFromEvent : function(e){
21439             var t = Roo.lib.Event.getTarget(e);
21440             return t ? handles[t.id] : null;
21441         },
21442
21443     /**
21444      * Returns a custom data object that is registered for a DOM node by id
21445      * @param {String|HTMLElement} id The DOM node or id to look up
21446      * @return {Object} data The custom data
21447      */
21448         getTarget : function(id){
21449             if(typeof id != "string"){ // must be element?
21450                 id = id.id;
21451             }
21452             return elements[id];
21453         },
21454
21455     /**
21456      * Returns a custom data object that is registered for the DOM node that is the target of the event
21457      * @param {Event} e The event
21458      * @return {Object} data The custom data
21459      */
21460         getTargetFromEvent : function(e){
21461             var t = Roo.lib.Event.getTarget(e);
21462             return t ? elements[t.id] || handles[t.id] : null;
21463         }
21464     };
21465 }();/*
21466  * Based on:
21467  * Ext JS Library 1.1.1
21468  * Copyright(c) 2006-2007, Ext JS, LLC.
21469  *
21470  * Originally Released Under LGPL - original licence link has changed is not relivant.
21471  *
21472  * Fork - LGPL
21473  * <script type="text/javascript">
21474  */
21475  
21476
21477 /**
21478  * @class Roo.dd.StatusProxy
21479  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
21480  * default drag proxy used by all Roo.dd components.
21481  * @constructor
21482  * @param {Object} config
21483  */
21484 Roo.dd.StatusProxy = function(config){
21485     Roo.apply(this, config);
21486     this.id = this.id || Roo.id();
21487     this.el = new Roo.Layer({
21488         dh: {
21489             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
21490                 {tag: "div", cls: "x-dd-drop-icon"},
21491                 {tag: "div", cls: "x-dd-drag-ghost"}
21492             ]
21493         }, 
21494         shadow: !config || config.shadow !== false
21495     });
21496     this.ghost = Roo.get(this.el.dom.childNodes[1]);
21497     this.dropStatus = this.dropNotAllowed;
21498 };
21499
21500 Roo.dd.StatusProxy.prototype = {
21501     /**
21502      * @cfg {String} dropAllowed
21503      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
21504      */
21505     dropAllowed : "x-dd-drop-ok",
21506     /**
21507      * @cfg {String} dropNotAllowed
21508      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
21509      */
21510     dropNotAllowed : "x-dd-drop-nodrop",
21511
21512     /**
21513      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
21514      * over the current target element.
21515      * @param {String} cssClass The css class for the new drop status indicator image
21516      */
21517     setStatus : function(cssClass){
21518         cssClass = cssClass || this.dropNotAllowed;
21519         if(this.dropStatus != cssClass){
21520             this.el.replaceClass(this.dropStatus, cssClass);
21521             this.dropStatus = cssClass;
21522         }
21523     },
21524
21525     /**
21526      * Resets the status indicator to the default dropNotAllowed value
21527      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
21528      */
21529     reset : function(clearGhost){
21530         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
21531         this.dropStatus = this.dropNotAllowed;
21532         if(clearGhost){
21533             this.ghost.update("");
21534         }
21535     },
21536
21537     /**
21538      * Updates the contents of the ghost element
21539      * @param {String} html The html that will replace the current innerHTML of the ghost element
21540      */
21541     update : function(html){
21542         if(typeof html == "string"){
21543             this.ghost.update(html);
21544         }else{
21545             this.ghost.update("");
21546             html.style.margin = "0";
21547             this.ghost.dom.appendChild(html);
21548         }
21549         // ensure float = none set?? cant remember why though.
21550         var el = this.ghost.dom.firstChild;
21551                 if(el){
21552                         Roo.fly(el).setStyle('float', 'none');
21553                 }
21554     },
21555     
21556     /**
21557      * Returns the underlying proxy {@link Roo.Layer}
21558      * @return {Roo.Layer} el
21559     */
21560     getEl : function(){
21561         return this.el;
21562     },
21563
21564     /**
21565      * Returns the ghost element
21566      * @return {Roo.Element} el
21567      */
21568     getGhost : function(){
21569         return this.ghost;
21570     },
21571
21572     /**
21573      * Hides the proxy
21574      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
21575      */
21576     hide : function(clear){
21577         this.el.hide();
21578         if(clear){
21579             this.reset(true);
21580         }
21581     },
21582
21583     /**
21584      * Stops the repair animation if it's currently running
21585      */
21586     stop : function(){
21587         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
21588             this.anim.stop();
21589         }
21590     },
21591
21592     /**
21593      * Displays this proxy
21594      */
21595     show : function(){
21596         this.el.show();
21597     },
21598
21599     /**
21600      * Force the Layer to sync its shadow and shim positions to the element
21601      */
21602     sync : function(){
21603         this.el.sync();
21604     },
21605
21606     /**
21607      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
21608      * invalid drop operation by the item being dragged.
21609      * @param {Array} xy The XY position of the element ([x, y])
21610      * @param {Function} callback The function to call after the repair is complete
21611      * @param {Object} scope The scope in which to execute the callback
21612      */
21613     repair : function(xy, callback, scope){
21614         this.callback = callback;
21615         this.scope = scope;
21616         if(xy && this.animRepair !== false){
21617             this.el.addClass("x-dd-drag-repair");
21618             this.el.hideUnders(true);
21619             this.anim = this.el.shift({
21620                 duration: this.repairDuration || .5,
21621                 easing: 'easeOut',
21622                 xy: xy,
21623                 stopFx: true,
21624                 callback: this.afterRepair,
21625                 scope: this
21626             });
21627         }else{
21628             this.afterRepair();
21629         }
21630     },
21631
21632     // private
21633     afterRepair : function(){
21634         this.hide(true);
21635         if(typeof this.callback == "function"){
21636             this.callback.call(this.scope || this);
21637         }
21638         this.callback = null;
21639         this.scope = null;
21640     }
21641 };/*
21642  * Based on:
21643  * Ext JS Library 1.1.1
21644  * Copyright(c) 2006-2007, Ext JS, LLC.
21645  *
21646  * Originally Released Under LGPL - original licence link has changed is not relivant.
21647  *
21648  * Fork - LGPL
21649  * <script type="text/javascript">
21650  */
21651
21652 /**
21653  * @class Roo.dd.DragSource
21654  * @extends Roo.dd.DDProxy
21655  * A simple class that provides the basic implementation needed to make any element draggable.
21656  * @constructor
21657  * @param {String/HTMLElement/Element} el The container element
21658  * @param {Object} config
21659  */
21660 Roo.dd.DragSource = function(el, config){
21661     this.el = Roo.get(el);
21662     this.dragData = {};
21663     
21664     Roo.apply(this, config);
21665     
21666     if(!this.proxy){
21667         this.proxy = new Roo.dd.StatusProxy();
21668     }
21669
21670     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
21671           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
21672     
21673     this.dragging = false;
21674 };
21675
21676 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
21677     /**
21678      * @cfg {String} dropAllowed
21679      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21680      */
21681     dropAllowed : "x-dd-drop-ok",
21682     /**
21683      * @cfg {String} dropNotAllowed
21684      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21685      */
21686     dropNotAllowed : "x-dd-drop-nodrop",
21687
21688     /**
21689      * Returns the data object associated with this drag source
21690      * @return {Object} data An object containing arbitrary data
21691      */
21692     getDragData : function(e){
21693         return this.dragData;
21694     },
21695
21696     // private
21697     onDragEnter : function(e, id){
21698         var target = Roo.dd.DragDropMgr.getDDById(id);
21699         this.cachedTarget = target;
21700         if(this.beforeDragEnter(target, e, id) !== false){
21701             if(target.isNotifyTarget){
21702                 var status = target.notifyEnter(this, e, this.dragData);
21703                 this.proxy.setStatus(status);
21704             }else{
21705                 this.proxy.setStatus(this.dropAllowed);
21706             }
21707             
21708             if(this.afterDragEnter){
21709                 /**
21710                  * An empty function by default, but provided so that you can perform a custom action
21711                  * when the dragged item enters the drop target by providing an implementation.
21712                  * @param {Roo.dd.DragDrop} target The drop target
21713                  * @param {Event} e The event object
21714                  * @param {String} id The id of the dragged element
21715                  * @method afterDragEnter
21716                  */
21717                 this.afterDragEnter(target, e, id);
21718             }
21719         }
21720     },
21721
21722     /**
21723      * An empty function by default, but provided so that you can perform a custom action
21724      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
21725      * @param {Roo.dd.DragDrop} target The drop target
21726      * @param {Event} e The event object
21727      * @param {String} id The id of the dragged element
21728      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21729      */
21730     beforeDragEnter : function(target, e, id){
21731         return true;
21732     },
21733
21734     // private
21735     alignElWithMouse: function() {
21736         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
21737         this.proxy.sync();
21738     },
21739
21740     // private
21741     onDragOver : function(e, id){
21742         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21743         if(this.beforeDragOver(target, e, id) !== false){
21744             if(target.isNotifyTarget){
21745                 var status = target.notifyOver(this, e, this.dragData);
21746                 this.proxy.setStatus(status);
21747             }
21748
21749             if(this.afterDragOver){
21750                 /**
21751                  * An empty function by default, but provided so that you can perform a custom action
21752                  * while the dragged item is over the drop target by providing an implementation.
21753                  * @param {Roo.dd.DragDrop} target The drop target
21754                  * @param {Event} e The event object
21755                  * @param {String} id The id of the dragged element
21756                  * @method afterDragOver
21757                  */
21758                 this.afterDragOver(target, e, id);
21759             }
21760         }
21761     },
21762
21763     /**
21764      * An empty function by default, but provided so that you can perform a custom action
21765      * while the dragged item is over the drop target and optionally cancel the onDragOver.
21766      * @param {Roo.dd.DragDrop} target The drop target
21767      * @param {Event} e The event object
21768      * @param {String} id The id of the dragged element
21769      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21770      */
21771     beforeDragOver : function(target, e, id){
21772         return true;
21773     },
21774
21775     // private
21776     onDragOut : function(e, id){
21777         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21778         if(this.beforeDragOut(target, e, id) !== false){
21779             if(target.isNotifyTarget){
21780                 target.notifyOut(this, e, this.dragData);
21781             }
21782             this.proxy.reset();
21783             if(this.afterDragOut){
21784                 /**
21785                  * An empty function by default, but provided so that you can perform a custom action
21786                  * after the dragged item is dragged out of the target without dropping.
21787                  * @param {Roo.dd.DragDrop} target The drop target
21788                  * @param {Event} e The event object
21789                  * @param {String} id The id of the dragged element
21790                  * @method afterDragOut
21791                  */
21792                 this.afterDragOut(target, e, id);
21793             }
21794         }
21795         this.cachedTarget = null;
21796     },
21797
21798     /**
21799      * An empty function by default, but provided so that you can perform a custom action before the dragged
21800      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
21801      * @param {Roo.dd.DragDrop} target The drop target
21802      * @param {Event} e The event object
21803      * @param {String} id The id of the dragged element
21804      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21805      */
21806     beforeDragOut : function(target, e, id){
21807         return true;
21808     },
21809     
21810     // private
21811     onDragDrop : function(e, id){
21812         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21813         if(this.beforeDragDrop(target, e, id) !== false){
21814             if(target.isNotifyTarget){
21815                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
21816                     this.onValidDrop(target, e, id);
21817                 }else{
21818                     this.onInvalidDrop(target, e, id);
21819                 }
21820             }else{
21821                 this.onValidDrop(target, e, id);
21822             }
21823             
21824             if(this.afterDragDrop){
21825                 /**
21826                  * An empty function by default, but provided so that you can perform a custom action
21827                  * after a valid drag drop has occurred by providing an implementation.
21828                  * @param {Roo.dd.DragDrop} target The drop target
21829                  * @param {Event} e The event object
21830                  * @param {String} id The id of the dropped element
21831                  * @method afterDragDrop
21832                  */
21833                 this.afterDragDrop(target, e, id);
21834             }
21835         }
21836         delete this.cachedTarget;
21837     },
21838
21839     /**
21840      * An empty function by default, but provided so that you can perform a custom action before the dragged
21841      * item is dropped onto the target and optionally cancel the onDragDrop.
21842      * @param {Roo.dd.DragDrop} target The drop target
21843      * @param {Event} e The event object
21844      * @param {String} id The id of the dragged element
21845      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
21846      */
21847     beforeDragDrop : function(target, e, id){
21848         return true;
21849     },
21850
21851     // private
21852     onValidDrop : function(target, e, id){
21853         this.hideProxy();
21854         if(this.afterValidDrop){
21855             /**
21856              * An empty function by default, but provided so that you can perform a custom action
21857              * after a valid drop has occurred by providing an implementation.
21858              * @param {Object} target The target DD 
21859              * @param {Event} e The event object
21860              * @param {String} id The id of the dropped element
21861              * @method afterInvalidDrop
21862              */
21863             this.afterValidDrop(target, e, id);
21864         }
21865     },
21866
21867     // private
21868     getRepairXY : function(e, data){
21869         return this.el.getXY();  
21870     },
21871
21872     // private
21873     onInvalidDrop : function(target, e, id){
21874         this.beforeInvalidDrop(target, e, id);
21875         if(this.cachedTarget){
21876             if(this.cachedTarget.isNotifyTarget){
21877                 this.cachedTarget.notifyOut(this, e, this.dragData);
21878             }
21879             this.cacheTarget = null;
21880         }
21881         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
21882
21883         if(this.afterInvalidDrop){
21884             /**
21885              * An empty function by default, but provided so that you can perform a custom action
21886              * after an invalid drop has occurred by providing an implementation.
21887              * @param {Event} e The event object
21888              * @param {String} id The id of the dropped element
21889              * @method afterInvalidDrop
21890              */
21891             this.afterInvalidDrop(e, id);
21892         }
21893     },
21894
21895     // private
21896     afterRepair : function(){
21897         if(Roo.enableFx){
21898             this.el.highlight(this.hlColor || "c3daf9");
21899         }
21900         this.dragging = false;
21901     },
21902
21903     /**
21904      * An empty function by default, but provided so that you can perform a custom action after an invalid
21905      * drop has occurred.
21906      * @param {Roo.dd.DragDrop} target The drop target
21907      * @param {Event} e The event object
21908      * @param {String} id The id of the dragged element
21909      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
21910      */
21911     beforeInvalidDrop : function(target, e, id){
21912         return true;
21913     },
21914
21915     // private
21916     handleMouseDown : function(e){
21917         if(this.dragging) {
21918             return;
21919         }
21920         var data = this.getDragData(e);
21921         if(data && this.onBeforeDrag(data, e) !== false){
21922             this.dragData = data;
21923             this.proxy.stop();
21924             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
21925         } 
21926     },
21927
21928     /**
21929      * An empty function by default, but provided so that you can perform a custom action before the initial
21930      * drag event begins and optionally cancel it.
21931      * @param {Object} data An object containing arbitrary data to be shared with drop targets
21932      * @param {Event} e The event object
21933      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21934      */
21935     onBeforeDrag : function(data, e){
21936         return true;
21937     },
21938
21939     /**
21940      * An empty function by default, but provided so that you can perform a custom action once the initial
21941      * drag event has begun.  The drag cannot be canceled from this function.
21942      * @param {Number} x The x position of the click on the dragged object
21943      * @param {Number} y The y position of the click on the dragged object
21944      */
21945     onStartDrag : Roo.emptyFn,
21946
21947     // private - YUI override
21948     startDrag : function(x, y){
21949         this.proxy.reset();
21950         this.dragging = true;
21951         this.proxy.update("");
21952         this.onInitDrag(x, y);
21953         this.proxy.show();
21954     },
21955
21956     // private
21957     onInitDrag : function(x, y){
21958         var clone = this.el.dom.cloneNode(true);
21959         clone.id = Roo.id(); // prevent duplicate ids
21960         this.proxy.update(clone);
21961         this.onStartDrag(x, y);
21962         return true;
21963     },
21964
21965     /**
21966      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
21967      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
21968      */
21969     getProxy : function(){
21970         return this.proxy;  
21971     },
21972
21973     /**
21974      * Hides the drag source's {@link Roo.dd.StatusProxy}
21975      */
21976     hideProxy : function(){
21977         this.proxy.hide();  
21978         this.proxy.reset(true);
21979         this.dragging = false;
21980     },
21981
21982     // private
21983     triggerCacheRefresh : function(){
21984         Roo.dd.DDM.refreshCache(this.groups);
21985     },
21986
21987     // private - override to prevent hiding
21988     b4EndDrag: function(e) {
21989     },
21990
21991     // private - override to prevent moving
21992     endDrag : function(e){
21993         this.onEndDrag(this.dragData, e);
21994     },
21995
21996     // private
21997     onEndDrag : function(data, e){
21998     },
21999     
22000     // private - pin to cursor
22001     autoOffset : function(x, y) {
22002         this.setDelta(-12, -20);
22003     }    
22004 });/*
22005  * Based on:
22006  * Ext JS Library 1.1.1
22007  * Copyright(c) 2006-2007, Ext JS, LLC.
22008  *
22009  * Originally Released Under LGPL - original licence link has changed is not relivant.
22010  *
22011  * Fork - LGPL
22012  * <script type="text/javascript">
22013  */
22014
22015
22016 /**
22017  * @class Roo.dd.DropTarget
22018  * @extends Roo.dd.DDTarget
22019  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22020  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22021  * @constructor
22022  * @param {String/HTMLElement/Element} el The container element
22023  * @param {Object} config
22024  */
22025 Roo.dd.DropTarget = function(el, config){
22026     this.el = Roo.get(el);
22027     
22028     var listeners = false; ;
22029     if (config && config.listeners) {
22030         listeners= config.listeners;
22031         delete config.listeners;
22032     }
22033     Roo.apply(this, config);
22034     
22035     if(this.containerScroll){
22036         Roo.dd.ScrollManager.register(this.el);
22037     }
22038     this.addEvents( {
22039          /**
22040          * @scope Roo.dd.DropTarget
22041          */
22042          
22043          /**
22044          * @event enter
22045          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22046          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22047          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22048          * 
22049          * IMPORTANT : it should set this.overClass and this.dropAllowed
22050          * 
22051          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22052          * @param {Event} e The event
22053          * @param {Object} data An object containing arbitrary data supplied by the drag source
22054          */
22055         "enter" : true,
22056         
22057          /**
22058          * @event over
22059          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22060          * This method will be called on every mouse movement while the drag source is over the drop target.
22061          * This default implementation simply returns the dropAllowed config value.
22062          * 
22063          * IMPORTANT : it should set this.dropAllowed
22064          * 
22065          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22066          * @param {Event} e The event
22067          * @param {Object} data An object containing arbitrary data supplied by the drag source
22068          
22069          */
22070         "over" : true,
22071         /**
22072          * @event out
22073          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22074          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22075          * overClass (if any) from the drop element.
22076          * 
22077          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22078          * @param {Event} e The event
22079          * @param {Object} data An object containing arbitrary data supplied by the drag source
22080          */
22081          "out" : true,
22082          
22083         /**
22084          * @event drop
22085          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22086          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22087          * implementation that does something to process the drop event and returns true so that the drag source's
22088          * repair action does not run.
22089          * 
22090          * IMPORTANT : it should set this.success
22091          * 
22092          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22093          * @param {Event} e The event
22094          * @param {Object} data An object containing arbitrary data supplied by the drag source
22095         */
22096          "drop" : true
22097     });
22098             
22099      
22100     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22101         this.el.dom, 
22102         this.ddGroup || this.group,
22103         {
22104             isTarget: true,
22105             listeners : listeners || {} 
22106            
22107         
22108         }
22109     );
22110
22111 };
22112
22113 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22114     /**
22115      * @cfg {String} overClass
22116      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22117      */
22118      /**
22119      * @cfg {String} ddGroup
22120      * The drag drop group to handle drop events for
22121      */
22122      
22123     /**
22124      * @cfg {String} dropAllowed
22125      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22126      */
22127     dropAllowed : "x-dd-drop-ok",
22128     /**
22129      * @cfg {String} dropNotAllowed
22130      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22131      */
22132     dropNotAllowed : "x-dd-drop-nodrop",
22133     /**
22134      * @cfg {boolean} success
22135      * set this after drop listener.. 
22136      */
22137     success : false,
22138     /**
22139      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22140      * if the drop point is valid for over/enter..
22141      */
22142     valid : false,
22143     // private
22144     isTarget : true,
22145
22146     // private
22147     isNotifyTarget : true,
22148     
22149     /**
22150      * @hide
22151      */
22152     notifyEnter : function(dd, e, data)
22153     {
22154         this.valid = true;
22155         this.fireEvent('enter', dd, e, data);
22156         if(this.overClass){
22157             this.el.addClass(this.overClass);
22158         }
22159         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22160             this.valid ? this.dropAllowed : this.dropNotAllowed
22161         );
22162     },
22163
22164     /**
22165      * @hide
22166      */
22167     notifyOver : function(dd, e, data)
22168     {
22169         this.valid = true;
22170         this.fireEvent('over', dd, e, data);
22171         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22172             this.valid ? this.dropAllowed : this.dropNotAllowed
22173         );
22174     },
22175
22176     /**
22177      * @hide
22178      */
22179     notifyOut : function(dd, e, data)
22180     {
22181         this.fireEvent('out', dd, e, data);
22182         if(this.overClass){
22183             this.el.removeClass(this.overClass);
22184         }
22185     },
22186
22187     /**
22188      * @hide
22189      */
22190     notifyDrop : function(dd, e, data)
22191     {
22192         this.success = false;
22193         this.fireEvent('drop', dd, e, data);
22194         return this.success;
22195     }
22196 });/*
22197  * Based on:
22198  * Ext JS Library 1.1.1
22199  * Copyright(c) 2006-2007, Ext JS, LLC.
22200  *
22201  * Originally Released Under LGPL - original licence link has changed is not relivant.
22202  *
22203  * Fork - LGPL
22204  * <script type="text/javascript">
22205  */
22206
22207
22208 /**
22209  * @class Roo.dd.DragZone
22210  * @extends Roo.dd.DragSource
22211  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22212  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22213  * @constructor
22214  * @param {String/HTMLElement/Element} el The container element
22215  * @param {Object} config
22216  */
22217 Roo.dd.DragZone = function(el, config){
22218     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22219     if(this.containerScroll){
22220         Roo.dd.ScrollManager.register(this.el);
22221     }
22222 };
22223
22224 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22225     /**
22226      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22227      * for auto scrolling during drag operations.
22228      */
22229     /**
22230      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22231      * method after a failed drop (defaults to "c3daf9" - light blue)
22232      */
22233
22234     /**
22235      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22236      * for a valid target to drag based on the mouse down. Override this method
22237      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22238      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22239      * @param {EventObject} e The mouse down event
22240      * @return {Object} The dragData
22241      */
22242     getDragData : function(e){
22243         return Roo.dd.Registry.getHandleFromEvent(e);
22244     },
22245     
22246     /**
22247      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22248      * this.dragData.ddel
22249      * @param {Number} x The x position of the click on the dragged object
22250      * @param {Number} y The y position of the click on the dragged object
22251      * @return {Boolean} true to continue the drag, false to cancel
22252      */
22253     onInitDrag : function(x, y){
22254         this.proxy.update(this.dragData.ddel.cloneNode(true));
22255         this.onStartDrag(x, y);
22256         return true;
22257     },
22258     
22259     /**
22260      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22261      */
22262     afterRepair : function(){
22263         if(Roo.enableFx){
22264             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22265         }
22266         this.dragging = false;
22267     },
22268
22269     /**
22270      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22271      * the XY of this.dragData.ddel
22272      * @param {EventObject} e The mouse up event
22273      * @return {Array} The xy location (e.g. [100, 200])
22274      */
22275     getRepairXY : function(e){
22276         return Roo.Element.fly(this.dragData.ddel).getXY();  
22277     }
22278 });/*
22279  * Based on:
22280  * Ext JS Library 1.1.1
22281  * Copyright(c) 2006-2007, Ext JS, LLC.
22282  *
22283  * Originally Released Under LGPL - original licence link has changed is not relivant.
22284  *
22285  * Fork - LGPL
22286  * <script type="text/javascript">
22287  */
22288 /**
22289  * @class Roo.dd.DropZone
22290  * @extends Roo.dd.DropTarget
22291  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22292  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22293  * @constructor
22294  * @param {String/HTMLElement/Element} el The container element
22295  * @param {Object} config
22296  */
22297 Roo.dd.DropZone = function(el, config){
22298     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22299 };
22300
22301 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22302     /**
22303      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22304      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22305      * provide your own custom lookup.
22306      * @param {Event} e The event
22307      * @return {Object} data The custom data
22308      */
22309     getTargetFromEvent : function(e){
22310         return Roo.dd.Registry.getTargetFromEvent(e);
22311     },
22312
22313     /**
22314      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22315      * that it has registered.  This method has no default implementation and should be overridden to provide
22316      * node-specific processing if necessary.
22317      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22318      * {@link #getTargetFromEvent} for this node)
22319      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22320      * @param {Event} e The event
22321      * @param {Object} data An object containing arbitrary data supplied by the drag source
22322      */
22323     onNodeEnter : function(n, dd, e, data){
22324         
22325     },
22326
22327     /**
22328      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22329      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22330      * overridden to provide the proper feedback.
22331      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22332      * {@link #getTargetFromEvent} for this node)
22333      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22334      * @param {Event} e The event
22335      * @param {Object} data An object containing arbitrary data supplied by the drag source
22336      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22337      * underlying {@link Roo.dd.StatusProxy} can be updated
22338      */
22339     onNodeOver : function(n, dd, e, data){
22340         return this.dropAllowed;
22341     },
22342
22343     /**
22344      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22345      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22346      * node-specific processing if necessary.
22347      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22348      * {@link #getTargetFromEvent} for this node)
22349      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22350      * @param {Event} e The event
22351      * @param {Object} data An object containing arbitrary data supplied by the drag source
22352      */
22353     onNodeOut : function(n, dd, e, data){
22354         
22355     },
22356
22357     /**
22358      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22359      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22360      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22361      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22362      * {@link #getTargetFromEvent} for this node)
22363      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22364      * @param {Event} e The event
22365      * @param {Object} data An object containing arbitrary data supplied by the drag source
22366      * @return {Boolean} True if the drop was valid, else false
22367      */
22368     onNodeDrop : function(n, dd, e, data){
22369         return false;
22370     },
22371
22372     /**
22373      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22374      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22375      * it should be overridden to provide the proper feedback if necessary.
22376      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22377      * @param {Event} e The event
22378      * @param {Object} data An object containing arbitrary data supplied by the drag source
22379      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22380      * underlying {@link Roo.dd.StatusProxy} can be updated
22381      */
22382     onContainerOver : function(dd, e, data){
22383         return this.dropNotAllowed;
22384     },
22385
22386     /**
22387      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22388      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22389      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22390      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22391      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22392      * @param {Event} e The event
22393      * @param {Object} data An object containing arbitrary data supplied by the drag source
22394      * @return {Boolean} True if the drop was valid, else false
22395      */
22396     onContainerDrop : function(dd, e, data){
22397         return false;
22398     },
22399
22400     /**
22401      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22402      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22403      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22404      * you should override this method and provide a custom implementation.
22405      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22406      * @param {Event} e The event
22407      * @param {Object} data An object containing arbitrary data supplied by the drag source
22408      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22409      * underlying {@link Roo.dd.StatusProxy} can be updated
22410      */
22411     notifyEnter : function(dd, e, data){
22412         return this.dropNotAllowed;
22413     },
22414
22415     /**
22416      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22417      * This method will be called on every mouse movement while the drag source is over the drop zone.
22418      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22419      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22420      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22421      * registered node, it will call {@link #onContainerOver}.
22422      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22423      * @param {Event} e The event
22424      * @param {Object} data An object containing arbitrary data supplied by the drag source
22425      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22426      * underlying {@link Roo.dd.StatusProxy} can be updated
22427      */
22428     notifyOver : function(dd, e, data){
22429         var n = this.getTargetFromEvent(e);
22430         if(!n){ // not over valid drop target
22431             if(this.lastOverNode){
22432                 this.onNodeOut(this.lastOverNode, dd, e, data);
22433                 this.lastOverNode = null;
22434             }
22435             return this.onContainerOver(dd, e, data);
22436         }
22437         if(this.lastOverNode != n){
22438             if(this.lastOverNode){
22439                 this.onNodeOut(this.lastOverNode, dd, e, data);
22440             }
22441             this.onNodeEnter(n, dd, e, data);
22442             this.lastOverNode = n;
22443         }
22444         return this.onNodeOver(n, dd, e, data);
22445     },
22446
22447     /**
22448      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22449      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22450      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22451      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22452      * @param {Event} e The event
22453      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22454      */
22455     notifyOut : function(dd, e, data){
22456         if(this.lastOverNode){
22457             this.onNodeOut(this.lastOverNode, dd, e, data);
22458             this.lastOverNode = null;
22459         }
22460     },
22461
22462     /**
22463      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22464      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22465      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22466      * otherwise it will call {@link #onContainerDrop}.
22467      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22468      * @param {Event} e The event
22469      * @param {Object} data An object containing arbitrary data supplied by the drag source
22470      * @return {Boolean} True if the drop was valid, else false
22471      */
22472     notifyDrop : function(dd, e, data){
22473         if(this.lastOverNode){
22474             this.onNodeOut(this.lastOverNode, dd, e, data);
22475             this.lastOverNode = null;
22476         }
22477         var n = this.getTargetFromEvent(e);
22478         return n ?
22479             this.onNodeDrop(n, dd, e, data) :
22480             this.onContainerDrop(dd, e, data);
22481     },
22482
22483     // private
22484     triggerCacheRefresh : function(){
22485         Roo.dd.DDM.refreshCache(this.groups);
22486     }  
22487 });/*
22488  * Based on:
22489  * Ext JS Library 1.1.1
22490  * Copyright(c) 2006-2007, Ext JS, LLC.
22491  *
22492  * Originally Released Under LGPL - original licence link has changed is not relivant.
22493  *
22494  * Fork - LGPL
22495  * <script type="text/javascript">
22496  */
22497
22498
22499 /**
22500  * @class Roo.data.SortTypes
22501  * @singleton
22502  * Defines the default sorting (casting?) comparison functions used when sorting data.
22503  */
22504 Roo.data.SortTypes = {
22505     /**
22506      * Default sort that does nothing
22507      * @param {Mixed} s The value being converted
22508      * @return {Mixed} The comparison value
22509      */
22510     none : function(s){
22511         return s;
22512     },
22513     
22514     /**
22515      * The regular expression used to strip tags
22516      * @type {RegExp}
22517      * @property
22518      */
22519     stripTagsRE : /<\/?[^>]+>/gi,
22520     
22521     /**
22522      * Strips all HTML tags to sort on text only
22523      * @param {Mixed} s The value being converted
22524      * @return {String} The comparison value
22525      */
22526     asText : function(s){
22527         return String(s).replace(this.stripTagsRE, "");
22528     },
22529     
22530     /**
22531      * Strips all HTML tags to sort on text only - Case insensitive
22532      * @param {Mixed} s The value being converted
22533      * @return {String} The comparison value
22534      */
22535     asUCText : function(s){
22536         return String(s).toUpperCase().replace(this.stripTagsRE, "");
22537     },
22538     
22539     /**
22540      * Case insensitive string
22541      * @param {Mixed} s The value being converted
22542      * @return {String} The comparison value
22543      */
22544     asUCString : function(s) {
22545         return String(s).toUpperCase();
22546     },
22547     
22548     /**
22549      * Date sorting
22550      * @param {Mixed} s The value being converted
22551      * @return {Number} The comparison value
22552      */
22553     asDate : function(s) {
22554         if(!s){
22555             return 0;
22556         }
22557         if(s instanceof Date){
22558             return s.getTime();
22559         }
22560         return Date.parse(String(s));
22561     },
22562     
22563     /**
22564      * Float sorting
22565      * @param {Mixed} s The value being converted
22566      * @return {Float} The comparison value
22567      */
22568     asFloat : function(s) {
22569         var val = parseFloat(String(s).replace(/,/g, ""));
22570         if(isNaN(val)) {
22571             val = 0;
22572         }
22573         return val;
22574     },
22575     
22576     /**
22577      * Integer sorting
22578      * @param {Mixed} s The value being converted
22579      * @return {Number} The comparison value
22580      */
22581     asInt : function(s) {
22582         var val = parseInt(String(s).replace(/,/g, ""));
22583         if(isNaN(val)) {
22584             val = 0;
22585         }
22586         return val;
22587     }
22588 };/*
22589  * Based on:
22590  * Ext JS Library 1.1.1
22591  * Copyright(c) 2006-2007, Ext JS, LLC.
22592  *
22593  * Originally Released Under LGPL - original licence link has changed is not relivant.
22594  *
22595  * Fork - LGPL
22596  * <script type="text/javascript">
22597  */
22598
22599 /**
22600 * @class Roo.data.Record
22601  * Instances of this class encapsulate both record <em>definition</em> information, and record
22602  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
22603  * to access Records cached in an {@link Roo.data.Store} object.<br>
22604  * <p>
22605  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
22606  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
22607  * objects.<br>
22608  * <p>
22609  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
22610  * @constructor
22611  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
22612  * {@link #create}. The parameters are the same.
22613  * @param {Array} data An associative Array of data values keyed by the field name.
22614  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
22615  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
22616  * not specified an integer id is generated.
22617  */
22618 Roo.data.Record = function(data, id){
22619     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
22620     this.data = data;
22621 };
22622
22623 /**
22624  * Generate a constructor for a specific record layout.
22625  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
22626  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
22627  * Each field definition object may contain the following properties: <ul>
22628  * <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,
22629  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
22630  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
22631  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
22632  * is being used, then this is a string containing the javascript expression to reference the data relative to 
22633  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
22634  * to the data item relative to the record element. If the mapping expression is the same as the field name,
22635  * this may be omitted.</p></li>
22636  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
22637  * <ul><li>auto (Default, implies no conversion)</li>
22638  * <li>string</li>
22639  * <li>int</li>
22640  * <li>float</li>
22641  * <li>boolean</li>
22642  * <li>date</li></ul></p></li>
22643  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
22644  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
22645  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
22646  * by the Reader into an object that will be stored in the Record. It is passed the
22647  * following parameters:<ul>
22648  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
22649  * </ul></p></li>
22650  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
22651  * </ul>
22652  * <br>usage:<br><pre><code>
22653 var TopicRecord = Roo.data.Record.create(
22654     {name: 'title', mapping: 'topic_title'},
22655     {name: 'author', mapping: 'username'},
22656     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
22657     {name: 'lastPost', mapping: 'post_time', type: 'date'},
22658     {name: 'lastPoster', mapping: 'user2'},
22659     {name: 'excerpt', mapping: 'post_text'}
22660 );
22661
22662 var myNewRecord = new TopicRecord({
22663     title: 'Do my job please',
22664     author: 'noobie',
22665     totalPosts: 1,
22666     lastPost: new Date(),
22667     lastPoster: 'Animal',
22668     excerpt: 'No way dude!'
22669 });
22670 myStore.add(myNewRecord);
22671 </code></pre>
22672  * @method create
22673  * @static
22674  */
22675 Roo.data.Record.create = function(o){
22676     var f = function(){
22677         f.superclass.constructor.apply(this, arguments);
22678     };
22679     Roo.extend(f, Roo.data.Record);
22680     var p = f.prototype;
22681     p.fields = new Roo.util.MixedCollection(false, function(field){
22682         return field.name;
22683     });
22684     for(var i = 0, len = o.length; i < len; i++){
22685         p.fields.add(new Roo.data.Field(o[i]));
22686     }
22687     f.getField = function(name){
22688         return p.fields.get(name);  
22689     };
22690     return f;
22691 };
22692
22693 Roo.data.Record.AUTO_ID = 1000;
22694 Roo.data.Record.EDIT = 'edit';
22695 Roo.data.Record.REJECT = 'reject';
22696 Roo.data.Record.COMMIT = 'commit';
22697
22698 Roo.data.Record.prototype = {
22699     /**
22700      * Readonly flag - true if this record has been modified.
22701      * @type Boolean
22702      */
22703     dirty : false,
22704     editing : false,
22705     error: null,
22706     modified: null,
22707
22708     // private
22709     join : function(store){
22710         this.store = store;
22711     },
22712
22713     /**
22714      * Set the named field to the specified value.
22715      * @param {String} name The name of the field to set.
22716      * @param {Object} value The value to set the field to.
22717      */
22718     set : function(name, value){
22719         if(this.data[name] == value){
22720             return;
22721         }
22722         this.dirty = true;
22723         if(!this.modified){
22724             this.modified = {};
22725         }
22726         if(typeof this.modified[name] == 'undefined'){
22727             this.modified[name] = this.data[name];
22728         }
22729         this.data[name] = value;
22730         if(!this.editing && this.store){
22731             this.store.afterEdit(this);
22732         }       
22733     },
22734
22735     /**
22736      * Get the value of the named field.
22737      * @param {String} name The name of the field to get the value of.
22738      * @return {Object} The value of the field.
22739      */
22740     get : function(name){
22741         return this.data[name]; 
22742     },
22743
22744     // private
22745     beginEdit : function(){
22746         this.editing = true;
22747         this.modified = {}; 
22748     },
22749
22750     // private
22751     cancelEdit : function(){
22752         this.editing = false;
22753         delete this.modified;
22754     },
22755
22756     // private
22757     endEdit : function(){
22758         this.editing = false;
22759         if(this.dirty && this.store){
22760             this.store.afterEdit(this);
22761         }
22762     },
22763
22764     /**
22765      * Usually called by the {@link Roo.data.Store} which owns the Record.
22766      * Rejects all changes made to the Record since either creation, or the last commit operation.
22767      * Modified fields are reverted to their original values.
22768      * <p>
22769      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
22770      * of reject operations.
22771      */
22772     reject : function(){
22773         var m = this.modified;
22774         for(var n in m){
22775             if(typeof m[n] != "function"){
22776                 this.data[n] = m[n];
22777             }
22778         }
22779         this.dirty = false;
22780         delete this.modified;
22781         this.editing = false;
22782         if(this.store){
22783             this.store.afterReject(this);
22784         }
22785     },
22786
22787     /**
22788      * Usually called by the {@link Roo.data.Store} which owns the Record.
22789      * Commits all changes made to the Record since either creation, or the last commit operation.
22790      * <p>
22791      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
22792      * of commit operations.
22793      */
22794     commit : function(){
22795         this.dirty = false;
22796         delete this.modified;
22797         this.editing = false;
22798         if(this.store){
22799             this.store.afterCommit(this);
22800         }
22801     },
22802
22803     // private
22804     hasError : function(){
22805         return this.error != null;
22806     },
22807
22808     // private
22809     clearError : function(){
22810         this.error = null;
22811     },
22812
22813     /**
22814      * Creates a copy of this record.
22815      * @param {String} id (optional) A new record id if you don't want to use this record's id
22816      * @return {Record}
22817      */
22818     copy : function(newId) {
22819         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
22820     }
22821 };/*
22822  * Based on:
22823  * Ext JS Library 1.1.1
22824  * Copyright(c) 2006-2007, Ext JS, LLC.
22825  *
22826  * Originally Released Under LGPL - original licence link has changed is not relivant.
22827  *
22828  * Fork - LGPL
22829  * <script type="text/javascript">
22830  */
22831
22832
22833
22834 /**
22835  * @class Roo.data.Store
22836  * @extends Roo.util.Observable
22837  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
22838  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
22839  * <p>
22840  * 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
22841  * has no knowledge of the format of the data returned by the Proxy.<br>
22842  * <p>
22843  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
22844  * instances from the data object. These records are cached and made available through accessor functions.
22845  * @constructor
22846  * Creates a new Store.
22847  * @param {Object} config A config object containing the objects needed for the Store to access data,
22848  * and read the data into Records.
22849  */
22850 Roo.data.Store = function(config){
22851     this.data = new Roo.util.MixedCollection(false);
22852     this.data.getKey = function(o){
22853         return o.id;
22854     };
22855     this.baseParams = {};
22856     // private
22857     this.paramNames = {
22858         "start" : "start",
22859         "limit" : "limit",
22860         "sort" : "sort",
22861         "dir" : "dir",
22862         "multisort" : "_multisort"
22863     };
22864
22865     if(config && config.data){
22866         this.inlineData = config.data;
22867         delete config.data;
22868     }
22869
22870     Roo.apply(this, config);
22871     
22872     if(this.reader){ // reader passed
22873         this.reader = Roo.factory(this.reader, Roo.data);
22874         this.reader.xmodule = this.xmodule || false;
22875         if(!this.recordType){
22876             this.recordType = this.reader.recordType;
22877         }
22878         if(this.reader.onMetaChange){
22879             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
22880         }
22881     }
22882
22883     if(this.recordType){
22884         this.fields = this.recordType.prototype.fields;
22885     }
22886     this.modified = [];
22887
22888     this.addEvents({
22889         /**
22890          * @event datachanged
22891          * Fires when the data cache has changed, and a widget which is using this Store
22892          * as a Record cache should refresh its view.
22893          * @param {Store} this
22894          */
22895         datachanged : true,
22896         /**
22897          * @event metachange
22898          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
22899          * @param {Store} this
22900          * @param {Object} meta The JSON metadata
22901          */
22902         metachange : true,
22903         /**
22904          * @event add
22905          * Fires when Records have been added to the Store
22906          * @param {Store} this
22907          * @param {Roo.data.Record[]} records The array of Records added
22908          * @param {Number} index The index at which the record(s) were added
22909          */
22910         add : true,
22911         /**
22912          * @event remove
22913          * Fires when a Record has been removed from the Store
22914          * @param {Store} this
22915          * @param {Roo.data.Record} record The Record that was removed
22916          * @param {Number} index The index at which the record was removed
22917          */
22918         remove : true,
22919         /**
22920          * @event update
22921          * Fires when a Record has been updated
22922          * @param {Store} this
22923          * @param {Roo.data.Record} record The Record that was updated
22924          * @param {String} operation The update operation being performed.  Value may be one of:
22925          * <pre><code>
22926  Roo.data.Record.EDIT
22927  Roo.data.Record.REJECT
22928  Roo.data.Record.COMMIT
22929          * </code></pre>
22930          */
22931         update : true,
22932         /**
22933          * @event clear
22934          * Fires when the data cache has been cleared.
22935          * @param {Store} this
22936          */
22937         clear : true,
22938         /**
22939          * @event beforeload
22940          * Fires before a request is made for a new data object.  If the beforeload handler returns false
22941          * the load action will be canceled.
22942          * @param {Store} this
22943          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22944          */
22945         beforeload : true,
22946         /**
22947          * @event beforeloadadd
22948          * Fires after a new set of Records has been loaded.
22949          * @param {Store} this
22950          * @param {Roo.data.Record[]} records The Records that were loaded
22951          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22952          */
22953         beforeloadadd : true,
22954         /**
22955          * @event load
22956          * Fires after a new set of Records has been loaded, before they are added to the store.
22957          * @param {Store} this
22958          * @param {Roo.data.Record[]} records The Records that were loaded
22959          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22960          * @params {Object} return from reader
22961          */
22962         load : true,
22963         /**
22964          * @event loadexception
22965          * Fires if an exception occurs in the Proxy during loading.
22966          * Called with the signature of the Proxy's "loadexception" event.
22967          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
22968          * 
22969          * @param {Proxy} 
22970          * @param {Object} return from JsonData.reader() - success, totalRecords, records
22971          * @param {Object} load options 
22972          * @param {Object} jsonData from your request (normally this contains the Exception)
22973          */
22974         loadexception : true
22975     });
22976     
22977     if(this.proxy){
22978         this.proxy = Roo.factory(this.proxy, Roo.data);
22979         this.proxy.xmodule = this.xmodule || false;
22980         this.relayEvents(this.proxy,  ["loadexception"]);
22981     }
22982     this.sortToggle = {};
22983     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
22984
22985     Roo.data.Store.superclass.constructor.call(this);
22986
22987     if(this.inlineData){
22988         this.loadData(this.inlineData);
22989         delete this.inlineData;
22990     }
22991 };
22992
22993 Roo.extend(Roo.data.Store, Roo.util.Observable, {
22994      /**
22995     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
22996     * without a remote query - used by combo/forms at present.
22997     */
22998     
22999     /**
23000     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23001     */
23002     /**
23003     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23004     */
23005     /**
23006     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23007     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23008     */
23009     /**
23010     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23011     * on any HTTP request
23012     */
23013     /**
23014     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23015     */
23016     /**
23017     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23018     */
23019     multiSort: false,
23020     /**
23021     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23022     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23023     */
23024     remoteSort : false,
23025
23026     /**
23027     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23028      * loaded or when a record is removed. (defaults to false).
23029     */
23030     pruneModifiedRecords : false,
23031
23032     // private
23033     lastOptions : null,
23034
23035     /**
23036      * Add Records to the Store and fires the add event.
23037      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23038      */
23039     add : function(records){
23040         records = [].concat(records);
23041         for(var i = 0, len = records.length; i < len; i++){
23042             records[i].join(this);
23043         }
23044         var index = this.data.length;
23045         this.data.addAll(records);
23046         this.fireEvent("add", this, records, index);
23047     },
23048
23049     /**
23050      * Remove a Record from the Store and fires the remove event.
23051      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23052      */
23053     remove : function(record){
23054         var index = this.data.indexOf(record);
23055         this.data.removeAt(index);
23056  
23057         if(this.pruneModifiedRecords){
23058             this.modified.remove(record);
23059         }
23060         this.fireEvent("remove", this, record, index);
23061     },
23062
23063     /**
23064      * Remove all Records from the Store and fires the clear event.
23065      */
23066     removeAll : function(){
23067         this.data.clear();
23068         if(this.pruneModifiedRecords){
23069             this.modified = [];
23070         }
23071         this.fireEvent("clear", this);
23072     },
23073
23074     /**
23075      * Inserts Records to the Store at the given index and fires the add event.
23076      * @param {Number} index The start index at which to insert the passed Records.
23077      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23078      */
23079     insert : function(index, records){
23080         records = [].concat(records);
23081         for(var i = 0, len = records.length; i < len; i++){
23082             this.data.insert(index, records[i]);
23083             records[i].join(this);
23084         }
23085         this.fireEvent("add", this, records, index);
23086     },
23087
23088     /**
23089      * Get the index within the cache of the passed Record.
23090      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23091      * @return {Number} The index of the passed Record. Returns -1 if not found.
23092      */
23093     indexOf : function(record){
23094         return this.data.indexOf(record);
23095     },
23096
23097     /**
23098      * Get the index within the cache of the Record with the passed id.
23099      * @param {String} id The id of the Record to find.
23100      * @return {Number} The index of the Record. Returns -1 if not found.
23101      */
23102     indexOfId : function(id){
23103         return this.data.indexOfKey(id);
23104     },
23105
23106     /**
23107      * Get the Record with the specified id.
23108      * @param {String} id The id of the Record to find.
23109      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23110      */
23111     getById : function(id){
23112         return this.data.key(id);
23113     },
23114
23115     /**
23116      * Get the Record at the specified index.
23117      * @param {Number} index The index of the Record to find.
23118      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23119      */
23120     getAt : function(index){
23121         return this.data.itemAt(index);
23122     },
23123
23124     /**
23125      * Returns a range of Records between specified indices.
23126      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23127      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23128      * @return {Roo.data.Record[]} An array of Records
23129      */
23130     getRange : function(start, end){
23131         return this.data.getRange(start, end);
23132     },
23133
23134     // private
23135     storeOptions : function(o){
23136         o = Roo.apply({}, o);
23137         delete o.callback;
23138         delete o.scope;
23139         this.lastOptions = o;
23140     },
23141
23142     /**
23143      * Loads the Record cache from the configured Proxy using the configured Reader.
23144      * <p>
23145      * If using remote paging, then the first load call must specify the <em>start</em>
23146      * and <em>limit</em> properties in the options.params property to establish the initial
23147      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23148      * <p>
23149      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23150      * and this call will return before the new data has been loaded. Perform any post-processing
23151      * in a callback function, or in a "load" event handler.</strong>
23152      * <p>
23153      * @param {Object} options An object containing properties which control loading options:<ul>
23154      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23155      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23156      * passed the following arguments:<ul>
23157      * <li>r : Roo.data.Record[]</li>
23158      * <li>options: Options object from the load call</li>
23159      * <li>success: Boolean success indicator</li></ul></li>
23160      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23161      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23162      * </ul>
23163      */
23164     load : function(options){
23165         options = options || {};
23166         if(this.fireEvent("beforeload", this, options) !== false){
23167             this.storeOptions(options);
23168             var p = Roo.apply(options.params || {}, this.baseParams);
23169             // if meta was not loaded from remote source.. try requesting it.
23170             if (!this.reader.metaFromRemote) {
23171                 p._requestMeta = 1;
23172             }
23173             if(this.sortInfo && this.remoteSort){
23174                 var pn = this.paramNames;
23175                 p[pn["sort"]] = this.sortInfo.field;
23176                 p[pn["dir"]] = this.sortInfo.direction;
23177             }
23178             if (this.multiSort) {
23179                 var pn = this.paramNames;
23180                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23181             }
23182             
23183             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23184         }
23185     },
23186
23187     /**
23188      * Reloads the Record cache from the configured Proxy using the configured Reader and
23189      * the options from the last load operation performed.
23190      * @param {Object} options (optional) An object containing properties which may override the options
23191      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23192      * the most recently used options are reused).
23193      */
23194     reload : function(options){
23195         this.load(Roo.applyIf(options||{}, this.lastOptions));
23196     },
23197
23198     // private
23199     // Called as a callback by the Reader during a load operation.
23200     loadRecords : function(o, options, success){
23201         if(!o || success === false){
23202             if(success !== false){
23203                 this.fireEvent("load", this, [], options, o);
23204             }
23205             if(options.callback){
23206                 options.callback.call(options.scope || this, [], options, false);
23207             }
23208             return;
23209         }
23210         // if data returned failure - throw an exception.
23211         if (o.success === false) {
23212             // show a message if no listener is registered.
23213             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23214                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23215             }
23216             // loadmask wil be hooked into this..
23217             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23218             return;
23219         }
23220         var r = o.records, t = o.totalRecords || r.length;
23221         
23222         this.fireEvent("beforeloadadd", this, r, options, o);
23223         
23224         if(!options || options.add !== true){
23225             if(this.pruneModifiedRecords){
23226                 this.modified = [];
23227             }
23228             for(var i = 0, len = r.length; i < len; i++){
23229                 r[i].join(this);
23230             }
23231             if(this.snapshot){
23232                 this.data = this.snapshot;
23233                 delete this.snapshot;
23234             }
23235             this.data.clear();
23236             this.data.addAll(r);
23237             this.totalLength = t;
23238             this.applySort();
23239             this.fireEvent("datachanged", this);
23240         }else{
23241             this.totalLength = Math.max(t, this.data.length+r.length);
23242             this.add(r);
23243         }
23244         
23245         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23246                 
23247             var e = new Roo.data.Record({});
23248
23249             e.set(this.parent.displayField, this.parent.emptyTitle);
23250             e.set(this.parent.valueField, '');
23251
23252             this.insert(0, e);
23253         }
23254             
23255         this.fireEvent("load", this, r, options, o);
23256         if(options.callback){
23257             options.callback.call(options.scope || this, r, options, true);
23258         }
23259     },
23260
23261
23262     /**
23263      * Loads data from a passed data block. A Reader which understands the format of the data
23264      * must have been configured in the constructor.
23265      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23266      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23267      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23268      */
23269     loadData : function(o, append){
23270         var r = this.reader.readRecords(o);
23271         this.loadRecords(r, {add: append}, true);
23272     },
23273     
23274      /**
23275      * using 'cn' the nested child reader read the child array into it's child stores.
23276      * @param {Object} rec The record with a 'children array
23277      */
23278     loadDataFromChildren : function(rec)
23279     {
23280         this.loadData(this.reader.toLoadData(rec));
23281     },
23282     
23283
23284     /**
23285      * Gets the number of cached records.
23286      * <p>
23287      * <em>If using paging, this may not be the total size of the dataset. If the data object
23288      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23289      * the data set size</em>
23290      */
23291     getCount : function(){
23292         return this.data.length || 0;
23293     },
23294
23295     /**
23296      * Gets the total number of records in the dataset as returned by the server.
23297      * <p>
23298      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23299      * the dataset size</em>
23300      */
23301     getTotalCount : function(){
23302         return this.totalLength || 0;
23303     },
23304
23305     /**
23306      * Returns the sort state of the Store as an object with two properties:
23307      * <pre><code>
23308  field {String} The name of the field by which the Records are sorted
23309  direction {String} The sort order, "ASC" or "DESC"
23310      * </code></pre>
23311      */
23312     getSortState : function(){
23313         return this.sortInfo;
23314     },
23315
23316     // private
23317     applySort : function(){
23318         if(this.sortInfo && !this.remoteSort){
23319             var s = this.sortInfo, f = s.field;
23320             var st = this.fields.get(f).sortType;
23321             var fn = function(r1, r2){
23322                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23323                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23324             };
23325             this.data.sort(s.direction, fn);
23326             if(this.snapshot && this.snapshot != this.data){
23327                 this.snapshot.sort(s.direction, fn);
23328             }
23329         }
23330     },
23331
23332     /**
23333      * Sets the default sort column and order to be used by the next load operation.
23334      * @param {String} fieldName The name of the field to sort by.
23335      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23336      */
23337     setDefaultSort : function(field, dir){
23338         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23339     },
23340
23341     /**
23342      * Sort the Records.
23343      * If remote sorting is used, the sort is performed on the server, and the cache is
23344      * reloaded. If local sorting is used, the cache is sorted internally.
23345      * @param {String} fieldName The name of the field to sort by.
23346      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23347      */
23348     sort : function(fieldName, dir){
23349         var f = this.fields.get(fieldName);
23350         if(!dir){
23351             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23352             
23353             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23354                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23355             }else{
23356                 dir = f.sortDir;
23357             }
23358         }
23359         this.sortToggle[f.name] = dir;
23360         this.sortInfo = {field: f.name, direction: dir};
23361         if(!this.remoteSort){
23362             this.applySort();
23363             this.fireEvent("datachanged", this);
23364         }else{
23365             this.load(this.lastOptions);
23366         }
23367     },
23368
23369     /**
23370      * Calls the specified function for each of the Records in the cache.
23371      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23372      * Returning <em>false</em> aborts and exits the iteration.
23373      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23374      */
23375     each : function(fn, scope){
23376         this.data.each(fn, scope);
23377     },
23378
23379     /**
23380      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23381      * (e.g., during paging).
23382      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23383      */
23384     getModifiedRecords : function(){
23385         return this.modified;
23386     },
23387
23388     // private
23389     createFilterFn : function(property, value, anyMatch){
23390         if(!value.exec){ // not a regex
23391             value = String(value);
23392             if(value.length == 0){
23393                 return false;
23394             }
23395             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
23396         }
23397         return function(r){
23398             return value.test(r.data[property]);
23399         };
23400     },
23401
23402     /**
23403      * Sums the value of <i>property</i> for each record between start and end and returns the result.
23404      * @param {String} property A field on your records
23405      * @param {Number} start The record index to start at (defaults to 0)
23406      * @param {Number} end The last record index to include (defaults to length - 1)
23407      * @return {Number} The sum
23408      */
23409     sum : function(property, start, end){
23410         var rs = this.data.items, v = 0;
23411         start = start || 0;
23412         end = (end || end === 0) ? end : rs.length-1;
23413
23414         for(var i = start; i <= end; i++){
23415             v += (rs[i].data[property] || 0);
23416         }
23417         return v;
23418     },
23419
23420     /**
23421      * Filter the records by a specified property.
23422      * @param {String} field A field on your records
23423      * @param {String/RegExp} value Either a string that the field
23424      * should start with or a RegExp to test against the field
23425      * @param {Boolean} anyMatch True to match any part not just the beginning
23426      */
23427     filter : function(property, value, anyMatch){
23428         var fn = this.createFilterFn(property, value, anyMatch);
23429         return fn ? this.filterBy(fn) : this.clearFilter();
23430     },
23431
23432     /**
23433      * Filter by a function. The specified function will be called with each
23434      * record in this data source. If the function returns true the record is included,
23435      * otherwise it is filtered.
23436      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23437      * @param {Object} scope (optional) The scope of the function (defaults to this)
23438      */
23439     filterBy : function(fn, scope){
23440         this.snapshot = this.snapshot || this.data;
23441         this.data = this.queryBy(fn, scope||this);
23442         this.fireEvent("datachanged", this);
23443     },
23444
23445     /**
23446      * Query the records by a specified property.
23447      * @param {String} field A field on your records
23448      * @param {String/RegExp} value Either a string that the field
23449      * should start with or a RegExp to test against the field
23450      * @param {Boolean} anyMatch True to match any part not just the beginning
23451      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23452      */
23453     query : function(property, value, anyMatch){
23454         var fn = this.createFilterFn(property, value, anyMatch);
23455         return fn ? this.queryBy(fn) : this.data.clone();
23456     },
23457
23458     /**
23459      * Query by a function. The specified function will be called with each
23460      * record in this data source. If the function returns true the record is included
23461      * in the results.
23462      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23463      * @param {Object} scope (optional) The scope of the function (defaults to this)
23464       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23465      **/
23466     queryBy : function(fn, scope){
23467         var data = this.snapshot || this.data;
23468         return data.filterBy(fn, scope||this);
23469     },
23470
23471     /**
23472      * Collects unique values for a particular dataIndex from this store.
23473      * @param {String} dataIndex The property to collect
23474      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
23475      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
23476      * @return {Array} An array of the unique values
23477      **/
23478     collect : function(dataIndex, allowNull, bypassFilter){
23479         var d = (bypassFilter === true && this.snapshot) ?
23480                 this.snapshot.items : this.data.items;
23481         var v, sv, r = [], l = {};
23482         for(var i = 0, len = d.length; i < len; i++){
23483             v = d[i].data[dataIndex];
23484             sv = String(v);
23485             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
23486                 l[sv] = true;
23487                 r[r.length] = v;
23488             }
23489         }
23490         return r;
23491     },
23492
23493     /**
23494      * Revert to a view of the Record cache with no filtering applied.
23495      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
23496      */
23497     clearFilter : function(suppressEvent){
23498         if(this.snapshot && this.snapshot != this.data){
23499             this.data = this.snapshot;
23500             delete this.snapshot;
23501             if(suppressEvent !== true){
23502                 this.fireEvent("datachanged", this);
23503             }
23504         }
23505     },
23506
23507     // private
23508     afterEdit : function(record){
23509         if(this.modified.indexOf(record) == -1){
23510             this.modified.push(record);
23511         }
23512         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
23513     },
23514     
23515     // private
23516     afterReject : function(record){
23517         this.modified.remove(record);
23518         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
23519     },
23520
23521     // private
23522     afterCommit : function(record){
23523         this.modified.remove(record);
23524         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
23525     },
23526
23527     /**
23528      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
23529      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
23530      */
23531     commitChanges : function(){
23532         var m = this.modified.slice(0);
23533         this.modified = [];
23534         for(var i = 0, len = m.length; i < len; i++){
23535             m[i].commit();
23536         }
23537     },
23538
23539     /**
23540      * Cancel outstanding changes on all changed records.
23541      */
23542     rejectChanges : function(){
23543         var m = this.modified.slice(0);
23544         this.modified = [];
23545         for(var i = 0, len = m.length; i < len; i++){
23546             m[i].reject();
23547         }
23548     },
23549
23550     onMetaChange : function(meta, rtype, o){
23551         this.recordType = rtype;
23552         this.fields = rtype.prototype.fields;
23553         delete this.snapshot;
23554         this.sortInfo = meta.sortInfo || this.sortInfo;
23555         this.modified = [];
23556         this.fireEvent('metachange', this, this.reader.meta);
23557     },
23558     
23559     moveIndex : function(data, type)
23560     {
23561         var index = this.indexOf(data);
23562         
23563         var newIndex = index + type;
23564         
23565         this.remove(data);
23566         
23567         this.insert(newIndex, data);
23568         
23569     }
23570 });/*
23571  * Based on:
23572  * Ext JS Library 1.1.1
23573  * Copyright(c) 2006-2007, Ext JS, LLC.
23574  *
23575  * Originally Released Under LGPL - original licence link has changed is not relivant.
23576  *
23577  * Fork - LGPL
23578  * <script type="text/javascript">
23579  */
23580
23581 /**
23582  * @class Roo.data.SimpleStore
23583  * @extends Roo.data.Store
23584  * Small helper class to make creating Stores from Array data easier.
23585  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
23586  * @cfg {Array} fields An array of field definition objects, or field name strings.
23587  * @cfg {Object} an existing reader (eg. copied from another store)
23588  * @cfg {Array} data The multi-dimensional array of data
23589  * @constructor
23590  * @param {Object} config
23591  */
23592 Roo.data.SimpleStore = function(config)
23593 {
23594     Roo.data.SimpleStore.superclass.constructor.call(this, {
23595         isLocal : true,
23596         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
23597                 id: config.id
23598             },
23599             Roo.data.Record.create(config.fields)
23600         ),
23601         proxy : new Roo.data.MemoryProxy(config.data)
23602     });
23603     this.load();
23604 };
23605 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
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 /**
23618  * @extends Roo.data.Store
23619  * @class Roo.data.JsonStore
23620  * Small helper class to make creating Stores for JSON data easier. <br/>
23621 <pre><code>
23622 var store = new Roo.data.JsonStore({
23623     url: 'get-images.php',
23624     root: 'images',
23625     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
23626 });
23627 </code></pre>
23628  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
23629  * JsonReader and HttpProxy (unless inline data is provided).</b>
23630  * @cfg {Array} fields An array of field definition objects, or field name strings.
23631  * @constructor
23632  * @param {Object} config
23633  */
23634 Roo.data.JsonStore = function(c){
23635     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
23636         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
23637         reader: new Roo.data.JsonReader(c, c.fields)
23638     }));
23639 };
23640 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
23641  * Based on:
23642  * Ext JS Library 1.1.1
23643  * Copyright(c) 2006-2007, Ext JS, LLC.
23644  *
23645  * Originally Released Under LGPL - original licence link has changed is not relivant.
23646  *
23647  * Fork - LGPL
23648  * <script type="text/javascript">
23649  */
23650
23651  
23652 Roo.data.Field = function(config){
23653     if(typeof config == "string"){
23654         config = {name: config};
23655     }
23656     Roo.apply(this, config);
23657     
23658     if(!this.type){
23659         this.type = "auto";
23660     }
23661     
23662     var st = Roo.data.SortTypes;
23663     // named sortTypes are supported, here we look them up
23664     if(typeof this.sortType == "string"){
23665         this.sortType = st[this.sortType];
23666     }
23667     
23668     // set default sortType for strings and dates
23669     if(!this.sortType){
23670         switch(this.type){
23671             case "string":
23672                 this.sortType = st.asUCString;
23673                 break;
23674             case "date":
23675                 this.sortType = st.asDate;
23676                 break;
23677             default:
23678                 this.sortType = st.none;
23679         }
23680     }
23681
23682     // define once
23683     var stripRe = /[\$,%]/g;
23684
23685     // prebuilt conversion function for this field, instead of
23686     // switching every time we're reading a value
23687     if(!this.convert){
23688         var cv, dateFormat = this.dateFormat;
23689         switch(this.type){
23690             case "":
23691             case "auto":
23692             case undefined:
23693                 cv = function(v){ return v; };
23694                 break;
23695             case "string":
23696                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
23697                 break;
23698             case "int":
23699                 cv = function(v){
23700                     return v !== undefined && v !== null && v !== '' ?
23701                            parseInt(String(v).replace(stripRe, ""), 10) : '';
23702                     };
23703                 break;
23704             case "float":
23705                 cv = function(v){
23706                     return v !== undefined && v !== null && v !== '' ?
23707                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
23708                     };
23709                 break;
23710             case "bool":
23711             case "boolean":
23712                 cv = function(v){ return v === true || v === "true" || v == 1; };
23713                 break;
23714             case "date":
23715                 cv = function(v){
23716                     if(!v){
23717                         return '';
23718                     }
23719                     if(v instanceof Date){
23720                         return v;
23721                     }
23722                     if(dateFormat){
23723                         if(dateFormat == "timestamp"){
23724                             return new Date(v*1000);
23725                         }
23726                         return Date.parseDate(v, dateFormat);
23727                     }
23728                     var parsed = Date.parse(v);
23729                     return parsed ? new Date(parsed) : null;
23730                 };
23731              break;
23732             
23733         }
23734         this.convert = cv;
23735     }
23736 };
23737
23738 Roo.data.Field.prototype = {
23739     dateFormat: null,
23740     defaultValue: "",
23741     mapping: null,
23742     sortType : null,
23743     sortDir : "ASC"
23744 };/*
23745  * Based on:
23746  * Ext JS Library 1.1.1
23747  * Copyright(c) 2006-2007, Ext JS, LLC.
23748  *
23749  * Originally Released Under LGPL - original licence link has changed is not relivant.
23750  *
23751  * Fork - LGPL
23752  * <script type="text/javascript">
23753  */
23754  
23755 // Base class for reading structured data from a data source.  This class is intended to be
23756 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
23757
23758 /**
23759  * @class Roo.data.DataReader
23760  * Base class for reading structured data from a data source.  This class is intended to be
23761  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
23762  */
23763
23764 Roo.data.DataReader = function(meta, recordType){
23765     
23766     this.meta = meta;
23767     
23768     this.recordType = recordType instanceof Array ? 
23769         Roo.data.Record.create(recordType) : recordType;
23770 };
23771
23772 Roo.data.DataReader.prototype = {
23773     
23774     
23775     readerType : 'Data',
23776      /**
23777      * Create an empty record
23778      * @param {Object} data (optional) - overlay some values
23779      * @return {Roo.data.Record} record created.
23780      */
23781     newRow :  function(d) {
23782         var da =  {};
23783         this.recordType.prototype.fields.each(function(c) {
23784             switch( c.type) {
23785                 case 'int' : da[c.name] = 0; break;
23786                 case 'date' : da[c.name] = new Date(); break;
23787                 case 'float' : da[c.name] = 0.0; break;
23788                 case 'boolean' : da[c.name] = false; break;
23789                 default : da[c.name] = ""; break;
23790             }
23791             
23792         });
23793         return new this.recordType(Roo.apply(da, d));
23794     }
23795     
23796     
23797 };/*
23798  * Based on:
23799  * Ext JS Library 1.1.1
23800  * Copyright(c) 2006-2007, Ext JS, LLC.
23801  *
23802  * Originally Released Under LGPL - original licence link has changed is not relivant.
23803  *
23804  * Fork - LGPL
23805  * <script type="text/javascript">
23806  */
23807
23808 /**
23809  * @class Roo.data.DataProxy
23810  * @extends Roo.data.Observable
23811  * This class is an abstract base class for implementations which provide retrieval of
23812  * unformatted data objects.<br>
23813  * <p>
23814  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
23815  * (of the appropriate type which knows how to parse the data object) to provide a block of
23816  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
23817  * <p>
23818  * Custom implementations must implement the load method as described in
23819  * {@link Roo.data.HttpProxy#load}.
23820  */
23821 Roo.data.DataProxy = function(){
23822     this.addEvents({
23823         /**
23824          * @event beforeload
23825          * Fires before a network request is made to retrieve a data object.
23826          * @param {Object} This DataProxy object.
23827          * @param {Object} params The params parameter to the load function.
23828          */
23829         beforeload : true,
23830         /**
23831          * @event load
23832          * Fires before the load method's callback is called.
23833          * @param {Object} This DataProxy object.
23834          * @param {Object} o The data object.
23835          * @param {Object} arg The callback argument object passed to the load function.
23836          */
23837         load : true,
23838         /**
23839          * @event loadexception
23840          * Fires if an Exception occurs during data retrieval.
23841          * @param {Object} This DataProxy object.
23842          * @param {Object} o The data object.
23843          * @param {Object} arg The callback argument object passed to the load function.
23844          * @param {Object} e The Exception.
23845          */
23846         loadexception : true
23847     });
23848     Roo.data.DataProxy.superclass.constructor.call(this);
23849 };
23850
23851 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
23852
23853     /**
23854      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
23855      */
23856 /*
23857  * Based on:
23858  * Ext JS Library 1.1.1
23859  * Copyright(c) 2006-2007, Ext JS, LLC.
23860  *
23861  * Originally Released Under LGPL - original licence link has changed is not relivant.
23862  *
23863  * Fork - LGPL
23864  * <script type="text/javascript">
23865  */
23866 /**
23867  * @class Roo.data.MemoryProxy
23868  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
23869  * to the Reader when its load method is called.
23870  * @constructor
23871  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
23872  */
23873 Roo.data.MemoryProxy = function(data){
23874     if (data.data) {
23875         data = data.data;
23876     }
23877     Roo.data.MemoryProxy.superclass.constructor.call(this);
23878     this.data = data;
23879 };
23880
23881 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
23882     
23883     /**
23884      * Load data from the requested source (in this case an in-memory
23885      * data object passed to the constructor), read the data object into
23886      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
23887      * process that block using the passed callback.
23888      * @param {Object} params This parameter is not used by the MemoryProxy class.
23889      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23890      * object into a block of Roo.data.Records.
23891      * @param {Function} callback The function into which to pass the block of Roo.data.records.
23892      * The function must be passed <ul>
23893      * <li>The Record block object</li>
23894      * <li>The "arg" argument from the load function</li>
23895      * <li>A boolean success indicator</li>
23896      * </ul>
23897      * @param {Object} scope The scope in which to call the callback
23898      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
23899      */
23900     load : function(params, reader, callback, scope, arg){
23901         params = params || {};
23902         var result;
23903         try {
23904             result = reader.readRecords(params.data ? params.data :this.data);
23905         }catch(e){
23906             this.fireEvent("loadexception", this, arg, null, e);
23907             callback.call(scope, null, arg, false);
23908             return;
23909         }
23910         callback.call(scope, result, arg, true);
23911     },
23912     
23913     // private
23914     update : function(params, records){
23915         
23916     }
23917 });/*
23918  * Based on:
23919  * Ext JS Library 1.1.1
23920  * Copyright(c) 2006-2007, Ext JS, LLC.
23921  *
23922  * Originally Released Under LGPL - original licence link has changed is not relivant.
23923  *
23924  * Fork - LGPL
23925  * <script type="text/javascript">
23926  */
23927 /**
23928  * @class Roo.data.HttpProxy
23929  * @extends Roo.data.DataProxy
23930  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
23931  * configured to reference a certain URL.<br><br>
23932  * <p>
23933  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
23934  * from which the running page was served.<br><br>
23935  * <p>
23936  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
23937  * <p>
23938  * Be aware that to enable the browser to parse an XML document, the server must set
23939  * the Content-Type header in the HTTP response to "text/xml".
23940  * @constructor
23941  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
23942  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
23943  * will be used to make the request.
23944  */
23945 Roo.data.HttpProxy = function(conn){
23946     Roo.data.HttpProxy.superclass.constructor.call(this);
23947     // is conn a conn config or a real conn?
23948     this.conn = conn;
23949     this.useAjax = !conn || !conn.events;
23950   
23951 };
23952
23953 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
23954     // thse are take from connection...
23955     
23956     /**
23957      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
23958      */
23959     /**
23960      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
23961      * extra parameters to each request made by this object. (defaults to undefined)
23962      */
23963     /**
23964      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
23965      *  to each request made by this object. (defaults to undefined)
23966      */
23967     /**
23968      * @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)
23969      */
23970     /**
23971      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
23972      */
23973      /**
23974      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
23975      * @type Boolean
23976      */
23977   
23978
23979     /**
23980      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
23981      * @type Boolean
23982      */
23983     /**
23984      * Return the {@link Roo.data.Connection} object being used by this Proxy.
23985      * @return {Connection} The Connection object. This object may be used to subscribe to events on
23986      * a finer-grained basis than the DataProxy events.
23987      */
23988     getConnection : function(){
23989         return this.useAjax ? Roo.Ajax : this.conn;
23990     },
23991
23992     /**
23993      * Load data from the configured {@link Roo.data.Connection}, read the data object into
23994      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
23995      * process that block using the passed callback.
23996      * @param {Object} params An object containing properties which are to be used as HTTP parameters
23997      * for the request to the remote server.
23998      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23999      * object into a block of Roo.data.Records.
24000      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24001      * The function must be passed <ul>
24002      * <li>The Record block object</li>
24003      * <li>The "arg" argument from the load function</li>
24004      * <li>A boolean success indicator</li>
24005      * </ul>
24006      * @param {Object} scope The scope in which to call the callback
24007      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24008      */
24009     load : function(params, reader, callback, scope, arg){
24010         if(this.fireEvent("beforeload", this, params) !== false){
24011             var  o = {
24012                 params : params || {},
24013                 request: {
24014                     callback : callback,
24015                     scope : scope,
24016                     arg : arg
24017                 },
24018                 reader: reader,
24019                 callback : this.loadResponse,
24020                 scope: this
24021             };
24022             if(this.useAjax){
24023                 Roo.applyIf(o, this.conn);
24024                 if(this.activeRequest){
24025                     Roo.Ajax.abort(this.activeRequest);
24026                 }
24027                 this.activeRequest = Roo.Ajax.request(o);
24028             }else{
24029                 this.conn.request(o);
24030             }
24031         }else{
24032             callback.call(scope||this, null, arg, false);
24033         }
24034     },
24035
24036     // private
24037     loadResponse : function(o, success, response){
24038         delete this.activeRequest;
24039         if(!success){
24040             this.fireEvent("loadexception", this, o, response);
24041             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24042             return;
24043         }
24044         var result;
24045         try {
24046             result = o.reader.read(response);
24047         }catch(e){
24048             this.fireEvent("loadexception", this, o, response, e);
24049             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24050             return;
24051         }
24052         
24053         this.fireEvent("load", this, o, o.request.arg);
24054         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24055     },
24056
24057     // private
24058     update : function(dataSet){
24059
24060     },
24061
24062     // private
24063     updateResponse : function(dataSet){
24064
24065     }
24066 });/*
24067  * Based on:
24068  * Ext JS Library 1.1.1
24069  * Copyright(c) 2006-2007, Ext JS, LLC.
24070  *
24071  * Originally Released Under LGPL - original licence link has changed is not relivant.
24072  *
24073  * Fork - LGPL
24074  * <script type="text/javascript">
24075  */
24076
24077 /**
24078  * @class Roo.data.ScriptTagProxy
24079  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24080  * other than the originating domain of the running page.<br><br>
24081  * <p>
24082  * <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
24083  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24084  * <p>
24085  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24086  * source code that is used as the source inside a &lt;script> tag.<br><br>
24087  * <p>
24088  * In order for the browser to process the returned data, the server must wrap the data object
24089  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24090  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24091  * depending on whether the callback name was passed:
24092  * <p>
24093  * <pre><code>
24094 boolean scriptTag = false;
24095 String cb = request.getParameter("callback");
24096 if (cb != null) {
24097     scriptTag = true;
24098     response.setContentType("text/javascript");
24099 } else {
24100     response.setContentType("application/x-json");
24101 }
24102 Writer out = response.getWriter();
24103 if (scriptTag) {
24104     out.write(cb + "(");
24105 }
24106 out.print(dataBlock.toJsonString());
24107 if (scriptTag) {
24108     out.write(");");
24109 }
24110 </pre></code>
24111  *
24112  * @constructor
24113  * @param {Object} config A configuration object.
24114  */
24115 Roo.data.ScriptTagProxy = function(config){
24116     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24117     Roo.apply(this, config);
24118     this.head = document.getElementsByTagName("head")[0];
24119 };
24120
24121 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24122
24123 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24124     /**
24125      * @cfg {String} url The URL from which to request the data object.
24126      */
24127     /**
24128      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24129      */
24130     timeout : 30000,
24131     /**
24132      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24133      * the server the name of the callback function set up by the load call to process the returned data object.
24134      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24135      * javascript output which calls this named function passing the data object as its only parameter.
24136      */
24137     callbackParam : "callback",
24138     /**
24139      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24140      * name to the request.
24141      */
24142     nocache : true,
24143
24144     /**
24145      * Load data from the configured URL, read the data object into
24146      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24147      * process that block using the passed callback.
24148      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24149      * for the request to the remote server.
24150      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24151      * object into a block of Roo.data.Records.
24152      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24153      * The function must be passed <ul>
24154      * <li>The Record block object</li>
24155      * <li>The "arg" argument from the load function</li>
24156      * <li>A boolean success indicator</li>
24157      * </ul>
24158      * @param {Object} scope The scope in which to call the callback
24159      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24160      */
24161     load : function(params, reader, callback, scope, arg){
24162         if(this.fireEvent("beforeload", this, params) !== false){
24163
24164             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24165
24166             var url = this.url;
24167             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24168             if(this.nocache){
24169                 url += "&_dc=" + (new Date().getTime());
24170             }
24171             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24172             var trans = {
24173                 id : transId,
24174                 cb : "stcCallback"+transId,
24175                 scriptId : "stcScript"+transId,
24176                 params : params,
24177                 arg : arg,
24178                 url : url,
24179                 callback : callback,
24180                 scope : scope,
24181                 reader : reader
24182             };
24183             var conn = this;
24184
24185             window[trans.cb] = function(o){
24186                 conn.handleResponse(o, trans);
24187             };
24188
24189             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24190
24191             if(this.autoAbort !== false){
24192                 this.abort();
24193             }
24194
24195             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24196
24197             var script = document.createElement("script");
24198             script.setAttribute("src", url);
24199             script.setAttribute("type", "text/javascript");
24200             script.setAttribute("id", trans.scriptId);
24201             this.head.appendChild(script);
24202
24203             this.trans = trans;
24204         }else{
24205             callback.call(scope||this, null, arg, false);
24206         }
24207     },
24208
24209     // private
24210     isLoading : function(){
24211         return this.trans ? true : false;
24212     },
24213
24214     /**
24215      * Abort the current server request.
24216      */
24217     abort : function(){
24218         if(this.isLoading()){
24219             this.destroyTrans(this.trans);
24220         }
24221     },
24222
24223     // private
24224     destroyTrans : function(trans, isLoaded){
24225         this.head.removeChild(document.getElementById(trans.scriptId));
24226         clearTimeout(trans.timeoutId);
24227         if(isLoaded){
24228             window[trans.cb] = undefined;
24229             try{
24230                 delete window[trans.cb];
24231             }catch(e){}
24232         }else{
24233             // if hasn't been loaded, wait for load to remove it to prevent script error
24234             window[trans.cb] = function(){
24235                 window[trans.cb] = undefined;
24236                 try{
24237                     delete window[trans.cb];
24238                 }catch(e){}
24239             };
24240         }
24241     },
24242
24243     // private
24244     handleResponse : function(o, trans){
24245         this.trans = false;
24246         this.destroyTrans(trans, true);
24247         var result;
24248         try {
24249             result = trans.reader.readRecords(o);
24250         }catch(e){
24251             this.fireEvent("loadexception", this, o, trans.arg, e);
24252             trans.callback.call(trans.scope||window, null, trans.arg, false);
24253             return;
24254         }
24255         this.fireEvent("load", this, o, trans.arg);
24256         trans.callback.call(trans.scope||window, result, trans.arg, true);
24257     },
24258
24259     // private
24260     handleFailure : function(trans){
24261         this.trans = false;
24262         this.destroyTrans(trans, false);
24263         this.fireEvent("loadexception", this, null, trans.arg);
24264         trans.callback.call(trans.scope||window, null, trans.arg, false);
24265     }
24266 });/*
24267  * Based on:
24268  * Ext JS Library 1.1.1
24269  * Copyright(c) 2006-2007, Ext JS, LLC.
24270  *
24271  * Originally Released Under LGPL - original licence link has changed is not relivant.
24272  *
24273  * Fork - LGPL
24274  * <script type="text/javascript">
24275  */
24276
24277 /**
24278  * @class Roo.data.JsonReader
24279  * @extends Roo.data.DataReader
24280  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24281  * based on mappings in a provided Roo.data.Record constructor.
24282  * 
24283  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24284  * in the reply previously. 
24285  * 
24286  * <p>
24287  * Example code:
24288  * <pre><code>
24289 var RecordDef = Roo.data.Record.create([
24290     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24291     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24292 ]);
24293 var myReader = new Roo.data.JsonReader({
24294     totalProperty: "results",    // The property which contains the total dataset size (optional)
24295     root: "rows",                // The property which contains an Array of row objects
24296     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24297 }, RecordDef);
24298 </code></pre>
24299  * <p>
24300  * This would consume a JSON file like this:
24301  * <pre><code>
24302 { 'results': 2, 'rows': [
24303     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24304     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24305 }
24306 </code></pre>
24307  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24308  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24309  * paged from the remote server.
24310  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24311  * @cfg {String} root name of the property which contains the Array of row objects.
24312  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24313  * @cfg {Array} fields Array of field definition objects
24314  * @constructor
24315  * Create a new JsonReader
24316  * @param {Object} meta Metadata configuration options
24317  * @param {Object} recordType Either an Array of field definition objects,
24318  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24319  */
24320 Roo.data.JsonReader = function(meta, recordType){
24321     
24322     meta = meta || {};
24323     // set some defaults:
24324     Roo.applyIf(meta, {
24325         totalProperty: 'total',
24326         successProperty : 'success',
24327         root : 'data',
24328         id : 'id'
24329     });
24330     
24331     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24332 };
24333 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24334     
24335     readerType : 'Json',
24336     
24337     /**
24338      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24339      * Used by Store query builder to append _requestMeta to params.
24340      * 
24341      */
24342     metaFromRemote : false,
24343     /**
24344      * This method is only used by a DataProxy which has retrieved data from a remote server.
24345      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24346      * @return {Object} data A data block which is used by an Roo.data.Store object as
24347      * a cache of Roo.data.Records.
24348      */
24349     read : function(response){
24350         var json = response.responseText;
24351        
24352         var o = /* eval:var:o */ eval("("+json+")");
24353         if(!o) {
24354             throw {message: "JsonReader.read: Json object not found"};
24355         }
24356         
24357         if(o.metaData){
24358             
24359             delete this.ef;
24360             this.metaFromRemote = true;
24361             this.meta = o.metaData;
24362             this.recordType = Roo.data.Record.create(o.metaData.fields);
24363             this.onMetaChange(this.meta, this.recordType, o);
24364         }
24365         return this.readRecords(o);
24366     },
24367
24368     // private function a store will implement
24369     onMetaChange : function(meta, recordType, o){
24370
24371     },
24372
24373     /**
24374          * @ignore
24375          */
24376     simpleAccess: function(obj, subsc) {
24377         return obj[subsc];
24378     },
24379
24380         /**
24381          * @ignore
24382          */
24383     getJsonAccessor: function(){
24384         var re = /[\[\.]/;
24385         return function(expr) {
24386             try {
24387                 return(re.test(expr))
24388                     ? new Function("obj", "return obj." + expr)
24389                     : function(obj){
24390                         return obj[expr];
24391                     };
24392             } catch(e){}
24393             return Roo.emptyFn;
24394         };
24395     }(),
24396
24397     /**
24398      * Create a data block containing Roo.data.Records from an XML document.
24399      * @param {Object} o An object which contains an Array of row objects in the property specified
24400      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
24401      * which contains the total size of the dataset.
24402      * @return {Object} data A data block which is used by an Roo.data.Store object as
24403      * a cache of Roo.data.Records.
24404      */
24405     readRecords : function(o){
24406         /**
24407          * After any data loads, the raw JSON data is available for further custom processing.
24408          * @type Object
24409          */
24410         this.o = o;
24411         var s = this.meta, Record = this.recordType,
24412             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
24413
24414 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
24415         if (!this.ef) {
24416             if(s.totalProperty) {
24417                     this.getTotal = this.getJsonAccessor(s.totalProperty);
24418                 }
24419                 if(s.successProperty) {
24420                     this.getSuccess = this.getJsonAccessor(s.successProperty);
24421                 }
24422                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
24423                 if (s.id) {
24424                         var g = this.getJsonAccessor(s.id);
24425                         this.getId = function(rec) {
24426                                 var r = g(rec);  
24427                                 return (r === undefined || r === "") ? null : r;
24428                         };
24429                 } else {
24430                         this.getId = function(){return null;};
24431                 }
24432             this.ef = [];
24433             for(var jj = 0; jj < fl; jj++){
24434                 f = fi[jj];
24435                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
24436                 this.ef[jj] = this.getJsonAccessor(map);
24437             }
24438         }
24439
24440         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
24441         if(s.totalProperty){
24442             var vt = parseInt(this.getTotal(o), 10);
24443             if(!isNaN(vt)){
24444                 totalRecords = vt;
24445             }
24446         }
24447         if(s.successProperty){
24448             var vs = this.getSuccess(o);
24449             if(vs === false || vs === 'false'){
24450                 success = false;
24451             }
24452         }
24453         var records = [];
24454         for(var i = 0; i < c; i++){
24455                 var n = root[i];
24456             var values = {};
24457             var id = this.getId(n);
24458             for(var j = 0; j < fl; j++){
24459                 f = fi[j];
24460             var v = this.ef[j](n);
24461             if (!f.convert) {
24462                 Roo.log('missing convert for ' + f.name);
24463                 Roo.log(f);
24464                 continue;
24465             }
24466             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
24467             }
24468             var record = new Record(values, id);
24469             record.json = n;
24470             records[i] = record;
24471         }
24472         return {
24473             raw : o,
24474             success : success,
24475             records : records,
24476             totalRecords : totalRecords
24477         };
24478     },
24479     // used when loading children.. @see loadDataFromChildren
24480     toLoadData: function(rec)
24481     {
24482         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
24483         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
24484         return { data : data, total : data.length };
24485         
24486     }
24487 });/*
24488  * Based on:
24489  * Ext JS Library 1.1.1
24490  * Copyright(c) 2006-2007, Ext JS, LLC.
24491  *
24492  * Originally Released Under LGPL - original licence link has changed is not relivant.
24493  *
24494  * Fork - LGPL
24495  * <script type="text/javascript">
24496  */
24497
24498 /**
24499  * @class Roo.data.XmlReader
24500  * @extends Roo.data.DataReader
24501  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
24502  * based on mappings in a provided Roo.data.Record constructor.<br><br>
24503  * <p>
24504  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
24505  * header in the HTTP response must be set to "text/xml".</em>
24506  * <p>
24507  * Example code:
24508  * <pre><code>
24509 var RecordDef = Roo.data.Record.create([
24510    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24511    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24512 ]);
24513 var myReader = new Roo.data.XmlReader({
24514    totalRecords: "results", // The element which contains the total dataset size (optional)
24515    record: "row",           // The repeated element which contains row information
24516    id: "id"                 // The element within the row that provides an ID for the record (optional)
24517 }, RecordDef);
24518 </code></pre>
24519  * <p>
24520  * This would consume an XML file like this:
24521  * <pre><code>
24522 &lt;?xml?>
24523 &lt;dataset>
24524  &lt;results>2&lt;/results>
24525  &lt;row>
24526    &lt;id>1&lt;/id>
24527    &lt;name>Bill&lt;/name>
24528    &lt;occupation>Gardener&lt;/occupation>
24529  &lt;/row>
24530  &lt;row>
24531    &lt;id>2&lt;/id>
24532    &lt;name>Ben&lt;/name>
24533    &lt;occupation>Horticulturalist&lt;/occupation>
24534  &lt;/row>
24535 &lt;/dataset>
24536 </code></pre>
24537  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
24538  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24539  * paged from the remote server.
24540  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
24541  * @cfg {String} success The DomQuery path to the success attribute used by forms.
24542  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
24543  * a record identifier value.
24544  * @constructor
24545  * Create a new XmlReader
24546  * @param {Object} meta Metadata configuration options
24547  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
24548  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
24549  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
24550  */
24551 Roo.data.XmlReader = function(meta, recordType){
24552     meta = meta || {};
24553     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24554 };
24555 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
24556     
24557     readerType : 'Xml',
24558     
24559     /**
24560      * This method is only used by a DataProxy which has retrieved data from a remote server.
24561          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
24562          * to contain a method called 'responseXML' that returns an XML document object.
24563      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
24564      * a cache of Roo.data.Records.
24565      */
24566     read : function(response){
24567         var doc = response.responseXML;
24568         if(!doc) {
24569             throw {message: "XmlReader.read: XML Document not available"};
24570         }
24571         return this.readRecords(doc);
24572     },
24573
24574     /**
24575      * Create a data block containing Roo.data.Records from an XML document.
24576          * @param {Object} doc A parsed XML document.
24577      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
24578      * a cache of Roo.data.Records.
24579      */
24580     readRecords : function(doc){
24581         /**
24582          * After any data loads/reads, the raw XML Document is available for further custom processing.
24583          * @type XMLDocument
24584          */
24585         this.xmlData = doc;
24586         var root = doc.documentElement || doc;
24587         var q = Roo.DomQuery;
24588         var recordType = this.recordType, fields = recordType.prototype.fields;
24589         var sid = this.meta.id;
24590         var totalRecords = 0, success = true;
24591         if(this.meta.totalRecords){
24592             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
24593         }
24594         
24595         if(this.meta.success){
24596             var sv = q.selectValue(this.meta.success, root, true);
24597             success = sv !== false && sv !== 'false';
24598         }
24599         var records = [];
24600         var ns = q.select(this.meta.record, root);
24601         for(var i = 0, len = ns.length; i < len; i++) {
24602                 var n = ns[i];
24603                 var values = {};
24604                 var id = sid ? q.selectValue(sid, n) : undefined;
24605                 for(var j = 0, jlen = fields.length; j < jlen; j++){
24606                     var f = fields.items[j];
24607                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
24608                     v = f.convert(v);
24609                     values[f.name] = v;
24610                 }
24611                 var record = new recordType(values, id);
24612                 record.node = n;
24613                 records[records.length] = record;
24614             }
24615
24616             return {
24617                 success : success,
24618                 records : records,
24619                 totalRecords : totalRecords || records.length
24620             };
24621     }
24622 });/*
24623  * Based on:
24624  * Ext JS Library 1.1.1
24625  * Copyright(c) 2006-2007, Ext JS, LLC.
24626  *
24627  * Originally Released Under LGPL - original licence link has changed is not relivant.
24628  *
24629  * Fork - LGPL
24630  * <script type="text/javascript">
24631  */
24632
24633 /**
24634  * @class Roo.data.ArrayReader
24635  * @extends Roo.data.DataReader
24636  * Data reader class to create an Array of Roo.data.Record objects from an Array.
24637  * Each element of that Array represents a row of data fields. The
24638  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
24639  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
24640  * <p>
24641  * Example code:.
24642  * <pre><code>
24643 var RecordDef = Roo.data.Record.create([
24644     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
24645     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
24646 ]);
24647 var myReader = new Roo.data.ArrayReader({
24648     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
24649 }, RecordDef);
24650 </code></pre>
24651  * <p>
24652  * This would consume an Array like this:
24653  * <pre><code>
24654 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
24655   </code></pre>
24656  
24657  * @constructor
24658  * Create a new JsonReader
24659  * @param {Object} meta Metadata configuration options.
24660  * @param {Object|Array} recordType Either an Array of field definition objects
24661  * 
24662  * @cfg {Array} fields Array of field definition objects
24663  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24664  * as specified to {@link Roo.data.Record#create},
24665  * or an {@link Roo.data.Record} object
24666  *
24667  * 
24668  * created using {@link Roo.data.Record#create}.
24669  */
24670 Roo.data.ArrayReader = function(meta, recordType)
24671 {    
24672     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24673 };
24674
24675 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
24676     
24677       /**
24678      * Create a data block containing Roo.data.Records from an XML document.
24679      * @param {Object} o An Array of row objects which represents the dataset.
24680      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
24681      * a cache of Roo.data.Records.
24682      */
24683     readRecords : function(o)
24684     {
24685         var sid = this.meta ? this.meta.id : null;
24686         var recordType = this.recordType, fields = recordType.prototype.fields;
24687         var records = [];
24688         var root = o;
24689         for(var i = 0; i < root.length; i++){
24690                 var n = root[i];
24691             var values = {};
24692             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
24693             for(var j = 0, jlen = fields.length; j < jlen; j++){
24694                 var f = fields.items[j];
24695                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
24696                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
24697                 v = f.convert(v);
24698                 values[f.name] = v;
24699             }
24700             var record = new recordType(values, id);
24701             record.json = n;
24702             records[records.length] = record;
24703         }
24704         return {
24705             records : records,
24706             totalRecords : records.length
24707         };
24708     },
24709     // used when loading children.. @see loadDataFromChildren
24710     toLoadData: function(rec)
24711     {
24712         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
24713         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
24714         
24715     }
24716     
24717     
24718 });/*
24719  * Based on:
24720  * Ext JS Library 1.1.1
24721  * Copyright(c) 2006-2007, Ext JS, LLC.
24722  *
24723  * Originally Released Under LGPL - original licence link has changed is not relivant.
24724  *
24725  * Fork - LGPL
24726  * <script type="text/javascript">
24727  */
24728
24729
24730 /**
24731  * @class Roo.data.Tree
24732  * @extends Roo.util.Observable
24733  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
24734  * in the tree have most standard DOM functionality.
24735  * @constructor
24736  * @param {Node} root (optional) The root node
24737  */
24738 Roo.data.Tree = function(root){
24739    this.nodeHash = {};
24740    /**
24741     * The root node for this tree
24742     * @type Node
24743     */
24744    this.root = null;
24745    if(root){
24746        this.setRootNode(root);
24747    }
24748    this.addEvents({
24749        /**
24750         * @event append
24751         * Fires when a new child node is appended to a node in this tree.
24752         * @param {Tree} tree The owner tree
24753         * @param {Node} parent The parent node
24754         * @param {Node} node The newly appended node
24755         * @param {Number} index The index of the newly appended node
24756         */
24757        "append" : true,
24758        /**
24759         * @event remove
24760         * Fires when a child node is removed from a node in this tree.
24761         * @param {Tree} tree The owner tree
24762         * @param {Node} parent The parent node
24763         * @param {Node} node The child node removed
24764         */
24765        "remove" : true,
24766        /**
24767         * @event move
24768         * Fires when a node is moved to a new location in the tree
24769         * @param {Tree} tree The owner tree
24770         * @param {Node} node The node moved
24771         * @param {Node} oldParent The old parent of this node
24772         * @param {Node} newParent The new parent of this node
24773         * @param {Number} index The index it was moved to
24774         */
24775        "move" : true,
24776        /**
24777         * @event insert
24778         * Fires when a new child node is inserted in a node in this tree.
24779         * @param {Tree} tree The owner tree
24780         * @param {Node} parent The parent node
24781         * @param {Node} node The child node inserted
24782         * @param {Node} refNode The child node the node was inserted before
24783         */
24784        "insert" : true,
24785        /**
24786         * @event beforeappend
24787         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
24788         * @param {Tree} tree The owner tree
24789         * @param {Node} parent The parent node
24790         * @param {Node} node The child node to be appended
24791         */
24792        "beforeappend" : true,
24793        /**
24794         * @event beforeremove
24795         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
24796         * @param {Tree} tree The owner tree
24797         * @param {Node} parent The parent node
24798         * @param {Node} node The child node to be removed
24799         */
24800        "beforeremove" : true,
24801        /**
24802         * @event beforemove
24803         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
24804         * @param {Tree} tree The owner tree
24805         * @param {Node} node The node being moved
24806         * @param {Node} oldParent The parent of the node
24807         * @param {Node} newParent The new parent the node is moving to
24808         * @param {Number} index The index it is being moved to
24809         */
24810        "beforemove" : true,
24811        /**
24812         * @event beforeinsert
24813         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
24814         * @param {Tree} tree The owner tree
24815         * @param {Node} parent The parent node
24816         * @param {Node} node The child node to be inserted
24817         * @param {Node} refNode The child node the node is being inserted before
24818         */
24819        "beforeinsert" : true
24820    });
24821
24822     Roo.data.Tree.superclass.constructor.call(this);
24823 };
24824
24825 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
24826     pathSeparator: "/",
24827
24828     proxyNodeEvent : function(){
24829         return this.fireEvent.apply(this, arguments);
24830     },
24831
24832     /**
24833      * Returns the root node for this tree.
24834      * @return {Node}
24835      */
24836     getRootNode : function(){
24837         return this.root;
24838     },
24839
24840     /**
24841      * Sets the root node for this tree.
24842      * @param {Node} node
24843      * @return {Node}
24844      */
24845     setRootNode : function(node){
24846         this.root = node;
24847         node.ownerTree = this;
24848         node.isRoot = true;
24849         this.registerNode(node);
24850         return node;
24851     },
24852
24853     /**
24854      * Gets a node in this tree by its id.
24855      * @param {String} id
24856      * @return {Node}
24857      */
24858     getNodeById : function(id){
24859         return this.nodeHash[id];
24860     },
24861
24862     registerNode : function(node){
24863         this.nodeHash[node.id] = node;
24864     },
24865
24866     unregisterNode : function(node){
24867         delete this.nodeHash[node.id];
24868     },
24869
24870     toString : function(){
24871         return "[Tree"+(this.id?" "+this.id:"")+"]";
24872     }
24873 });
24874
24875 /**
24876  * @class Roo.data.Node
24877  * @extends Roo.util.Observable
24878  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
24879  * @cfg {String} id The id for this node. If one is not specified, one is generated.
24880  * @constructor
24881  * @param {Object} attributes The attributes/config for the node
24882  */
24883 Roo.data.Node = function(attributes){
24884     /**
24885      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
24886      * @type {Object}
24887      */
24888     this.attributes = attributes || {};
24889     this.leaf = this.attributes.leaf;
24890     /**
24891      * The node id. @type String
24892      */
24893     this.id = this.attributes.id;
24894     if(!this.id){
24895         this.id = Roo.id(null, "ynode-");
24896         this.attributes.id = this.id;
24897     }
24898      
24899     
24900     /**
24901      * All child nodes of this node. @type Array
24902      */
24903     this.childNodes = [];
24904     if(!this.childNodes.indexOf){ // indexOf is a must
24905         this.childNodes.indexOf = function(o){
24906             for(var i = 0, len = this.length; i < len; i++){
24907                 if(this[i] == o) {
24908                     return i;
24909                 }
24910             }
24911             return -1;
24912         };
24913     }
24914     /**
24915      * The parent node for this node. @type Node
24916      */
24917     this.parentNode = null;
24918     /**
24919      * The first direct child node of this node, or null if this node has no child nodes. @type Node
24920      */
24921     this.firstChild = null;
24922     /**
24923      * The last direct child node of this node, or null if this node has no child nodes. @type Node
24924      */
24925     this.lastChild = null;
24926     /**
24927      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
24928      */
24929     this.previousSibling = null;
24930     /**
24931      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
24932      */
24933     this.nextSibling = null;
24934
24935     this.addEvents({
24936        /**
24937         * @event append
24938         * Fires when a new child node is appended
24939         * @param {Tree} tree The owner tree
24940         * @param {Node} this This node
24941         * @param {Node} node The newly appended node
24942         * @param {Number} index The index of the newly appended node
24943         */
24944        "append" : true,
24945        /**
24946         * @event remove
24947         * Fires when a child node is removed
24948         * @param {Tree} tree The owner tree
24949         * @param {Node} this This node
24950         * @param {Node} node The removed node
24951         */
24952        "remove" : true,
24953        /**
24954         * @event move
24955         * Fires when this node is moved to a new location in the tree
24956         * @param {Tree} tree The owner tree
24957         * @param {Node} this This node
24958         * @param {Node} oldParent The old parent of this node
24959         * @param {Node} newParent The new parent of this node
24960         * @param {Number} index The index it was moved to
24961         */
24962        "move" : true,
24963        /**
24964         * @event insert
24965         * Fires when a new child node is inserted.
24966         * @param {Tree} tree The owner tree
24967         * @param {Node} this This node
24968         * @param {Node} node The child node inserted
24969         * @param {Node} refNode The child node the node was inserted before
24970         */
24971        "insert" : true,
24972        /**
24973         * @event beforeappend
24974         * Fires before a new child is appended, return false to cancel the append.
24975         * @param {Tree} tree The owner tree
24976         * @param {Node} this This node
24977         * @param {Node} node The child node to be appended
24978         */
24979        "beforeappend" : true,
24980        /**
24981         * @event beforeremove
24982         * Fires before a child is removed, return false to cancel the remove.
24983         * @param {Tree} tree The owner tree
24984         * @param {Node} this This node
24985         * @param {Node} node The child node to be removed
24986         */
24987        "beforeremove" : true,
24988        /**
24989         * @event beforemove
24990         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
24991         * @param {Tree} tree The owner tree
24992         * @param {Node} this This node
24993         * @param {Node} oldParent The parent of this node
24994         * @param {Node} newParent The new parent this node is moving to
24995         * @param {Number} index The index it is being moved to
24996         */
24997        "beforemove" : true,
24998        /**
24999         * @event beforeinsert
25000         * Fires before a new child is inserted, return false to cancel the insert.
25001         * @param {Tree} tree The owner tree
25002         * @param {Node} this This node
25003         * @param {Node} node The child node to be inserted
25004         * @param {Node} refNode The child node the node is being inserted before
25005         */
25006        "beforeinsert" : true
25007    });
25008     this.listeners = this.attributes.listeners;
25009     Roo.data.Node.superclass.constructor.call(this);
25010 };
25011
25012 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25013     fireEvent : function(evtName){
25014         // first do standard event for this node
25015         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25016             return false;
25017         }
25018         // then bubble it up to the tree if the event wasn't cancelled
25019         var ot = this.getOwnerTree();
25020         if(ot){
25021             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25022                 return false;
25023             }
25024         }
25025         return true;
25026     },
25027
25028     /**
25029      * Returns true if this node is a leaf
25030      * @return {Boolean}
25031      */
25032     isLeaf : function(){
25033         return this.leaf === true;
25034     },
25035
25036     // private
25037     setFirstChild : function(node){
25038         this.firstChild = node;
25039     },
25040
25041     //private
25042     setLastChild : function(node){
25043         this.lastChild = node;
25044     },
25045
25046
25047     /**
25048      * Returns true if this node is the last child of its parent
25049      * @return {Boolean}
25050      */
25051     isLast : function(){
25052        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25053     },
25054
25055     /**
25056      * Returns true if this node is the first child of its parent
25057      * @return {Boolean}
25058      */
25059     isFirst : function(){
25060        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25061     },
25062
25063     hasChildNodes : function(){
25064         return !this.isLeaf() && this.childNodes.length > 0;
25065     },
25066
25067     /**
25068      * Insert node(s) as the last child node of this node.
25069      * @param {Node/Array} node The node or Array of nodes to append
25070      * @return {Node} The appended node if single append, or null if an array was passed
25071      */
25072     appendChild : function(node){
25073         var multi = false;
25074         if(node instanceof Array){
25075             multi = node;
25076         }else if(arguments.length > 1){
25077             multi = arguments;
25078         }
25079         
25080         // if passed an array or multiple args do them one by one
25081         if(multi){
25082             for(var i = 0, len = multi.length; i < len; i++) {
25083                 this.appendChild(multi[i]);
25084             }
25085         }else{
25086             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25087                 return false;
25088             }
25089             var index = this.childNodes.length;
25090             var oldParent = node.parentNode;
25091             // it's a move, make sure we move it cleanly
25092             if(oldParent){
25093                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25094                     return false;
25095                 }
25096                 oldParent.removeChild(node);
25097             }
25098             
25099             index = this.childNodes.length;
25100             if(index == 0){
25101                 this.setFirstChild(node);
25102             }
25103             this.childNodes.push(node);
25104             node.parentNode = this;
25105             var ps = this.childNodes[index-1];
25106             if(ps){
25107                 node.previousSibling = ps;
25108                 ps.nextSibling = node;
25109             }else{
25110                 node.previousSibling = null;
25111             }
25112             node.nextSibling = null;
25113             this.setLastChild(node);
25114             node.setOwnerTree(this.getOwnerTree());
25115             this.fireEvent("append", this.ownerTree, this, node, index);
25116             if(this.ownerTree) {
25117                 this.ownerTree.fireEvent("appendnode", this, node, index);
25118             }
25119             if(oldParent){
25120                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25121             }
25122             return node;
25123         }
25124     },
25125
25126     /**
25127      * Removes a child node from this node.
25128      * @param {Node} node The node to remove
25129      * @return {Node} The removed node
25130      */
25131     removeChild : function(node){
25132         var index = this.childNodes.indexOf(node);
25133         if(index == -1){
25134             return false;
25135         }
25136         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25137             return false;
25138         }
25139
25140         // remove it from childNodes collection
25141         this.childNodes.splice(index, 1);
25142
25143         // update siblings
25144         if(node.previousSibling){
25145             node.previousSibling.nextSibling = node.nextSibling;
25146         }
25147         if(node.nextSibling){
25148             node.nextSibling.previousSibling = node.previousSibling;
25149         }
25150
25151         // update child refs
25152         if(this.firstChild == node){
25153             this.setFirstChild(node.nextSibling);
25154         }
25155         if(this.lastChild == node){
25156             this.setLastChild(node.previousSibling);
25157         }
25158
25159         node.setOwnerTree(null);
25160         // clear any references from the node
25161         node.parentNode = null;
25162         node.previousSibling = null;
25163         node.nextSibling = null;
25164         this.fireEvent("remove", this.ownerTree, this, node);
25165         return node;
25166     },
25167
25168     /**
25169      * Inserts the first node before the second node in this nodes childNodes collection.
25170      * @param {Node} node The node to insert
25171      * @param {Node} refNode The node to insert before (if null the node is appended)
25172      * @return {Node} The inserted node
25173      */
25174     insertBefore : function(node, refNode){
25175         if(!refNode){ // like standard Dom, refNode can be null for append
25176             return this.appendChild(node);
25177         }
25178         // nothing to do
25179         if(node == refNode){
25180             return false;
25181         }
25182
25183         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25184             return false;
25185         }
25186         var index = this.childNodes.indexOf(refNode);
25187         var oldParent = node.parentNode;
25188         var refIndex = index;
25189
25190         // when moving internally, indexes will change after remove
25191         if(oldParent == this && this.childNodes.indexOf(node) < index){
25192             refIndex--;
25193         }
25194
25195         // it's a move, make sure we move it cleanly
25196         if(oldParent){
25197             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25198                 return false;
25199             }
25200             oldParent.removeChild(node);
25201         }
25202         if(refIndex == 0){
25203             this.setFirstChild(node);
25204         }
25205         this.childNodes.splice(refIndex, 0, node);
25206         node.parentNode = this;
25207         var ps = this.childNodes[refIndex-1];
25208         if(ps){
25209             node.previousSibling = ps;
25210             ps.nextSibling = node;
25211         }else{
25212             node.previousSibling = null;
25213         }
25214         node.nextSibling = refNode;
25215         refNode.previousSibling = node;
25216         node.setOwnerTree(this.getOwnerTree());
25217         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25218         if(oldParent){
25219             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25220         }
25221         return node;
25222     },
25223
25224     /**
25225      * Returns the child node at the specified index.
25226      * @param {Number} index
25227      * @return {Node}
25228      */
25229     item : function(index){
25230         return this.childNodes[index];
25231     },
25232
25233     /**
25234      * Replaces one child node in this node with another.
25235      * @param {Node} newChild The replacement node
25236      * @param {Node} oldChild The node to replace
25237      * @return {Node} The replaced node
25238      */
25239     replaceChild : function(newChild, oldChild){
25240         this.insertBefore(newChild, oldChild);
25241         this.removeChild(oldChild);
25242         return oldChild;
25243     },
25244
25245     /**
25246      * Returns the index of a child node
25247      * @param {Node} node
25248      * @return {Number} The index of the node or -1 if it was not found
25249      */
25250     indexOf : function(child){
25251         return this.childNodes.indexOf(child);
25252     },
25253
25254     /**
25255      * Returns the tree this node is in.
25256      * @return {Tree}
25257      */
25258     getOwnerTree : function(){
25259         // if it doesn't have one, look for one
25260         if(!this.ownerTree){
25261             var p = this;
25262             while(p){
25263                 if(p.ownerTree){
25264                     this.ownerTree = p.ownerTree;
25265                     break;
25266                 }
25267                 p = p.parentNode;
25268             }
25269         }
25270         return this.ownerTree;
25271     },
25272
25273     /**
25274      * Returns depth of this node (the root node has a depth of 0)
25275      * @return {Number}
25276      */
25277     getDepth : function(){
25278         var depth = 0;
25279         var p = this;
25280         while(p.parentNode){
25281             ++depth;
25282             p = p.parentNode;
25283         }
25284         return depth;
25285     },
25286
25287     // private
25288     setOwnerTree : function(tree){
25289         // if it's move, we need to update everyone
25290         if(tree != this.ownerTree){
25291             if(this.ownerTree){
25292                 this.ownerTree.unregisterNode(this);
25293             }
25294             this.ownerTree = tree;
25295             var cs = this.childNodes;
25296             for(var i = 0, len = cs.length; i < len; i++) {
25297                 cs[i].setOwnerTree(tree);
25298             }
25299             if(tree){
25300                 tree.registerNode(this);
25301             }
25302         }
25303     },
25304
25305     /**
25306      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25307      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25308      * @return {String} The path
25309      */
25310     getPath : function(attr){
25311         attr = attr || "id";
25312         var p = this.parentNode;
25313         var b = [this.attributes[attr]];
25314         while(p){
25315             b.unshift(p.attributes[attr]);
25316             p = p.parentNode;
25317         }
25318         var sep = this.getOwnerTree().pathSeparator;
25319         return sep + b.join(sep);
25320     },
25321
25322     /**
25323      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25324      * function call will be the scope provided or the current node. The arguments to the function
25325      * will be the args provided or the current node. If the function returns false at any point,
25326      * the bubble is stopped.
25327      * @param {Function} fn The function to call
25328      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25329      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25330      */
25331     bubble : function(fn, scope, args){
25332         var p = this;
25333         while(p){
25334             if(fn.call(scope || p, args || p) === false){
25335                 break;
25336             }
25337             p = p.parentNode;
25338         }
25339     },
25340
25341     /**
25342      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25343      * function call will be the scope provided or the current node. The arguments to the function
25344      * will be the args provided or the current node. If the function returns false at any point,
25345      * the cascade is stopped on that branch.
25346      * @param {Function} fn The function to call
25347      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25348      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25349      */
25350     cascade : function(fn, scope, args){
25351         if(fn.call(scope || this, args || this) !== false){
25352             var cs = this.childNodes;
25353             for(var i = 0, len = cs.length; i < len; i++) {
25354                 cs[i].cascade(fn, scope, args);
25355             }
25356         }
25357     },
25358
25359     /**
25360      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25361      * function call will be the scope provided or the current node. The arguments to the function
25362      * will be the args provided or the current node. If the function returns false at any point,
25363      * the iteration stops.
25364      * @param {Function} fn The function to call
25365      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25366      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25367      */
25368     eachChild : function(fn, scope, args){
25369         var cs = this.childNodes;
25370         for(var i = 0, len = cs.length; i < len; i++) {
25371                 if(fn.call(scope || this, args || cs[i]) === false){
25372                     break;
25373                 }
25374         }
25375     },
25376
25377     /**
25378      * Finds the first child that has the attribute with the specified value.
25379      * @param {String} attribute The attribute name
25380      * @param {Mixed} value The value to search for
25381      * @return {Node} The found child or null if none was found
25382      */
25383     findChild : function(attribute, value){
25384         var cs = this.childNodes;
25385         for(var i = 0, len = cs.length; i < len; i++) {
25386                 if(cs[i].attributes[attribute] == value){
25387                     return cs[i];
25388                 }
25389         }
25390         return null;
25391     },
25392
25393     /**
25394      * Finds the first child by a custom function. The child matches if the function passed
25395      * returns true.
25396      * @param {Function} fn
25397      * @param {Object} scope (optional)
25398      * @return {Node} The found child or null if none was found
25399      */
25400     findChildBy : function(fn, scope){
25401         var cs = this.childNodes;
25402         for(var i = 0, len = cs.length; i < len; i++) {
25403                 if(fn.call(scope||cs[i], cs[i]) === true){
25404                     return cs[i];
25405                 }
25406         }
25407         return null;
25408     },
25409
25410     /**
25411      * Sorts this nodes children using the supplied sort function
25412      * @param {Function} fn
25413      * @param {Object} scope (optional)
25414      */
25415     sort : function(fn, scope){
25416         var cs = this.childNodes;
25417         var len = cs.length;
25418         if(len > 0){
25419             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
25420             cs.sort(sortFn);
25421             for(var i = 0; i < len; i++){
25422                 var n = cs[i];
25423                 n.previousSibling = cs[i-1];
25424                 n.nextSibling = cs[i+1];
25425                 if(i == 0){
25426                     this.setFirstChild(n);
25427                 }
25428                 if(i == len-1){
25429                     this.setLastChild(n);
25430                 }
25431             }
25432         }
25433     },
25434
25435     /**
25436      * Returns true if this node is an ancestor (at any point) of the passed node.
25437      * @param {Node} node
25438      * @return {Boolean}
25439      */
25440     contains : function(node){
25441         return node.isAncestor(this);
25442     },
25443
25444     /**
25445      * Returns true if the passed node is an ancestor (at any point) of this node.
25446      * @param {Node} node
25447      * @return {Boolean}
25448      */
25449     isAncestor : function(node){
25450         var p = this.parentNode;
25451         while(p){
25452             if(p == node){
25453                 return true;
25454             }
25455             p = p.parentNode;
25456         }
25457         return false;
25458     },
25459
25460     toString : function(){
25461         return "[Node"+(this.id?" "+this.id:"")+"]";
25462     }
25463 });/*
25464  * Based on:
25465  * Ext JS Library 1.1.1
25466  * Copyright(c) 2006-2007, Ext JS, LLC.
25467  *
25468  * Originally Released Under LGPL - original licence link has changed is not relivant.
25469  *
25470  * Fork - LGPL
25471  * <script type="text/javascript">
25472  */
25473  (function(){ 
25474 /**
25475  * @class Roo.Layer
25476  * @extends Roo.Element
25477  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
25478  * automatic maintaining of shadow/shim positions.
25479  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
25480  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
25481  * you can pass a string with a CSS class name. False turns off the shadow.
25482  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
25483  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
25484  * @cfg {String} cls CSS class to add to the element
25485  * @cfg {Number} zindex Starting z-index (defaults to 11000)
25486  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
25487  * @constructor
25488  * @param {Object} config An object with config options.
25489  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
25490  */
25491
25492 Roo.Layer = function(config, existingEl){
25493     config = config || {};
25494     var dh = Roo.DomHelper;
25495     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
25496     if(existingEl){
25497         this.dom = Roo.getDom(existingEl);
25498     }
25499     if(!this.dom){
25500         var o = config.dh || {tag: "div", cls: "x-layer"};
25501         this.dom = dh.append(pel, o);
25502     }
25503     if(config.cls){
25504         this.addClass(config.cls);
25505     }
25506     this.constrain = config.constrain !== false;
25507     this.visibilityMode = Roo.Element.VISIBILITY;
25508     if(config.id){
25509         this.id = this.dom.id = config.id;
25510     }else{
25511         this.id = Roo.id(this.dom);
25512     }
25513     this.zindex = config.zindex || this.getZIndex();
25514     this.position("absolute", this.zindex);
25515     if(config.shadow){
25516         this.shadowOffset = config.shadowOffset || 4;
25517         this.shadow = new Roo.Shadow({
25518             offset : this.shadowOffset,
25519             mode : config.shadow
25520         });
25521     }else{
25522         this.shadowOffset = 0;
25523     }
25524     this.useShim = config.shim !== false && Roo.useShims;
25525     this.useDisplay = config.useDisplay;
25526     this.hide();
25527 };
25528
25529 var supr = Roo.Element.prototype;
25530
25531 // shims are shared among layer to keep from having 100 iframes
25532 var shims = [];
25533
25534 Roo.extend(Roo.Layer, Roo.Element, {
25535
25536     getZIndex : function(){
25537         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
25538     },
25539
25540     getShim : function(){
25541         if(!this.useShim){
25542             return null;
25543         }
25544         if(this.shim){
25545             return this.shim;
25546         }
25547         var shim = shims.shift();
25548         if(!shim){
25549             shim = this.createShim();
25550             shim.enableDisplayMode('block');
25551             shim.dom.style.display = 'none';
25552             shim.dom.style.visibility = 'visible';
25553         }
25554         var pn = this.dom.parentNode;
25555         if(shim.dom.parentNode != pn){
25556             pn.insertBefore(shim.dom, this.dom);
25557         }
25558         shim.setStyle('z-index', this.getZIndex()-2);
25559         this.shim = shim;
25560         return shim;
25561     },
25562
25563     hideShim : function(){
25564         if(this.shim){
25565             this.shim.setDisplayed(false);
25566             shims.push(this.shim);
25567             delete this.shim;
25568         }
25569     },
25570
25571     disableShadow : function(){
25572         if(this.shadow){
25573             this.shadowDisabled = true;
25574             this.shadow.hide();
25575             this.lastShadowOffset = this.shadowOffset;
25576             this.shadowOffset = 0;
25577         }
25578     },
25579
25580     enableShadow : function(show){
25581         if(this.shadow){
25582             this.shadowDisabled = false;
25583             this.shadowOffset = this.lastShadowOffset;
25584             delete this.lastShadowOffset;
25585             if(show){
25586                 this.sync(true);
25587             }
25588         }
25589     },
25590
25591     // private
25592     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
25593     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
25594     sync : function(doShow){
25595         var sw = this.shadow;
25596         if(!this.updating && this.isVisible() && (sw || this.useShim)){
25597             var sh = this.getShim();
25598
25599             var w = this.getWidth(),
25600                 h = this.getHeight();
25601
25602             var l = this.getLeft(true),
25603                 t = this.getTop(true);
25604
25605             if(sw && !this.shadowDisabled){
25606                 if(doShow && !sw.isVisible()){
25607                     sw.show(this);
25608                 }else{
25609                     sw.realign(l, t, w, h);
25610                 }
25611                 if(sh){
25612                     if(doShow){
25613                        sh.show();
25614                     }
25615                     // fit the shim behind the shadow, so it is shimmed too
25616                     var a = sw.adjusts, s = sh.dom.style;
25617                     s.left = (Math.min(l, l+a.l))+"px";
25618                     s.top = (Math.min(t, t+a.t))+"px";
25619                     s.width = (w+a.w)+"px";
25620                     s.height = (h+a.h)+"px";
25621                 }
25622             }else if(sh){
25623                 if(doShow){
25624                    sh.show();
25625                 }
25626                 sh.setSize(w, h);
25627                 sh.setLeftTop(l, t);
25628             }
25629             
25630         }
25631     },
25632
25633     // private
25634     destroy : function(){
25635         this.hideShim();
25636         if(this.shadow){
25637             this.shadow.hide();
25638         }
25639         this.removeAllListeners();
25640         var pn = this.dom.parentNode;
25641         if(pn){
25642             pn.removeChild(this.dom);
25643         }
25644         Roo.Element.uncache(this.id);
25645     },
25646
25647     remove : function(){
25648         this.destroy();
25649     },
25650
25651     // private
25652     beginUpdate : function(){
25653         this.updating = true;
25654     },
25655
25656     // private
25657     endUpdate : function(){
25658         this.updating = false;
25659         this.sync(true);
25660     },
25661
25662     // private
25663     hideUnders : function(negOffset){
25664         if(this.shadow){
25665             this.shadow.hide();
25666         }
25667         this.hideShim();
25668     },
25669
25670     // private
25671     constrainXY : function(){
25672         if(this.constrain){
25673             var vw = Roo.lib.Dom.getViewWidth(),
25674                 vh = Roo.lib.Dom.getViewHeight();
25675             var s = Roo.get(document).getScroll();
25676
25677             var xy = this.getXY();
25678             var x = xy[0], y = xy[1];   
25679             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
25680             // only move it if it needs it
25681             var moved = false;
25682             // first validate right/bottom
25683             if((x + w) > vw+s.left){
25684                 x = vw - w - this.shadowOffset;
25685                 moved = true;
25686             }
25687             if((y + h) > vh+s.top){
25688                 y = vh - h - this.shadowOffset;
25689                 moved = true;
25690             }
25691             // then make sure top/left isn't negative
25692             if(x < s.left){
25693                 x = s.left;
25694                 moved = true;
25695             }
25696             if(y < s.top){
25697                 y = s.top;
25698                 moved = true;
25699             }
25700             if(moved){
25701                 if(this.avoidY){
25702                     var ay = this.avoidY;
25703                     if(y <= ay && (y+h) >= ay){
25704                         y = ay-h-5;   
25705                     }
25706                 }
25707                 xy = [x, y];
25708                 this.storeXY(xy);
25709                 supr.setXY.call(this, xy);
25710                 this.sync();
25711             }
25712         }
25713     },
25714
25715     isVisible : function(){
25716         return this.visible;    
25717     },
25718
25719     // private
25720     showAction : function(){
25721         this.visible = true; // track visibility to prevent getStyle calls
25722         if(this.useDisplay === true){
25723             this.setDisplayed("");
25724         }else if(this.lastXY){
25725             supr.setXY.call(this, this.lastXY);
25726         }else if(this.lastLT){
25727             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
25728         }
25729     },
25730
25731     // private
25732     hideAction : function(){
25733         this.visible = false;
25734         if(this.useDisplay === true){
25735             this.setDisplayed(false);
25736         }else{
25737             this.setLeftTop(-10000,-10000);
25738         }
25739     },
25740
25741     // overridden Element method
25742     setVisible : function(v, a, d, c, e){
25743         if(v){
25744             this.showAction();
25745         }
25746         if(a && v){
25747             var cb = function(){
25748                 this.sync(true);
25749                 if(c){
25750                     c();
25751                 }
25752             }.createDelegate(this);
25753             supr.setVisible.call(this, true, true, d, cb, e);
25754         }else{
25755             if(!v){
25756                 this.hideUnders(true);
25757             }
25758             var cb = c;
25759             if(a){
25760                 cb = function(){
25761                     this.hideAction();
25762                     if(c){
25763                         c();
25764                     }
25765                 }.createDelegate(this);
25766             }
25767             supr.setVisible.call(this, v, a, d, cb, e);
25768             if(v){
25769                 this.sync(true);
25770             }else if(!a){
25771                 this.hideAction();
25772             }
25773         }
25774     },
25775
25776     storeXY : function(xy){
25777         delete this.lastLT;
25778         this.lastXY = xy;
25779     },
25780
25781     storeLeftTop : function(left, top){
25782         delete this.lastXY;
25783         this.lastLT = [left, top];
25784     },
25785
25786     // private
25787     beforeFx : function(){
25788         this.beforeAction();
25789         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
25790     },
25791
25792     // private
25793     afterFx : function(){
25794         Roo.Layer.superclass.afterFx.apply(this, arguments);
25795         this.sync(this.isVisible());
25796     },
25797
25798     // private
25799     beforeAction : function(){
25800         if(!this.updating && this.shadow){
25801             this.shadow.hide();
25802         }
25803     },
25804
25805     // overridden Element method
25806     setLeft : function(left){
25807         this.storeLeftTop(left, this.getTop(true));
25808         supr.setLeft.apply(this, arguments);
25809         this.sync();
25810     },
25811
25812     setTop : function(top){
25813         this.storeLeftTop(this.getLeft(true), top);
25814         supr.setTop.apply(this, arguments);
25815         this.sync();
25816     },
25817
25818     setLeftTop : function(left, top){
25819         this.storeLeftTop(left, top);
25820         supr.setLeftTop.apply(this, arguments);
25821         this.sync();
25822     },
25823
25824     setXY : function(xy, a, d, c, e){
25825         this.fixDisplay();
25826         this.beforeAction();
25827         this.storeXY(xy);
25828         var cb = this.createCB(c);
25829         supr.setXY.call(this, xy, a, d, cb, e);
25830         if(!a){
25831             cb();
25832         }
25833     },
25834
25835     // private
25836     createCB : function(c){
25837         var el = this;
25838         return function(){
25839             el.constrainXY();
25840             el.sync(true);
25841             if(c){
25842                 c();
25843             }
25844         };
25845     },
25846
25847     // overridden Element method
25848     setX : function(x, a, d, c, e){
25849         this.setXY([x, this.getY()], a, d, c, e);
25850     },
25851
25852     // overridden Element method
25853     setY : function(y, a, d, c, e){
25854         this.setXY([this.getX(), y], a, d, c, e);
25855     },
25856
25857     // overridden Element method
25858     setSize : function(w, h, a, d, c, e){
25859         this.beforeAction();
25860         var cb = this.createCB(c);
25861         supr.setSize.call(this, w, h, a, d, cb, e);
25862         if(!a){
25863             cb();
25864         }
25865     },
25866
25867     // overridden Element method
25868     setWidth : function(w, a, d, c, e){
25869         this.beforeAction();
25870         var cb = this.createCB(c);
25871         supr.setWidth.call(this, w, a, d, cb, e);
25872         if(!a){
25873             cb();
25874         }
25875     },
25876
25877     // overridden Element method
25878     setHeight : function(h, a, d, c, e){
25879         this.beforeAction();
25880         var cb = this.createCB(c);
25881         supr.setHeight.call(this, h, a, d, cb, e);
25882         if(!a){
25883             cb();
25884         }
25885     },
25886
25887     // overridden Element method
25888     setBounds : function(x, y, w, h, a, d, c, e){
25889         this.beforeAction();
25890         var cb = this.createCB(c);
25891         if(!a){
25892             this.storeXY([x, y]);
25893             supr.setXY.call(this, [x, y]);
25894             supr.setSize.call(this, w, h, a, d, cb, e);
25895             cb();
25896         }else{
25897             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
25898         }
25899         return this;
25900     },
25901     
25902     /**
25903      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
25904      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
25905      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
25906      * @param {Number} zindex The new z-index to set
25907      * @return {this} The Layer
25908      */
25909     setZIndex : function(zindex){
25910         this.zindex = zindex;
25911         this.setStyle("z-index", zindex + 2);
25912         if(this.shadow){
25913             this.shadow.setZIndex(zindex + 1);
25914         }
25915         if(this.shim){
25916             this.shim.setStyle("z-index", zindex);
25917         }
25918     }
25919 });
25920 })();/*
25921  * Based on:
25922  * Ext JS Library 1.1.1
25923  * Copyright(c) 2006-2007, Ext JS, LLC.
25924  *
25925  * Originally Released Under LGPL - original licence link has changed is not relivant.
25926  *
25927  * Fork - LGPL
25928  * <script type="text/javascript">
25929  */
25930
25931
25932 /**
25933  * @class Roo.Shadow
25934  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
25935  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
25936  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
25937  * @constructor
25938  * Create a new Shadow
25939  * @param {Object} config The config object
25940  */
25941 Roo.Shadow = function(config){
25942     Roo.apply(this, config);
25943     if(typeof this.mode != "string"){
25944         this.mode = this.defaultMode;
25945     }
25946     var o = this.offset, a = {h: 0};
25947     var rad = Math.floor(this.offset/2);
25948     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
25949         case "drop":
25950             a.w = 0;
25951             a.l = a.t = o;
25952             a.t -= 1;
25953             if(Roo.isIE){
25954                 a.l -= this.offset + rad;
25955                 a.t -= this.offset + rad;
25956                 a.w -= rad;
25957                 a.h -= rad;
25958                 a.t += 1;
25959             }
25960         break;
25961         case "sides":
25962             a.w = (o*2);
25963             a.l = -o;
25964             a.t = o-1;
25965             if(Roo.isIE){
25966                 a.l -= (this.offset - rad);
25967                 a.t -= this.offset + rad;
25968                 a.l += 1;
25969                 a.w -= (this.offset - rad)*2;
25970                 a.w -= rad + 1;
25971                 a.h -= 1;
25972             }
25973         break;
25974         case "frame":
25975             a.w = a.h = (o*2);
25976             a.l = a.t = -o;
25977             a.t += 1;
25978             a.h -= 2;
25979             if(Roo.isIE){
25980                 a.l -= (this.offset - rad);
25981                 a.t -= (this.offset - rad);
25982                 a.l += 1;
25983                 a.w -= (this.offset + rad + 1);
25984                 a.h -= (this.offset + rad);
25985                 a.h += 1;
25986             }
25987         break;
25988     };
25989
25990     this.adjusts = a;
25991 };
25992
25993 Roo.Shadow.prototype = {
25994     /**
25995      * @cfg {String} mode
25996      * The shadow display mode.  Supports the following options:<br />
25997      * sides: Shadow displays on both sides and bottom only<br />
25998      * frame: Shadow displays equally on all four sides<br />
25999      * drop: Traditional bottom-right drop shadow (default)
26000      */
26001     /**
26002      * @cfg {String} offset
26003      * The number of pixels to offset the shadow from the element (defaults to 4)
26004      */
26005     offset: 4,
26006
26007     // private
26008     defaultMode: "drop",
26009
26010     /**
26011      * Displays the shadow under the target element
26012      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26013      */
26014     show : function(target){
26015         target = Roo.get(target);
26016         if(!this.el){
26017             this.el = Roo.Shadow.Pool.pull();
26018             if(this.el.dom.nextSibling != target.dom){
26019                 this.el.insertBefore(target);
26020             }
26021         }
26022         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26023         if(Roo.isIE){
26024             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26025         }
26026         this.realign(
26027             target.getLeft(true),
26028             target.getTop(true),
26029             target.getWidth(),
26030             target.getHeight()
26031         );
26032         this.el.dom.style.display = "block";
26033     },
26034
26035     /**
26036      * Returns true if the shadow is visible, else false
26037      */
26038     isVisible : function(){
26039         return this.el ? true : false;  
26040     },
26041
26042     /**
26043      * Direct alignment when values are already available. Show must be called at least once before
26044      * calling this method to ensure it is initialized.
26045      * @param {Number} left The target element left position
26046      * @param {Number} top The target element top position
26047      * @param {Number} width The target element width
26048      * @param {Number} height The target element height
26049      */
26050     realign : function(l, t, w, h){
26051         if(!this.el){
26052             return;
26053         }
26054         var a = this.adjusts, d = this.el.dom, s = d.style;
26055         var iea = 0;
26056         s.left = (l+a.l)+"px";
26057         s.top = (t+a.t)+"px";
26058         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26059  
26060         if(s.width != sws || s.height != shs){
26061             s.width = sws;
26062             s.height = shs;
26063             if(!Roo.isIE){
26064                 var cn = d.childNodes;
26065                 var sww = Math.max(0, (sw-12))+"px";
26066                 cn[0].childNodes[1].style.width = sww;
26067                 cn[1].childNodes[1].style.width = sww;
26068                 cn[2].childNodes[1].style.width = sww;
26069                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26070             }
26071         }
26072     },
26073
26074     /**
26075      * Hides this shadow
26076      */
26077     hide : function(){
26078         if(this.el){
26079             this.el.dom.style.display = "none";
26080             Roo.Shadow.Pool.push(this.el);
26081             delete this.el;
26082         }
26083     },
26084
26085     /**
26086      * Adjust the z-index of this shadow
26087      * @param {Number} zindex The new z-index
26088      */
26089     setZIndex : function(z){
26090         this.zIndex = z;
26091         if(this.el){
26092             this.el.setStyle("z-index", z);
26093         }
26094     }
26095 };
26096
26097 // Private utility class that manages the internal Shadow cache
26098 Roo.Shadow.Pool = function(){
26099     var p = [];
26100     var markup = Roo.isIE ?
26101                  '<div class="x-ie-shadow"></div>' :
26102                  '<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>';
26103     return {
26104         pull : function(){
26105             var sh = p.shift();
26106             if(!sh){
26107                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26108                 sh.autoBoxAdjust = false;
26109             }
26110             return sh;
26111         },
26112
26113         push : function(sh){
26114             p.push(sh);
26115         }
26116     };
26117 }();/*
26118  * Based on:
26119  * Ext JS Library 1.1.1
26120  * Copyright(c) 2006-2007, Ext JS, LLC.
26121  *
26122  * Originally Released Under LGPL - original licence link has changed is not relivant.
26123  *
26124  * Fork - LGPL
26125  * <script type="text/javascript">
26126  */
26127
26128
26129 /**
26130  * @class Roo.SplitBar
26131  * @extends Roo.util.Observable
26132  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26133  * <br><br>
26134  * Usage:
26135  * <pre><code>
26136 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26137                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26138 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26139 split.minSize = 100;
26140 split.maxSize = 600;
26141 split.animate = true;
26142 split.on('moved', splitterMoved);
26143 </code></pre>
26144  * @constructor
26145  * Create a new SplitBar
26146  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26147  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26148  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26149  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26150                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26151                         position of the SplitBar).
26152  */
26153 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26154     
26155     /** @private */
26156     this.el = Roo.get(dragElement, true);
26157     this.el.dom.unselectable = "on";
26158     /** @private */
26159     this.resizingEl = Roo.get(resizingElement, true);
26160
26161     /**
26162      * @private
26163      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26164      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26165      * @type Number
26166      */
26167     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26168     
26169     /**
26170      * The minimum size of the resizing element. (Defaults to 0)
26171      * @type Number
26172      */
26173     this.minSize = 0;
26174     
26175     /**
26176      * The maximum size of the resizing element. (Defaults to 2000)
26177      * @type Number
26178      */
26179     this.maxSize = 2000;
26180     
26181     /**
26182      * Whether to animate the transition to the new size
26183      * @type Boolean
26184      */
26185     this.animate = false;
26186     
26187     /**
26188      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26189      * @type Boolean
26190      */
26191     this.useShim = false;
26192     
26193     /** @private */
26194     this.shim = null;
26195     
26196     if(!existingProxy){
26197         /** @private */
26198         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26199     }else{
26200         this.proxy = Roo.get(existingProxy).dom;
26201     }
26202     /** @private */
26203     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26204     
26205     /** @private */
26206     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26207     
26208     /** @private */
26209     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26210     
26211     /** @private */
26212     this.dragSpecs = {};
26213     
26214     /**
26215      * @private The adapter to use to positon and resize elements
26216      */
26217     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26218     this.adapter.init(this);
26219     
26220     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26221         /** @private */
26222         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26223         this.el.addClass("x-splitbar-h");
26224     }else{
26225         /** @private */
26226         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26227         this.el.addClass("x-splitbar-v");
26228     }
26229     
26230     this.addEvents({
26231         /**
26232          * @event resize
26233          * Fires when the splitter is moved (alias for {@link #event-moved})
26234          * @param {Roo.SplitBar} this
26235          * @param {Number} newSize the new width or height
26236          */
26237         "resize" : true,
26238         /**
26239          * @event moved
26240          * Fires when the splitter is moved
26241          * @param {Roo.SplitBar} this
26242          * @param {Number} newSize the new width or height
26243          */
26244         "moved" : true,
26245         /**
26246          * @event beforeresize
26247          * Fires before the splitter is dragged
26248          * @param {Roo.SplitBar} this
26249          */
26250         "beforeresize" : true,
26251
26252         "beforeapply" : true
26253     });
26254
26255     Roo.util.Observable.call(this);
26256 };
26257
26258 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26259     onStartProxyDrag : function(x, y){
26260         this.fireEvent("beforeresize", this);
26261         if(!this.overlay){
26262             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26263             o.unselectable();
26264             o.enableDisplayMode("block");
26265             // all splitbars share the same overlay
26266             Roo.SplitBar.prototype.overlay = o;
26267         }
26268         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26269         this.overlay.show();
26270         Roo.get(this.proxy).setDisplayed("block");
26271         var size = this.adapter.getElementSize(this);
26272         this.activeMinSize = this.getMinimumSize();;
26273         this.activeMaxSize = this.getMaximumSize();;
26274         var c1 = size - this.activeMinSize;
26275         var c2 = Math.max(this.activeMaxSize - size, 0);
26276         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26277             this.dd.resetConstraints();
26278             this.dd.setXConstraint(
26279                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26280                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26281             );
26282             this.dd.setYConstraint(0, 0);
26283         }else{
26284             this.dd.resetConstraints();
26285             this.dd.setXConstraint(0, 0);
26286             this.dd.setYConstraint(
26287                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26288                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26289             );
26290          }
26291         this.dragSpecs.startSize = size;
26292         this.dragSpecs.startPoint = [x, y];
26293         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26294     },
26295     
26296     /** 
26297      * @private Called after the drag operation by the DDProxy
26298      */
26299     onEndProxyDrag : function(e){
26300         Roo.get(this.proxy).setDisplayed(false);
26301         var endPoint = Roo.lib.Event.getXY(e);
26302         if(this.overlay){
26303             this.overlay.hide();
26304         }
26305         var newSize;
26306         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26307             newSize = this.dragSpecs.startSize + 
26308                 (this.placement == Roo.SplitBar.LEFT ?
26309                     endPoint[0] - this.dragSpecs.startPoint[0] :
26310                     this.dragSpecs.startPoint[0] - endPoint[0]
26311                 );
26312         }else{
26313             newSize = this.dragSpecs.startSize + 
26314                 (this.placement == Roo.SplitBar.TOP ?
26315                     endPoint[1] - this.dragSpecs.startPoint[1] :
26316                     this.dragSpecs.startPoint[1] - endPoint[1]
26317                 );
26318         }
26319         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26320         if(newSize != this.dragSpecs.startSize){
26321             if(this.fireEvent('beforeapply', this, newSize) !== false){
26322                 this.adapter.setElementSize(this, newSize);
26323                 this.fireEvent("moved", this, newSize);
26324                 this.fireEvent("resize", this, newSize);
26325             }
26326         }
26327     },
26328     
26329     /**
26330      * Get the adapter this SplitBar uses
26331      * @return The adapter object
26332      */
26333     getAdapter : function(){
26334         return this.adapter;
26335     },
26336     
26337     /**
26338      * Set the adapter this SplitBar uses
26339      * @param {Object} adapter A SplitBar adapter object
26340      */
26341     setAdapter : function(adapter){
26342         this.adapter = adapter;
26343         this.adapter.init(this);
26344     },
26345     
26346     /**
26347      * Gets the minimum size for the resizing element
26348      * @return {Number} The minimum size
26349      */
26350     getMinimumSize : function(){
26351         return this.minSize;
26352     },
26353     
26354     /**
26355      * Sets the minimum size for the resizing element
26356      * @param {Number} minSize The minimum size
26357      */
26358     setMinimumSize : function(minSize){
26359         this.minSize = minSize;
26360     },
26361     
26362     /**
26363      * Gets the maximum size for the resizing element
26364      * @return {Number} The maximum size
26365      */
26366     getMaximumSize : function(){
26367         return this.maxSize;
26368     },
26369     
26370     /**
26371      * Sets the maximum size for the resizing element
26372      * @param {Number} maxSize The maximum size
26373      */
26374     setMaximumSize : function(maxSize){
26375         this.maxSize = maxSize;
26376     },
26377     
26378     /**
26379      * Sets the initialize size for the resizing element
26380      * @param {Number} size The initial size
26381      */
26382     setCurrentSize : function(size){
26383         var oldAnimate = this.animate;
26384         this.animate = false;
26385         this.adapter.setElementSize(this, size);
26386         this.animate = oldAnimate;
26387     },
26388     
26389     /**
26390      * Destroy this splitbar. 
26391      * @param {Boolean} removeEl True to remove the element
26392      */
26393     destroy : function(removeEl){
26394         if(this.shim){
26395             this.shim.remove();
26396         }
26397         this.dd.unreg();
26398         this.proxy.parentNode.removeChild(this.proxy);
26399         if(removeEl){
26400             this.el.remove();
26401         }
26402     }
26403 });
26404
26405 /**
26406  * @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.
26407  */
26408 Roo.SplitBar.createProxy = function(dir){
26409     var proxy = new Roo.Element(document.createElement("div"));
26410     proxy.unselectable();
26411     var cls = 'x-splitbar-proxy';
26412     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26413     document.body.appendChild(proxy.dom);
26414     return proxy.dom;
26415 };
26416
26417 /** 
26418  * @class Roo.SplitBar.BasicLayoutAdapter
26419  * Default Adapter. It assumes the splitter and resizing element are not positioned
26420  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26421  */
26422 Roo.SplitBar.BasicLayoutAdapter = function(){
26423 };
26424
26425 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26426     // do nothing for now
26427     init : function(s){
26428     
26429     },
26430     /**
26431      * Called before drag operations to get the current size of the resizing element. 
26432      * @param {Roo.SplitBar} s The SplitBar using this adapter
26433      */
26434      getElementSize : function(s){
26435         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26436             return s.resizingEl.getWidth();
26437         }else{
26438             return s.resizingEl.getHeight();
26439         }
26440     },
26441     
26442     /**
26443      * Called after drag operations to set the size of the resizing element.
26444      * @param {Roo.SplitBar} s The SplitBar using this adapter
26445      * @param {Number} newSize The new size to set
26446      * @param {Function} onComplete A function to be invoked when resizing is complete
26447      */
26448     setElementSize : function(s, newSize, onComplete){
26449         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26450             if(!s.animate){
26451                 s.resizingEl.setWidth(newSize);
26452                 if(onComplete){
26453                     onComplete(s, newSize);
26454                 }
26455             }else{
26456                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26457             }
26458         }else{
26459             
26460             if(!s.animate){
26461                 s.resizingEl.setHeight(newSize);
26462                 if(onComplete){
26463                     onComplete(s, newSize);
26464                 }
26465             }else{
26466                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26467             }
26468         }
26469     }
26470 };
26471
26472 /** 
26473  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26474  * @extends Roo.SplitBar.BasicLayoutAdapter
26475  * Adapter that  moves the splitter element to align with the resized sizing element. 
26476  * Used with an absolute positioned SplitBar.
26477  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26478  * document.body, make sure you assign an id to the body element.
26479  */
26480 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26481     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26482     this.container = Roo.get(container);
26483 };
26484
26485 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26486     init : function(s){
26487         this.basic.init(s);
26488     },
26489     
26490     getElementSize : function(s){
26491         return this.basic.getElementSize(s);
26492     },
26493     
26494     setElementSize : function(s, newSize, onComplete){
26495         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26496     },
26497     
26498     moveSplitter : function(s){
26499         var yes = Roo.SplitBar;
26500         switch(s.placement){
26501             case yes.LEFT:
26502                 s.el.setX(s.resizingEl.getRight());
26503                 break;
26504             case yes.RIGHT:
26505                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26506                 break;
26507             case yes.TOP:
26508                 s.el.setY(s.resizingEl.getBottom());
26509                 break;
26510             case yes.BOTTOM:
26511                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26512                 break;
26513         }
26514     }
26515 };
26516
26517 /**
26518  * Orientation constant - Create a vertical SplitBar
26519  * @static
26520  * @type Number
26521  */
26522 Roo.SplitBar.VERTICAL = 1;
26523
26524 /**
26525  * Orientation constant - Create a horizontal SplitBar
26526  * @static
26527  * @type Number
26528  */
26529 Roo.SplitBar.HORIZONTAL = 2;
26530
26531 /**
26532  * Placement constant - The resizing element is to the left of the splitter element
26533  * @static
26534  * @type Number
26535  */
26536 Roo.SplitBar.LEFT = 1;
26537
26538 /**
26539  * Placement constant - The resizing element is to the right of the splitter element
26540  * @static
26541  * @type Number
26542  */
26543 Roo.SplitBar.RIGHT = 2;
26544
26545 /**
26546  * Placement constant - The resizing element is positioned above the splitter element
26547  * @static
26548  * @type Number
26549  */
26550 Roo.SplitBar.TOP = 3;
26551
26552 /**
26553  * Placement constant - The resizing element is positioned under splitter element
26554  * @static
26555  * @type Number
26556  */
26557 Roo.SplitBar.BOTTOM = 4;
26558 /*
26559  * Based on:
26560  * Ext JS Library 1.1.1
26561  * Copyright(c) 2006-2007, Ext JS, LLC.
26562  *
26563  * Originally Released Under LGPL - original licence link has changed is not relivant.
26564  *
26565  * Fork - LGPL
26566  * <script type="text/javascript">
26567  */
26568
26569 /**
26570  * @class Roo.View
26571  * @extends Roo.util.Observable
26572  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26573  * This class also supports single and multi selection modes. <br>
26574  * Create a data model bound view:
26575  <pre><code>
26576  var store = new Roo.data.Store(...);
26577
26578  var view = new Roo.View({
26579     el : "my-element",
26580     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26581  
26582     singleSelect: true,
26583     selectedClass: "ydataview-selected",
26584     store: store
26585  });
26586
26587  // listen for node click?
26588  view.on("click", function(vw, index, node, e){
26589  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26590  });
26591
26592  // load XML data
26593  dataModel.load("foobar.xml");
26594  </code></pre>
26595  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26596  * <br><br>
26597  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26598  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26599  * 
26600  * Note: old style constructor is still suported (container, template, config)
26601  * 
26602  * @constructor
26603  * Create a new View
26604  * @param {Object} config The config object
26605  * 
26606  */
26607 Roo.View = function(config, depreciated_tpl, depreciated_config){
26608     
26609     this.parent = false;
26610     
26611     if (typeof(depreciated_tpl) == 'undefined') {
26612         // new way.. - universal constructor.
26613         Roo.apply(this, config);
26614         this.el  = Roo.get(this.el);
26615     } else {
26616         // old format..
26617         this.el  = Roo.get(config);
26618         this.tpl = depreciated_tpl;
26619         Roo.apply(this, depreciated_config);
26620     }
26621     this.wrapEl  = this.el.wrap().wrap();
26622     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26623     
26624     
26625     if(typeof(this.tpl) == "string"){
26626         this.tpl = new Roo.Template(this.tpl);
26627     } else {
26628         // support xtype ctors..
26629         this.tpl = new Roo.factory(this.tpl, Roo);
26630     }
26631     
26632     
26633     this.tpl.compile();
26634     
26635     /** @private */
26636     this.addEvents({
26637         /**
26638          * @event beforeclick
26639          * Fires before a click is processed. Returns false to cancel the default action.
26640          * @param {Roo.View} this
26641          * @param {Number} index The index of the target node
26642          * @param {HTMLElement} node The target node
26643          * @param {Roo.EventObject} e The raw event object
26644          */
26645             "beforeclick" : true,
26646         /**
26647          * @event click
26648          * Fires when a template node is clicked.
26649          * @param {Roo.View} this
26650          * @param {Number} index The index of the target node
26651          * @param {HTMLElement} node The target node
26652          * @param {Roo.EventObject} e The raw event object
26653          */
26654             "click" : true,
26655         /**
26656          * @event dblclick
26657          * Fires when a template node is double clicked.
26658          * @param {Roo.View} this
26659          * @param {Number} index The index of the target node
26660          * @param {HTMLElement} node The target node
26661          * @param {Roo.EventObject} e The raw event object
26662          */
26663             "dblclick" : true,
26664         /**
26665          * @event contextmenu
26666          * Fires when a template node is right clicked.
26667          * @param {Roo.View} this
26668          * @param {Number} index The index of the target node
26669          * @param {HTMLElement} node The target node
26670          * @param {Roo.EventObject} e The raw event object
26671          */
26672             "contextmenu" : true,
26673         /**
26674          * @event selectionchange
26675          * Fires when the selected nodes change.
26676          * @param {Roo.View} this
26677          * @param {Array} selections Array of the selected nodes
26678          */
26679             "selectionchange" : true,
26680     
26681         /**
26682          * @event beforeselect
26683          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26684          * @param {Roo.View} this
26685          * @param {HTMLElement} node The node to be selected
26686          * @param {Array} selections Array of currently selected nodes
26687          */
26688             "beforeselect" : true,
26689         /**
26690          * @event preparedata
26691          * Fires on every row to render, to allow you to change the data.
26692          * @param {Roo.View} this
26693          * @param {Object} data to be rendered (change this)
26694          */
26695           "preparedata" : true
26696           
26697           
26698         });
26699
26700
26701
26702     this.el.on({
26703         "click": this.onClick,
26704         "dblclick": this.onDblClick,
26705         "contextmenu": this.onContextMenu,
26706         scope:this
26707     });
26708
26709     this.selections = [];
26710     this.nodes = [];
26711     this.cmp = new Roo.CompositeElementLite([]);
26712     if(this.store){
26713         this.store = Roo.factory(this.store, Roo.data);
26714         this.setStore(this.store, true);
26715     }
26716     
26717     if ( this.footer && this.footer.xtype) {
26718            
26719          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26720         
26721         this.footer.dataSource = this.store;
26722         this.footer.container = fctr;
26723         this.footer = Roo.factory(this.footer, Roo);
26724         fctr.insertFirst(this.el);
26725         
26726         // this is a bit insane - as the paging toolbar seems to detach the el..
26727 //        dom.parentNode.parentNode.parentNode
26728          // they get detached?
26729     }
26730     
26731     
26732     Roo.View.superclass.constructor.call(this);
26733     
26734     
26735 };
26736
26737 Roo.extend(Roo.View, Roo.util.Observable, {
26738     
26739      /**
26740      * @cfg {Roo.data.Store} store Data store to load data from.
26741      */
26742     store : false,
26743     
26744     /**
26745      * @cfg {String|Roo.Element} el The container element.
26746      */
26747     el : '',
26748     
26749     /**
26750      * @cfg {String|Roo.Template} tpl The template used by this View 
26751      */
26752     tpl : false,
26753     /**
26754      * @cfg {String} dataName the named area of the template to use as the data area
26755      *                          Works with domtemplates roo-name="name"
26756      */
26757     dataName: false,
26758     /**
26759      * @cfg {String} selectedClass The css class to add to selected nodes
26760      */
26761     selectedClass : "x-view-selected",
26762      /**
26763      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26764      */
26765     emptyText : "",
26766     
26767     /**
26768      * @cfg {String} text to display on mask (default Loading)
26769      */
26770     mask : false,
26771     /**
26772      * @cfg {Boolean} multiSelect Allow multiple selection
26773      */
26774     multiSelect : false,
26775     /**
26776      * @cfg {Boolean} singleSelect Allow single selection
26777      */
26778     singleSelect:  false,
26779     
26780     /**
26781      * @cfg {Boolean} toggleSelect - selecting 
26782      */
26783     toggleSelect : false,
26784     
26785     /**
26786      * @cfg {Boolean} tickable - selecting 
26787      */
26788     tickable : false,
26789     
26790     /**
26791      * Returns the element this view is bound to.
26792      * @return {Roo.Element}
26793      */
26794     getEl : function(){
26795         return this.wrapEl;
26796     },
26797     
26798     
26799
26800     /**
26801      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26802      */
26803     refresh : function(){
26804         //Roo.log('refresh');
26805         var t = this.tpl;
26806         
26807         // if we are using something like 'domtemplate', then
26808         // the what gets used is:
26809         // t.applySubtemplate(NAME, data, wrapping data..)
26810         // the outer template then get' applied with
26811         //     the store 'extra data'
26812         // and the body get's added to the
26813         //      roo-name="data" node?
26814         //      <span class='roo-tpl-{name}'></span> ?????
26815         
26816         
26817         
26818         this.clearSelections();
26819         this.el.update("");
26820         var html = [];
26821         var records = this.store.getRange();
26822         if(records.length < 1) {
26823             
26824             // is this valid??  = should it render a template??
26825             
26826             this.el.update(this.emptyText);
26827             return;
26828         }
26829         var el = this.el;
26830         if (this.dataName) {
26831             this.el.update(t.apply(this.store.meta)); //????
26832             el = this.el.child('.roo-tpl-' + this.dataName);
26833         }
26834         
26835         for(var i = 0, len = records.length; i < len; i++){
26836             var data = this.prepareData(records[i].data, i, records[i]);
26837             this.fireEvent("preparedata", this, data, i, records[i]);
26838             
26839             var d = Roo.apply({}, data);
26840             
26841             if(this.tickable){
26842                 Roo.apply(d, {'roo-id' : Roo.id()});
26843                 
26844                 var _this = this;
26845             
26846                 Roo.each(this.parent.item, function(item){
26847                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26848                         return;
26849                     }
26850                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26851                 });
26852             }
26853             
26854             html[html.length] = Roo.util.Format.trim(
26855                 this.dataName ?
26856                     t.applySubtemplate(this.dataName, d, this.store.meta) :
26857                     t.apply(d)
26858             );
26859         }
26860         
26861         
26862         
26863         el.update(html.join(""));
26864         this.nodes = el.dom.childNodes;
26865         this.updateIndexes(0);
26866     },
26867     
26868
26869     /**
26870      * Function to override to reformat the data that is sent to
26871      * the template for each node.
26872      * DEPRICATED - use the preparedata event handler.
26873      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
26874      * a JSON object for an UpdateManager bound view).
26875      */
26876     prepareData : function(data, index, record)
26877     {
26878         this.fireEvent("preparedata", this, data, index, record);
26879         return data;
26880     },
26881
26882     onUpdate : function(ds, record){
26883         // Roo.log('on update');   
26884         this.clearSelections();
26885         var index = this.store.indexOf(record);
26886         var n = this.nodes[index];
26887         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
26888         n.parentNode.removeChild(n);
26889         this.updateIndexes(index, index);
26890     },
26891
26892     
26893     
26894 // --------- FIXME     
26895     onAdd : function(ds, records, index)
26896     {
26897         //Roo.log(['on Add', ds, records, index] );        
26898         this.clearSelections();
26899         if(this.nodes.length == 0){
26900             this.refresh();
26901             return;
26902         }
26903         var n = this.nodes[index];
26904         for(var i = 0, len = records.length; i < len; i++){
26905             var d = this.prepareData(records[i].data, i, records[i]);
26906             if(n){
26907                 this.tpl.insertBefore(n, d);
26908             }else{
26909                 
26910                 this.tpl.append(this.el, d);
26911             }
26912         }
26913         this.updateIndexes(index);
26914     },
26915
26916     onRemove : function(ds, record, index){
26917        // Roo.log('onRemove');
26918         this.clearSelections();
26919         var el = this.dataName  ?
26920             this.el.child('.roo-tpl-' + this.dataName) :
26921             this.el; 
26922         
26923         el.dom.removeChild(this.nodes[index]);
26924         this.updateIndexes(index);
26925     },
26926
26927     /**
26928      * Refresh an individual node.
26929      * @param {Number} index
26930      */
26931     refreshNode : function(index){
26932         this.onUpdate(this.store, this.store.getAt(index));
26933     },
26934
26935     updateIndexes : function(startIndex, endIndex){
26936         var ns = this.nodes;
26937         startIndex = startIndex || 0;
26938         endIndex = endIndex || ns.length - 1;
26939         for(var i = startIndex; i <= endIndex; i++){
26940             ns[i].nodeIndex = i;
26941         }
26942     },
26943
26944     /**
26945      * Changes the data store this view uses and refresh the view.
26946      * @param {Store} store
26947      */
26948     setStore : function(store, initial){
26949         if(!initial && this.store){
26950             this.store.un("datachanged", this.refresh);
26951             this.store.un("add", this.onAdd);
26952             this.store.un("remove", this.onRemove);
26953             this.store.un("update", this.onUpdate);
26954             this.store.un("clear", this.refresh);
26955             this.store.un("beforeload", this.onBeforeLoad);
26956             this.store.un("load", this.onLoad);
26957             this.store.un("loadexception", this.onLoad);
26958         }
26959         if(store){
26960           
26961             store.on("datachanged", this.refresh, this);
26962             store.on("add", this.onAdd, this);
26963             store.on("remove", this.onRemove, this);
26964             store.on("update", this.onUpdate, this);
26965             store.on("clear", this.refresh, this);
26966             store.on("beforeload", this.onBeforeLoad, this);
26967             store.on("load", this.onLoad, this);
26968             store.on("loadexception", this.onLoad, this);
26969         }
26970         
26971         if(store){
26972             this.refresh();
26973         }
26974     },
26975     /**
26976      * onbeforeLoad - masks the loading area.
26977      *
26978      */
26979     onBeforeLoad : function(store,opts)
26980     {
26981          //Roo.log('onBeforeLoad');   
26982         if (!opts.add) {
26983             this.el.update("");
26984         }
26985         this.el.mask(this.mask ? this.mask : "Loading" ); 
26986     },
26987     onLoad : function ()
26988     {
26989         this.el.unmask();
26990     },
26991     
26992
26993     /**
26994      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
26995      * @param {HTMLElement} node
26996      * @return {HTMLElement} The template node
26997      */
26998     findItemFromChild : function(node){
26999         var el = this.dataName  ?
27000             this.el.child('.roo-tpl-' + this.dataName,true) :
27001             this.el.dom; 
27002         
27003         if(!node || node.parentNode == el){
27004                     return node;
27005             }
27006             var p = node.parentNode;
27007             while(p && p != el){
27008             if(p.parentNode == el){
27009                 return p;
27010             }
27011             p = p.parentNode;
27012         }
27013             return null;
27014     },
27015
27016     /** @ignore */
27017     onClick : function(e){
27018         var item = this.findItemFromChild(e.getTarget());
27019         if(item){
27020             var index = this.indexOf(item);
27021             if(this.onItemClick(item, index, e) !== false){
27022                 this.fireEvent("click", this, index, item, e);
27023             }
27024         }else{
27025             this.clearSelections();
27026         }
27027     },
27028
27029     /** @ignore */
27030     onContextMenu : function(e){
27031         var item = this.findItemFromChild(e.getTarget());
27032         if(item){
27033             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27034         }
27035     },
27036
27037     /** @ignore */
27038     onDblClick : function(e){
27039         var item = this.findItemFromChild(e.getTarget());
27040         if(item){
27041             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27042         }
27043     },
27044
27045     onItemClick : function(item, index, e)
27046     {
27047         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27048             return false;
27049         }
27050         if (this.toggleSelect) {
27051             var m = this.isSelected(item) ? 'unselect' : 'select';
27052             //Roo.log(m);
27053             var _t = this;
27054             _t[m](item, true, false);
27055             return true;
27056         }
27057         if(this.multiSelect || this.singleSelect){
27058             if(this.multiSelect && e.shiftKey && this.lastSelection){
27059                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27060             }else{
27061                 this.select(item, this.multiSelect && e.ctrlKey);
27062                 this.lastSelection = item;
27063             }
27064             
27065             if(!this.tickable){
27066                 e.preventDefault();
27067             }
27068             
27069         }
27070         return true;
27071     },
27072
27073     /**
27074      * Get the number of selected nodes.
27075      * @return {Number}
27076      */
27077     getSelectionCount : function(){
27078         return this.selections.length;
27079     },
27080
27081     /**
27082      * Get the currently selected nodes.
27083      * @return {Array} An array of HTMLElements
27084      */
27085     getSelectedNodes : function(){
27086         return this.selections;
27087     },
27088
27089     /**
27090      * Get the indexes of the selected nodes.
27091      * @return {Array}
27092      */
27093     getSelectedIndexes : function(){
27094         var indexes = [], s = this.selections;
27095         for(var i = 0, len = s.length; i < len; i++){
27096             indexes.push(s[i].nodeIndex);
27097         }
27098         return indexes;
27099     },
27100
27101     /**
27102      * Clear all selections
27103      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27104      */
27105     clearSelections : function(suppressEvent){
27106         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27107             this.cmp.elements = this.selections;
27108             this.cmp.removeClass(this.selectedClass);
27109             this.selections = [];
27110             if(!suppressEvent){
27111                 this.fireEvent("selectionchange", this, this.selections);
27112             }
27113         }
27114     },
27115
27116     /**
27117      * Returns true if the passed node is selected
27118      * @param {HTMLElement/Number} node The node or node index
27119      * @return {Boolean}
27120      */
27121     isSelected : function(node){
27122         var s = this.selections;
27123         if(s.length < 1){
27124             return false;
27125         }
27126         node = this.getNode(node);
27127         return s.indexOf(node) !== -1;
27128     },
27129
27130     /**
27131      * Selects nodes.
27132      * @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
27133      * @param {Boolean} keepExisting (optional) true to keep existing selections
27134      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27135      */
27136     select : function(nodeInfo, keepExisting, suppressEvent){
27137         if(nodeInfo instanceof Array){
27138             if(!keepExisting){
27139                 this.clearSelections(true);
27140             }
27141             for(var i = 0, len = nodeInfo.length; i < len; i++){
27142                 this.select(nodeInfo[i], true, true);
27143             }
27144             return;
27145         } 
27146         var node = this.getNode(nodeInfo);
27147         if(!node || this.isSelected(node)){
27148             return; // already selected.
27149         }
27150         if(!keepExisting){
27151             this.clearSelections(true);
27152         }
27153         
27154         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27155             Roo.fly(node).addClass(this.selectedClass);
27156             this.selections.push(node);
27157             if(!suppressEvent){
27158                 this.fireEvent("selectionchange", this, this.selections);
27159             }
27160         }
27161         
27162         
27163     },
27164       /**
27165      * Unselects nodes.
27166      * @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
27167      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27168      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27169      */
27170     unselect : function(nodeInfo, keepExisting, suppressEvent)
27171     {
27172         if(nodeInfo instanceof Array){
27173             Roo.each(this.selections, function(s) {
27174                 this.unselect(s, nodeInfo);
27175             }, this);
27176             return;
27177         }
27178         var node = this.getNode(nodeInfo);
27179         if(!node || !this.isSelected(node)){
27180             //Roo.log("not selected");
27181             return; // not selected.
27182         }
27183         // fireevent???
27184         var ns = [];
27185         Roo.each(this.selections, function(s) {
27186             if (s == node ) {
27187                 Roo.fly(node).removeClass(this.selectedClass);
27188
27189                 return;
27190             }
27191             ns.push(s);
27192         },this);
27193         
27194         this.selections= ns;
27195         this.fireEvent("selectionchange", this, this.selections);
27196     },
27197
27198     /**
27199      * Gets a template node.
27200      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27201      * @return {HTMLElement} The node or null if it wasn't found
27202      */
27203     getNode : function(nodeInfo){
27204         if(typeof nodeInfo == "string"){
27205             return document.getElementById(nodeInfo);
27206         }else if(typeof nodeInfo == "number"){
27207             return this.nodes[nodeInfo];
27208         }
27209         return nodeInfo;
27210     },
27211
27212     /**
27213      * Gets a range template nodes.
27214      * @param {Number} startIndex
27215      * @param {Number} endIndex
27216      * @return {Array} An array of nodes
27217      */
27218     getNodes : function(start, end){
27219         var ns = this.nodes;
27220         start = start || 0;
27221         end = typeof end == "undefined" ? ns.length - 1 : end;
27222         var nodes = [];
27223         if(start <= end){
27224             for(var i = start; i <= end; i++){
27225                 nodes.push(ns[i]);
27226             }
27227         } else{
27228             for(var i = start; i >= end; i--){
27229                 nodes.push(ns[i]);
27230             }
27231         }
27232         return nodes;
27233     },
27234
27235     /**
27236      * Finds the index of the passed node
27237      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27238      * @return {Number} The index of the node or -1
27239      */
27240     indexOf : function(node){
27241         node = this.getNode(node);
27242         if(typeof node.nodeIndex == "number"){
27243             return node.nodeIndex;
27244         }
27245         var ns = this.nodes;
27246         for(var i = 0, len = ns.length; i < len; i++){
27247             if(ns[i] == node){
27248                 return i;
27249             }
27250         }
27251         return -1;
27252     }
27253 });
27254 /*
27255  * Based on:
27256  * Ext JS Library 1.1.1
27257  * Copyright(c) 2006-2007, Ext JS, LLC.
27258  *
27259  * Originally Released Under LGPL - original licence link has changed is not relivant.
27260  *
27261  * Fork - LGPL
27262  * <script type="text/javascript">
27263  */
27264
27265 /**
27266  * @class Roo.JsonView
27267  * @extends Roo.View
27268  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27269 <pre><code>
27270 var view = new Roo.JsonView({
27271     container: "my-element",
27272     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27273     multiSelect: true, 
27274     jsonRoot: "data" 
27275 });
27276
27277 // listen for node click?
27278 view.on("click", function(vw, index, node, e){
27279     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27280 });
27281
27282 // direct load of JSON data
27283 view.load("foobar.php");
27284
27285 // Example from my blog list
27286 var tpl = new Roo.Template(
27287     '&lt;div class="entry"&gt;' +
27288     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27289     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27290     "&lt;/div&gt;&lt;hr /&gt;"
27291 );
27292
27293 var moreView = new Roo.JsonView({
27294     container :  "entry-list", 
27295     template : tpl,
27296     jsonRoot: "posts"
27297 });
27298 moreView.on("beforerender", this.sortEntries, this);
27299 moreView.load({
27300     url: "/blog/get-posts.php",
27301     params: "allposts=true",
27302     text: "Loading Blog Entries..."
27303 });
27304 </code></pre>
27305
27306 * Note: old code is supported with arguments : (container, template, config)
27307
27308
27309  * @constructor
27310  * Create a new JsonView
27311  * 
27312  * @param {Object} config The config object
27313  * 
27314  */
27315 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27316     
27317     
27318     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27319
27320     var um = this.el.getUpdateManager();
27321     um.setRenderer(this);
27322     um.on("update", this.onLoad, this);
27323     um.on("failure", this.onLoadException, this);
27324
27325     /**
27326      * @event beforerender
27327      * Fires before rendering of the downloaded JSON data.
27328      * @param {Roo.JsonView} this
27329      * @param {Object} data The JSON data loaded
27330      */
27331     /**
27332      * @event load
27333      * Fires when data is loaded.
27334      * @param {Roo.JsonView} this
27335      * @param {Object} data The JSON data loaded
27336      * @param {Object} response The raw Connect response object
27337      */
27338     /**
27339      * @event loadexception
27340      * Fires when loading fails.
27341      * @param {Roo.JsonView} this
27342      * @param {Object} response The raw Connect response object
27343      */
27344     this.addEvents({
27345         'beforerender' : true,
27346         'load' : true,
27347         'loadexception' : true
27348     });
27349 };
27350 Roo.extend(Roo.JsonView, Roo.View, {
27351     /**
27352      * @type {String} The root property in the loaded JSON object that contains the data
27353      */
27354     jsonRoot : "",
27355
27356     /**
27357      * Refreshes the view.
27358      */
27359     refresh : function(){
27360         this.clearSelections();
27361         this.el.update("");
27362         var html = [];
27363         var o = this.jsonData;
27364         if(o && o.length > 0){
27365             for(var i = 0, len = o.length; i < len; i++){
27366                 var data = this.prepareData(o[i], i, o);
27367                 html[html.length] = this.tpl.apply(data);
27368             }
27369         }else{
27370             html.push(this.emptyText);
27371         }
27372         this.el.update(html.join(""));
27373         this.nodes = this.el.dom.childNodes;
27374         this.updateIndexes(0);
27375     },
27376
27377     /**
27378      * 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.
27379      * @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:
27380      <pre><code>
27381      view.load({
27382          url: "your-url.php",
27383          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27384          callback: yourFunction,
27385          scope: yourObject, //(optional scope)
27386          discardUrl: false,
27387          nocache: false,
27388          text: "Loading...",
27389          timeout: 30,
27390          scripts: false
27391      });
27392      </code></pre>
27393      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27394      * 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.
27395      * @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}
27396      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27397      * @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.
27398      */
27399     load : function(){
27400         var um = this.el.getUpdateManager();
27401         um.update.apply(um, arguments);
27402     },
27403
27404     // note - render is a standard framework call...
27405     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27406     render : function(el, response){
27407         
27408         this.clearSelections();
27409         this.el.update("");
27410         var o;
27411         try{
27412             if (response != '') {
27413                 o = Roo.util.JSON.decode(response.responseText);
27414                 if(this.jsonRoot){
27415                     
27416                     o = o[this.jsonRoot];
27417                 }
27418             }
27419         } catch(e){
27420         }
27421         /**
27422          * The current JSON data or null
27423          */
27424         this.jsonData = o;
27425         this.beforeRender();
27426         this.refresh();
27427     },
27428
27429 /**
27430  * Get the number of records in the current JSON dataset
27431  * @return {Number}
27432  */
27433     getCount : function(){
27434         return this.jsonData ? this.jsonData.length : 0;
27435     },
27436
27437 /**
27438  * Returns the JSON object for the specified node(s)
27439  * @param {HTMLElement/Array} node The node or an array of nodes
27440  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27441  * you get the JSON object for the node
27442  */
27443     getNodeData : function(node){
27444         if(node instanceof Array){
27445             var data = [];
27446             for(var i = 0, len = node.length; i < len; i++){
27447                 data.push(this.getNodeData(node[i]));
27448             }
27449             return data;
27450         }
27451         return this.jsonData[this.indexOf(node)] || null;
27452     },
27453
27454     beforeRender : function(){
27455         this.snapshot = this.jsonData;
27456         if(this.sortInfo){
27457             this.sort.apply(this, this.sortInfo);
27458         }
27459         this.fireEvent("beforerender", this, this.jsonData);
27460     },
27461
27462     onLoad : function(el, o){
27463         this.fireEvent("load", this, this.jsonData, o);
27464     },
27465
27466     onLoadException : function(el, o){
27467         this.fireEvent("loadexception", this, o);
27468     },
27469
27470 /**
27471  * Filter the data by a specific property.
27472  * @param {String} property A property on your JSON objects
27473  * @param {String/RegExp} value Either string that the property values
27474  * should start with, or a RegExp to test against the property
27475  */
27476     filter : function(property, value){
27477         if(this.jsonData){
27478             var data = [];
27479             var ss = this.snapshot;
27480             if(typeof value == "string"){
27481                 var vlen = value.length;
27482                 if(vlen == 0){
27483                     this.clearFilter();
27484                     return;
27485                 }
27486                 value = value.toLowerCase();
27487                 for(var i = 0, len = ss.length; i < len; i++){
27488                     var o = ss[i];
27489                     if(o[property].substr(0, vlen).toLowerCase() == value){
27490                         data.push(o);
27491                     }
27492                 }
27493             } else if(value.exec){ // regex?
27494                 for(var i = 0, len = ss.length; i < len; i++){
27495                     var o = ss[i];
27496                     if(value.test(o[property])){
27497                         data.push(o);
27498                     }
27499                 }
27500             } else{
27501                 return;
27502             }
27503             this.jsonData = data;
27504             this.refresh();
27505         }
27506     },
27507
27508 /**
27509  * Filter by a function. The passed function will be called with each
27510  * object in the current dataset. If the function returns true the value is kept,
27511  * otherwise it is filtered.
27512  * @param {Function} fn
27513  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27514  */
27515     filterBy : function(fn, scope){
27516         if(this.jsonData){
27517             var data = [];
27518             var ss = this.snapshot;
27519             for(var i = 0, len = ss.length; i < len; i++){
27520                 var o = ss[i];
27521                 if(fn.call(scope || this, o)){
27522                     data.push(o);
27523                 }
27524             }
27525             this.jsonData = data;
27526             this.refresh();
27527         }
27528     },
27529
27530 /**
27531  * Clears the current filter.
27532  */
27533     clearFilter : function(){
27534         if(this.snapshot && this.jsonData != this.snapshot){
27535             this.jsonData = this.snapshot;
27536             this.refresh();
27537         }
27538     },
27539
27540
27541 /**
27542  * Sorts the data for this view and refreshes it.
27543  * @param {String} property A property on your JSON objects to sort on
27544  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27545  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27546  */
27547     sort : function(property, dir, sortType){
27548         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27549         if(this.jsonData){
27550             var p = property;
27551             var dsc = dir && dir.toLowerCase() == "desc";
27552             var f = function(o1, o2){
27553                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27554                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27555                 ;
27556                 if(v1 < v2){
27557                     return dsc ? +1 : -1;
27558                 } else if(v1 > v2){
27559                     return dsc ? -1 : +1;
27560                 } else{
27561                     return 0;
27562                 }
27563             };
27564             this.jsonData.sort(f);
27565             this.refresh();
27566             if(this.jsonData != this.snapshot){
27567                 this.snapshot.sort(f);
27568             }
27569         }
27570     }
27571 });/*
27572  * Based on:
27573  * Ext JS Library 1.1.1
27574  * Copyright(c) 2006-2007, Ext JS, LLC.
27575  *
27576  * Originally Released Under LGPL - original licence link has changed is not relivant.
27577  *
27578  * Fork - LGPL
27579  * <script type="text/javascript">
27580  */
27581  
27582
27583 /**
27584  * @class Roo.ColorPalette
27585  * @extends Roo.Component
27586  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27587  * Here's an example of typical usage:
27588  * <pre><code>
27589 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27590 cp.render('my-div');
27591
27592 cp.on('select', function(palette, selColor){
27593     // do something with selColor
27594 });
27595 </code></pre>
27596  * @constructor
27597  * Create a new ColorPalette
27598  * @param {Object} config The config object
27599  */
27600 Roo.ColorPalette = function(config){
27601     Roo.ColorPalette.superclass.constructor.call(this, config);
27602     this.addEvents({
27603         /**
27604              * @event select
27605              * Fires when a color is selected
27606              * @param {ColorPalette} this
27607              * @param {String} color The 6-digit color hex code (without the # symbol)
27608              */
27609         select: true
27610     });
27611
27612     if(this.handler){
27613         this.on("select", this.handler, this.scope, true);
27614     }
27615 };
27616 Roo.extend(Roo.ColorPalette, Roo.Component, {
27617     /**
27618      * @cfg {String} itemCls
27619      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27620      */
27621     itemCls : "x-color-palette",
27622     /**
27623      * @cfg {String} value
27624      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27625      * the hex codes are case-sensitive.
27626      */
27627     value : null,
27628     clickEvent:'click',
27629     // private
27630     ctype: "Roo.ColorPalette",
27631
27632     /**
27633      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27634      */
27635     allowReselect : false,
27636
27637     /**
27638      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27639      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27640      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27641      * of colors with the width setting until the box is symmetrical.</p>
27642      * <p>You can override individual colors if needed:</p>
27643      * <pre><code>
27644 var cp = new Roo.ColorPalette();
27645 cp.colors[0] = "FF0000";  // change the first box to red
27646 </code></pre>
27647
27648 Or you can provide a custom array of your own for complete control:
27649 <pre><code>
27650 var cp = new Roo.ColorPalette();
27651 cp.colors = ["000000", "993300", "333300"];
27652 </code></pre>
27653      * @type Array
27654      */
27655     colors : [
27656         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27657         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27658         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27659         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27660         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27661     ],
27662
27663     // private
27664     onRender : function(container, position){
27665         var t = new Roo.MasterTemplate(
27666             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27667         );
27668         var c = this.colors;
27669         for(var i = 0, len = c.length; i < len; i++){
27670             t.add([c[i]]);
27671         }
27672         var el = document.createElement("div");
27673         el.className = this.itemCls;
27674         t.overwrite(el);
27675         container.dom.insertBefore(el, position);
27676         this.el = Roo.get(el);
27677         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27678         if(this.clickEvent != 'click'){
27679             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27680         }
27681     },
27682
27683     // private
27684     afterRender : function(){
27685         Roo.ColorPalette.superclass.afterRender.call(this);
27686         if(this.value){
27687             var s = this.value;
27688             this.value = null;
27689             this.select(s);
27690         }
27691     },
27692
27693     // private
27694     handleClick : function(e, t){
27695         e.preventDefault();
27696         if(!this.disabled){
27697             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27698             this.select(c.toUpperCase());
27699         }
27700     },
27701
27702     /**
27703      * Selects the specified color in the palette (fires the select event)
27704      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27705      */
27706     select : function(color){
27707         color = color.replace("#", "");
27708         if(color != this.value || this.allowReselect){
27709             var el = this.el;
27710             if(this.value){
27711                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27712             }
27713             el.child("a.color-"+color).addClass("x-color-palette-sel");
27714             this.value = color;
27715             this.fireEvent("select", this, color);
27716         }
27717     }
27718 });/*
27719  * Based on:
27720  * Ext JS Library 1.1.1
27721  * Copyright(c) 2006-2007, Ext JS, LLC.
27722  *
27723  * Originally Released Under LGPL - original licence link has changed is not relivant.
27724  *
27725  * Fork - LGPL
27726  * <script type="text/javascript">
27727  */
27728  
27729 /**
27730  * @class Roo.DatePicker
27731  * @extends Roo.Component
27732  * Simple date picker class.
27733  * @constructor
27734  * Create a new DatePicker
27735  * @param {Object} config The config object
27736  */
27737 Roo.DatePicker = function(config){
27738     Roo.DatePicker.superclass.constructor.call(this, config);
27739
27740     this.value = config && config.value ?
27741                  config.value.clearTime() : new Date().clearTime();
27742
27743     this.addEvents({
27744         /**
27745              * @event select
27746              * Fires when a date is selected
27747              * @param {DatePicker} this
27748              * @param {Date} date The selected date
27749              */
27750         'select': true,
27751         /**
27752              * @event monthchange
27753              * Fires when the displayed month changes 
27754              * @param {DatePicker} this
27755              * @param {Date} date The selected month
27756              */
27757         'monthchange': true
27758     });
27759
27760     if(this.handler){
27761         this.on("select", this.handler,  this.scope || this);
27762     }
27763     // build the disabledDatesRE
27764     if(!this.disabledDatesRE && this.disabledDates){
27765         var dd = this.disabledDates;
27766         var re = "(?:";
27767         for(var i = 0; i < dd.length; i++){
27768             re += dd[i];
27769             if(i != dd.length-1) {
27770                 re += "|";
27771             }
27772         }
27773         this.disabledDatesRE = new RegExp(re + ")");
27774     }
27775 };
27776
27777 Roo.extend(Roo.DatePicker, Roo.Component, {
27778     /**
27779      * @cfg {String} todayText
27780      * The text to display on the button that selects the current date (defaults to "Today")
27781      */
27782     todayText : "Today",
27783     /**
27784      * @cfg {String} okText
27785      * The text to display on the ok button
27786      */
27787     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27788     /**
27789      * @cfg {String} cancelText
27790      * The text to display on the cancel button
27791      */
27792     cancelText : "Cancel",
27793     /**
27794      * @cfg {String} todayTip
27795      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27796      */
27797     todayTip : "{0} (Spacebar)",
27798     /**
27799      * @cfg {Date} minDate
27800      * Minimum allowable date (JavaScript date object, defaults to null)
27801      */
27802     minDate : null,
27803     /**
27804      * @cfg {Date} maxDate
27805      * Maximum allowable date (JavaScript date object, defaults to null)
27806      */
27807     maxDate : null,
27808     /**
27809      * @cfg {String} minText
27810      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27811      */
27812     minText : "This date is before the minimum date",
27813     /**
27814      * @cfg {String} maxText
27815      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27816      */
27817     maxText : "This date is after the maximum date",
27818     /**
27819      * @cfg {String} format
27820      * The default date format string which can be overriden for localization support.  The format must be
27821      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27822      */
27823     format : "m/d/y",
27824     /**
27825      * @cfg {Array} disabledDays
27826      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27827      */
27828     disabledDays : null,
27829     /**
27830      * @cfg {String} disabledDaysText
27831      * The tooltip to display when the date falls on a disabled day (defaults to "")
27832      */
27833     disabledDaysText : "",
27834     /**
27835      * @cfg {RegExp} disabledDatesRE
27836      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27837      */
27838     disabledDatesRE : null,
27839     /**
27840      * @cfg {String} disabledDatesText
27841      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27842      */
27843     disabledDatesText : "",
27844     /**
27845      * @cfg {Boolean} constrainToViewport
27846      * True to constrain the date picker to the viewport (defaults to true)
27847      */
27848     constrainToViewport : true,
27849     /**
27850      * @cfg {Array} monthNames
27851      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27852      */
27853     monthNames : Date.monthNames,
27854     /**
27855      * @cfg {Array} dayNames
27856      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
27857      */
27858     dayNames : Date.dayNames,
27859     /**
27860      * @cfg {String} nextText
27861      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
27862      */
27863     nextText: 'Next Month (Control+Right)',
27864     /**
27865      * @cfg {String} prevText
27866      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
27867      */
27868     prevText: 'Previous Month (Control+Left)',
27869     /**
27870      * @cfg {String} monthYearText
27871      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
27872      */
27873     monthYearText: 'Choose a month (Control+Up/Down to move years)',
27874     /**
27875      * @cfg {Number} startDay
27876      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
27877      */
27878     startDay : 0,
27879     /**
27880      * @cfg {Bool} showClear
27881      * Show a clear button (usefull for date form elements that can be blank.)
27882      */
27883     
27884     showClear: false,
27885     
27886     /**
27887      * Sets the value of the date field
27888      * @param {Date} value The date to set
27889      */
27890     setValue : function(value){
27891         var old = this.value;
27892         
27893         if (typeof(value) == 'string') {
27894          
27895             value = Date.parseDate(value, this.format);
27896         }
27897         if (!value) {
27898             value = new Date();
27899         }
27900         
27901         this.value = value.clearTime(true);
27902         if(this.el){
27903             this.update(this.value);
27904         }
27905     },
27906
27907     /**
27908      * Gets the current selected value of the date field
27909      * @return {Date} The selected date
27910      */
27911     getValue : function(){
27912         return this.value;
27913     },
27914
27915     // private
27916     focus : function(){
27917         if(this.el){
27918             this.update(this.activeDate);
27919         }
27920     },
27921
27922     // privateval
27923     onRender : function(container, position){
27924         
27925         var m = [
27926              '<table cellspacing="0">',
27927                 '<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>',
27928                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
27929         var dn = this.dayNames;
27930         for(var i = 0; i < 7; i++){
27931             var d = this.startDay+i;
27932             if(d > 6){
27933                 d = d-7;
27934             }
27935             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
27936         }
27937         m[m.length] = "</tr></thead><tbody><tr>";
27938         for(var i = 0; i < 42; i++) {
27939             if(i % 7 == 0 && i != 0){
27940                 m[m.length] = "</tr><tr>";
27941             }
27942             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
27943         }
27944         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
27945             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
27946
27947         var el = document.createElement("div");
27948         el.className = "x-date-picker";
27949         el.innerHTML = m.join("");
27950
27951         container.dom.insertBefore(el, position);
27952
27953         this.el = Roo.get(el);
27954         this.eventEl = Roo.get(el.firstChild);
27955
27956         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
27957             handler: this.showPrevMonth,
27958             scope: this,
27959             preventDefault:true,
27960             stopDefault:true
27961         });
27962
27963         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
27964             handler: this.showNextMonth,
27965             scope: this,
27966             preventDefault:true,
27967             stopDefault:true
27968         });
27969
27970         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
27971
27972         this.monthPicker = this.el.down('div.x-date-mp');
27973         this.monthPicker.enableDisplayMode('block');
27974         
27975         var kn = new Roo.KeyNav(this.eventEl, {
27976             "left" : function(e){
27977                 e.ctrlKey ?
27978                     this.showPrevMonth() :
27979                     this.update(this.activeDate.add("d", -1));
27980             },
27981
27982             "right" : function(e){
27983                 e.ctrlKey ?
27984                     this.showNextMonth() :
27985                     this.update(this.activeDate.add("d", 1));
27986             },
27987
27988             "up" : function(e){
27989                 e.ctrlKey ?
27990                     this.showNextYear() :
27991                     this.update(this.activeDate.add("d", -7));
27992             },
27993
27994             "down" : function(e){
27995                 e.ctrlKey ?
27996                     this.showPrevYear() :
27997                     this.update(this.activeDate.add("d", 7));
27998             },
27999
28000             "pageUp" : function(e){
28001                 this.showNextMonth();
28002             },
28003
28004             "pageDown" : function(e){
28005                 this.showPrevMonth();
28006             },
28007
28008             "enter" : function(e){
28009                 e.stopPropagation();
28010                 return true;
28011             },
28012
28013             scope : this
28014         });
28015
28016         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28017
28018         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28019
28020         this.el.unselectable();
28021         
28022         this.cells = this.el.select("table.x-date-inner tbody td");
28023         this.textNodes = this.el.query("table.x-date-inner tbody span");
28024
28025         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28026             text: "&#160;",
28027             tooltip: this.monthYearText
28028         });
28029
28030         this.mbtn.on('click', this.showMonthPicker, this);
28031         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28032
28033
28034         var today = (new Date()).dateFormat(this.format);
28035         
28036         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28037         if (this.showClear) {
28038             baseTb.add( new Roo.Toolbar.Fill());
28039         }
28040         baseTb.add({
28041             text: String.format(this.todayText, today),
28042             tooltip: String.format(this.todayTip, today),
28043             handler: this.selectToday,
28044             scope: this
28045         });
28046         
28047         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28048             
28049         //});
28050         if (this.showClear) {
28051             
28052             baseTb.add( new Roo.Toolbar.Fill());
28053             baseTb.add({
28054                 text: '&#160;',
28055                 cls: 'x-btn-icon x-btn-clear',
28056                 handler: function() {
28057                     //this.value = '';
28058                     this.fireEvent("select", this, '');
28059                 },
28060                 scope: this
28061             });
28062         }
28063         
28064         
28065         if(Roo.isIE){
28066             this.el.repaint();
28067         }
28068         this.update(this.value);
28069     },
28070
28071     createMonthPicker : function(){
28072         if(!this.monthPicker.dom.firstChild){
28073             var buf = ['<table border="0" cellspacing="0">'];
28074             for(var i = 0; i < 6; i++){
28075                 buf.push(
28076                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28077                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28078                     i == 0 ?
28079                     '<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>' :
28080                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28081                 );
28082             }
28083             buf.push(
28084                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28085                     this.okText,
28086                     '</button><button type="button" class="x-date-mp-cancel">',
28087                     this.cancelText,
28088                     '</button></td></tr>',
28089                 '</table>'
28090             );
28091             this.monthPicker.update(buf.join(''));
28092             this.monthPicker.on('click', this.onMonthClick, this);
28093             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28094
28095             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28096             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28097
28098             this.mpMonths.each(function(m, a, i){
28099                 i += 1;
28100                 if((i%2) == 0){
28101                     m.dom.xmonth = 5 + Math.round(i * .5);
28102                 }else{
28103                     m.dom.xmonth = Math.round((i-1) * .5);
28104                 }
28105             });
28106         }
28107     },
28108
28109     showMonthPicker : function(){
28110         this.createMonthPicker();
28111         var size = this.el.getSize();
28112         this.monthPicker.setSize(size);
28113         this.monthPicker.child('table').setSize(size);
28114
28115         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28116         this.updateMPMonth(this.mpSelMonth);
28117         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28118         this.updateMPYear(this.mpSelYear);
28119
28120         this.monthPicker.slideIn('t', {duration:.2});
28121     },
28122
28123     updateMPYear : function(y){
28124         this.mpyear = y;
28125         var ys = this.mpYears.elements;
28126         for(var i = 1; i <= 10; i++){
28127             var td = ys[i-1], y2;
28128             if((i%2) == 0){
28129                 y2 = y + Math.round(i * .5);
28130                 td.firstChild.innerHTML = y2;
28131                 td.xyear = y2;
28132             }else{
28133                 y2 = y - (5-Math.round(i * .5));
28134                 td.firstChild.innerHTML = y2;
28135                 td.xyear = y2;
28136             }
28137             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28138         }
28139     },
28140
28141     updateMPMonth : function(sm){
28142         this.mpMonths.each(function(m, a, i){
28143             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28144         });
28145     },
28146
28147     selectMPMonth: function(m){
28148         
28149     },
28150
28151     onMonthClick : function(e, t){
28152         e.stopEvent();
28153         var el = new Roo.Element(t), pn;
28154         if(el.is('button.x-date-mp-cancel')){
28155             this.hideMonthPicker();
28156         }
28157         else if(el.is('button.x-date-mp-ok')){
28158             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28159             this.hideMonthPicker();
28160         }
28161         else if(pn = el.up('td.x-date-mp-month', 2)){
28162             this.mpMonths.removeClass('x-date-mp-sel');
28163             pn.addClass('x-date-mp-sel');
28164             this.mpSelMonth = pn.dom.xmonth;
28165         }
28166         else if(pn = el.up('td.x-date-mp-year', 2)){
28167             this.mpYears.removeClass('x-date-mp-sel');
28168             pn.addClass('x-date-mp-sel');
28169             this.mpSelYear = pn.dom.xyear;
28170         }
28171         else if(el.is('a.x-date-mp-prev')){
28172             this.updateMPYear(this.mpyear-10);
28173         }
28174         else if(el.is('a.x-date-mp-next')){
28175             this.updateMPYear(this.mpyear+10);
28176         }
28177     },
28178
28179     onMonthDblClick : function(e, t){
28180         e.stopEvent();
28181         var el = new Roo.Element(t), pn;
28182         if(pn = el.up('td.x-date-mp-month', 2)){
28183             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28184             this.hideMonthPicker();
28185         }
28186         else if(pn = el.up('td.x-date-mp-year', 2)){
28187             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28188             this.hideMonthPicker();
28189         }
28190     },
28191
28192     hideMonthPicker : function(disableAnim){
28193         if(this.monthPicker){
28194             if(disableAnim === true){
28195                 this.monthPicker.hide();
28196             }else{
28197                 this.monthPicker.slideOut('t', {duration:.2});
28198             }
28199         }
28200     },
28201
28202     // private
28203     showPrevMonth : function(e){
28204         this.update(this.activeDate.add("mo", -1));
28205     },
28206
28207     // private
28208     showNextMonth : function(e){
28209         this.update(this.activeDate.add("mo", 1));
28210     },
28211
28212     // private
28213     showPrevYear : function(){
28214         this.update(this.activeDate.add("y", -1));
28215     },
28216
28217     // private
28218     showNextYear : function(){
28219         this.update(this.activeDate.add("y", 1));
28220     },
28221
28222     // private
28223     handleMouseWheel : function(e){
28224         var delta = e.getWheelDelta();
28225         if(delta > 0){
28226             this.showPrevMonth();
28227             e.stopEvent();
28228         } else if(delta < 0){
28229             this.showNextMonth();
28230             e.stopEvent();
28231         }
28232     },
28233
28234     // private
28235     handleDateClick : function(e, t){
28236         e.stopEvent();
28237         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28238             this.setValue(new Date(t.dateValue));
28239             this.fireEvent("select", this, this.value);
28240         }
28241     },
28242
28243     // private
28244     selectToday : function(){
28245         this.setValue(new Date().clearTime());
28246         this.fireEvent("select", this, this.value);
28247     },
28248
28249     // private
28250     update : function(date)
28251     {
28252         var vd = this.activeDate;
28253         this.activeDate = date;
28254         if(vd && this.el){
28255             var t = date.getTime();
28256             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28257                 this.cells.removeClass("x-date-selected");
28258                 this.cells.each(function(c){
28259                    if(c.dom.firstChild.dateValue == t){
28260                        c.addClass("x-date-selected");
28261                        setTimeout(function(){
28262                             try{c.dom.firstChild.focus();}catch(e){}
28263                        }, 50);
28264                        return false;
28265                    }
28266                 });
28267                 return;
28268             }
28269         }
28270         
28271         var days = date.getDaysInMonth();
28272         var firstOfMonth = date.getFirstDateOfMonth();
28273         var startingPos = firstOfMonth.getDay()-this.startDay;
28274
28275         if(startingPos <= this.startDay){
28276             startingPos += 7;
28277         }
28278
28279         var pm = date.add("mo", -1);
28280         var prevStart = pm.getDaysInMonth()-startingPos;
28281
28282         var cells = this.cells.elements;
28283         var textEls = this.textNodes;
28284         days += startingPos;
28285
28286         // convert everything to numbers so it's fast
28287         var day = 86400000;
28288         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28289         var today = new Date().clearTime().getTime();
28290         var sel = date.clearTime().getTime();
28291         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28292         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28293         var ddMatch = this.disabledDatesRE;
28294         var ddText = this.disabledDatesText;
28295         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28296         var ddaysText = this.disabledDaysText;
28297         var format = this.format;
28298
28299         var setCellClass = function(cal, cell){
28300             cell.title = "";
28301             var t = d.getTime();
28302             cell.firstChild.dateValue = t;
28303             if(t == today){
28304                 cell.className += " x-date-today";
28305                 cell.title = cal.todayText;
28306             }
28307             if(t == sel){
28308                 cell.className += " x-date-selected";
28309                 setTimeout(function(){
28310                     try{cell.firstChild.focus();}catch(e){}
28311                 }, 50);
28312             }
28313             // disabling
28314             if(t < min) {
28315                 cell.className = " x-date-disabled";
28316                 cell.title = cal.minText;
28317                 return;
28318             }
28319             if(t > max) {
28320                 cell.className = " x-date-disabled";
28321                 cell.title = cal.maxText;
28322                 return;
28323             }
28324             if(ddays){
28325                 if(ddays.indexOf(d.getDay()) != -1){
28326                     cell.title = ddaysText;
28327                     cell.className = " x-date-disabled";
28328                 }
28329             }
28330             if(ddMatch && format){
28331                 var fvalue = d.dateFormat(format);
28332                 if(ddMatch.test(fvalue)){
28333                     cell.title = ddText.replace("%0", fvalue);
28334                     cell.className = " x-date-disabled";
28335                 }
28336             }
28337         };
28338
28339         var i = 0;
28340         for(; i < startingPos; i++) {
28341             textEls[i].innerHTML = (++prevStart);
28342             d.setDate(d.getDate()+1);
28343             cells[i].className = "x-date-prevday";
28344             setCellClass(this, cells[i]);
28345         }
28346         for(; i < days; i++){
28347             intDay = i - startingPos + 1;
28348             textEls[i].innerHTML = (intDay);
28349             d.setDate(d.getDate()+1);
28350             cells[i].className = "x-date-active";
28351             setCellClass(this, cells[i]);
28352         }
28353         var extraDays = 0;
28354         for(; i < 42; i++) {
28355              textEls[i].innerHTML = (++extraDays);
28356              d.setDate(d.getDate()+1);
28357              cells[i].className = "x-date-nextday";
28358              setCellClass(this, cells[i]);
28359         }
28360
28361         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28362         this.fireEvent('monthchange', this, date);
28363         
28364         if(!this.internalRender){
28365             var main = this.el.dom.firstChild;
28366             var w = main.offsetWidth;
28367             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28368             Roo.fly(main).setWidth(w);
28369             this.internalRender = true;
28370             // opera does not respect the auto grow header center column
28371             // then, after it gets a width opera refuses to recalculate
28372             // without a second pass
28373             if(Roo.isOpera && !this.secondPass){
28374                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28375                 this.secondPass = true;
28376                 this.update.defer(10, this, [date]);
28377             }
28378         }
28379         
28380         
28381     }
28382 });        /*
28383  * Based on:
28384  * Ext JS Library 1.1.1
28385  * Copyright(c) 2006-2007, Ext JS, LLC.
28386  *
28387  * Originally Released Under LGPL - original licence link has changed is not relivant.
28388  *
28389  * Fork - LGPL
28390  * <script type="text/javascript">
28391  */
28392 /**
28393  * @class Roo.TabPanel
28394  * @extends Roo.util.Observable
28395  * A lightweight tab container.
28396  * <br><br>
28397  * Usage:
28398  * <pre><code>
28399 // basic tabs 1, built from existing content
28400 var tabs = new Roo.TabPanel("tabs1");
28401 tabs.addTab("script", "View Script");
28402 tabs.addTab("markup", "View Markup");
28403 tabs.activate("script");
28404
28405 // more advanced tabs, built from javascript
28406 var jtabs = new Roo.TabPanel("jtabs");
28407 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28408
28409 // set up the UpdateManager
28410 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28411 var updater = tab2.getUpdateManager();
28412 updater.setDefaultUrl("ajax1.htm");
28413 tab2.on('activate', updater.refresh, updater, true);
28414
28415 // Use setUrl for Ajax loading
28416 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28417 tab3.setUrl("ajax2.htm", null, true);
28418
28419 // Disabled tab
28420 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28421 tab4.disable();
28422
28423 jtabs.activate("jtabs-1");
28424  * </code></pre>
28425  * @constructor
28426  * Create a new TabPanel.
28427  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28428  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28429  */
28430 Roo.TabPanel = function(container, config){
28431     /**
28432     * The container element for this TabPanel.
28433     * @type Roo.Element
28434     */
28435     this.el = Roo.get(container, true);
28436     if(config){
28437         if(typeof config == "boolean"){
28438             this.tabPosition = config ? "bottom" : "top";
28439         }else{
28440             Roo.apply(this, config);
28441         }
28442     }
28443     if(this.tabPosition == "bottom"){
28444         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28445         this.el.addClass("x-tabs-bottom");
28446     }
28447     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28448     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28449     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28450     if(Roo.isIE){
28451         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28452     }
28453     if(this.tabPosition != "bottom"){
28454         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28455          * @type Roo.Element
28456          */
28457         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28458         this.el.addClass("x-tabs-top");
28459     }
28460     this.items = [];
28461
28462     this.bodyEl.setStyle("position", "relative");
28463
28464     this.active = null;
28465     this.activateDelegate = this.activate.createDelegate(this);
28466
28467     this.addEvents({
28468         /**
28469          * @event tabchange
28470          * Fires when the active tab changes
28471          * @param {Roo.TabPanel} this
28472          * @param {Roo.TabPanelItem} activePanel The new active tab
28473          */
28474         "tabchange": true,
28475         /**
28476          * @event beforetabchange
28477          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28478          * @param {Roo.TabPanel} this
28479          * @param {Object} e Set cancel to true on this object to cancel the tab change
28480          * @param {Roo.TabPanelItem} tab The tab being changed to
28481          */
28482         "beforetabchange" : true
28483     });
28484
28485     Roo.EventManager.onWindowResize(this.onResize, this);
28486     this.cpad = this.el.getPadding("lr");
28487     this.hiddenCount = 0;
28488
28489
28490     // toolbar on the tabbar support...
28491     if (this.toolbar) {
28492         var tcfg = this.toolbar;
28493         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28494         this.toolbar = new Roo.Toolbar(tcfg);
28495         if (Roo.isSafari) {
28496             var tbl = tcfg.container.child('table', true);
28497             tbl.setAttribute('width', '100%');
28498         }
28499         
28500     }
28501    
28502
28503
28504     Roo.TabPanel.superclass.constructor.call(this);
28505 };
28506
28507 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28508     /*
28509      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28510      */
28511     tabPosition : "top",
28512     /*
28513      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28514      */
28515     currentTabWidth : 0,
28516     /*
28517      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28518      */
28519     minTabWidth : 40,
28520     /*
28521      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28522      */
28523     maxTabWidth : 250,
28524     /*
28525      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28526      */
28527     preferredTabWidth : 175,
28528     /*
28529      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28530      */
28531     resizeTabs : false,
28532     /*
28533      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28534      */
28535     monitorResize : true,
28536     /*
28537      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28538      */
28539     toolbar : false,
28540
28541     /**
28542      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28543      * @param {String} id The id of the div to use <b>or create</b>
28544      * @param {String} text The text for the tab
28545      * @param {String} content (optional) Content to put in the TabPanelItem body
28546      * @param {Boolean} closable (optional) True to create a close icon on the tab
28547      * @return {Roo.TabPanelItem} The created TabPanelItem
28548      */
28549     addTab : function(id, text, content, closable){
28550         var item = new Roo.TabPanelItem(this, id, text, closable);
28551         this.addTabItem(item);
28552         if(content){
28553             item.setContent(content);
28554         }
28555         return item;
28556     },
28557
28558     /**
28559      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28560      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28561      * @return {Roo.TabPanelItem}
28562      */
28563     getTab : function(id){
28564         return this.items[id];
28565     },
28566
28567     /**
28568      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28569      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28570      */
28571     hideTab : function(id){
28572         var t = this.items[id];
28573         if(!t.isHidden()){
28574            t.setHidden(true);
28575            this.hiddenCount++;
28576            this.autoSizeTabs();
28577         }
28578     },
28579
28580     /**
28581      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28582      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28583      */
28584     unhideTab : function(id){
28585         var t = this.items[id];
28586         if(t.isHidden()){
28587            t.setHidden(false);
28588            this.hiddenCount--;
28589            this.autoSizeTabs();
28590         }
28591     },
28592
28593     /**
28594      * Adds an existing {@link Roo.TabPanelItem}.
28595      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28596      */
28597     addTabItem : function(item){
28598         this.items[item.id] = item;
28599         this.items.push(item);
28600         if(this.resizeTabs){
28601            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28602            this.autoSizeTabs();
28603         }else{
28604             item.autoSize();
28605         }
28606     },
28607
28608     /**
28609      * Removes a {@link Roo.TabPanelItem}.
28610      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28611      */
28612     removeTab : function(id){
28613         var items = this.items;
28614         var tab = items[id];
28615         if(!tab) { return; }
28616         var index = items.indexOf(tab);
28617         if(this.active == tab && items.length > 1){
28618             var newTab = this.getNextAvailable(index);
28619             if(newTab) {
28620                 newTab.activate();
28621             }
28622         }
28623         this.stripEl.dom.removeChild(tab.pnode.dom);
28624         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28625             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28626         }
28627         items.splice(index, 1);
28628         delete this.items[tab.id];
28629         tab.fireEvent("close", tab);
28630         tab.purgeListeners();
28631         this.autoSizeTabs();
28632     },
28633
28634     getNextAvailable : function(start){
28635         var items = this.items;
28636         var index = start;
28637         // look for a next tab that will slide over to
28638         // replace the one being removed
28639         while(index < items.length){
28640             var item = items[++index];
28641             if(item && !item.isHidden()){
28642                 return item;
28643             }
28644         }
28645         // if one isn't found select the previous tab (on the left)
28646         index = start;
28647         while(index >= 0){
28648             var item = items[--index];
28649             if(item && !item.isHidden()){
28650                 return item;
28651             }
28652         }
28653         return null;
28654     },
28655
28656     /**
28657      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28658      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28659      */
28660     disableTab : function(id){
28661         var tab = this.items[id];
28662         if(tab && this.active != tab){
28663             tab.disable();
28664         }
28665     },
28666
28667     /**
28668      * Enables a {@link Roo.TabPanelItem} that is disabled.
28669      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28670      */
28671     enableTab : function(id){
28672         var tab = this.items[id];
28673         tab.enable();
28674     },
28675
28676     /**
28677      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28678      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28679      * @return {Roo.TabPanelItem} The TabPanelItem.
28680      */
28681     activate : function(id){
28682         var tab = this.items[id];
28683         if(!tab){
28684             return null;
28685         }
28686         if(tab == this.active || tab.disabled){
28687             return tab;
28688         }
28689         var e = {};
28690         this.fireEvent("beforetabchange", this, e, tab);
28691         if(e.cancel !== true && !tab.disabled){
28692             if(this.active){
28693                 this.active.hide();
28694             }
28695             this.active = this.items[id];
28696             this.active.show();
28697             this.fireEvent("tabchange", this, this.active);
28698         }
28699         return tab;
28700     },
28701
28702     /**
28703      * Gets the active {@link Roo.TabPanelItem}.
28704      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28705      */
28706     getActiveTab : function(){
28707         return this.active;
28708     },
28709
28710     /**
28711      * Updates the tab body element to fit the height of the container element
28712      * for overflow scrolling
28713      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28714      */
28715     syncHeight : function(targetHeight){
28716         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28717         var bm = this.bodyEl.getMargins();
28718         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28719         this.bodyEl.setHeight(newHeight);
28720         return newHeight;
28721     },
28722
28723     onResize : function(){
28724         if(this.monitorResize){
28725             this.autoSizeTabs();
28726         }
28727     },
28728
28729     /**
28730      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28731      */
28732     beginUpdate : function(){
28733         this.updating = true;
28734     },
28735
28736     /**
28737      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28738      */
28739     endUpdate : function(){
28740         this.updating = false;
28741         this.autoSizeTabs();
28742     },
28743
28744     /**
28745      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28746      */
28747     autoSizeTabs : function(){
28748         var count = this.items.length;
28749         var vcount = count - this.hiddenCount;
28750         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28751             return;
28752         }
28753         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28754         var availWidth = Math.floor(w / vcount);
28755         var b = this.stripBody;
28756         if(b.getWidth() > w){
28757             var tabs = this.items;
28758             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28759             if(availWidth < this.minTabWidth){
28760                 /*if(!this.sleft){    // incomplete scrolling code
28761                     this.createScrollButtons();
28762                 }
28763                 this.showScroll();
28764                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28765             }
28766         }else{
28767             if(this.currentTabWidth < this.preferredTabWidth){
28768                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28769             }
28770         }
28771     },
28772
28773     /**
28774      * Returns the number of tabs in this TabPanel.
28775      * @return {Number}
28776      */
28777      getCount : function(){
28778          return this.items.length;
28779      },
28780
28781     /**
28782      * Resizes all the tabs to the passed width
28783      * @param {Number} The new width
28784      */
28785     setTabWidth : function(width){
28786         this.currentTabWidth = width;
28787         for(var i = 0, len = this.items.length; i < len; i++) {
28788                 if(!this.items[i].isHidden()) {
28789                 this.items[i].setWidth(width);
28790             }
28791         }
28792     },
28793
28794     /**
28795      * Destroys this TabPanel
28796      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28797      */
28798     destroy : function(removeEl){
28799         Roo.EventManager.removeResizeListener(this.onResize, this);
28800         for(var i = 0, len = this.items.length; i < len; i++){
28801             this.items[i].purgeListeners();
28802         }
28803         if(removeEl === true){
28804             this.el.update("");
28805             this.el.remove();
28806         }
28807     }
28808 });
28809
28810 /**
28811  * @class Roo.TabPanelItem
28812  * @extends Roo.util.Observable
28813  * Represents an individual item (tab plus body) in a TabPanel.
28814  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28815  * @param {String} id The id of this TabPanelItem
28816  * @param {String} text The text for the tab of this TabPanelItem
28817  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28818  */
28819 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28820     /**
28821      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28822      * @type Roo.TabPanel
28823      */
28824     this.tabPanel = tabPanel;
28825     /**
28826      * The id for this TabPanelItem
28827      * @type String
28828      */
28829     this.id = id;
28830     /** @private */
28831     this.disabled = false;
28832     /** @private */
28833     this.text = text;
28834     /** @private */
28835     this.loaded = false;
28836     this.closable = closable;
28837
28838     /**
28839      * The body element for this TabPanelItem.
28840      * @type Roo.Element
28841      */
28842     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28843     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28844     this.bodyEl.setStyle("display", "block");
28845     this.bodyEl.setStyle("zoom", "1");
28846     this.hideAction();
28847
28848     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28849     /** @private */
28850     this.el = Roo.get(els.el, true);
28851     this.inner = Roo.get(els.inner, true);
28852     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
28853     this.pnode = Roo.get(els.el.parentNode, true);
28854     this.el.on("mousedown", this.onTabMouseDown, this);
28855     this.el.on("click", this.onTabClick, this);
28856     /** @private */
28857     if(closable){
28858         var c = Roo.get(els.close, true);
28859         c.dom.title = this.closeText;
28860         c.addClassOnOver("close-over");
28861         c.on("click", this.closeClick, this);
28862      }
28863
28864     this.addEvents({
28865          /**
28866          * @event activate
28867          * Fires when this tab becomes the active tab.
28868          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28869          * @param {Roo.TabPanelItem} this
28870          */
28871         "activate": true,
28872         /**
28873          * @event beforeclose
28874          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
28875          * @param {Roo.TabPanelItem} this
28876          * @param {Object} e Set cancel to true on this object to cancel the close.
28877          */
28878         "beforeclose": true,
28879         /**
28880          * @event close
28881          * Fires when this tab is closed.
28882          * @param {Roo.TabPanelItem} this
28883          */
28884          "close": true,
28885         /**
28886          * @event deactivate
28887          * Fires when this tab is no longer the active tab.
28888          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28889          * @param {Roo.TabPanelItem} this
28890          */
28891          "deactivate" : true
28892     });
28893     this.hidden = false;
28894
28895     Roo.TabPanelItem.superclass.constructor.call(this);
28896 };
28897
28898 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
28899     purgeListeners : function(){
28900        Roo.util.Observable.prototype.purgeListeners.call(this);
28901        this.el.removeAllListeners();
28902     },
28903     /**
28904      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
28905      */
28906     show : function(){
28907         this.pnode.addClass("on");
28908         this.showAction();
28909         if(Roo.isOpera){
28910             this.tabPanel.stripWrap.repaint();
28911         }
28912         this.fireEvent("activate", this.tabPanel, this);
28913     },
28914
28915     /**
28916      * Returns true if this tab is the active tab.
28917      * @return {Boolean}
28918      */
28919     isActive : function(){
28920         return this.tabPanel.getActiveTab() == this;
28921     },
28922
28923     /**
28924      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
28925      */
28926     hide : function(){
28927         this.pnode.removeClass("on");
28928         this.hideAction();
28929         this.fireEvent("deactivate", this.tabPanel, this);
28930     },
28931
28932     hideAction : function(){
28933         this.bodyEl.hide();
28934         this.bodyEl.setStyle("position", "absolute");
28935         this.bodyEl.setLeft("-20000px");
28936         this.bodyEl.setTop("-20000px");
28937     },
28938
28939     showAction : function(){
28940         this.bodyEl.setStyle("position", "relative");
28941         this.bodyEl.setTop("");
28942         this.bodyEl.setLeft("");
28943         this.bodyEl.show();
28944     },
28945
28946     /**
28947      * Set the tooltip for the tab.
28948      * @param {String} tooltip The tab's tooltip
28949      */
28950     setTooltip : function(text){
28951         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
28952             this.textEl.dom.qtip = text;
28953             this.textEl.dom.removeAttribute('title');
28954         }else{
28955             this.textEl.dom.title = text;
28956         }
28957     },
28958
28959     onTabClick : function(e){
28960         e.preventDefault();
28961         this.tabPanel.activate(this.id);
28962     },
28963
28964     onTabMouseDown : function(e){
28965         e.preventDefault();
28966         this.tabPanel.activate(this.id);
28967     },
28968
28969     getWidth : function(){
28970         return this.inner.getWidth();
28971     },
28972
28973     setWidth : function(width){
28974         var iwidth = width - this.pnode.getPadding("lr");
28975         this.inner.setWidth(iwidth);
28976         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
28977         this.pnode.setWidth(width);
28978     },
28979
28980     /**
28981      * Show or hide the tab
28982      * @param {Boolean} hidden True to hide or false to show.
28983      */
28984     setHidden : function(hidden){
28985         this.hidden = hidden;
28986         this.pnode.setStyle("display", hidden ? "none" : "");
28987     },
28988
28989     /**
28990      * Returns true if this tab is "hidden"
28991      * @return {Boolean}
28992      */
28993     isHidden : function(){
28994         return this.hidden;
28995     },
28996
28997     /**
28998      * Returns the text for this tab
28999      * @return {String}
29000      */
29001     getText : function(){
29002         return this.text;
29003     },
29004
29005     autoSize : function(){
29006         //this.el.beginMeasure();
29007         this.textEl.setWidth(1);
29008         /*
29009          *  #2804 [new] Tabs in Roojs
29010          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29011          */
29012         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29013         //this.el.endMeasure();
29014     },
29015
29016     /**
29017      * Sets the text for the tab (Note: this also sets the tooltip text)
29018      * @param {String} text The tab's text and tooltip
29019      */
29020     setText : function(text){
29021         this.text = text;
29022         this.textEl.update(text);
29023         this.setTooltip(text);
29024         if(!this.tabPanel.resizeTabs){
29025             this.autoSize();
29026         }
29027     },
29028     /**
29029      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29030      */
29031     activate : function(){
29032         this.tabPanel.activate(this.id);
29033     },
29034
29035     /**
29036      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29037      */
29038     disable : function(){
29039         if(this.tabPanel.active != this){
29040             this.disabled = true;
29041             this.pnode.addClass("disabled");
29042         }
29043     },
29044
29045     /**
29046      * Enables this TabPanelItem if it was previously disabled.
29047      */
29048     enable : function(){
29049         this.disabled = false;
29050         this.pnode.removeClass("disabled");
29051     },
29052
29053     /**
29054      * Sets the content for this TabPanelItem.
29055      * @param {String} content The content
29056      * @param {Boolean} loadScripts true to look for and load scripts
29057      */
29058     setContent : function(content, loadScripts){
29059         this.bodyEl.update(content, loadScripts);
29060     },
29061
29062     /**
29063      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29064      * @return {Roo.UpdateManager} The UpdateManager
29065      */
29066     getUpdateManager : function(){
29067         return this.bodyEl.getUpdateManager();
29068     },
29069
29070     /**
29071      * Set a URL to be used to load the content for this TabPanelItem.
29072      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29073      * @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)
29074      * @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)
29075      * @return {Roo.UpdateManager} The UpdateManager
29076      */
29077     setUrl : function(url, params, loadOnce){
29078         if(this.refreshDelegate){
29079             this.un('activate', this.refreshDelegate);
29080         }
29081         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29082         this.on("activate", this.refreshDelegate);
29083         return this.bodyEl.getUpdateManager();
29084     },
29085
29086     /** @private */
29087     _handleRefresh : function(url, params, loadOnce){
29088         if(!loadOnce || !this.loaded){
29089             var updater = this.bodyEl.getUpdateManager();
29090             updater.update(url, params, this._setLoaded.createDelegate(this));
29091         }
29092     },
29093
29094     /**
29095      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29096      *   Will fail silently if the setUrl method has not been called.
29097      *   This does not activate the panel, just updates its content.
29098      */
29099     refresh : function(){
29100         if(this.refreshDelegate){
29101            this.loaded = false;
29102            this.refreshDelegate();
29103         }
29104     },
29105
29106     /** @private */
29107     _setLoaded : function(){
29108         this.loaded = true;
29109     },
29110
29111     /** @private */
29112     closeClick : function(e){
29113         var o = {};
29114         e.stopEvent();
29115         this.fireEvent("beforeclose", this, o);
29116         if(o.cancel !== true){
29117             this.tabPanel.removeTab(this.id);
29118         }
29119     },
29120     /**
29121      * The text displayed in the tooltip for the close icon.
29122      * @type String
29123      */
29124     closeText : "Close this tab"
29125 });
29126
29127 /** @private */
29128 Roo.TabPanel.prototype.createStrip = function(container){
29129     var strip = document.createElement("div");
29130     strip.className = "x-tabs-wrap";
29131     container.appendChild(strip);
29132     return strip;
29133 };
29134 /** @private */
29135 Roo.TabPanel.prototype.createStripList = function(strip){
29136     // div wrapper for retard IE
29137     // returns the "tr" element.
29138     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29139         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29140         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29141     return strip.firstChild.firstChild.firstChild.firstChild;
29142 };
29143 /** @private */
29144 Roo.TabPanel.prototype.createBody = function(container){
29145     var body = document.createElement("div");
29146     Roo.id(body, "tab-body");
29147     Roo.fly(body).addClass("x-tabs-body");
29148     container.appendChild(body);
29149     return body;
29150 };
29151 /** @private */
29152 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29153     var body = Roo.getDom(id);
29154     if(!body){
29155         body = document.createElement("div");
29156         body.id = id;
29157     }
29158     Roo.fly(body).addClass("x-tabs-item-body");
29159     bodyEl.insertBefore(body, bodyEl.firstChild);
29160     return body;
29161 };
29162 /** @private */
29163 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29164     var td = document.createElement("td");
29165     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29166     //stripEl.appendChild(td);
29167     if(closable){
29168         td.className = "x-tabs-closable";
29169         if(!this.closeTpl){
29170             this.closeTpl = new Roo.Template(
29171                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29172                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29173                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29174             );
29175         }
29176         var el = this.closeTpl.overwrite(td, {"text": text});
29177         var close = el.getElementsByTagName("div")[0];
29178         var inner = el.getElementsByTagName("em")[0];
29179         return {"el": el, "close": close, "inner": inner};
29180     } else {
29181         if(!this.tabTpl){
29182             this.tabTpl = new Roo.Template(
29183                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29184                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29185             );
29186         }
29187         var el = this.tabTpl.overwrite(td, {"text": text});
29188         var inner = el.getElementsByTagName("em")[0];
29189         return {"el": el, "inner": inner};
29190     }
29191 };/*
29192  * Based on:
29193  * Ext JS Library 1.1.1
29194  * Copyright(c) 2006-2007, Ext JS, LLC.
29195  *
29196  * Originally Released Under LGPL - original licence link has changed is not relivant.
29197  *
29198  * Fork - LGPL
29199  * <script type="text/javascript">
29200  */
29201
29202 /**
29203  * @class Roo.Button
29204  * @extends Roo.util.Observable
29205  * Simple Button class
29206  * @cfg {String} text The button text
29207  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29208  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29209  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29210  * @cfg {Object} scope The scope of the handler
29211  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29212  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29213  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29214  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29215  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29216  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29217    applies if enableToggle = true)
29218  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29219  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29220   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29221  * @constructor
29222  * Create a new button
29223  * @param {Object} config The config object
29224  */
29225 Roo.Button = function(renderTo, config)
29226 {
29227     if (!config) {
29228         config = renderTo;
29229         renderTo = config.renderTo || false;
29230     }
29231     
29232     Roo.apply(this, config);
29233     this.addEvents({
29234         /**
29235              * @event click
29236              * Fires when this button is clicked
29237              * @param {Button} this
29238              * @param {EventObject} e The click event
29239              */
29240             "click" : true,
29241         /**
29242              * @event toggle
29243              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29244              * @param {Button} this
29245              * @param {Boolean} pressed
29246              */
29247             "toggle" : true,
29248         /**
29249              * @event mouseover
29250              * Fires when the mouse hovers over the button
29251              * @param {Button} this
29252              * @param {Event} e The event object
29253              */
29254         'mouseover' : true,
29255         /**
29256              * @event mouseout
29257              * Fires when the mouse exits the button
29258              * @param {Button} this
29259              * @param {Event} e The event object
29260              */
29261         'mouseout': true,
29262          /**
29263              * @event render
29264              * Fires when the button is rendered
29265              * @param {Button} this
29266              */
29267         'render': true
29268     });
29269     if(this.menu){
29270         this.menu = Roo.menu.MenuMgr.get(this.menu);
29271     }
29272     // register listeners first!!  - so render can be captured..
29273     Roo.util.Observable.call(this);
29274     if(renderTo){
29275         this.render(renderTo);
29276     }
29277     
29278   
29279 };
29280
29281 Roo.extend(Roo.Button, Roo.util.Observable, {
29282     /**
29283      * 
29284      */
29285     
29286     /**
29287      * Read-only. True if this button is hidden
29288      * @type Boolean
29289      */
29290     hidden : false,
29291     /**
29292      * Read-only. True if this button is disabled
29293      * @type Boolean
29294      */
29295     disabled : false,
29296     /**
29297      * Read-only. True if this button is pressed (only if enableToggle = true)
29298      * @type Boolean
29299      */
29300     pressed : false,
29301
29302     /**
29303      * @cfg {Number} tabIndex 
29304      * The DOM tabIndex for this button (defaults to undefined)
29305      */
29306     tabIndex : undefined,
29307
29308     /**
29309      * @cfg {Boolean} enableToggle
29310      * True to enable pressed/not pressed toggling (defaults to false)
29311      */
29312     enableToggle: false,
29313     /**
29314      * @cfg {Mixed} menu
29315      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29316      */
29317     menu : undefined,
29318     /**
29319      * @cfg {String} menuAlign
29320      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29321      */
29322     menuAlign : "tl-bl?",
29323
29324     /**
29325      * @cfg {String} iconCls
29326      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29327      */
29328     iconCls : undefined,
29329     /**
29330      * @cfg {String} type
29331      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29332      */
29333     type : 'button',
29334
29335     // private
29336     menuClassTarget: 'tr',
29337
29338     /**
29339      * @cfg {String} clickEvent
29340      * The type of event to map to the button's event handler (defaults to 'click')
29341      */
29342     clickEvent : 'click',
29343
29344     /**
29345      * @cfg {Boolean} handleMouseEvents
29346      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29347      */
29348     handleMouseEvents : true,
29349
29350     /**
29351      * @cfg {String} tooltipType
29352      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29353      */
29354     tooltipType : 'qtip',
29355
29356     /**
29357      * @cfg {String} cls
29358      * A CSS class to apply to the button's main element.
29359      */
29360     
29361     /**
29362      * @cfg {Roo.Template} template (Optional)
29363      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29364      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29365      * require code modifications if required elements (e.g. a button) aren't present.
29366      */
29367
29368     // private
29369     render : function(renderTo){
29370         var btn;
29371         if(this.hideParent){
29372             this.parentEl = Roo.get(renderTo);
29373         }
29374         if(!this.dhconfig){
29375             if(!this.template){
29376                 if(!Roo.Button.buttonTemplate){
29377                     // hideous table template
29378                     Roo.Button.buttonTemplate = new Roo.Template(
29379                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29380                         '<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>',
29381                         "</tr></tbody></table>");
29382                 }
29383                 this.template = Roo.Button.buttonTemplate;
29384             }
29385             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29386             var btnEl = btn.child("button:first");
29387             btnEl.on('focus', this.onFocus, this);
29388             btnEl.on('blur', this.onBlur, this);
29389             if(this.cls){
29390                 btn.addClass(this.cls);
29391             }
29392             if(this.icon){
29393                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29394             }
29395             if(this.iconCls){
29396                 btnEl.addClass(this.iconCls);
29397                 if(!this.cls){
29398                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29399                 }
29400             }
29401             if(this.tabIndex !== undefined){
29402                 btnEl.dom.tabIndex = this.tabIndex;
29403             }
29404             if(this.tooltip){
29405                 if(typeof this.tooltip == 'object'){
29406                     Roo.QuickTips.tips(Roo.apply({
29407                           target: btnEl.id
29408                     }, this.tooltip));
29409                 } else {
29410                     btnEl.dom[this.tooltipType] = this.tooltip;
29411                 }
29412             }
29413         }else{
29414             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29415         }
29416         this.el = btn;
29417         if(this.id){
29418             this.el.dom.id = this.el.id = this.id;
29419         }
29420         if(this.menu){
29421             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29422             this.menu.on("show", this.onMenuShow, this);
29423             this.menu.on("hide", this.onMenuHide, this);
29424         }
29425         btn.addClass("x-btn");
29426         if(Roo.isIE && !Roo.isIE7){
29427             this.autoWidth.defer(1, this);
29428         }else{
29429             this.autoWidth();
29430         }
29431         if(this.handleMouseEvents){
29432             btn.on("mouseover", this.onMouseOver, this);
29433             btn.on("mouseout", this.onMouseOut, this);
29434             btn.on("mousedown", this.onMouseDown, this);
29435         }
29436         btn.on(this.clickEvent, this.onClick, this);
29437         //btn.on("mouseup", this.onMouseUp, this);
29438         if(this.hidden){
29439             this.hide();
29440         }
29441         if(this.disabled){
29442             this.disable();
29443         }
29444         Roo.ButtonToggleMgr.register(this);
29445         if(this.pressed){
29446             this.el.addClass("x-btn-pressed");
29447         }
29448         if(this.repeat){
29449             var repeater = new Roo.util.ClickRepeater(btn,
29450                 typeof this.repeat == "object" ? this.repeat : {}
29451             );
29452             repeater.on("click", this.onClick,  this);
29453         }
29454         
29455         this.fireEvent('render', this);
29456         
29457     },
29458     /**
29459      * Returns the button's underlying element
29460      * @return {Roo.Element} The element
29461      */
29462     getEl : function(){
29463         return this.el;  
29464     },
29465     
29466     /**
29467      * Destroys this Button and removes any listeners.
29468      */
29469     destroy : function(){
29470         Roo.ButtonToggleMgr.unregister(this);
29471         this.el.removeAllListeners();
29472         this.purgeListeners();
29473         this.el.remove();
29474     },
29475
29476     // private
29477     autoWidth : function(){
29478         if(this.el){
29479             this.el.setWidth("auto");
29480             if(Roo.isIE7 && Roo.isStrict){
29481                 var ib = this.el.child('button');
29482                 if(ib && ib.getWidth() > 20){
29483                     ib.clip();
29484                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29485                 }
29486             }
29487             if(this.minWidth){
29488                 if(this.hidden){
29489                     this.el.beginMeasure();
29490                 }
29491                 if(this.el.getWidth() < this.minWidth){
29492                     this.el.setWidth(this.minWidth);
29493                 }
29494                 if(this.hidden){
29495                     this.el.endMeasure();
29496                 }
29497             }
29498         }
29499     },
29500
29501     /**
29502      * Assigns this button's click handler
29503      * @param {Function} handler The function to call when the button is clicked
29504      * @param {Object} scope (optional) Scope for the function passed in
29505      */
29506     setHandler : function(handler, scope){
29507         this.handler = handler;
29508         this.scope = scope;  
29509     },
29510     
29511     /**
29512      * Sets this button's text
29513      * @param {String} text The button text
29514      */
29515     setText : function(text){
29516         this.text = text;
29517         if(this.el){
29518             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29519         }
29520         this.autoWidth();
29521     },
29522     
29523     /**
29524      * Gets the text for this button
29525      * @return {String} The button text
29526      */
29527     getText : function(){
29528         return this.text;  
29529     },
29530     
29531     /**
29532      * Show this button
29533      */
29534     show: function(){
29535         this.hidden = false;
29536         if(this.el){
29537             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29538         }
29539     },
29540     
29541     /**
29542      * Hide this button
29543      */
29544     hide: function(){
29545         this.hidden = true;
29546         if(this.el){
29547             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29548         }
29549     },
29550     
29551     /**
29552      * Convenience function for boolean show/hide
29553      * @param {Boolean} visible True to show, false to hide
29554      */
29555     setVisible: function(visible){
29556         if(visible) {
29557             this.show();
29558         }else{
29559             this.hide();
29560         }
29561     },
29562     
29563     /**
29564      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29565      * @param {Boolean} state (optional) Force a particular state
29566      */
29567     toggle : function(state){
29568         state = state === undefined ? !this.pressed : state;
29569         if(state != this.pressed){
29570             if(state){
29571                 this.el.addClass("x-btn-pressed");
29572                 this.pressed = true;
29573                 this.fireEvent("toggle", this, true);
29574             }else{
29575                 this.el.removeClass("x-btn-pressed");
29576                 this.pressed = false;
29577                 this.fireEvent("toggle", this, false);
29578             }
29579             if(this.toggleHandler){
29580                 this.toggleHandler.call(this.scope || this, this, state);
29581             }
29582         }
29583     },
29584     
29585     /**
29586      * Focus the button
29587      */
29588     focus : function(){
29589         this.el.child('button:first').focus();
29590     },
29591     
29592     /**
29593      * Disable this button
29594      */
29595     disable : function(){
29596         if(this.el){
29597             this.el.addClass("x-btn-disabled");
29598         }
29599         this.disabled = true;
29600     },
29601     
29602     /**
29603      * Enable this button
29604      */
29605     enable : function(){
29606         if(this.el){
29607             this.el.removeClass("x-btn-disabled");
29608         }
29609         this.disabled = false;
29610     },
29611
29612     /**
29613      * Convenience function for boolean enable/disable
29614      * @param {Boolean} enabled True to enable, false to disable
29615      */
29616     setDisabled : function(v){
29617         this[v !== true ? "enable" : "disable"]();
29618     },
29619
29620     // private
29621     onClick : function(e)
29622     {
29623         if(e){
29624             e.preventDefault();
29625         }
29626         if(e.button != 0){
29627             return;
29628         }
29629         if(!this.disabled){
29630             if(this.enableToggle){
29631                 this.toggle();
29632             }
29633             if(this.menu && !this.menu.isVisible()){
29634                 this.menu.show(this.el, this.menuAlign);
29635             }
29636             this.fireEvent("click", this, e);
29637             if(this.handler){
29638                 this.el.removeClass("x-btn-over");
29639                 this.handler.call(this.scope || this, this, e);
29640             }
29641         }
29642     },
29643     // private
29644     onMouseOver : function(e){
29645         if(!this.disabled){
29646             this.el.addClass("x-btn-over");
29647             this.fireEvent('mouseover', this, e);
29648         }
29649     },
29650     // private
29651     onMouseOut : function(e){
29652         if(!e.within(this.el,  true)){
29653             this.el.removeClass("x-btn-over");
29654             this.fireEvent('mouseout', this, e);
29655         }
29656     },
29657     // private
29658     onFocus : function(e){
29659         if(!this.disabled){
29660             this.el.addClass("x-btn-focus");
29661         }
29662     },
29663     // private
29664     onBlur : function(e){
29665         this.el.removeClass("x-btn-focus");
29666     },
29667     // private
29668     onMouseDown : function(e){
29669         if(!this.disabled && e.button == 0){
29670             this.el.addClass("x-btn-click");
29671             Roo.get(document).on('mouseup', this.onMouseUp, this);
29672         }
29673     },
29674     // private
29675     onMouseUp : function(e){
29676         if(e.button == 0){
29677             this.el.removeClass("x-btn-click");
29678             Roo.get(document).un('mouseup', this.onMouseUp, this);
29679         }
29680     },
29681     // private
29682     onMenuShow : function(e){
29683         this.el.addClass("x-btn-menu-active");
29684     },
29685     // private
29686     onMenuHide : function(e){
29687         this.el.removeClass("x-btn-menu-active");
29688     }   
29689 });
29690
29691 // Private utility class used by Button
29692 Roo.ButtonToggleMgr = function(){
29693    var groups = {};
29694    
29695    function toggleGroup(btn, state){
29696        if(state){
29697            var g = groups[btn.toggleGroup];
29698            for(var i = 0, l = g.length; i < l; i++){
29699                if(g[i] != btn){
29700                    g[i].toggle(false);
29701                }
29702            }
29703        }
29704    }
29705    
29706    return {
29707        register : function(btn){
29708            if(!btn.toggleGroup){
29709                return;
29710            }
29711            var g = groups[btn.toggleGroup];
29712            if(!g){
29713                g = groups[btn.toggleGroup] = [];
29714            }
29715            g.push(btn);
29716            btn.on("toggle", toggleGroup);
29717        },
29718        
29719        unregister : function(btn){
29720            if(!btn.toggleGroup){
29721                return;
29722            }
29723            var g = groups[btn.toggleGroup];
29724            if(g){
29725                g.remove(btn);
29726                btn.un("toggle", toggleGroup);
29727            }
29728        }
29729    };
29730 }();/*
29731  * Based on:
29732  * Ext JS Library 1.1.1
29733  * Copyright(c) 2006-2007, Ext JS, LLC.
29734  *
29735  * Originally Released Under LGPL - original licence link has changed is not relivant.
29736  *
29737  * Fork - LGPL
29738  * <script type="text/javascript">
29739  */
29740  
29741 /**
29742  * @class Roo.SplitButton
29743  * @extends Roo.Button
29744  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29745  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29746  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29747  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29748  * @cfg {String} arrowTooltip The title attribute of the arrow
29749  * @constructor
29750  * Create a new menu button
29751  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29752  * @param {Object} config The config object
29753  */
29754 Roo.SplitButton = function(renderTo, config){
29755     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29756     /**
29757      * @event arrowclick
29758      * Fires when this button's arrow is clicked
29759      * @param {SplitButton} this
29760      * @param {EventObject} e The click event
29761      */
29762     this.addEvents({"arrowclick":true});
29763 };
29764
29765 Roo.extend(Roo.SplitButton, Roo.Button, {
29766     render : function(renderTo){
29767         // this is one sweet looking template!
29768         var tpl = new Roo.Template(
29769             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29770             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29771             '<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>',
29772             "</tbody></table></td><td>",
29773             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29774             '<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>',
29775             "</tbody></table></td></tr></table>"
29776         );
29777         var btn = tpl.append(renderTo, [this.text, this.type], true);
29778         var btnEl = btn.child("button");
29779         if(this.cls){
29780             btn.addClass(this.cls);
29781         }
29782         if(this.icon){
29783             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29784         }
29785         if(this.iconCls){
29786             btnEl.addClass(this.iconCls);
29787             if(!this.cls){
29788                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29789             }
29790         }
29791         this.el = btn;
29792         if(this.handleMouseEvents){
29793             btn.on("mouseover", this.onMouseOver, this);
29794             btn.on("mouseout", this.onMouseOut, this);
29795             btn.on("mousedown", this.onMouseDown, this);
29796             btn.on("mouseup", this.onMouseUp, this);
29797         }
29798         btn.on(this.clickEvent, this.onClick, this);
29799         if(this.tooltip){
29800             if(typeof this.tooltip == 'object'){
29801                 Roo.QuickTips.tips(Roo.apply({
29802                       target: btnEl.id
29803                 }, this.tooltip));
29804             } else {
29805                 btnEl.dom[this.tooltipType] = this.tooltip;
29806             }
29807         }
29808         if(this.arrowTooltip){
29809             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29810         }
29811         if(this.hidden){
29812             this.hide();
29813         }
29814         if(this.disabled){
29815             this.disable();
29816         }
29817         if(this.pressed){
29818             this.el.addClass("x-btn-pressed");
29819         }
29820         if(Roo.isIE && !Roo.isIE7){
29821             this.autoWidth.defer(1, this);
29822         }else{
29823             this.autoWidth();
29824         }
29825         if(this.menu){
29826             this.menu.on("show", this.onMenuShow, this);
29827             this.menu.on("hide", this.onMenuHide, this);
29828         }
29829         this.fireEvent('render', this);
29830     },
29831
29832     // private
29833     autoWidth : function(){
29834         if(this.el){
29835             var tbl = this.el.child("table:first");
29836             var tbl2 = this.el.child("table:last");
29837             this.el.setWidth("auto");
29838             tbl.setWidth("auto");
29839             if(Roo.isIE7 && Roo.isStrict){
29840                 var ib = this.el.child('button:first');
29841                 if(ib && ib.getWidth() > 20){
29842                     ib.clip();
29843                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29844                 }
29845             }
29846             if(this.minWidth){
29847                 if(this.hidden){
29848                     this.el.beginMeasure();
29849                 }
29850                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29851                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29852                 }
29853                 if(this.hidden){
29854                     this.el.endMeasure();
29855                 }
29856             }
29857             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
29858         } 
29859     },
29860     /**
29861      * Sets this button's click handler
29862      * @param {Function} handler The function to call when the button is clicked
29863      * @param {Object} scope (optional) Scope for the function passed above
29864      */
29865     setHandler : function(handler, scope){
29866         this.handler = handler;
29867         this.scope = scope;  
29868     },
29869     
29870     /**
29871      * Sets this button's arrow click handler
29872      * @param {Function} handler The function to call when the arrow is clicked
29873      * @param {Object} scope (optional) Scope for the function passed above
29874      */
29875     setArrowHandler : function(handler, scope){
29876         this.arrowHandler = handler;
29877         this.scope = scope;  
29878     },
29879     
29880     /**
29881      * Focus the button
29882      */
29883     focus : function(){
29884         if(this.el){
29885             this.el.child("button:first").focus();
29886         }
29887     },
29888
29889     // private
29890     onClick : function(e){
29891         e.preventDefault();
29892         if(!this.disabled){
29893             if(e.getTarget(".x-btn-menu-arrow-wrap")){
29894                 if(this.menu && !this.menu.isVisible()){
29895                     this.menu.show(this.el, this.menuAlign);
29896                 }
29897                 this.fireEvent("arrowclick", this, e);
29898                 if(this.arrowHandler){
29899                     this.arrowHandler.call(this.scope || this, this, e);
29900                 }
29901             }else{
29902                 this.fireEvent("click", this, e);
29903                 if(this.handler){
29904                     this.handler.call(this.scope || this, this, e);
29905                 }
29906             }
29907         }
29908     },
29909     // private
29910     onMouseDown : function(e){
29911         if(!this.disabled){
29912             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
29913         }
29914     },
29915     // private
29916     onMouseUp : function(e){
29917         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
29918     }   
29919 });
29920
29921
29922 // backwards compat
29923 Roo.MenuButton = Roo.SplitButton;/*
29924  * Based on:
29925  * Ext JS Library 1.1.1
29926  * Copyright(c) 2006-2007, Ext JS, LLC.
29927  *
29928  * Originally Released Under LGPL - original licence link has changed is not relivant.
29929  *
29930  * Fork - LGPL
29931  * <script type="text/javascript">
29932  */
29933
29934 /**
29935  * @class Roo.Toolbar
29936  * Basic Toolbar class.
29937  * @constructor
29938  * Creates a new Toolbar
29939  * @param {Object} container The config object
29940  */ 
29941 Roo.Toolbar = function(container, buttons, config)
29942 {
29943     /// old consturctor format still supported..
29944     if(container instanceof Array){ // omit the container for later rendering
29945         buttons = container;
29946         config = buttons;
29947         container = null;
29948     }
29949     if (typeof(container) == 'object' && container.xtype) {
29950         config = container;
29951         container = config.container;
29952         buttons = config.buttons || []; // not really - use items!!
29953     }
29954     var xitems = [];
29955     if (config && config.items) {
29956         xitems = config.items;
29957         delete config.items;
29958     }
29959     Roo.apply(this, config);
29960     this.buttons = buttons;
29961     
29962     if(container){
29963         this.render(container);
29964     }
29965     this.xitems = xitems;
29966     Roo.each(xitems, function(b) {
29967         this.add(b);
29968     }, this);
29969     
29970 };
29971
29972 Roo.Toolbar.prototype = {
29973     /**
29974      * @cfg {Array} items
29975      * array of button configs or elements to add (will be converted to a MixedCollection)
29976      */
29977     
29978     /**
29979      * @cfg {String/HTMLElement/Element} container
29980      * The id or element that will contain the toolbar
29981      */
29982     // private
29983     render : function(ct){
29984         this.el = Roo.get(ct);
29985         if(this.cls){
29986             this.el.addClass(this.cls);
29987         }
29988         // using a table allows for vertical alignment
29989         // 100% width is needed by Safari...
29990         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
29991         this.tr = this.el.child("tr", true);
29992         var autoId = 0;
29993         this.items = new Roo.util.MixedCollection(false, function(o){
29994             return o.id || ("item" + (++autoId));
29995         });
29996         if(this.buttons){
29997             this.add.apply(this, this.buttons);
29998             delete this.buttons;
29999         }
30000     },
30001
30002     /**
30003      * Adds element(s) to the toolbar -- this function takes a variable number of 
30004      * arguments of mixed type and adds them to the toolbar.
30005      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30006      * <ul>
30007      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30008      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30009      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30010      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30011      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30012      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30013      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30014      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30015      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30016      * </ul>
30017      * @param {Mixed} arg2
30018      * @param {Mixed} etc.
30019      */
30020     add : function(){
30021         var a = arguments, l = a.length;
30022         for(var i = 0; i < l; i++){
30023             this._add(a[i]);
30024         }
30025     },
30026     // private..
30027     _add : function(el) {
30028         
30029         if (el.xtype) {
30030             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30031         }
30032         
30033         if (el.applyTo){ // some kind of form field
30034             return this.addField(el);
30035         } 
30036         if (el.render){ // some kind of Toolbar.Item
30037             return this.addItem(el);
30038         }
30039         if (typeof el == "string"){ // string
30040             if(el == "separator" || el == "-"){
30041                 return this.addSeparator();
30042             }
30043             if (el == " "){
30044                 return this.addSpacer();
30045             }
30046             if(el == "->"){
30047                 return this.addFill();
30048             }
30049             return this.addText(el);
30050             
30051         }
30052         if(el.tagName){ // element
30053             return this.addElement(el);
30054         }
30055         if(typeof el == "object"){ // must be button config?
30056             return this.addButton(el);
30057         }
30058         // and now what?!?!
30059         return false;
30060         
30061     },
30062     
30063     /**
30064      * Add an Xtype element
30065      * @param {Object} xtype Xtype Object
30066      * @return {Object} created Object
30067      */
30068     addxtype : function(e){
30069         return this.add(e);  
30070     },
30071     
30072     /**
30073      * Returns the Element for this toolbar.
30074      * @return {Roo.Element}
30075      */
30076     getEl : function(){
30077         return this.el;  
30078     },
30079     
30080     /**
30081      * Adds a separator
30082      * @return {Roo.Toolbar.Item} The separator item
30083      */
30084     addSeparator : function(){
30085         return this.addItem(new Roo.Toolbar.Separator());
30086     },
30087
30088     /**
30089      * Adds a spacer element
30090      * @return {Roo.Toolbar.Spacer} The spacer item
30091      */
30092     addSpacer : function(){
30093         return this.addItem(new Roo.Toolbar.Spacer());
30094     },
30095
30096     /**
30097      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30098      * @return {Roo.Toolbar.Fill} The fill item
30099      */
30100     addFill : function(){
30101         return this.addItem(new Roo.Toolbar.Fill());
30102     },
30103
30104     /**
30105      * Adds any standard HTML element to the toolbar
30106      * @param {String/HTMLElement/Element} el The element or id of the element to add
30107      * @return {Roo.Toolbar.Item} The element's item
30108      */
30109     addElement : function(el){
30110         return this.addItem(new Roo.Toolbar.Item(el));
30111     },
30112     /**
30113      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30114      * @type Roo.util.MixedCollection  
30115      */
30116     items : false,
30117      
30118     /**
30119      * Adds any Toolbar.Item or subclass
30120      * @param {Roo.Toolbar.Item} item
30121      * @return {Roo.Toolbar.Item} The item
30122      */
30123     addItem : function(item){
30124         var td = this.nextBlock();
30125         item.render(td);
30126         this.items.add(item);
30127         return item;
30128     },
30129     
30130     /**
30131      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30132      * @param {Object/Array} config A button config or array of configs
30133      * @return {Roo.Toolbar.Button/Array}
30134      */
30135     addButton : function(config){
30136         if(config instanceof Array){
30137             var buttons = [];
30138             for(var i = 0, len = config.length; i < len; i++) {
30139                 buttons.push(this.addButton(config[i]));
30140             }
30141             return buttons;
30142         }
30143         var b = config;
30144         if(!(config instanceof Roo.Toolbar.Button)){
30145             b = config.split ?
30146                 new Roo.Toolbar.SplitButton(config) :
30147                 new Roo.Toolbar.Button(config);
30148         }
30149         var td = this.nextBlock();
30150         b.render(td);
30151         this.items.add(b);
30152         return b;
30153     },
30154     
30155     /**
30156      * Adds text to the toolbar
30157      * @param {String} text The text to add
30158      * @return {Roo.Toolbar.Item} The element's item
30159      */
30160     addText : function(text){
30161         return this.addItem(new Roo.Toolbar.TextItem(text));
30162     },
30163     
30164     /**
30165      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30166      * @param {Number} index The index where the item is to be inserted
30167      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30168      * @return {Roo.Toolbar.Button/Item}
30169      */
30170     insertButton : function(index, item){
30171         if(item instanceof Array){
30172             var buttons = [];
30173             for(var i = 0, len = item.length; i < len; i++) {
30174                buttons.push(this.insertButton(index + i, item[i]));
30175             }
30176             return buttons;
30177         }
30178         if (!(item instanceof Roo.Toolbar.Button)){
30179            item = new Roo.Toolbar.Button(item);
30180         }
30181         var td = document.createElement("td");
30182         this.tr.insertBefore(td, this.tr.childNodes[index]);
30183         item.render(td);
30184         this.items.insert(index, item);
30185         return item;
30186     },
30187     
30188     /**
30189      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30190      * @param {Object} config
30191      * @return {Roo.Toolbar.Item} The element's item
30192      */
30193     addDom : function(config, returnEl){
30194         var td = this.nextBlock();
30195         Roo.DomHelper.overwrite(td, config);
30196         var ti = new Roo.Toolbar.Item(td.firstChild);
30197         ti.render(td);
30198         this.items.add(ti);
30199         return ti;
30200     },
30201
30202     /**
30203      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30204      * @type Roo.util.MixedCollection  
30205      */
30206     fields : false,
30207     
30208     /**
30209      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30210      * Note: the field should not have been rendered yet. For a field that has already been
30211      * rendered, use {@link #addElement}.
30212      * @param {Roo.form.Field} field
30213      * @return {Roo.ToolbarItem}
30214      */
30215      
30216       
30217     addField : function(field) {
30218         if (!this.fields) {
30219             var autoId = 0;
30220             this.fields = new Roo.util.MixedCollection(false, function(o){
30221                 return o.id || ("item" + (++autoId));
30222             });
30223
30224         }
30225         
30226         var td = this.nextBlock();
30227         field.render(td);
30228         var ti = new Roo.Toolbar.Item(td.firstChild);
30229         ti.render(td);
30230         this.items.add(ti);
30231         this.fields.add(field);
30232         return ti;
30233     },
30234     /**
30235      * Hide the toolbar
30236      * @method hide
30237      */
30238      
30239       
30240     hide : function()
30241     {
30242         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30243         this.el.child('div').hide();
30244     },
30245     /**
30246      * Show the toolbar
30247      * @method show
30248      */
30249     show : function()
30250     {
30251         this.el.child('div').show();
30252     },
30253       
30254     // private
30255     nextBlock : function(){
30256         var td = document.createElement("td");
30257         this.tr.appendChild(td);
30258         return td;
30259     },
30260
30261     // private
30262     destroy : function(){
30263         if(this.items){ // rendered?
30264             Roo.destroy.apply(Roo, this.items.items);
30265         }
30266         if(this.fields){ // rendered?
30267             Roo.destroy.apply(Roo, this.fields.items);
30268         }
30269         Roo.Element.uncache(this.el, this.tr);
30270     }
30271 };
30272
30273 /**
30274  * @class Roo.Toolbar.Item
30275  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30276  * @constructor
30277  * Creates a new Item
30278  * @param {HTMLElement} el 
30279  */
30280 Roo.Toolbar.Item = function(el){
30281     var cfg = {};
30282     if (typeof (el.xtype) != 'undefined') {
30283         cfg = el;
30284         el = cfg.el;
30285     }
30286     
30287     this.el = Roo.getDom(el);
30288     this.id = Roo.id(this.el);
30289     this.hidden = false;
30290     
30291     this.addEvents({
30292          /**
30293              * @event render
30294              * Fires when the button is rendered
30295              * @param {Button} this
30296              */
30297         'render': true
30298     });
30299     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30300 };
30301 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30302 //Roo.Toolbar.Item.prototype = {
30303     
30304     /**
30305      * Get this item's HTML Element
30306      * @return {HTMLElement}
30307      */
30308     getEl : function(){
30309        return this.el;  
30310     },
30311
30312     // private
30313     render : function(td){
30314         
30315          this.td = td;
30316         td.appendChild(this.el);
30317         
30318         this.fireEvent('render', this);
30319     },
30320     
30321     /**
30322      * Removes and destroys this item.
30323      */
30324     destroy : function(){
30325         this.td.parentNode.removeChild(this.td);
30326     },
30327     
30328     /**
30329      * Shows this item.
30330      */
30331     show: function(){
30332         this.hidden = false;
30333         this.td.style.display = "";
30334     },
30335     
30336     /**
30337      * Hides this item.
30338      */
30339     hide: function(){
30340         this.hidden = true;
30341         this.td.style.display = "none";
30342     },
30343     
30344     /**
30345      * Convenience function for boolean show/hide.
30346      * @param {Boolean} visible true to show/false to hide
30347      */
30348     setVisible: function(visible){
30349         if(visible) {
30350             this.show();
30351         }else{
30352             this.hide();
30353         }
30354     },
30355     
30356     /**
30357      * Try to focus this item.
30358      */
30359     focus : function(){
30360         Roo.fly(this.el).focus();
30361     },
30362     
30363     /**
30364      * Disables this item.
30365      */
30366     disable : function(){
30367         Roo.fly(this.td).addClass("x-item-disabled");
30368         this.disabled = true;
30369         this.el.disabled = true;
30370     },
30371     
30372     /**
30373      * Enables this item.
30374      */
30375     enable : function(){
30376         Roo.fly(this.td).removeClass("x-item-disabled");
30377         this.disabled = false;
30378         this.el.disabled = false;
30379     }
30380 });
30381
30382
30383 /**
30384  * @class Roo.Toolbar.Separator
30385  * @extends Roo.Toolbar.Item
30386  * A simple toolbar separator class
30387  * @constructor
30388  * Creates a new Separator
30389  */
30390 Roo.Toolbar.Separator = function(cfg){
30391     
30392     var s = document.createElement("span");
30393     s.className = "ytb-sep";
30394     if (cfg) {
30395         cfg.el = s;
30396     }
30397     
30398     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30399 };
30400 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30401     enable:Roo.emptyFn,
30402     disable:Roo.emptyFn,
30403     focus:Roo.emptyFn
30404 });
30405
30406 /**
30407  * @class Roo.Toolbar.Spacer
30408  * @extends Roo.Toolbar.Item
30409  * A simple element that adds extra horizontal space to a toolbar.
30410  * @constructor
30411  * Creates a new Spacer
30412  */
30413 Roo.Toolbar.Spacer = function(cfg){
30414     var s = document.createElement("div");
30415     s.className = "ytb-spacer";
30416     if (cfg) {
30417         cfg.el = s;
30418     }
30419     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30420 };
30421 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30422     enable:Roo.emptyFn,
30423     disable:Roo.emptyFn,
30424     focus:Roo.emptyFn
30425 });
30426
30427 /**
30428  * @class Roo.Toolbar.Fill
30429  * @extends Roo.Toolbar.Spacer
30430  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30431  * @constructor
30432  * Creates a new Spacer
30433  */
30434 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30435     // private
30436     render : function(td){
30437         td.style.width = '100%';
30438         Roo.Toolbar.Fill.superclass.render.call(this, td);
30439     }
30440 });
30441
30442 /**
30443  * @class Roo.Toolbar.TextItem
30444  * @extends Roo.Toolbar.Item
30445  * A simple class that renders text directly into a toolbar.
30446  * @constructor
30447  * Creates a new TextItem
30448  * @param {String} text
30449  */
30450 Roo.Toolbar.TextItem = function(cfg){
30451     var  text = cfg || "";
30452     if (typeof(cfg) == 'object') {
30453         text = cfg.text || "";
30454     }  else {
30455         cfg = null;
30456     }
30457     var s = document.createElement("span");
30458     s.className = "ytb-text";
30459     s.innerHTML = text;
30460     if (cfg) {
30461         cfg.el  = s;
30462     }
30463     
30464     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30465 };
30466 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30467     
30468      
30469     enable:Roo.emptyFn,
30470     disable:Roo.emptyFn,
30471     focus:Roo.emptyFn
30472 });
30473
30474 /**
30475  * @class Roo.Toolbar.Button
30476  * @extends Roo.Button
30477  * A button that renders into a toolbar.
30478  * @constructor
30479  * Creates a new Button
30480  * @param {Object} config A standard {@link Roo.Button} config object
30481  */
30482 Roo.Toolbar.Button = function(config){
30483     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30484 };
30485 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30486     render : function(td){
30487         this.td = td;
30488         Roo.Toolbar.Button.superclass.render.call(this, td);
30489     },
30490     
30491     /**
30492      * Removes and destroys this button
30493      */
30494     destroy : function(){
30495         Roo.Toolbar.Button.superclass.destroy.call(this);
30496         this.td.parentNode.removeChild(this.td);
30497     },
30498     
30499     /**
30500      * Shows this button
30501      */
30502     show: function(){
30503         this.hidden = false;
30504         this.td.style.display = "";
30505     },
30506     
30507     /**
30508      * Hides this button
30509      */
30510     hide: function(){
30511         this.hidden = true;
30512         this.td.style.display = "none";
30513     },
30514
30515     /**
30516      * Disables this item
30517      */
30518     disable : function(){
30519         Roo.fly(this.td).addClass("x-item-disabled");
30520         this.disabled = true;
30521     },
30522
30523     /**
30524      * Enables this item
30525      */
30526     enable : function(){
30527         Roo.fly(this.td).removeClass("x-item-disabled");
30528         this.disabled = false;
30529     }
30530 });
30531 // backwards compat
30532 Roo.ToolbarButton = Roo.Toolbar.Button;
30533
30534 /**
30535  * @class Roo.Toolbar.SplitButton
30536  * @extends Roo.SplitButton
30537  * A menu button that renders into a toolbar.
30538  * @constructor
30539  * Creates a new SplitButton
30540  * @param {Object} config A standard {@link Roo.SplitButton} config object
30541  */
30542 Roo.Toolbar.SplitButton = function(config){
30543     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30544 };
30545 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30546     render : function(td){
30547         this.td = td;
30548         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30549     },
30550     
30551     /**
30552      * Removes and destroys this button
30553      */
30554     destroy : function(){
30555         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30556         this.td.parentNode.removeChild(this.td);
30557     },
30558     
30559     /**
30560      * Shows this button
30561      */
30562     show: function(){
30563         this.hidden = false;
30564         this.td.style.display = "";
30565     },
30566     
30567     /**
30568      * Hides this button
30569      */
30570     hide: function(){
30571         this.hidden = true;
30572         this.td.style.display = "none";
30573     }
30574 });
30575
30576 // backwards compat
30577 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30578  * Based on:
30579  * Ext JS Library 1.1.1
30580  * Copyright(c) 2006-2007, Ext JS, LLC.
30581  *
30582  * Originally Released Under LGPL - original licence link has changed is not relivant.
30583  *
30584  * Fork - LGPL
30585  * <script type="text/javascript">
30586  */
30587  
30588 /**
30589  * @class Roo.PagingToolbar
30590  * @extends Roo.Toolbar
30591  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30592  * @constructor
30593  * Create a new PagingToolbar
30594  * @param {Object} config The config object
30595  */
30596 Roo.PagingToolbar = function(el, ds, config)
30597 {
30598     // old args format still supported... - xtype is prefered..
30599     if (typeof(el) == 'object' && el.xtype) {
30600         // created from xtype...
30601         config = el;
30602         ds = el.dataSource;
30603         el = config.container;
30604     }
30605     var items = [];
30606     if (config.items) {
30607         items = config.items;
30608         config.items = [];
30609     }
30610     
30611     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30612     this.ds = ds;
30613     this.cursor = 0;
30614     this.renderButtons(this.el);
30615     this.bind(ds);
30616     
30617     // supprot items array.
30618    
30619     Roo.each(items, function(e) {
30620         this.add(Roo.factory(e));
30621     },this);
30622     
30623 };
30624
30625 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30626     /**
30627      * @cfg {Roo.data.Store} dataSource
30628      * The underlying data store providing the paged data
30629      */
30630     /**
30631      * @cfg {String/HTMLElement/Element} container
30632      * container The id or element that will contain the toolbar
30633      */
30634     /**
30635      * @cfg {Boolean} displayInfo
30636      * True to display the displayMsg (defaults to false)
30637      */
30638     /**
30639      * @cfg {Number} pageSize
30640      * The number of records to display per page (defaults to 20)
30641      */
30642     pageSize: 20,
30643     /**
30644      * @cfg {String} displayMsg
30645      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30646      */
30647     displayMsg : 'Displaying {0} - {1} of {2}',
30648     /**
30649      * @cfg {String} emptyMsg
30650      * The message to display when no records are found (defaults to "No data to display")
30651      */
30652     emptyMsg : 'No data to display',
30653     /**
30654      * Customizable piece of the default paging text (defaults to "Page")
30655      * @type String
30656      */
30657     beforePageText : "Page",
30658     /**
30659      * Customizable piece of the default paging text (defaults to "of %0")
30660      * @type String
30661      */
30662     afterPageText : "of {0}",
30663     /**
30664      * Customizable piece of the default paging text (defaults to "First Page")
30665      * @type String
30666      */
30667     firstText : "First Page",
30668     /**
30669      * Customizable piece of the default paging text (defaults to "Previous Page")
30670      * @type String
30671      */
30672     prevText : "Previous Page",
30673     /**
30674      * Customizable piece of the default paging text (defaults to "Next Page")
30675      * @type String
30676      */
30677     nextText : "Next Page",
30678     /**
30679      * Customizable piece of the default paging text (defaults to "Last Page")
30680      * @type String
30681      */
30682     lastText : "Last Page",
30683     /**
30684      * Customizable piece of the default paging text (defaults to "Refresh")
30685      * @type String
30686      */
30687     refreshText : "Refresh",
30688
30689     // private
30690     renderButtons : function(el){
30691         Roo.PagingToolbar.superclass.render.call(this, el);
30692         this.first = this.addButton({
30693             tooltip: this.firstText,
30694             cls: "x-btn-icon x-grid-page-first",
30695             disabled: true,
30696             handler: this.onClick.createDelegate(this, ["first"])
30697         });
30698         this.prev = this.addButton({
30699             tooltip: this.prevText,
30700             cls: "x-btn-icon x-grid-page-prev",
30701             disabled: true,
30702             handler: this.onClick.createDelegate(this, ["prev"])
30703         });
30704         //this.addSeparator();
30705         this.add(this.beforePageText);
30706         this.field = Roo.get(this.addDom({
30707            tag: "input",
30708            type: "text",
30709            size: "3",
30710            value: "1",
30711            cls: "x-grid-page-number"
30712         }).el);
30713         this.field.on("keydown", this.onPagingKeydown, this);
30714         this.field.on("focus", function(){this.dom.select();});
30715         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30716         this.field.setHeight(18);
30717         //this.addSeparator();
30718         this.next = this.addButton({
30719             tooltip: this.nextText,
30720             cls: "x-btn-icon x-grid-page-next",
30721             disabled: true,
30722             handler: this.onClick.createDelegate(this, ["next"])
30723         });
30724         this.last = this.addButton({
30725             tooltip: this.lastText,
30726             cls: "x-btn-icon x-grid-page-last",
30727             disabled: true,
30728             handler: this.onClick.createDelegate(this, ["last"])
30729         });
30730         //this.addSeparator();
30731         this.loading = this.addButton({
30732             tooltip: this.refreshText,
30733             cls: "x-btn-icon x-grid-loading",
30734             handler: this.onClick.createDelegate(this, ["refresh"])
30735         });
30736
30737         if(this.displayInfo){
30738             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30739         }
30740     },
30741
30742     // private
30743     updateInfo : function(){
30744         if(this.displayEl){
30745             var count = this.ds.getCount();
30746             var msg = count == 0 ?
30747                 this.emptyMsg :
30748                 String.format(
30749                     this.displayMsg,
30750                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30751                 );
30752             this.displayEl.update(msg);
30753         }
30754     },
30755
30756     // private
30757     onLoad : function(ds, r, o){
30758        this.cursor = o.params ? o.params.start : 0;
30759        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30760
30761        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30762        this.field.dom.value = ap;
30763        this.first.setDisabled(ap == 1);
30764        this.prev.setDisabled(ap == 1);
30765        this.next.setDisabled(ap == ps);
30766        this.last.setDisabled(ap == ps);
30767        this.loading.enable();
30768        this.updateInfo();
30769     },
30770
30771     // private
30772     getPageData : function(){
30773         var total = this.ds.getTotalCount();
30774         return {
30775             total : total,
30776             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30777             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30778         };
30779     },
30780
30781     // private
30782     onLoadError : function(){
30783         this.loading.enable();
30784     },
30785
30786     // private
30787     onPagingKeydown : function(e){
30788         var k = e.getKey();
30789         var d = this.getPageData();
30790         if(k == e.RETURN){
30791             var v = this.field.dom.value, pageNum;
30792             if(!v || isNaN(pageNum = parseInt(v, 10))){
30793                 this.field.dom.value = d.activePage;
30794                 return;
30795             }
30796             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30797             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30798             e.stopEvent();
30799         }
30800         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))
30801         {
30802           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30803           this.field.dom.value = pageNum;
30804           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30805           e.stopEvent();
30806         }
30807         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30808         {
30809           var v = this.field.dom.value, pageNum; 
30810           var increment = (e.shiftKey) ? 10 : 1;
30811           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30812             increment *= -1;
30813           }
30814           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30815             this.field.dom.value = d.activePage;
30816             return;
30817           }
30818           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30819           {
30820             this.field.dom.value = parseInt(v, 10) + increment;
30821             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30822             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30823           }
30824           e.stopEvent();
30825         }
30826     },
30827
30828     // private
30829     beforeLoad : function(){
30830         if(this.loading){
30831             this.loading.disable();
30832         }
30833     },
30834
30835     // private
30836     onClick : function(which){
30837         var ds = this.ds;
30838         switch(which){
30839             case "first":
30840                 ds.load({params:{start: 0, limit: this.pageSize}});
30841             break;
30842             case "prev":
30843                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30844             break;
30845             case "next":
30846                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30847             break;
30848             case "last":
30849                 var total = ds.getTotalCount();
30850                 var extra = total % this.pageSize;
30851                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30852                 ds.load({params:{start: lastStart, limit: this.pageSize}});
30853             break;
30854             case "refresh":
30855                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
30856             break;
30857         }
30858     },
30859
30860     /**
30861      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
30862      * @param {Roo.data.Store} store The data store to unbind
30863      */
30864     unbind : function(ds){
30865         ds.un("beforeload", this.beforeLoad, this);
30866         ds.un("load", this.onLoad, this);
30867         ds.un("loadexception", this.onLoadError, this);
30868         ds.un("remove", this.updateInfo, this);
30869         ds.un("add", this.updateInfo, this);
30870         this.ds = undefined;
30871     },
30872
30873     /**
30874      * Binds the paging toolbar to the specified {@link Roo.data.Store}
30875      * @param {Roo.data.Store} store The data store to bind
30876      */
30877     bind : function(ds){
30878         ds.on("beforeload", this.beforeLoad, this);
30879         ds.on("load", this.onLoad, this);
30880         ds.on("loadexception", this.onLoadError, this);
30881         ds.on("remove", this.updateInfo, this);
30882         ds.on("add", this.updateInfo, this);
30883         this.ds = ds;
30884     }
30885 });/*
30886  * Based on:
30887  * Ext JS Library 1.1.1
30888  * Copyright(c) 2006-2007, Ext JS, LLC.
30889  *
30890  * Originally Released Under LGPL - original licence link has changed is not relivant.
30891  *
30892  * Fork - LGPL
30893  * <script type="text/javascript">
30894  */
30895
30896 /**
30897  * @class Roo.Resizable
30898  * @extends Roo.util.Observable
30899  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
30900  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
30901  * 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
30902  * the element will be wrapped for you automatically.</p>
30903  * <p>Here is the list of valid resize handles:</p>
30904  * <pre>
30905 Value   Description
30906 ------  -------------------
30907  'n'     north
30908  's'     south
30909  'e'     east
30910  'w'     west
30911  'nw'    northwest
30912  'sw'    southwest
30913  'se'    southeast
30914  'ne'    northeast
30915  'hd'    horizontal drag
30916  'all'   all
30917 </pre>
30918  * <p>Here's an example showing the creation of a typical Resizable:</p>
30919  * <pre><code>
30920 var resizer = new Roo.Resizable("element-id", {
30921     handles: 'all',
30922     minWidth: 200,
30923     minHeight: 100,
30924     maxWidth: 500,
30925     maxHeight: 400,
30926     pinned: true
30927 });
30928 resizer.on("resize", myHandler);
30929 </code></pre>
30930  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
30931  * resizer.east.setDisplayed(false);</p>
30932  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
30933  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
30934  * resize operation's new size (defaults to [0, 0])
30935  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
30936  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
30937  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
30938  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
30939  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
30940  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
30941  * @cfg {Number} width The width of the element in pixels (defaults to null)
30942  * @cfg {Number} height The height of the element in pixels (defaults to null)
30943  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
30944  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
30945  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
30946  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
30947  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
30948  * in favor of the handles config option (defaults to false)
30949  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
30950  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
30951  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
30952  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
30953  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
30954  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
30955  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
30956  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
30957  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
30958  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
30959  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
30960  * @constructor
30961  * Create a new resizable component
30962  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
30963  * @param {Object} config configuration options
30964   */
30965 Roo.Resizable = function(el, config)
30966 {
30967     this.el = Roo.get(el);
30968
30969     if(config && config.wrap){
30970         config.resizeChild = this.el;
30971         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
30972         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
30973         this.el.setStyle("overflow", "hidden");
30974         this.el.setPositioning(config.resizeChild.getPositioning());
30975         config.resizeChild.clearPositioning();
30976         if(!config.width || !config.height){
30977             var csize = config.resizeChild.getSize();
30978             this.el.setSize(csize.width, csize.height);
30979         }
30980         if(config.pinned && !config.adjustments){
30981             config.adjustments = "auto";
30982         }
30983     }
30984
30985     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
30986     this.proxy.unselectable();
30987     this.proxy.enableDisplayMode('block');
30988
30989     Roo.apply(this, config);
30990
30991     if(this.pinned){
30992         this.disableTrackOver = true;
30993         this.el.addClass("x-resizable-pinned");
30994     }
30995     // if the element isn't positioned, make it relative
30996     var position = this.el.getStyle("position");
30997     if(position != "absolute" && position != "fixed"){
30998         this.el.setStyle("position", "relative");
30999     }
31000     if(!this.handles){ // no handles passed, must be legacy style
31001         this.handles = 's,e,se';
31002         if(this.multiDirectional){
31003             this.handles += ',n,w';
31004         }
31005     }
31006     if(this.handles == "all"){
31007         this.handles = "n s e w ne nw se sw";
31008     }
31009     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31010     var ps = Roo.Resizable.positions;
31011     for(var i = 0, len = hs.length; i < len; i++){
31012         if(hs[i] && ps[hs[i]]){
31013             var pos = ps[hs[i]];
31014             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31015         }
31016     }
31017     // legacy
31018     this.corner = this.southeast;
31019     
31020     // updateBox = the box can move..
31021     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31022         this.updateBox = true;
31023     }
31024
31025     this.activeHandle = null;
31026
31027     if(this.resizeChild){
31028         if(typeof this.resizeChild == "boolean"){
31029             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31030         }else{
31031             this.resizeChild = Roo.get(this.resizeChild, true);
31032         }
31033     }
31034     
31035     if(this.adjustments == "auto"){
31036         var rc = this.resizeChild;
31037         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31038         if(rc && (hw || hn)){
31039             rc.position("relative");
31040             rc.setLeft(hw ? hw.el.getWidth() : 0);
31041             rc.setTop(hn ? hn.el.getHeight() : 0);
31042         }
31043         this.adjustments = [
31044             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31045             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31046         ];
31047     }
31048
31049     if(this.draggable){
31050         this.dd = this.dynamic ?
31051             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31052         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31053     }
31054
31055     // public events
31056     this.addEvents({
31057         /**
31058          * @event beforeresize
31059          * Fired before resize is allowed. Set enabled to false to cancel resize.
31060          * @param {Roo.Resizable} this
31061          * @param {Roo.EventObject} e The mousedown event
31062          */
31063         "beforeresize" : true,
31064         /**
31065          * @event resizing
31066          * Fired a resizing.
31067          * @param {Roo.Resizable} this
31068          * @param {Number} x The new x position
31069          * @param {Number} y The new y position
31070          * @param {Number} w The new w width
31071          * @param {Number} h The new h hight
31072          * @param {Roo.EventObject} e The mouseup event
31073          */
31074         "resizing" : true,
31075         /**
31076          * @event resize
31077          * Fired after a resize.
31078          * @param {Roo.Resizable} this
31079          * @param {Number} width The new width
31080          * @param {Number} height The new height
31081          * @param {Roo.EventObject} e The mouseup event
31082          */
31083         "resize" : true
31084     });
31085
31086     if(this.width !== null && this.height !== null){
31087         this.resizeTo(this.width, this.height);
31088     }else{
31089         this.updateChildSize();
31090     }
31091     if(Roo.isIE){
31092         this.el.dom.style.zoom = 1;
31093     }
31094     Roo.Resizable.superclass.constructor.call(this);
31095 };
31096
31097 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31098         resizeChild : false,
31099         adjustments : [0, 0],
31100         minWidth : 5,
31101         minHeight : 5,
31102         maxWidth : 10000,
31103         maxHeight : 10000,
31104         enabled : true,
31105         animate : false,
31106         duration : .35,
31107         dynamic : false,
31108         handles : false,
31109         multiDirectional : false,
31110         disableTrackOver : false,
31111         easing : 'easeOutStrong',
31112         widthIncrement : 0,
31113         heightIncrement : 0,
31114         pinned : false,
31115         width : null,
31116         height : null,
31117         preserveRatio : false,
31118         transparent: false,
31119         minX: 0,
31120         minY: 0,
31121         draggable: false,
31122
31123         /**
31124          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31125          */
31126         constrainTo: undefined,
31127         /**
31128          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31129          */
31130         resizeRegion: undefined,
31131
31132
31133     /**
31134      * Perform a manual resize
31135      * @param {Number} width
31136      * @param {Number} height
31137      */
31138     resizeTo : function(width, height){
31139         this.el.setSize(width, height);
31140         this.updateChildSize();
31141         this.fireEvent("resize", this, width, height, null);
31142     },
31143
31144     // private
31145     startSizing : function(e, handle){
31146         this.fireEvent("beforeresize", this, e);
31147         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31148
31149             if(!this.overlay){
31150                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31151                 this.overlay.unselectable();
31152                 this.overlay.enableDisplayMode("block");
31153                 this.overlay.on("mousemove", this.onMouseMove, this);
31154                 this.overlay.on("mouseup", this.onMouseUp, this);
31155             }
31156             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31157
31158             this.resizing = true;
31159             this.startBox = this.el.getBox();
31160             this.startPoint = e.getXY();
31161             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31162                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31163
31164             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31165             this.overlay.show();
31166
31167             if(this.constrainTo) {
31168                 var ct = Roo.get(this.constrainTo);
31169                 this.resizeRegion = ct.getRegion().adjust(
31170                     ct.getFrameWidth('t'),
31171                     ct.getFrameWidth('l'),
31172                     -ct.getFrameWidth('b'),
31173                     -ct.getFrameWidth('r')
31174                 );
31175             }
31176
31177             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31178             this.proxy.show();
31179             this.proxy.setBox(this.startBox);
31180             if(!this.dynamic){
31181                 this.proxy.setStyle('visibility', 'visible');
31182             }
31183         }
31184     },
31185
31186     // private
31187     onMouseDown : function(handle, e){
31188         if(this.enabled){
31189             e.stopEvent();
31190             this.activeHandle = handle;
31191             this.startSizing(e, handle);
31192         }
31193     },
31194
31195     // private
31196     onMouseUp : function(e){
31197         var size = this.resizeElement();
31198         this.resizing = false;
31199         this.handleOut();
31200         this.overlay.hide();
31201         this.proxy.hide();
31202         this.fireEvent("resize", this, size.width, size.height, e);
31203     },
31204
31205     // private
31206     updateChildSize : function(){
31207         
31208         if(this.resizeChild){
31209             var el = this.el;
31210             var child = this.resizeChild;
31211             var adj = this.adjustments;
31212             if(el.dom.offsetWidth){
31213                 var b = el.getSize(true);
31214                 child.setSize(b.width+adj[0], b.height+adj[1]);
31215             }
31216             // Second call here for IE
31217             // The first call enables instant resizing and
31218             // the second call corrects scroll bars if they
31219             // exist
31220             if(Roo.isIE){
31221                 setTimeout(function(){
31222                     if(el.dom.offsetWidth){
31223                         var b = el.getSize(true);
31224                         child.setSize(b.width+adj[0], b.height+adj[1]);
31225                     }
31226                 }, 10);
31227             }
31228         }
31229     },
31230
31231     // private
31232     snap : function(value, inc, min){
31233         if(!inc || !value) {
31234             return value;
31235         }
31236         var newValue = value;
31237         var m = value % inc;
31238         if(m > 0){
31239             if(m > (inc/2)){
31240                 newValue = value + (inc-m);
31241             }else{
31242                 newValue = value - m;
31243             }
31244         }
31245         return Math.max(min, newValue);
31246     },
31247
31248     // private
31249     resizeElement : function(){
31250         var box = this.proxy.getBox();
31251         if(this.updateBox){
31252             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31253         }else{
31254             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31255         }
31256         this.updateChildSize();
31257         if(!this.dynamic){
31258             this.proxy.hide();
31259         }
31260         return box;
31261     },
31262
31263     // private
31264     constrain : function(v, diff, m, mx){
31265         if(v - diff < m){
31266             diff = v - m;
31267         }else if(v - diff > mx){
31268             diff = mx - v;
31269         }
31270         return diff;
31271     },
31272
31273     // private
31274     onMouseMove : function(e){
31275         
31276         if(this.enabled){
31277             try{// try catch so if something goes wrong the user doesn't get hung
31278
31279             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31280                 return;
31281             }
31282
31283             //var curXY = this.startPoint;
31284             var curSize = this.curSize || this.startBox;
31285             var x = this.startBox.x, y = this.startBox.y;
31286             var ox = x, oy = y;
31287             var w = curSize.width, h = curSize.height;
31288             var ow = w, oh = h;
31289             var mw = this.minWidth, mh = this.minHeight;
31290             var mxw = this.maxWidth, mxh = this.maxHeight;
31291             var wi = this.widthIncrement;
31292             var hi = this.heightIncrement;
31293
31294             var eventXY = e.getXY();
31295             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31296             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31297
31298             var pos = this.activeHandle.position;
31299
31300             switch(pos){
31301                 case "east":
31302                     w += diffX;
31303                     w = Math.min(Math.max(mw, w), mxw);
31304                     break;
31305              
31306                 case "south":
31307                     h += diffY;
31308                     h = Math.min(Math.max(mh, h), mxh);
31309                     break;
31310                 case "southeast":
31311                     w += diffX;
31312                     h += diffY;
31313                     w = Math.min(Math.max(mw, w), mxw);
31314                     h = Math.min(Math.max(mh, h), mxh);
31315                     break;
31316                 case "north":
31317                     diffY = this.constrain(h, diffY, mh, mxh);
31318                     y += diffY;
31319                     h -= diffY;
31320                     break;
31321                 case "hdrag":
31322                     
31323                     if (wi) {
31324                         var adiffX = Math.abs(diffX);
31325                         var sub = (adiffX % wi); // how much 
31326                         if (sub > (wi/2)) { // far enough to snap
31327                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31328                         } else {
31329                             // remove difference.. 
31330                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31331                         }
31332                     }
31333                     x += diffX;
31334                     x = Math.max(this.minX, x);
31335                     break;
31336                 case "west":
31337                     diffX = this.constrain(w, diffX, mw, mxw);
31338                     x += diffX;
31339                     w -= diffX;
31340                     break;
31341                 case "northeast":
31342                     w += diffX;
31343                     w = Math.min(Math.max(mw, w), mxw);
31344                     diffY = this.constrain(h, diffY, mh, mxh);
31345                     y += diffY;
31346                     h -= diffY;
31347                     break;
31348                 case "northwest":
31349                     diffX = this.constrain(w, diffX, mw, mxw);
31350                     diffY = this.constrain(h, diffY, mh, mxh);
31351                     y += diffY;
31352                     h -= diffY;
31353                     x += diffX;
31354                     w -= diffX;
31355                     break;
31356                case "southwest":
31357                     diffX = this.constrain(w, diffX, mw, mxw);
31358                     h += diffY;
31359                     h = Math.min(Math.max(mh, h), mxh);
31360                     x += diffX;
31361                     w -= diffX;
31362                     break;
31363             }
31364
31365             var sw = this.snap(w, wi, mw);
31366             var sh = this.snap(h, hi, mh);
31367             if(sw != w || sh != h){
31368                 switch(pos){
31369                     case "northeast":
31370                         y -= sh - h;
31371                     break;
31372                     case "north":
31373                         y -= sh - h;
31374                         break;
31375                     case "southwest":
31376                         x -= sw - w;
31377                     break;
31378                     case "west":
31379                         x -= sw - w;
31380                         break;
31381                     case "northwest":
31382                         x -= sw - w;
31383                         y -= sh - h;
31384                     break;
31385                 }
31386                 w = sw;
31387                 h = sh;
31388             }
31389
31390             if(this.preserveRatio){
31391                 switch(pos){
31392                     case "southeast":
31393                     case "east":
31394                         h = oh * (w/ow);
31395                         h = Math.min(Math.max(mh, h), mxh);
31396                         w = ow * (h/oh);
31397                        break;
31398                     case "south":
31399                         w = ow * (h/oh);
31400                         w = Math.min(Math.max(mw, w), mxw);
31401                         h = oh * (w/ow);
31402                         break;
31403                     case "northeast":
31404                         w = ow * (h/oh);
31405                         w = Math.min(Math.max(mw, w), mxw);
31406                         h = oh * (w/ow);
31407                     break;
31408                     case "north":
31409                         var tw = w;
31410                         w = ow * (h/oh);
31411                         w = Math.min(Math.max(mw, w), mxw);
31412                         h = oh * (w/ow);
31413                         x += (tw - w) / 2;
31414                         break;
31415                     case "southwest":
31416                         h = oh * (w/ow);
31417                         h = Math.min(Math.max(mh, h), mxh);
31418                         var tw = w;
31419                         w = ow * (h/oh);
31420                         x += tw - w;
31421                         break;
31422                     case "west":
31423                         var th = h;
31424                         h = oh * (w/ow);
31425                         h = Math.min(Math.max(mh, h), mxh);
31426                         y += (th - h) / 2;
31427                         var tw = w;
31428                         w = ow * (h/oh);
31429                         x += tw - w;
31430                        break;
31431                     case "northwest":
31432                         var tw = w;
31433                         var th = h;
31434                         h = oh * (w/ow);
31435                         h = Math.min(Math.max(mh, h), mxh);
31436                         w = ow * (h/oh);
31437                         y += th - h;
31438                         x += tw - w;
31439                        break;
31440
31441                 }
31442             }
31443             if (pos == 'hdrag') {
31444                 w = ow;
31445             }
31446             this.proxy.setBounds(x, y, w, h);
31447             if(this.dynamic){
31448                 this.resizeElement();
31449             }
31450             }catch(e){}
31451         }
31452         this.fireEvent("resizing", this, x, y, w, h, e);
31453     },
31454
31455     // private
31456     handleOver : function(){
31457         if(this.enabled){
31458             this.el.addClass("x-resizable-over");
31459         }
31460     },
31461
31462     // private
31463     handleOut : function(){
31464         if(!this.resizing){
31465             this.el.removeClass("x-resizable-over");
31466         }
31467     },
31468
31469     /**
31470      * Returns the element this component is bound to.
31471      * @return {Roo.Element}
31472      */
31473     getEl : function(){
31474         return this.el;
31475     },
31476
31477     /**
31478      * Returns the resizeChild element (or null).
31479      * @return {Roo.Element}
31480      */
31481     getResizeChild : function(){
31482         return this.resizeChild;
31483     },
31484     groupHandler : function()
31485     {
31486         
31487     },
31488     /**
31489      * Destroys this resizable. If the element was wrapped and
31490      * removeEl is not true then the element remains.
31491      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31492      */
31493     destroy : function(removeEl){
31494         this.proxy.remove();
31495         if(this.overlay){
31496             this.overlay.removeAllListeners();
31497             this.overlay.remove();
31498         }
31499         var ps = Roo.Resizable.positions;
31500         for(var k in ps){
31501             if(typeof ps[k] != "function" && this[ps[k]]){
31502                 var h = this[ps[k]];
31503                 h.el.removeAllListeners();
31504                 h.el.remove();
31505             }
31506         }
31507         if(removeEl){
31508             this.el.update("");
31509             this.el.remove();
31510         }
31511     }
31512 });
31513
31514 // private
31515 // hash to map config positions to true positions
31516 Roo.Resizable.positions = {
31517     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31518     hd: "hdrag"
31519 };
31520
31521 // private
31522 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31523     if(!this.tpl){
31524         // only initialize the template if resizable is used
31525         var tpl = Roo.DomHelper.createTemplate(
31526             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31527         );
31528         tpl.compile();
31529         Roo.Resizable.Handle.prototype.tpl = tpl;
31530     }
31531     this.position = pos;
31532     this.rz = rz;
31533     // show north drag fro topdra
31534     var handlepos = pos == 'hdrag' ? 'north' : pos;
31535     
31536     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31537     if (pos == 'hdrag') {
31538         this.el.setStyle('cursor', 'pointer');
31539     }
31540     this.el.unselectable();
31541     if(transparent){
31542         this.el.setOpacity(0);
31543     }
31544     this.el.on("mousedown", this.onMouseDown, this);
31545     if(!disableTrackOver){
31546         this.el.on("mouseover", this.onMouseOver, this);
31547         this.el.on("mouseout", this.onMouseOut, this);
31548     }
31549 };
31550
31551 // private
31552 Roo.Resizable.Handle.prototype = {
31553     afterResize : function(rz){
31554         Roo.log('after?');
31555         // do nothing
31556     },
31557     // private
31558     onMouseDown : function(e){
31559         this.rz.onMouseDown(this, e);
31560     },
31561     // private
31562     onMouseOver : function(e){
31563         this.rz.handleOver(this, e);
31564     },
31565     // private
31566     onMouseOut : function(e){
31567         this.rz.handleOut(this, e);
31568     }
31569 };/*
31570  * Based on:
31571  * Ext JS Library 1.1.1
31572  * Copyright(c) 2006-2007, Ext JS, LLC.
31573  *
31574  * Originally Released Under LGPL - original licence link has changed is not relivant.
31575  *
31576  * Fork - LGPL
31577  * <script type="text/javascript">
31578  */
31579
31580 /**
31581  * @class Roo.Editor
31582  * @extends Roo.Component
31583  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31584  * @constructor
31585  * Create a new Editor
31586  * @param {Roo.form.Field} field The Field object (or descendant)
31587  * @param {Object} config The config object
31588  */
31589 Roo.Editor = function(field, config){
31590     Roo.Editor.superclass.constructor.call(this, config);
31591     this.field = field;
31592     this.addEvents({
31593         /**
31594              * @event beforestartedit
31595              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31596              * false from the handler of this event.
31597              * @param {Editor} this
31598              * @param {Roo.Element} boundEl The underlying element bound to this editor
31599              * @param {Mixed} value The field value being set
31600              */
31601         "beforestartedit" : true,
31602         /**
31603              * @event startedit
31604              * Fires when this editor is displayed
31605              * @param {Roo.Element} boundEl The underlying element bound to this editor
31606              * @param {Mixed} value The starting field value
31607              */
31608         "startedit" : true,
31609         /**
31610              * @event beforecomplete
31611              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31612              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31613              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31614              * event will not fire since no edit actually occurred.
31615              * @param {Editor} this
31616              * @param {Mixed} value The current field value
31617              * @param {Mixed} startValue The original field value
31618              */
31619         "beforecomplete" : true,
31620         /**
31621              * @event complete
31622              * Fires after editing is complete and any changed value has been written to the underlying field.
31623              * @param {Editor} this
31624              * @param {Mixed} value The current field value
31625              * @param {Mixed} startValue The original field value
31626              */
31627         "complete" : true,
31628         /**
31629          * @event specialkey
31630          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31631          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31632          * @param {Roo.form.Field} this
31633          * @param {Roo.EventObject} e The event object
31634          */
31635         "specialkey" : true
31636     });
31637 };
31638
31639 Roo.extend(Roo.Editor, Roo.Component, {
31640     /**
31641      * @cfg {Boolean/String} autosize
31642      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31643      * or "height" to adopt the height only (defaults to false)
31644      */
31645     /**
31646      * @cfg {Boolean} revertInvalid
31647      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31648      * validation fails (defaults to true)
31649      */
31650     /**
31651      * @cfg {Boolean} ignoreNoChange
31652      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31653      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31654      * will never be ignored.
31655      */
31656     /**
31657      * @cfg {Boolean} hideEl
31658      * False to keep the bound element visible while the editor is displayed (defaults to true)
31659      */
31660     /**
31661      * @cfg {Mixed} value
31662      * The data value of the underlying field (defaults to "")
31663      */
31664     value : "",
31665     /**
31666      * @cfg {String} alignment
31667      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31668      */
31669     alignment: "c-c?",
31670     /**
31671      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31672      * for bottom-right shadow (defaults to "frame")
31673      */
31674     shadow : "frame",
31675     /**
31676      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31677      */
31678     constrain : false,
31679     /**
31680      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31681      */
31682     completeOnEnter : false,
31683     /**
31684      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31685      */
31686     cancelOnEsc : false,
31687     /**
31688      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31689      */
31690     updateEl : false,
31691
31692     // private
31693     onRender : function(ct, position){
31694         this.el = new Roo.Layer({
31695             shadow: this.shadow,
31696             cls: "x-editor",
31697             parentEl : ct,
31698             shim : this.shim,
31699             shadowOffset:4,
31700             id: this.id,
31701             constrain: this.constrain
31702         });
31703         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31704         if(this.field.msgTarget != 'title'){
31705             this.field.msgTarget = 'qtip';
31706         }
31707         this.field.render(this.el);
31708         if(Roo.isGecko){
31709             this.field.el.dom.setAttribute('autocomplete', 'off');
31710         }
31711         this.field.on("specialkey", this.onSpecialKey, this);
31712         if(this.swallowKeys){
31713             this.field.el.swallowEvent(['keydown','keypress']);
31714         }
31715         this.field.show();
31716         this.field.on("blur", this.onBlur, this);
31717         if(this.field.grow){
31718             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31719         }
31720     },
31721
31722     onSpecialKey : function(field, e)
31723     {
31724         //Roo.log('editor onSpecialKey');
31725         if(this.completeOnEnter && e.getKey() == e.ENTER){
31726             e.stopEvent();
31727             this.completeEdit();
31728             return;
31729         }
31730         // do not fire special key otherwise it might hide close the editor...
31731         if(e.getKey() == e.ENTER){    
31732             return;
31733         }
31734         if(this.cancelOnEsc && e.getKey() == e.ESC){
31735             this.cancelEdit();
31736             return;
31737         } 
31738         this.fireEvent('specialkey', field, e);
31739     
31740     },
31741
31742     /**
31743      * Starts the editing process and shows the editor.
31744      * @param {String/HTMLElement/Element} el The element to edit
31745      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31746       * to the innerHTML of el.
31747      */
31748     startEdit : function(el, value){
31749         if(this.editing){
31750             this.completeEdit();
31751         }
31752         this.boundEl = Roo.get(el);
31753         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31754         if(!this.rendered){
31755             this.render(this.parentEl || document.body);
31756         }
31757         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31758             return;
31759         }
31760         this.startValue = v;
31761         this.field.setValue(v);
31762         if(this.autoSize){
31763             var sz = this.boundEl.getSize();
31764             switch(this.autoSize){
31765                 case "width":
31766                 this.setSize(sz.width,  "");
31767                 break;
31768                 case "height":
31769                 this.setSize("",  sz.height);
31770                 break;
31771                 default:
31772                 this.setSize(sz.width,  sz.height);
31773             }
31774         }
31775         this.el.alignTo(this.boundEl, this.alignment);
31776         this.editing = true;
31777         if(Roo.QuickTips){
31778             Roo.QuickTips.disable();
31779         }
31780         this.show();
31781     },
31782
31783     /**
31784      * Sets the height and width of this editor.
31785      * @param {Number} width The new width
31786      * @param {Number} height The new height
31787      */
31788     setSize : function(w, h){
31789         this.field.setSize(w, h);
31790         if(this.el){
31791             this.el.sync();
31792         }
31793     },
31794
31795     /**
31796      * Realigns the editor to the bound field based on the current alignment config value.
31797      */
31798     realign : function(){
31799         this.el.alignTo(this.boundEl, this.alignment);
31800     },
31801
31802     /**
31803      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31804      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31805      */
31806     completeEdit : function(remainVisible){
31807         if(!this.editing){
31808             return;
31809         }
31810         var v = this.getValue();
31811         if(this.revertInvalid !== false && !this.field.isValid()){
31812             v = this.startValue;
31813             this.cancelEdit(true);
31814         }
31815         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31816             this.editing = false;
31817             this.hide();
31818             return;
31819         }
31820         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31821             this.editing = false;
31822             if(this.updateEl && this.boundEl){
31823                 this.boundEl.update(v);
31824             }
31825             if(remainVisible !== true){
31826                 this.hide();
31827             }
31828             this.fireEvent("complete", this, v, this.startValue);
31829         }
31830     },
31831
31832     // private
31833     onShow : function(){
31834         this.el.show();
31835         if(this.hideEl !== false){
31836             this.boundEl.hide();
31837         }
31838         this.field.show();
31839         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31840             this.fixIEFocus = true;
31841             this.deferredFocus.defer(50, this);
31842         }else{
31843             this.field.focus();
31844         }
31845         this.fireEvent("startedit", this.boundEl, this.startValue);
31846     },
31847
31848     deferredFocus : function(){
31849         if(this.editing){
31850             this.field.focus();
31851         }
31852     },
31853
31854     /**
31855      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
31856      * reverted to the original starting value.
31857      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
31858      * cancel (defaults to false)
31859      */
31860     cancelEdit : function(remainVisible){
31861         if(this.editing){
31862             this.setValue(this.startValue);
31863             if(remainVisible !== true){
31864                 this.hide();
31865             }
31866         }
31867     },
31868
31869     // private
31870     onBlur : function(){
31871         if(this.allowBlur !== true && this.editing){
31872             this.completeEdit();
31873         }
31874     },
31875
31876     // private
31877     onHide : function(){
31878         if(this.editing){
31879             this.completeEdit();
31880             return;
31881         }
31882         this.field.blur();
31883         if(this.field.collapse){
31884             this.field.collapse();
31885         }
31886         this.el.hide();
31887         if(this.hideEl !== false){
31888             this.boundEl.show();
31889         }
31890         if(Roo.QuickTips){
31891             Roo.QuickTips.enable();
31892         }
31893     },
31894
31895     /**
31896      * Sets the data value of the editor
31897      * @param {Mixed} value Any valid value supported by the underlying field
31898      */
31899     setValue : function(v){
31900         this.field.setValue(v);
31901     },
31902
31903     /**
31904      * Gets the data value of the editor
31905      * @return {Mixed} The data value
31906      */
31907     getValue : function(){
31908         return this.field.getValue();
31909     }
31910 });/*
31911  * Based on:
31912  * Ext JS Library 1.1.1
31913  * Copyright(c) 2006-2007, Ext JS, LLC.
31914  *
31915  * Originally Released Under LGPL - original licence link has changed is not relivant.
31916  *
31917  * Fork - LGPL
31918  * <script type="text/javascript">
31919  */
31920  
31921 /**
31922  * @class Roo.BasicDialog
31923  * @extends Roo.util.Observable
31924  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
31925  * <pre><code>
31926 var dlg = new Roo.BasicDialog("my-dlg", {
31927     height: 200,
31928     width: 300,
31929     minHeight: 100,
31930     minWidth: 150,
31931     modal: true,
31932     proxyDrag: true,
31933     shadow: true
31934 });
31935 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
31936 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
31937 dlg.addButton('Cancel', dlg.hide, dlg);
31938 dlg.show();
31939 </code></pre>
31940   <b>A Dialog should always be a direct child of the body element.</b>
31941  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
31942  * @cfg {String} title Default text to display in the title bar (defaults to null)
31943  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
31944  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
31945  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
31946  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
31947  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
31948  * (defaults to null with no animation)
31949  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
31950  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
31951  * property for valid values (defaults to 'all')
31952  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
31953  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
31954  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
31955  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
31956  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
31957  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
31958  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
31959  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
31960  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
31961  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
31962  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
31963  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
31964  * draggable = true (defaults to false)
31965  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
31966  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
31967  * shadow (defaults to false)
31968  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
31969  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
31970  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
31971  * @cfg {Array} buttons Array of buttons
31972  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
31973  * @constructor
31974  * Create a new BasicDialog.
31975  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
31976  * @param {Object} config Configuration options
31977  */
31978 Roo.BasicDialog = function(el, config){
31979     this.el = Roo.get(el);
31980     var dh = Roo.DomHelper;
31981     if(!this.el && config && config.autoCreate){
31982         if(typeof config.autoCreate == "object"){
31983             if(!config.autoCreate.id){
31984                 config.autoCreate.id = el;
31985             }
31986             this.el = dh.append(document.body,
31987                         config.autoCreate, true);
31988         }else{
31989             this.el = dh.append(document.body,
31990                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
31991         }
31992     }
31993     el = this.el;
31994     el.setDisplayed(true);
31995     el.hide = this.hideAction;
31996     this.id = el.id;
31997     el.addClass("x-dlg");
31998
31999     Roo.apply(this, config);
32000
32001     this.proxy = el.createProxy("x-dlg-proxy");
32002     this.proxy.hide = this.hideAction;
32003     this.proxy.setOpacity(.5);
32004     this.proxy.hide();
32005
32006     if(config.width){
32007         el.setWidth(config.width);
32008     }
32009     if(config.height){
32010         el.setHeight(config.height);
32011     }
32012     this.size = el.getSize();
32013     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32014         this.xy = [config.x,config.y];
32015     }else{
32016         this.xy = el.getCenterXY(true);
32017     }
32018     /** The header element @type Roo.Element */
32019     this.header = el.child("> .x-dlg-hd");
32020     /** The body element @type Roo.Element */
32021     this.body = el.child("> .x-dlg-bd");
32022     /** The footer element @type Roo.Element */
32023     this.footer = el.child("> .x-dlg-ft");
32024
32025     if(!this.header){
32026         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32027     }
32028     if(!this.body){
32029         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32030     }
32031
32032     this.header.unselectable();
32033     if(this.title){
32034         this.header.update(this.title);
32035     }
32036     // this element allows the dialog to be focused for keyboard event
32037     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32038     this.focusEl.swallowEvent("click", true);
32039
32040     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32041
32042     // wrap the body and footer for special rendering
32043     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32044     if(this.footer){
32045         this.bwrap.dom.appendChild(this.footer.dom);
32046     }
32047
32048     this.bg = this.el.createChild({
32049         tag: "div", cls:"x-dlg-bg",
32050         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32051     });
32052     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32053
32054
32055     if(this.autoScroll !== false && !this.autoTabs){
32056         this.body.setStyle("overflow", "auto");
32057     }
32058
32059     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32060
32061     if(this.closable !== false){
32062         this.el.addClass("x-dlg-closable");
32063         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32064         this.close.on("click", this.closeClick, this);
32065         this.close.addClassOnOver("x-dlg-close-over");
32066     }
32067     if(this.collapsible !== false){
32068         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32069         this.collapseBtn.on("click", this.collapseClick, this);
32070         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32071         this.header.on("dblclick", this.collapseClick, this);
32072     }
32073     if(this.resizable !== false){
32074         this.el.addClass("x-dlg-resizable");
32075         this.resizer = new Roo.Resizable(el, {
32076             minWidth: this.minWidth || 80,
32077             minHeight:this.minHeight || 80,
32078             handles: this.resizeHandles || "all",
32079             pinned: true
32080         });
32081         this.resizer.on("beforeresize", this.beforeResize, this);
32082         this.resizer.on("resize", this.onResize, this);
32083     }
32084     if(this.draggable !== false){
32085         el.addClass("x-dlg-draggable");
32086         if (!this.proxyDrag) {
32087             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32088         }
32089         else {
32090             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32091         }
32092         dd.setHandleElId(this.header.id);
32093         dd.endDrag = this.endMove.createDelegate(this);
32094         dd.startDrag = this.startMove.createDelegate(this);
32095         dd.onDrag = this.onDrag.createDelegate(this);
32096         dd.scroll = false;
32097         this.dd = dd;
32098     }
32099     if(this.modal){
32100         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32101         this.mask.enableDisplayMode("block");
32102         this.mask.hide();
32103         this.el.addClass("x-dlg-modal");
32104     }
32105     if(this.shadow){
32106         this.shadow = new Roo.Shadow({
32107             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32108             offset : this.shadowOffset
32109         });
32110     }else{
32111         this.shadowOffset = 0;
32112     }
32113     if(Roo.useShims && this.shim !== false){
32114         this.shim = this.el.createShim();
32115         this.shim.hide = this.hideAction;
32116         this.shim.hide();
32117     }else{
32118         this.shim = false;
32119     }
32120     if(this.autoTabs){
32121         this.initTabs();
32122     }
32123     if (this.buttons) { 
32124         var bts= this.buttons;
32125         this.buttons = [];
32126         Roo.each(bts, function(b) {
32127             this.addButton(b);
32128         }, this);
32129     }
32130     
32131     
32132     this.addEvents({
32133         /**
32134          * @event keydown
32135          * Fires when a key is pressed
32136          * @param {Roo.BasicDialog} this
32137          * @param {Roo.EventObject} e
32138          */
32139         "keydown" : true,
32140         /**
32141          * @event move
32142          * Fires when this dialog is moved by the user.
32143          * @param {Roo.BasicDialog} this
32144          * @param {Number} x The new page X
32145          * @param {Number} y The new page Y
32146          */
32147         "move" : true,
32148         /**
32149          * @event resize
32150          * Fires when this dialog is resized by the user.
32151          * @param {Roo.BasicDialog} this
32152          * @param {Number} width The new width
32153          * @param {Number} height The new height
32154          */
32155         "resize" : true,
32156         /**
32157          * @event beforehide
32158          * Fires before this dialog is hidden.
32159          * @param {Roo.BasicDialog} this
32160          */
32161         "beforehide" : true,
32162         /**
32163          * @event hide
32164          * Fires when this dialog is hidden.
32165          * @param {Roo.BasicDialog} this
32166          */
32167         "hide" : true,
32168         /**
32169          * @event beforeshow
32170          * Fires before this dialog is shown.
32171          * @param {Roo.BasicDialog} this
32172          */
32173         "beforeshow" : true,
32174         /**
32175          * @event show
32176          * Fires when this dialog is shown.
32177          * @param {Roo.BasicDialog} this
32178          */
32179         "show" : true
32180     });
32181     el.on("keydown", this.onKeyDown, this);
32182     el.on("mousedown", this.toFront, this);
32183     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32184     this.el.hide();
32185     Roo.DialogManager.register(this);
32186     Roo.BasicDialog.superclass.constructor.call(this);
32187 };
32188
32189 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32190     shadowOffset: Roo.isIE ? 6 : 5,
32191     minHeight: 80,
32192     minWidth: 200,
32193     minButtonWidth: 75,
32194     defaultButton: null,
32195     buttonAlign: "right",
32196     tabTag: 'div',
32197     firstShow: true,
32198
32199     /**
32200      * Sets the dialog title text
32201      * @param {String} text The title text to display
32202      * @return {Roo.BasicDialog} this
32203      */
32204     setTitle : function(text){
32205         this.header.update(text);
32206         return this;
32207     },
32208
32209     // private
32210     closeClick : function(){
32211         this.hide();
32212     },
32213
32214     // private
32215     collapseClick : function(){
32216         this[this.collapsed ? "expand" : "collapse"]();
32217     },
32218
32219     /**
32220      * Collapses the dialog to its minimized state (only the title bar is visible).
32221      * Equivalent to the user clicking the collapse dialog button.
32222      */
32223     collapse : function(){
32224         if(!this.collapsed){
32225             this.collapsed = true;
32226             this.el.addClass("x-dlg-collapsed");
32227             this.restoreHeight = this.el.getHeight();
32228             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32229         }
32230     },
32231
32232     /**
32233      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32234      * clicking the expand dialog button.
32235      */
32236     expand : function(){
32237         if(this.collapsed){
32238             this.collapsed = false;
32239             this.el.removeClass("x-dlg-collapsed");
32240             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32241         }
32242     },
32243
32244     /**
32245      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32246      * @return {Roo.TabPanel} The tabs component
32247      */
32248     initTabs : function(){
32249         var tabs = this.getTabs();
32250         while(tabs.getTab(0)){
32251             tabs.removeTab(0);
32252         }
32253         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32254             var dom = el.dom;
32255             tabs.addTab(Roo.id(dom), dom.title);
32256             dom.title = "";
32257         });
32258         tabs.activate(0);
32259         return tabs;
32260     },
32261
32262     // private
32263     beforeResize : function(){
32264         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32265     },
32266
32267     // private
32268     onResize : function(){
32269         this.refreshSize();
32270         this.syncBodyHeight();
32271         this.adjustAssets();
32272         this.focus();
32273         this.fireEvent("resize", this, this.size.width, this.size.height);
32274     },
32275
32276     // private
32277     onKeyDown : function(e){
32278         if(this.isVisible()){
32279             this.fireEvent("keydown", this, e);
32280         }
32281     },
32282
32283     /**
32284      * Resizes the dialog.
32285      * @param {Number} width
32286      * @param {Number} height
32287      * @return {Roo.BasicDialog} this
32288      */
32289     resizeTo : function(width, height){
32290         this.el.setSize(width, height);
32291         this.size = {width: width, height: height};
32292         this.syncBodyHeight();
32293         if(this.fixedcenter){
32294             this.center();
32295         }
32296         if(this.isVisible()){
32297             this.constrainXY();
32298             this.adjustAssets();
32299         }
32300         this.fireEvent("resize", this, width, height);
32301         return this;
32302     },
32303
32304
32305     /**
32306      * Resizes the dialog to fit the specified content size.
32307      * @param {Number} width
32308      * @param {Number} height
32309      * @return {Roo.BasicDialog} this
32310      */
32311     setContentSize : function(w, h){
32312         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32313         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32314         //if(!this.el.isBorderBox()){
32315             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32316             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32317         //}
32318         if(this.tabs){
32319             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32320             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32321         }
32322         this.resizeTo(w, h);
32323         return this;
32324     },
32325
32326     /**
32327      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32328      * executed in response to a particular key being pressed while the dialog is active.
32329      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32330      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32331      * @param {Function} fn The function to call
32332      * @param {Object} scope (optional) The scope of the function
32333      * @return {Roo.BasicDialog} this
32334      */
32335     addKeyListener : function(key, fn, scope){
32336         var keyCode, shift, ctrl, alt;
32337         if(typeof key == "object" && !(key instanceof Array)){
32338             keyCode = key["key"];
32339             shift = key["shift"];
32340             ctrl = key["ctrl"];
32341             alt = key["alt"];
32342         }else{
32343             keyCode = key;
32344         }
32345         var handler = function(dlg, e){
32346             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32347                 var k = e.getKey();
32348                 if(keyCode instanceof Array){
32349                     for(var i = 0, len = keyCode.length; i < len; i++){
32350                         if(keyCode[i] == k){
32351                           fn.call(scope || window, dlg, k, e);
32352                           return;
32353                         }
32354                     }
32355                 }else{
32356                     if(k == keyCode){
32357                         fn.call(scope || window, dlg, k, e);
32358                     }
32359                 }
32360             }
32361         };
32362         this.on("keydown", handler);
32363         return this;
32364     },
32365
32366     /**
32367      * Returns the TabPanel component (creates it if it doesn't exist).
32368      * Note: If you wish to simply check for the existence of tabs without creating them,
32369      * check for a null 'tabs' property.
32370      * @return {Roo.TabPanel} The tabs component
32371      */
32372     getTabs : function(){
32373         if(!this.tabs){
32374             this.el.addClass("x-dlg-auto-tabs");
32375             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32376             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32377         }
32378         return this.tabs;
32379     },
32380
32381     /**
32382      * Adds a button to the footer section of the dialog.
32383      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32384      * object or a valid Roo.DomHelper element config
32385      * @param {Function} handler The function called when the button is clicked
32386      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32387      * @return {Roo.Button} The new button
32388      */
32389     addButton : function(config, handler, scope){
32390         var dh = Roo.DomHelper;
32391         if(!this.footer){
32392             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32393         }
32394         if(!this.btnContainer){
32395             var tb = this.footer.createChild({
32396
32397                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32398                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32399             }, null, true);
32400             this.btnContainer = tb.firstChild.firstChild.firstChild;
32401         }
32402         var bconfig = {
32403             handler: handler,
32404             scope: scope,
32405             minWidth: this.minButtonWidth,
32406             hideParent:true
32407         };
32408         if(typeof config == "string"){
32409             bconfig.text = config;
32410         }else{
32411             if(config.tag){
32412                 bconfig.dhconfig = config;
32413             }else{
32414                 Roo.apply(bconfig, config);
32415             }
32416         }
32417         var fc = false;
32418         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32419             bconfig.position = Math.max(0, bconfig.position);
32420             fc = this.btnContainer.childNodes[bconfig.position];
32421         }
32422          
32423         var btn = new Roo.Button(
32424             fc ? 
32425                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32426                 : this.btnContainer.appendChild(document.createElement("td")),
32427             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32428             bconfig
32429         );
32430         this.syncBodyHeight();
32431         if(!this.buttons){
32432             /**
32433              * Array of all the buttons that have been added to this dialog via addButton
32434              * @type Array
32435              */
32436             this.buttons = [];
32437         }
32438         this.buttons.push(btn);
32439         return btn;
32440     },
32441
32442     /**
32443      * Sets the default button to be focused when the dialog is displayed.
32444      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32445      * @return {Roo.BasicDialog} this
32446      */
32447     setDefaultButton : function(btn){
32448         this.defaultButton = btn;
32449         return this;
32450     },
32451
32452     // private
32453     getHeaderFooterHeight : function(safe){
32454         var height = 0;
32455         if(this.header){
32456            height += this.header.getHeight();
32457         }
32458         if(this.footer){
32459            var fm = this.footer.getMargins();
32460             height += (this.footer.getHeight()+fm.top+fm.bottom);
32461         }
32462         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32463         height += this.centerBg.getPadding("tb");
32464         return height;
32465     },
32466
32467     // private
32468     syncBodyHeight : function()
32469     {
32470         var bd = this.body, // the text
32471             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32472             bw = this.bwrap;
32473         var height = this.size.height - this.getHeaderFooterHeight(false);
32474         bd.setHeight(height-bd.getMargins("tb"));
32475         var hh = this.header.getHeight();
32476         var h = this.size.height-hh;
32477         cb.setHeight(h);
32478         
32479         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32480         bw.setHeight(h-cb.getPadding("tb"));
32481         
32482         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32483         bd.setWidth(bw.getWidth(true));
32484         if(this.tabs){
32485             this.tabs.syncHeight();
32486             if(Roo.isIE){
32487                 this.tabs.el.repaint();
32488             }
32489         }
32490     },
32491
32492     /**
32493      * Restores the previous state of the dialog if Roo.state is configured.
32494      * @return {Roo.BasicDialog} this
32495      */
32496     restoreState : function(){
32497         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32498         if(box && box.width){
32499             this.xy = [box.x, box.y];
32500             this.resizeTo(box.width, box.height);
32501         }
32502         return this;
32503     },
32504
32505     // private
32506     beforeShow : function(){
32507         this.expand();
32508         if(this.fixedcenter){
32509             this.xy = this.el.getCenterXY(true);
32510         }
32511         if(this.modal){
32512             Roo.get(document.body).addClass("x-body-masked");
32513             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32514             this.mask.show();
32515         }
32516         this.constrainXY();
32517     },
32518
32519     // private
32520     animShow : function(){
32521         var b = Roo.get(this.animateTarget).getBox();
32522         this.proxy.setSize(b.width, b.height);
32523         this.proxy.setLocation(b.x, b.y);
32524         this.proxy.show();
32525         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32526                     true, .35, this.showEl.createDelegate(this));
32527     },
32528
32529     /**
32530      * Shows the dialog.
32531      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32532      * @return {Roo.BasicDialog} this
32533      */
32534     show : function(animateTarget){
32535         if (this.fireEvent("beforeshow", this) === false){
32536             return;
32537         }
32538         if(this.syncHeightBeforeShow){
32539             this.syncBodyHeight();
32540         }else if(this.firstShow){
32541             this.firstShow = false;
32542             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32543         }
32544         this.animateTarget = animateTarget || this.animateTarget;
32545         if(!this.el.isVisible()){
32546             this.beforeShow();
32547             if(this.animateTarget && Roo.get(this.animateTarget)){
32548                 this.animShow();
32549             }else{
32550                 this.showEl();
32551             }
32552         }
32553         return this;
32554     },
32555
32556     // private
32557     showEl : function(){
32558         this.proxy.hide();
32559         this.el.setXY(this.xy);
32560         this.el.show();
32561         this.adjustAssets(true);
32562         this.toFront();
32563         this.focus();
32564         // IE peekaboo bug - fix found by Dave Fenwick
32565         if(Roo.isIE){
32566             this.el.repaint();
32567         }
32568         this.fireEvent("show", this);
32569     },
32570
32571     /**
32572      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32573      * dialog itself will receive focus.
32574      */
32575     focus : function(){
32576         if(this.defaultButton){
32577             this.defaultButton.focus();
32578         }else{
32579             this.focusEl.focus();
32580         }
32581     },
32582
32583     // private
32584     constrainXY : function(){
32585         if(this.constraintoviewport !== false){
32586             if(!this.viewSize){
32587                 if(this.container){
32588                     var s = this.container.getSize();
32589                     this.viewSize = [s.width, s.height];
32590                 }else{
32591                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32592                 }
32593             }
32594             var s = Roo.get(this.container||document).getScroll();
32595
32596             var x = this.xy[0], y = this.xy[1];
32597             var w = this.size.width, h = this.size.height;
32598             var vw = this.viewSize[0], vh = this.viewSize[1];
32599             // only move it if it needs it
32600             var moved = false;
32601             // first validate right/bottom
32602             if(x + w > vw+s.left){
32603                 x = vw - w;
32604                 moved = true;
32605             }
32606             if(y + h > vh+s.top){
32607                 y = vh - h;
32608                 moved = true;
32609             }
32610             // then make sure top/left isn't negative
32611             if(x < s.left){
32612                 x = s.left;
32613                 moved = true;
32614             }
32615             if(y < s.top){
32616                 y = s.top;
32617                 moved = true;
32618             }
32619             if(moved){
32620                 // cache xy
32621                 this.xy = [x, y];
32622                 if(this.isVisible()){
32623                     this.el.setLocation(x, y);
32624                     this.adjustAssets();
32625                 }
32626             }
32627         }
32628     },
32629
32630     // private
32631     onDrag : function(){
32632         if(!this.proxyDrag){
32633             this.xy = this.el.getXY();
32634             this.adjustAssets();
32635         }
32636     },
32637
32638     // private
32639     adjustAssets : function(doShow){
32640         var x = this.xy[0], y = this.xy[1];
32641         var w = this.size.width, h = this.size.height;
32642         if(doShow === true){
32643             if(this.shadow){
32644                 this.shadow.show(this.el);
32645             }
32646             if(this.shim){
32647                 this.shim.show();
32648             }
32649         }
32650         if(this.shadow && this.shadow.isVisible()){
32651             this.shadow.show(this.el);
32652         }
32653         if(this.shim && this.shim.isVisible()){
32654             this.shim.setBounds(x, y, w, h);
32655         }
32656     },
32657
32658     // private
32659     adjustViewport : function(w, h){
32660         if(!w || !h){
32661             w = Roo.lib.Dom.getViewWidth();
32662             h = Roo.lib.Dom.getViewHeight();
32663         }
32664         // cache the size
32665         this.viewSize = [w, h];
32666         if(this.modal && this.mask.isVisible()){
32667             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32668             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32669         }
32670         if(this.isVisible()){
32671             this.constrainXY();
32672         }
32673     },
32674
32675     /**
32676      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32677      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32678      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32679      */
32680     destroy : function(removeEl){
32681         if(this.isVisible()){
32682             this.animateTarget = null;
32683             this.hide();
32684         }
32685         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32686         if(this.tabs){
32687             this.tabs.destroy(removeEl);
32688         }
32689         Roo.destroy(
32690              this.shim,
32691              this.proxy,
32692              this.resizer,
32693              this.close,
32694              this.mask
32695         );
32696         if(this.dd){
32697             this.dd.unreg();
32698         }
32699         if(this.buttons){
32700            for(var i = 0, len = this.buttons.length; i < len; i++){
32701                this.buttons[i].destroy();
32702            }
32703         }
32704         this.el.removeAllListeners();
32705         if(removeEl === true){
32706             this.el.update("");
32707             this.el.remove();
32708         }
32709         Roo.DialogManager.unregister(this);
32710     },
32711
32712     // private
32713     startMove : function(){
32714         if(this.proxyDrag){
32715             this.proxy.show();
32716         }
32717         if(this.constraintoviewport !== false){
32718             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32719         }
32720     },
32721
32722     // private
32723     endMove : function(){
32724         if(!this.proxyDrag){
32725             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32726         }else{
32727             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32728             this.proxy.hide();
32729         }
32730         this.refreshSize();
32731         this.adjustAssets();
32732         this.focus();
32733         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32734     },
32735
32736     /**
32737      * Brings this dialog to the front of any other visible dialogs
32738      * @return {Roo.BasicDialog} this
32739      */
32740     toFront : function(){
32741         Roo.DialogManager.bringToFront(this);
32742         return this;
32743     },
32744
32745     /**
32746      * Sends this dialog to the back (under) of any other visible dialogs
32747      * @return {Roo.BasicDialog} this
32748      */
32749     toBack : function(){
32750         Roo.DialogManager.sendToBack(this);
32751         return this;
32752     },
32753
32754     /**
32755      * Centers this dialog in the viewport
32756      * @return {Roo.BasicDialog} this
32757      */
32758     center : function(){
32759         var xy = this.el.getCenterXY(true);
32760         this.moveTo(xy[0], xy[1]);
32761         return this;
32762     },
32763
32764     /**
32765      * Moves the dialog's top-left corner to the specified point
32766      * @param {Number} x
32767      * @param {Number} y
32768      * @return {Roo.BasicDialog} this
32769      */
32770     moveTo : function(x, y){
32771         this.xy = [x,y];
32772         if(this.isVisible()){
32773             this.el.setXY(this.xy);
32774             this.adjustAssets();
32775         }
32776         return this;
32777     },
32778
32779     /**
32780      * Aligns the dialog to the specified element
32781      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32782      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32783      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32784      * @return {Roo.BasicDialog} this
32785      */
32786     alignTo : function(element, position, offsets){
32787         this.xy = this.el.getAlignToXY(element, position, offsets);
32788         if(this.isVisible()){
32789             this.el.setXY(this.xy);
32790             this.adjustAssets();
32791         }
32792         return this;
32793     },
32794
32795     /**
32796      * Anchors an element to another element and realigns it when the window is resized.
32797      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32798      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32799      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32800      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32801      * is a number, it is used as the buffer delay (defaults to 50ms).
32802      * @return {Roo.BasicDialog} this
32803      */
32804     anchorTo : function(el, alignment, offsets, monitorScroll){
32805         var action = function(){
32806             this.alignTo(el, alignment, offsets);
32807         };
32808         Roo.EventManager.onWindowResize(action, this);
32809         var tm = typeof monitorScroll;
32810         if(tm != 'undefined'){
32811             Roo.EventManager.on(window, 'scroll', action, this,
32812                 {buffer: tm == 'number' ? monitorScroll : 50});
32813         }
32814         action.call(this);
32815         return this;
32816     },
32817
32818     /**
32819      * Returns true if the dialog is visible
32820      * @return {Boolean}
32821      */
32822     isVisible : function(){
32823         return this.el.isVisible();
32824     },
32825
32826     // private
32827     animHide : function(callback){
32828         var b = Roo.get(this.animateTarget).getBox();
32829         this.proxy.show();
32830         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32831         this.el.hide();
32832         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32833                     this.hideEl.createDelegate(this, [callback]));
32834     },
32835
32836     /**
32837      * Hides the dialog.
32838      * @param {Function} callback (optional) Function to call when the dialog is hidden
32839      * @return {Roo.BasicDialog} this
32840      */
32841     hide : function(callback){
32842         if (this.fireEvent("beforehide", this) === false){
32843             return;
32844         }
32845         if(this.shadow){
32846             this.shadow.hide();
32847         }
32848         if(this.shim) {
32849           this.shim.hide();
32850         }
32851         // sometimes animateTarget seems to get set.. causing problems...
32852         // this just double checks..
32853         if(this.animateTarget && Roo.get(this.animateTarget)) {
32854            this.animHide(callback);
32855         }else{
32856             this.el.hide();
32857             this.hideEl(callback);
32858         }
32859         return this;
32860     },
32861
32862     // private
32863     hideEl : function(callback){
32864         this.proxy.hide();
32865         if(this.modal){
32866             this.mask.hide();
32867             Roo.get(document.body).removeClass("x-body-masked");
32868         }
32869         this.fireEvent("hide", this);
32870         if(typeof callback == "function"){
32871             callback();
32872         }
32873     },
32874
32875     // private
32876     hideAction : function(){
32877         this.setLeft("-10000px");
32878         this.setTop("-10000px");
32879         this.setStyle("visibility", "hidden");
32880     },
32881
32882     // private
32883     refreshSize : function(){
32884         this.size = this.el.getSize();
32885         this.xy = this.el.getXY();
32886         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
32887     },
32888
32889     // private
32890     // z-index is managed by the DialogManager and may be overwritten at any time
32891     setZIndex : function(index){
32892         if(this.modal){
32893             this.mask.setStyle("z-index", index);
32894         }
32895         if(this.shim){
32896             this.shim.setStyle("z-index", ++index);
32897         }
32898         if(this.shadow){
32899             this.shadow.setZIndex(++index);
32900         }
32901         this.el.setStyle("z-index", ++index);
32902         if(this.proxy){
32903             this.proxy.setStyle("z-index", ++index);
32904         }
32905         if(this.resizer){
32906             this.resizer.proxy.setStyle("z-index", ++index);
32907         }
32908
32909         this.lastZIndex = index;
32910     },
32911
32912     /**
32913      * Returns the element for this dialog
32914      * @return {Roo.Element} The underlying dialog Element
32915      */
32916     getEl : function(){
32917         return this.el;
32918     }
32919 });
32920
32921 /**
32922  * @class Roo.DialogManager
32923  * Provides global access to BasicDialogs that have been created and
32924  * support for z-indexing (layering) multiple open dialogs.
32925  */
32926 Roo.DialogManager = function(){
32927     var list = {};
32928     var accessList = [];
32929     var front = null;
32930
32931     // private
32932     var sortDialogs = function(d1, d2){
32933         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
32934     };
32935
32936     // private
32937     var orderDialogs = function(){
32938         accessList.sort(sortDialogs);
32939         var seed = Roo.DialogManager.zseed;
32940         for(var i = 0, len = accessList.length; i < len; i++){
32941             var dlg = accessList[i];
32942             if(dlg){
32943                 dlg.setZIndex(seed + (i*10));
32944             }
32945         }
32946     };
32947
32948     return {
32949         /**
32950          * The starting z-index for BasicDialogs (defaults to 9000)
32951          * @type Number The z-index value
32952          */
32953         zseed : 9000,
32954
32955         // private
32956         register : function(dlg){
32957             list[dlg.id] = dlg;
32958             accessList.push(dlg);
32959         },
32960
32961         // private
32962         unregister : function(dlg){
32963             delete list[dlg.id];
32964             var i=0;
32965             var len=0;
32966             if(!accessList.indexOf){
32967                 for(  i = 0, len = accessList.length; i < len; i++){
32968                     if(accessList[i] == dlg){
32969                         accessList.splice(i, 1);
32970                         return;
32971                     }
32972                 }
32973             }else{
32974                  i = accessList.indexOf(dlg);
32975                 if(i != -1){
32976                     accessList.splice(i, 1);
32977                 }
32978             }
32979         },
32980
32981         /**
32982          * Gets a registered dialog by id
32983          * @param {String/Object} id The id of the dialog or a dialog
32984          * @return {Roo.BasicDialog} this
32985          */
32986         get : function(id){
32987             return typeof id == "object" ? id : list[id];
32988         },
32989
32990         /**
32991          * Brings the specified dialog to the front
32992          * @param {String/Object} dlg The id of the dialog or a dialog
32993          * @return {Roo.BasicDialog} this
32994          */
32995         bringToFront : function(dlg){
32996             dlg = this.get(dlg);
32997             if(dlg != front){
32998                 front = dlg;
32999                 dlg._lastAccess = new Date().getTime();
33000                 orderDialogs();
33001             }
33002             return dlg;
33003         },
33004
33005         /**
33006          * Sends the specified dialog to the back
33007          * @param {String/Object} dlg The id of the dialog or a dialog
33008          * @return {Roo.BasicDialog} this
33009          */
33010         sendToBack : function(dlg){
33011             dlg = this.get(dlg);
33012             dlg._lastAccess = -(new Date().getTime());
33013             orderDialogs();
33014             return dlg;
33015         },
33016
33017         /**
33018          * Hides all dialogs
33019          */
33020         hideAll : function(){
33021             for(var id in list){
33022                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33023                     list[id].hide();
33024                 }
33025             }
33026         }
33027     };
33028 }();
33029
33030 /**
33031  * @class Roo.LayoutDialog
33032  * @extends Roo.BasicDialog
33033  * Dialog which provides adjustments for working with a layout in a Dialog.
33034  * Add your necessary layout config options to the dialog's config.<br>
33035  * Example usage (including a nested layout):
33036  * <pre><code>
33037 if(!dialog){
33038     dialog = new Roo.LayoutDialog("download-dlg", {
33039         modal: true,
33040         width:600,
33041         height:450,
33042         shadow:true,
33043         minWidth:500,
33044         minHeight:350,
33045         autoTabs:true,
33046         proxyDrag:true,
33047         // layout config merges with the dialog config
33048         center:{
33049             tabPosition: "top",
33050             alwaysShowTabs: true
33051         }
33052     });
33053     dialog.addKeyListener(27, dialog.hide, dialog);
33054     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33055     dialog.addButton("Build It!", this.getDownload, this);
33056
33057     // we can even add nested layouts
33058     var innerLayout = new Roo.BorderLayout("dl-inner", {
33059         east: {
33060             initialSize: 200,
33061             autoScroll:true,
33062             split:true
33063         },
33064         center: {
33065             autoScroll:true
33066         }
33067     });
33068     innerLayout.beginUpdate();
33069     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33070     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33071     innerLayout.endUpdate(true);
33072
33073     var layout = dialog.getLayout();
33074     layout.beginUpdate();
33075     layout.add("center", new Roo.ContentPanel("standard-panel",
33076                         {title: "Download the Source", fitToFrame:true}));
33077     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33078                {title: "Build your own roo.js"}));
33079     layout.getRegion("center").showPanel(sp);
33080     layout.endUpdate();
33081 }
33082 </code></pre>
33083     * @constructor
33084     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33085     * @param {Object} config configuration options
33086   */
33087 Roo.LayoutDialog = function(el, cfg){
33088     
33089     var config=  cfg;
33090     if (typeof(cfg) == 'undefined') {
33091         config = Roo.apply({}, el);
33092         // not sure why we use documentElement here.. - it should always be body.
33093         // IE7 borks horribly if we use documentElement.
33094         // webkit also does not like documentElement - it creates a body element...
33095         el = Roo.get( document.body || document.documentElement ).createChild();
33096         //config.autoCreate = true;
33097     }
33098     
33099     
33100     config.autoTabs = false;
33101     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33102     this.body.setStyle({overflow:"hidden", position:"relative"});
33103     this.layout = new Roo.BorderLayout(this.body.dom, config);
33104     this.layout.monitorWindowResize = false;
33105     this.el.addClass("x-dlg-auto-layout");
33106     // fix case when center region overwrites center function
33107     this.center = Roo.BasicDialog.prototype.center;
33108     this.on("show", this.layout.layout, this.layout, true);
33109     if (config.items) {
33110         var xitems = config.items;
33111         delete config.items;
33112         Roo.each(xitems, this.addxtype, this);
33113     }
33114     
33115     
33116 };
33117 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33118     /**
33119      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33120      * @deprecated
33121      */
33122     endUpdate : function(){
33123         this.layout.endUpdate();
33124     },
33125
33126     /**
33127      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33128      *  @deprecated
33129      */
33130     beginUpdate : function(){
33131         this.layout.beginUpdate();
33132     },
33133
33134     /**
33135      * Get the BorderLayout for this dialog
33136      * @return {Roo.BorderLayout}
33137      */
33138     getLayout : function(){
33139         return this.layout;
33140     },
33141
33142     showEl : function(){
33143         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33144         if(Roo.isIE7){
33145             this.layout.layout();
33146         }
33147     },
33148
33149     // private
33150     // Use the syncHeightBeforeShow config option to control this automatically
33151     syncBodyHeight : function(){
33152         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33153         if(this.layout){this.layout.layout();}
33154     },
33155     
33156       /**
33157      * Add an xtype element (actually adds to the layout.)
33158      * @return {Object} xdata xtype object data.
33159      */
33160     
33161     addxtype : function(c) {
33162         return this.layout.addxtype(c);
33163     }
33164 });/*
33165  * Based on:
33166  * Ext JS Library 1.1.1
33167  * Copyright(c) 2006-2007, Ext JS, LLC.
33168  *
33169  * Originally Released Under LGPL - original licence link has changed is not relivant.
33170  *
33171  * Fork - LGPL
33172  * <script type="text/javascript">
33173  */
33174  
33175 /**
33176  * @class Roo.MessageBox
33177  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33178  * Example usage:
33179  *<pre><code>
33180 // Basic alert:
33181 Roo.Msg.alert('Status', 'Changes saved successfully.');
33182
33183 // Prompt for user data:
33184 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33185     if (btn == 'ok'){
33186         // process text value...
33187     }
33188 });
33189
33190 // Show a dialog using config options:
33191 Roo.Msg.show({
33192    title:'Save Changes?',
33193    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33194    buttons: Roo.Msg.YESNOCANCEL,
33195    fn: processResult,
33196    animEl: 'elId'
33197 });
33198 </code></pre>
33199  * @singleton
33200  */
33201 Roo.MessageBox = function(){
33202     var dlg, opt, mask, waitTimer;
33203     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33204     var buttons, activeTextEl, bwidth;
33205
33206     // private
33207     var handleButton = function(button){
33208         dlg.hide();
33209         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33210     };
33211
33212     // private
33213     var handleHide = function(){
33214         if(opt && opt.cls){
33215             dlg.el.removeClass(opt.cls);
33216         }
33217         if(waitTimer){
33218             Roo.TaskMgr.stop(waitTimer);
33219             waitTimer = null;
33220         }
33221     };
33222
33223     // private
33224     var updateButtons = function(b){
33225         var width = 0;
33226         if(!b){
33227             buttons["ok"].hide();
33228             buttons["cancel"].hide();
33229             buttons["yes"].hide();
33230             buttons["no"].hide();
33231             dlg.footer.dom.style.display = 'none';
33232             return width;
33233         }
33234         dlg.footer.dom.style.display = '';
33235         for(var k in buttons){
33236             if(typeof buttons[k] != "function"){
33237                 if(b[k]){
33238                     buttons[k].show();
33239                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33240                     width += buttons[k].el.getWidth()+15;
33241                 }else{
33242                     buttons[k].hide();
33243                 }
33244             }
33245         }
33246         return width;
33247     };
33248
33249     // private
33250     var handleEsc = function(d, k, e){
33251         if(opt && opt.closable !== false){
33252             dlg.hide();
33253         }
33254         if(e){
33255             e.stopEvent();
33256         }
33257     };
33258
33259     return {
33260         /**
33261          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33262          * @return {Roo.BasicDialog} The BasicDialog element
33263          */
33264         getDialog : function(){
33265            if(!dlg){
33266                 dlg = new Roo.BasicDialog("x-msg-box", {
33267                     autoCreate : true,
33268                     shadow: true,
33269                     draggable: true,
33270                     resizable:false,
33271                     constraintoviewport:false,
33272                     fixedcenter:true,
33273                     collapsible : false,
33274                     shim:true,
33275                     modal: true,
33276                     width:400, height:100,
33277                     buttonAlign:"center",
33278                     closeClick : function(){
33279                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33280                             handleButton("no");
33281                         }else{
33282                             handleButton("cancel");
33283                         }
33284                     }
33285                 });
33286                 dlg.on("hide", handleHide);
33287                 mask = dlg.mask;
33288                 dlg.addKeyListener(27, handleEsc);
33289                 buttons = {};
33290                 var bt = this.buttonText;
33291                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33292                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33293                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33294                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33295                 bodyEl = dlg.body.createChild({
33296
33297                     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>'
33298                 });
33299                 msgEl = bodyEl.dom.firstChild;
33300                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33301                 textboxEl.enableDisplayMode();
33302                 textboxEl.addKeyListener([10,13], function(){
33303                     if(dlg.isVisible() && opt && opt.buttons){
33304                         if(opt.buttons.ok){
33305                             handleButton("ok");
33306                         }else if(opt.buttons.yes){
33307                             handleButton("yes");
33308                         }
33309                     }
33310                 });
33311                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33312                 textareaEl.enableDisplayMode();
33313                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33314                 progressEl.enableDisplayMode();
33315                 var pf = progressEl.dom.firstChild;
33316                 if (pf) {
33317                     pp = Roo.get(pf.firstChild);
33318                     pp.setHeight(pf.offsetHeight);
33319                 }
33320                 
33321             }
33322             return dlg;
33323         },
33324
33325         /**
33326          * Updates the message box body text
33327          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33328          * the XHTML-compliant non-breaking space character '&amp;#160;')
33329          * @return {Roo.MessageBox} This message box
33330          */
33331         updateText : function(text){
33332             if(!dlg.isVisible() && !opt.width){
33333                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33334             }
33335             msgEl.innerHTML = text || '&#160;';
33336       
33337             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33338             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33339             var w = Math.max(
33340                     Math.min(opt.width || cw , this.maxWidth), 
33341                     Math.max(opt.minWidth || this.minWidth, bwidth)
33342             );
33343             if(opt.prompt){
33344                 activeTextEl.setWidth(w);
33345             }
33346             if(dlg.isVisible()){
33347                 dlg.fixedcenter = false;
33348             }
33349             // to big, make it scroll. = But as usual stupid IE does not support
33350             // !important..
33351             
33352             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33353                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33354                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33355             } else {
33356                 bodyEl.dom.style.height = '';
33357                 bodyEl.dom.style.overflowY = '';
33358             }
33359             if (cw > w) {
33360                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33361             } else {
33362                 bodyEl.dom.style.overflowX = '';
33363             }
33364             
33365             dlg.setContentSize(w, bodyEl.getHeight());
33366             if(dlg.isVisible()){
33367                 dlg.fixedcenter = true;
33368             }
33369             return this;
33370         },
33371
33372         /**
33373          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33374          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33375          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33376          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33377          * @return {Roo.MessageBox} This message box
33378          */
33379         updateProgress : function(value, text){
33380             if(text){
33381                 this.updateText(text);
33382             }
33383             if (pp) { // weird bug on my firefox - for some reason this is not defined
33384                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33385             }
33386             return this;
33387         },        
33388
33389         /**
33390          * Returns true if the message box is currently displayed
33391          * @return {Boolean} True if the message box is visible, else false
33392          */
33393         isVisible : function(){
33394             return dlg && dlg.isVisible();  
33395         },
33396
33397         /**
33398          * Hides the message box if it is displayed
33399          */
33400         hide : function(){
33401             if(this.isVisible()){
33402                 dlg.hide();
33403             }  
33404         },
33405
33406         /**
33407          * Displays a new message box, or reinitializes an existing message box, based on the config options
33408          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33409          * The following config object properties are supported:
33410          * <pre>
33411 Property    Type             Description
33412 ----------  ---------------  ------------------------------------------------------------------------------------
33413 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33414                                    closes (defaults to undefined)
33415 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33416                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33417 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33418                                    progress and wait dialogs will ignore this property and always hide the
33419                                    close button as they can only be closed programmatically.
33420 cls               String           A custom CSS class to apply to the message box element
33421 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33422                                    displayed (defaults to 75)
33423 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33424                                    function will be btn (the name of the button that was clicked, if applicable,
33425                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33426                                    Progress and wait dialogs will ignore this option since they do not respond to
33427                                    user actions and can only be closed programmatically, so any required function
33428                                    should be called by the same code after it closes the dialog.
33429 icon              String           A CSS class that provides a background image to be used as an icon for
33430                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33431 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33432 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33433 modal             Boolean          False to allow user interaction with the page while the message box is
33434                                    displayed (defaults to true)
33435 msg               String           A string that will replace the existing message box body text (defaults
33436                                    to the XHTML-compliant non-breaking space character '&#160;')
33437 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33438 progress          Boolean          True to display a progress bar (defaults to false)
33439 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33440 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33441 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33442 title             String           The title text
33443 value             String           The string value to set into the active textbox element if displayed
33444 wait              Boolean          True to display a progress bar (defaults to false)
33445 width             Number           The width of the dialog in pixels
33446 </pre>
33447          *
33448          * Example usage:
33449          * <pre><code>
33450 Roo.Msg.show({
33451    title: 'Address',
33452    msg: 'Please enter your address:',
33453    width: 300,
33454    buttons: Roo.MessageBox.OKCANCEL,
33455    multiline: true,
33456    fn: saveAddress,
33457    animEl: 'addAddressBtn'
33458 });
33459 </code></pre>
33460          * @param {Object} config Configuration options
33461          * @return {Roo.MessageBox} This message box
33462          */
33463         show : function(options)
33464         {
33465             
33466             // this causes nightmares if you show one dialog after another
33467             // especially on callbacks..
33468              
33469             if(this.isVisible()){
33470                 
33471                 this.hide();
33472                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33473                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33474                 Roo.log("New Dialog Message:" +  options.msg )
33475                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33476                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33477                 
33478             }
33479             var d = this.getDialog();
33480             opt = options;
33481             d.setTitle(opt.title || "&#160;");
33482             d.close.setDisplayed(opt.closable !== false);
33483             activeTextEl = textboxEl;
33484             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33485             if(opt.prompt){
33486                 if(opt.multiline){
33487                     textboxEl.hide();
33488                     textareaEl.show();
33489                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33490                         opt.multiline : this.defaultTextHeight);
33491                     activeTextEl = textareaEl;
33492                 }else{
33493                     textboxEl.show();
33494                     textareaEl.hide();
33495                 }
33496             }else{
33497                 textboxEl.hide();
33498                 textareaEl.hide();
33499             }
33500             progressEl.setDisplayed(opt.progress === true);
33501             this.updateProgress(0);
33502             activeTextEl.dom.value = opt.value || "";
33503             if(opt.prompt){
33504                 dlg.setDefaultButton(activeTextEl);
33505             }else{
33506                 var bs = opt.buttons;
33507                 var db = null;
33508                 if(bs && bs.ok){
33509                     db = buttons["ok"];
33510                 }else if(bs && bs.yes){
33511                     db = buttons["yes"];
33512                 }
33513                 dlg.setDefaultButton(db);
33514             }
33515             bwidth = updateButtons(opt.buttons);
33516             this.updateText(opt.msg);
33517             if(opt.cls){
33518                 d.el.addClass(opt.cls);
33519             }
33520             d.proxyDrag = opt.proxyDrag === true;
33521             d.modal = opt.modal !== false;
33522             d.mask = opt.modal !== false ? mask : false;
33523             if(!d.isVisible()){
33524                 // force it to the end of the z-index stack so it gets a cursor in FF
33525                 document.body.appendChild(dlg.el.dom);
33526                 d.animateTarget = null;
33527                 d.show(options.animEl);
33528             }
33529             return this;
33530         },
33531
33532         /**
33533          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33534          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33535          * and closing the message box when the process is complete.
33536          * @param {String} title The title bar text
33537          * @param {String} msg The message box body text
33538          * @return {Roo.MessageBox} This message box
33539          */
33540         progress : function(title, msg){
33541             this.show({
33542                 title : title,
33543                 msg : msg,
33544                 buttons: false,
33545                 progress:true,
33546                 closable:false,
33547                 minWidth: this.minProgressWidth,
33548                 modal : true
33549             });
33550             return this;
33551         },
33552
33553         /**
33554          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33555          * If a callback function is passed it will be called after the user clicks the button, and the
33556          * id of the button that was clicked will be passed as the only parameter to the callback
33557          * (could also be the top-right close button).
33558          * @param {String} title The title bar text
33559          * @param {String} msg The message box body text
33560          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33561          * @param {Object} scope (optional) The scope of the callback function
33562          * @return {Roo.MessageBox} This message box
33563          */
33564         alert : function(title, msg, fn, scope){
33565             this.show({
33566                 title : title,
33567                 msg : msg,
33568                 buttons: this.OK,
33569                 fn: fn,
33570                 scope : scope,
33571                 modal : true
33572             });
33573             return this;
33574         },
33575
33576         /**
33577          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33578          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33579          * You are responsible for closing the message box when the process is complete.
33580          * @param {String} msg The message box body text
33581          * @param {String} title (optional) The title bar text
33582          * @return {Roo.MessageBox} This message box
33583          */
33584         wait : function(msg, title){
33585             this.show({
33586                 title : title,
33587                 msg : msg,
33588                 buttons: false,
33589                 closable:false,
33590                 progress:true,
33591                 modal:true,
33592                 width:300,
33593                 wait:true
33594             });
33595             waitTimer = Roo.TaskMgr.start({
33596                 run: function(i){
33597                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33598                 },
33599                 interval: 1000
33600             });
33601             return this;
33602         },
33603
33604         /**
33605          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33606          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33607          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33608          * @param {String} title The title bar text
33609          * @param {String} msg The message box body text
33610          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33611          * @param {Object} scope (optional) The scope of the callback function
33612          * @return {Roo.MessageBox} This message box
33613          */
33614         confirm : function(title, msg, fn, scope){
33615             this.show({
33616                 title : title,
33617                 msg : msg,
33618                 buttons: this.YESNO,
33619                 fn: fn,
33620                 scope : scope,
33621                 modal : true
33622             });
33623             return this;
33624         },
33625
33626         /**
33627          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33628          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33629          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33630          * (could also be the top-right close button) and the text that was entered will be passed as the two
33631          * parameters to the callback.
33632          * @param {String} title The title bar text
33633          * @param {String} msg The message box body text
33634          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33635          * @param {Object} scope (optional) The scope of the callback function
33636          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33637          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33638          * @return {Roo.MessageBox} This message box
33639          */
33640         prompt : function(title, msg, fn, scope, multiline){
33641             this.show({
33642                 title : title,
33643                 msg : msg,
33644                 buttons: this.OKCANCEL,
33645                 fn: fn,
33646                 minWidth:250,
33647                 scope : scope,
33648                 prompt:true,
33649                 multiline: multiline,
33650                 modal : true
33651             });
33652             return this;
33653         },
33654
33655         /**
33656          * Button config that displays a single OK button
33657          * @type Object
33658          */
33659         OK : {ok:true},
33660         /**
33661          * Button config that displays Yes and No buttons
33662          * @type Object
33663          */
33664         YESNO : {yes:true, no:true},
33665         /**
33666          * Button config that displays OK and Cancel buttons
33667          * @type Object
33668          */
33669         OKCANCEL : {ok:true, cancel:true},
33670         /**
33671          * Button config that displays Yes, No and Cancel buttons
33672          * @type Object
33673          */
33674         YESNOCANCEL : {yes:true, no:true, cancel:true},
33675
33676         /**
33677          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33678          * @type Number
33679          */
33680         defaultTextHeight : 75,
33681         /**
33682          * The maximum width in pixels of the message box (defaults to 600)
33683          * @type Number
33684          */
33685         maxWidth : 600,
33686         /**
33687          * The minimum width in pixels of the message box (defaults to 100)
33688          * @type Number
33689          */
33690         minWidth : 100,
33691         /**
33692          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33693          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33694          * @type Number
33695          */
33696         minProgressWidth : 250,
33697         /**
33698          * An object containing the default button text strings that can be overriden for localized language support.
33699          * Supported properties are: ok, cancel, yes and no.
33700          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33701          * @type Object
33702          */
33703         buttonText : {
33704             ok : "OK",
33705             cancel : "Cancel",
33706             yes : "Yes",
33707             no : "No"
33708         }
33709     };
33710 }();
33711
33712 /**
33713  * Shorthand for {@link Roo.MessageBox}
33714  */
33715 Roo.Msg = Roo.MessageBox;/*
33716  * Based on:
33717  * Ext JS Library 1.1.1
33718  * Copyright(c) 2006-2007, Ext JS, LLC.
33719  *
33720  * Originally Released Under LGPL - original licence link has changed is not relivant.
33721  *
33722  * Fork - LGPL
33723  * <script type="text/javascript">
33724  */
33725 /**
33726  * @class Roo.QuickTips
33727  * Provides attractive and customizable tooltips for any element.
33728  * @singleton
33729  */
33730 Roo.QuickTips = function(){
33731     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33732     var ce, bd, xy, dd;
33733     var visible = false, disabled = true, inited = false;
33734     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33735     
33736     var onOver = function(e){
33737         if(disabled){
33738             return;
33739         }
33740         var t = e.getTarget();
33741         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33742             return;
33743         }
33744         if(ce && t == ce.el){
33745             clearTimeout(hideProc);
33746             return;
33747         }
33748         if(t && tagEls[t.id]){
33749             tagEls[t.id].el = t;
33750             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33751             return;
33752         }
33753         var ttp, et = Roo.fly(t);
33754         var ns = cfg.namespace;
33755         if(tm.interceptTitles && t.title){
33756             ttp = t.title;
33757             t.qtip = ttp;
33758             t.removeAttribute("title");
33759             e.preventDefault();
33760         }else{
33761             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33762         }
33763         if(ttp){
33764             showProc = show.defer(tm.showDelay, tm, [{
33765                 el: t, 
33766                 text: ttp.replace(/\\n/g,'<br/>'),
33767                 width: et.getAttributeNS(ns, cfg.width),
33768                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33769                 title: et.getAttributeNS(ns, cfg.title),
33770                     cls: et.getAttributeNS(ns, cfg.cls)
33771             }]);
33772         }
33773     };
33774     
33775     var onOut = function(e){
33776         clearTimeout(showProc);
33777         var t = e.getTarget();
33778         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33779             hideProc = setTimeout(hide, tm.hideDelay);
33780         }
33781     };
33782     
33783     var onMove = function(e){
33784         if(disabled){
33785             return;
33786         }
33787         xy = e.getXY();
33788         xy[1] += 18;
33789         if(tm.trackMouse && ce){
33790             el.setXY(xy);
33791         }
33792     };
33793     
33794     var onDown = function(e){
33795         clearTimeout(showProc);
33796         clearTimeout(hideProc);
33797         if(!e.within(el)){
33798             if(tm.hideOnClick){
33799                 hide();
33800                 tm.disable();
33801                 tm.enable.defer(100, tm);
33802             }
33803         }
33804     };
33805     
33806     var getPad = function(){
33807         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33808     };
33809
33810     var show = function(o){
33811         if(disabled){
33812             return;
33813         }
33814         clearTimeout(dismissProc);
33815         ce = o;
33816         if(removeCls){ // in case manually hidden
33817             el.removeClass(removeCls);
33818             removeCls = null;
33819         }
33820         if(ce.cls){
33821             el.addClass(ce.cls);
33822             removeCls = ce.cls;
33823         }
33824         if(ce.title){
33825             tipTitle.update(ce.title);
33826             tipTitle.show();
33827         }else{
33828             tipTitle.update('');
33829             tipTitle.hide();
33830         }
33831         el.dom.style.width  = tm.maxWidth+'px';
33832         //tipBody.dom.style.width = '';
33833         tipBodyText.update(o.text);
33834         var p = getPad(), w = ce.width;
33835         if(!w){
33836             var td = tipBodyText.dom;
33837             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33838             if(aw > tm.maxWidth){
33839                 w = tm.maxWidth;
33840             }else if(aw < tm.minWidth){
33841                 w = tm.minWidth;
33842             }else{
33843                 w = aw;
33844             }
33845         }
33846         //tipBody.setWidth(w);
33847         el.setWidth(parseInt(w, 10) + p);
33848         if(ce.autoHide === false){
33849             close.setDisplayed(true);
33850             if(dd){
33851                 dd.unlock();
33852             }
33853         }else{
33854             close.setDisplayed(false);
33855             if(dd){
33856                 dd.lock();
33857             }
33858         }
33859         if(xy){
33860             el.avoidY = xy[1]-18;
33861             el.setXY(xy);
33862         }
33863         if(tm.animate){
33864             el.setOpacity(.1);
33865             el.setStyle("visibility", "visible");
33866             el.fadeIn({callback: afterShow});
33867         }else{
33868             afterShow();
33869         }
33870     };
33871     
33872     var afterShow = function(){
33873         if(ce){
33874             el.show();
33875             esc.enable();
33876             if(tm.autoDismiss && ce.autoHide !== false){
33877                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
33878             }
33879         }
33880     };
33881     
33882     var hide = function(noanim){
33883         clearTimeout(dismissProc);
33884         clearTimeout(hideProc);
33885         ce = null;
33886         if(el.isVisible()){
33887             esc.disable();
33888             if(noanim !== true && tm.animate){
33889                 el.fadeOut({callback: afterHide});
33890             }else{
33891                 afterHide();
33892             } 
33893         }
33894     };
33895     
33896     var afterHide = function(){
33897         el.hide();
33898         if(removeCls){
33899             el.removeClass(removeCls);
33900             removeCls = null;
33901         }
33902     };
33903     
33904     return {
33905         /**
33906         * @cfg {Number} minWidth
33907         * The minimum width of the quick tip (defaults to 40)
33908         */
33909        minWidth : 40,
33910         /**
33911         * @cfg {Number} maxWidth
33912         * The maximum width of the quick tip (defaults to 300)
33913         */
33914        maxWidth : 300,
33915         /**
33916         * @cfg {Boolean} interceptTitles
33917         * True to automatically use the element's DOM title value if available (defaults to false)
33918         */
33919        interceptTitles : false,
33920         /**
33921         * @cfg {Boolean} trackMouse
33922         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
33923         */
33924        trackMouse : false,
33925         /**
33926         * @cfg {Boolean} hideOnClick
33927         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
33928         */
33929        hideOnClick : true,
33930         /**
33931         * @cfg {Number} showDelay
33932         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
33933         */
33934        showDelay : 500,
33935         /**
33936         * @cfg {Number} hideDelay
33937         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
33938         */
33939        hideDelay : 200,
33940         /**
33941         * @cfg {Boolean} autoHide
33942         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
33943         * Used in conjunction with hideDelay.
33944         */
33945        autoHide : true,
33946         /**
33947         * @cfg {Boolean}
33948         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
33949         * (defaults to true).  Used in conjunction with autoDismissDelay.
33950         */
33951        autoDismiss : true,
33952         /**
33953         * @cfg {Number}
33954         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
33955         */
33956        autoDismissDelay : 5000,
33957        /**
33958         * @cfg {Boolean} animate
33959         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
33960         */
33961        animate : false,
33962
33963        /**
33964         * @cfg {String} title
33965         * Title text to display (defaults to '').  This can be any valid HTML markup.
33966         */
33967         title: '',
33968        /**
33969         * @cfg {String} text
33970         * Body text to display (defaults to '').  This can be any valid HTML markup.
33971         */
33972         text : '',
33973        /**
33974         * @cfg {String} cls
33975         * A CSS class to apply to the base quick tip element (defaults to '').
33976         */
33977         cls : '',
33978        /**
33979         * @cfg {Number} width
33980         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
33981         * minWidth or maxWidth.
33982         */
33983         width : null,
33984
33985     /**
33986      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
33987      * or display QuickTips in a page.
33988      */
33989        init : function(){
33990           tm = Roo.QuickTips;
33991           cfg = tm.tagConfig;
33992           if(!inited){
33993               if(!Roo.isReady){ // allow calling of init() before onReady
33994                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
33995                   return;
33996               }
33997               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
33998               el.fxDefaults = {stopFx: true};
33999               // maximum custom styling
34000               //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>');
34001               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>');              
34002               tipTitle = el.child('h3');
34003               tipTitle.enableDisplayMode("block");
34004               tipBody = el.child('div.x-tip-bd');
34005               tipBodyText = el.child('div.x-tip-bd-inner');
34006               //bdLeft = el.child('div.x-tip-bd-left');
34007               //bdRight = el.child('div.x-tip-bd-right');
34008               close = el.child('div.x-tip-close');
34009               close.enableDisplayMode("block");
34010               close.on("click", hide);
34011               var d = Roo.get(document);
34012               d.on("mousedown", onDown);
34013               d.on("mouseover", onOver);
34014               d.on("mouseout", onOut);
34015               d.on("mousemove", onMove);
34016               esc = d.addKeyListener(27, hide);
34017               esc.disable();
34018               if(Roo.dd.DD){
34019                   dd = el.initDD("default", null, {
34020                       onDrag : function(){
34021                           el.sync();  
34022                       }
34023                   });
34024                   dd.setHandleElId(tipTitle.id);
34025                   dd.lock();
34026               }
34027               inited = true;
34028           }
34029           this.enable(); 
34030        },
34031
34032     /**
34033      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34034      * are supported:
34035      * <pre>
34036 Property    Type                   Description
34037 ----------  ---------------------  ------------------------------------------------------------------------
34038 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34039      * </ul>
34040      * @param {Object} config The config object
34041      */
34042        register : function(config){
34043            var cs = config instanceof Array ? config : arguments;
34044            for(var i = 0, len = cs.length; i < len; i++) {
34045                var c = cs[i];
34046                var target = c.target;
34047                if(target){
34048                    if(target instanceof Array){
34049                        for(var j = 0, jlen = target.length; j < jlen; j++){
34050                            tagEls[target[j]] = c;
34051                        }
34052                    }else{
34053                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34054                    }
34055                }
34056            }
34057        },
34058
34059     /**
34060      * Removes this quick tip from its element and destroys it.
34061      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34062      */
34063        unregister : function(el){
34064            delete tagEls[Roo.id(el)];
34065        },
34066
34067     /**
34068      * Enable this quick tip.
34069      */
34070        enable : function(){
34071            if(inited && disabled){
34072                locks.pop();
34073                if(locks.length < 1){
34074                    disabled = false;
34075                }
34076            }
34077        },
34078
34079     /**
34080      * Disable this quick tip.
34081      */
34082        disable : function(){
34083           disabled = true;
34084           clearTimeout(showProc);
34085           clearTimeout(hideProc);
34086           clearTimeout(dismissProc);
34087           if(ce){
34088               hide(true);
34089           }
34090           locks.push(1);
34091        },
34092
34093     /**
34094      * Returns true if the quick tip is enabled, else false.
34095      */
34096        isEnabled : function(){
34097             return !disabled;
34098        },
34099
34100         // private
34101        tagConfig : {
34102            namespace : "roo", // was ext?? this may break..
34103            alt_namespace : "ext",
34104            attribute : "qtip",
34105            width : "width",
34106            target : "target",
34107            title : "qtitle",
34108            hide : "hide",
34109            cls : "qclass"
34110        }
34111    };
34112 }();
34113
34114 // backwards compat
34115 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34116  * Based on:
34117  * Ext JS Library 1.1.1
34118  * Copyright(c) 2006-2007, Ext JS, LLC.
34119  *
34120  * Originally Released Under LGPL - original licence link has changed is not relivant.
34121  *
34122  * Fork - LGPL
34123  * <script type="text/javascript">
34124  */
34125  
34126
34127 /**
34128  * @class Roo.tree.TreePanel
34129  * @extends Roo.data.Tree
34130
34131  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34132  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34133  * @cfg {Boolean} enableDD true to enable drag and drop
34134  * @cfg {Boolean} enableDrag true to enable just drag
34135  * @cfg {Boolean} enableDrop true to enable just drop
34136  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34137  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34138  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34139  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34140  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34141  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34142  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34143  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34144  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34145  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34146  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34147  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34148  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34149  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34150  * @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>
34151  * @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>
34152  * 
34153  * @constructor
34154  * @param {String/HTMLElement/Element} el The container element
34155  * @param {Object} config
34156  */
34157 Roo.tree.TreePanel = function(el, config){
34158     var root = false;
34159     var loader = false;
34160     if (config.root) {
34161         root = config.root;
34162         delete config.root;
34163     }
34164     if (config.loader) {
34165         loader = config.loader;
34166         delete config.loader;
34167     }
34168     
34169     Roo.apply(this, config);
34170     Roo.tree.TreePanel.superclass.constructor.call(this);
34171     this.el = Roo.get(el);
34172     this.el.addClass('x-tree');
34173     //console.log(root);
34174     if (root) {
34175         this.setRootNode( Roo.factory(root, Roo.tree));
34176     }
34177     if (loader) {
34178         this.loader = Roo.factory(loader, Roo.tree);
34179     }
34180    /**
34181     * Read-only. The id of the container element becomes this TreePanel's id.
34182     */
34183     this.id = this.el.id;
34184     this.addEvents({
34185         /**
34186         * @event beforeload
34187         * Fires before a node is loaded, return false to cancel
34188         * @param {Node} node The node being loaded
34189         */
34190         "beforeload" : true,
34191         /**
34192         * @event load
34193         * Fires when a node is loaded
34194         * @param {Node} node The node that was loaded
34195         */
34196         "load" : true,
34197         /**
34198         * @event textchange
34199         * Fires when the text for a node is changed
34200         * @param {Node} node The node
34201         * @param {String} text The new text
34202         * @param {String} oldText The old text
34203         */
34204         "textchange" : true,
34205         /**
34206         * @event beforeexpand
34207         * Fires before a node is expanded, return false to cancel.
34208         * @param {Node} node The node
34209         * @param {Boolean} deep
34210         * @param {Boolean} anim
34211         */
34212         "beforeexpand" : true,
34213         /**
34214         * @event beforecollapse
34215         * Fires before a node is collapsed, return false to cancel.
34216         * @param {Node} node The node
34217         * @param {Boolean} deep
34218         * @param {Boolean} anim
34219         */
34220         "beforecollapse" : true,
34221         /**
34222         * @event expand
34223         * Fires when a node is expanded
34224         * @param {Node} node The node
34225         */
34226         "expand" : true,
34227         /**
34228         * @event disabledchange
34229         * Fires when the disabled status of a node changes
34230         * @param {Node} node The node
34231         * @param {Boolean} disabled
34232         */
34233         "disabledchange" : true,
34234         /**
34235         * @event collapse
34236         * Fires when a node is collapsed
34237         * @param {Node} node The node
34238         */
34239         "collapse" : true,
34240         /**
34241         * @event beforeclick
34242         * Fires before click processing on a node. Return false to cancel the default action.
34243         * @param {Node} node The node
34244         * @param {Roo.EventObject} e The event object
34245         */
34246         "beforeclick":true,
34247         /**
34248         * @event checkchange
34249         * Fires when a node with a checkbox's checked property changes
34250         * @param {Node} this This node
34251         * @param {Boolean} checked
34252         */
34253         "checkchange":true,
34254         /**
34255         * @event click
34256         * Fires when a node is clicked
34257         * @param {Node} node The node
34258         * @param {Roo.EventObject} e The event object
34259         */
34260         "click":true,
34261         /**
34262         * @event dblclick
34263         * Fires when a node is double clicked
34264         * @param {Node} node The node
34265         * @param {Roo.EventObject} e The event object
34266         */
34267         "dblclick":true,
34268         /**
34269         * @event contextmenu
34270         * Fires when a node is right clicked
34271         * @param {Node} node The node
34272         * @param {Roo.EventObject} e The event object
34273         */
34274         "contextmenu":true,
34275         /**
34276         * @event beforechildrenrendered
34277         * Fires right before the child nodes for a node are rendered
34278         * @param {Node} node The node
34279         */
34280         "beforechildrenrendered":true,
34281         /**
34282         * @event startdrag
34283         * Fires when a node starts being dragged
34284         * @param {Roo.tree.TreePanel} this
34285         * @param {Roo.tree.TreeNode} node
34286         * @param {event} e The raw browser event
34287         */ 
34288        "startdrag" : true,
34289        /**
34290         * @event enddrag
34291         * Fires when a drag operation is complete
34292         * @param {Roo.tree.TreePanel} this
34293         * @param {Roo.tree.TreeNode} node
34294         * @param {event} e The raw browser event
34295         */
34296        "enddrag" : true,
34297        /**
34298         * @event dragdrop
34299         * Fires when a dragged node is dropped on a valid DD target
34300         * @param {Roo.tree.TreePanel} this
34301         * @param {Roo.tree.TreeNode} node
34302         * @param {DD} dd The dd it was dropped on
34303         * @param {event} e The raw browser event
34304         */
34305        "dragdrop" : true,
34306        /**
34307         * @event beforenodedrop
34308         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34309         * passed to handlers has the following properties:<br />
34310         * <ul style="padding:5px;padding-left:16px;">
34311         * <li>tree - The TreePanel</li>
34312         * <li>target - The node being targeted for the drop</li>
34313         * <li>data - The drag data from the drag source</li>
34314         * <li>point - The point of the drop - append, above or below</li>
34315         * <li>source - The drag source</li>
34316         * <li>rawEvent - Raw mouse event</li>
34317         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34318         * to be inserted by setting them on this object.</li>
34319         * <li>cancel - Set this to true to cancel the drop.</li>
34320         * </ul>
34321         * @param {Object} dropEvent
34322         */
34323        "beforenodedrop" : true,
34324        /**
34325         * @event nodedrop
34326         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34327         * passed to handlers has the following properties:<br />
34328         * <ul style="padding:5px;padding-left:16px;">
34329         * <li>tree - The TreePanel</li>
34330         * <li>target - The node being targeted for the drop</li>
34331         * <li>data - The drag data from the drag source</li>
34332         * <li>point - The point of the drop - append, above or below</li>
34333         * <li>source - The drag source</li>
34334         * <li>rawEvent - Raw mouse event</li>
34335         * <li>dropNode - Dropped node(s).</li>
34336         * </ul>
34337         * @param {Object} dropEvent
34338         */
34339        "nodedrop" : true,
34340         /**
34341         * @event nodedragover
34342         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34343         * passed to handlers has the following properties:<br />
34344         * <ul style="padding:5px;padding-left:16px;">
34345         * <li>tree - The TreePanel</li>
34346         * <li>target - The node being targeted for the drop</li>
34347         * <li>data - The drag data from the drag source</li>
34348         * <li>point - The point of the drop - append, above or below</li>
34349         * <li>source - The drag source</li>
34350         * <li>rawEvent - Raw mouse event</li>
34351         * <li>dropNode - Drop node(s) provided by the source.</li>
34352         * <li>cancel - Set this to true to signal drop not allowed.</li>
34353         * </ul>
34354         * @param {Object} dragOverEvent
34355         */
34356        "nodedragover" : true,
34357        /**
34358         * @event appendnode
34359         * Fires when append node to the tree
34360         * @param {Roo.tree.TreePanel} this
34361         * @param {Roo.tree.TreeNode} node
34362         * @param {Number} index The index of the newly appended node
34363         */
34364        "appendnode" : true
34365         
34366     });
34367     if(this.singleExpand){
34368        this.on("beforeexpand", this.restrictExpand, this);
34369     }
34370     if (this.editor) {
34371         this.editor.tree = this;
34372         this.editor = Roo.factory(this.editor, Roo.tree);
34373     }
34374     
34375     if (this.selModel) {
34376         this.selModel = Roo.factory(this.selModel, Roo.tree);
34377     }
34378    
34379 };
34380 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34381     rootVisible : true,
34382     animate: Roo.enableFx,
34383     lines : true,
34384     enableDD : false,
34385     hlDrop : Roo.enableFx,
34386   
34387     renderer: false,
34388     
34389     rendererTip: false,
34390     // private
34391     restrictExpand : function(node){
34392         var p = node.parentNode;
34393         if(p){
34394             if(p.expandedChild && p.expandedChild.parentNode == p){
34395                 p.expandedChild.collapse();
34396             }
34397             p.expandedChild = node;
34398         }
34399     },
34400
34401     // private override
34402     setRootNode : function(node){
34403         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34404         if(!this.rootVisible){
34405             node.ui = new Roo.tree.RootTreeNodeUI(node);
34406         }
34407         return node;
34408     },
34409
34410     /**
34411      * Returns the container element for this TreePanel
34412      */
34413     getEl : function(){
34414         return this.el;
34415     },
34416
34417     /**
34418      * Returns the default TreeLoader for this TreePanel
34419      */
34420     getLoader : function(){
34421         return this.loader;
34422     },
34423
34424     /**
34425      * Expand all nodes
34426      */
34427     expandAll : function(){
34428         this.root.expand(true);
34429     },
34430
34431     /**
34432      * Collapse all nodes
34433      */
34434     collapseAll : function(){
34435         this.root.collapse(true);
34436     },
34437
34438     /**
34439      * Returns the selection model used by this TreePanel
34440      */
34441     getSelectionModel : function(){
34442         if(!this.selModel){
34443             this.selModel = new Roo.tree.DefaultSelectionModel();
34444         }
34445         return this.selModel;
34446     },
34447
34448     /**
34449      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34450      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34451      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34452      * @return {Array}
34453      */
34454     getChecked : function(a, startNode){
34455         startNode = startNode || this.root;
34456         var r = [];
34457         var f = function(){
34458             if(this.attributes.checked){
34459                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34460             }
34461         }
34462         startNode.cascade(f);
34463         return r;
34464     },
34465
34466     /**
34467      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34468      * @param {String} path
34469      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34470      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34471      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34472      */
34473     expandPath : function(path, attr, callback){
34474         attr = attr || "id";
34475         var keys = path.split(this.pathSeparator);
34476         var curNode = this.root;
34477         if(curNode.attributes[attr] != keys[1]){ // invalid root
34478             if(callback){
34479                 callback(false, null);
34480             }
34481             return;
34482         }
34483         var index = 1;
34484         var f = function(){
34485             if(++index == keys.length){
34486                 if(callback){
34487                     callback(true, curNode);
34488                 }
34489                 return;
34490             }
34491             var c = curNode.findChild(attr, keys[index]);
34492             if(!c){
34493                 if(callback){
34494                     callback(false, curNode);
34495                 }
34496                 return;
34497             }
34498             curNode = c;
34499             c.expand(false, false, f);
34500         };
34501         curNode.expand(false, false, f);
34502     },
34503
34504     /**
34505      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34506      * @param {String} path
34507      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34508      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34509      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34510      */
34511     selectPath : function(path, attr, callback){
34512         attr = attr || "id";
34513         var keys = path.split(this.pathSeparator);
34514         var v = keys.pop();
34515         if(keys.length > 0){
34516             var f = function(success, node){
34517                 if(success && node){
34518                     var n = node.findChild(attr, v);
34519                     if(n){
34520                         n.select();
34521                         if(callback){
34522                             callback(true, n);
34523                         }
34524                     }else if(callback){
34525                         callback(false, n);
34526                     }
34527                 }else{
34528                     if(callback){
34529                         callback(false, n);
34530                     }
34531                 }
34532             };
34533             this.expandPath(keys.join(this.pathSeparator), attr, f);
34534         }else{
34535             this.root.select();
34536             if(callback){
34537                 callback(true, this.root);
34538             }
34539         }
34540     },
34541
34542     getTreeEl : function(){
34543         return this.el;
34544     },
34545
34546     /**
34547      * Trigger rendering of this TreePanel
34548      */
34549     render : function(){
34550         if (this.innerCt) {
34551             return this; // stop it rendering more than once!!
34552         }
34553         
34554         this.innerCt = this.el.createChild({tag:"ul",
34555                cls:"x-tree-root-ct " +
34556                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34557
34558         if(this.containerScroll){
34559             Roo.dd.ScrollManager.register(this.el);
34560         }
34561         if((this.enableDD || this.enableDrop) && !this.dropZone){
34562            /**
34563             * The dropZone used by this tree if drop is enabled
34564             * @type Roo.tree.TreeDropZone
34565             */
34566              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34567                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34568            });
34569         }
34570         if((this.enableDD || this.enableDrag) && !this.dragZone){
34571            /**
34572             * The dragZone used by this tree if drag is enabled
34573             * @type Roo.tree.TreeDragZone
34574             */
34575             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34576                ddGroup: this.ddGroup || "TreeDD",
34577                scroll: this.ddScroll
34578            });
34579         }
34580         this.getSelectionModel().init(this);
34581         if (!this.root) {
34582             Roo.log("ROOT not set in tree");
34583             return this;
34584         }
34585         this.root.render();
34586         if(!this.rootVisible){
34587             this.root.renderChildren();
34588         }
34589         return this;
34590     }
34591 });/*
34592  * Based on:
34593  * Ext JS Library 1.1.1
34594  * Copyright(c) 2006-2007, Ext JS, LLC.
34595  *
34596  * Originally Released Under LGPL - original licence link has changed is not relivant.
34597  *
34598  * Fork - LGPL
34599  * <script type="text/javascript">
34600  */
34601  
34602
34603 /**
34604  * @class Roo.tree.DefaultSelectionModel
34605  * @extends Roo.util.Observable
34606  * The default single selection for a TreePanel.
34607  * @param {Object} cfg Configuration
34608  */
34609 Roo.tree.DefaultSelectionModel = function(cfg){
34610    this.selNode = null;
34611    
34612    
34613    
34614    this.addEvents({
34615        /**
34616         * @event selectionchange
34617         * Fires when the selected node changes
34618         * @param {DefaultSelectionModel} this
34619         * @param {TreeNode} node the new selection
34620         */
34621        "selectionchange" : true,
34622
34623        /**
34624         * @event beforeselect
34625         * Fires before the selected node changes, return false to cancel the change
34626         * @param {DefaultSelectionModel} this
34627         * @param {TreeNode} node the new selection
34628         * @param {TreeNode} node the old selection
34629         */
34630        "beforeselect" : true
34631    });
34632    
34633     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34634 };
34635
34636 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34637     init : function(tree){
34638         this.tree = tree;
34639         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34640         tree.on("click", this.onNodeClick, this);
34641     },
34642     
34643     onNodeClick : function(node, e){
34644         if (e.ctrlKey && this.selNode == node)  {
34645             this.unselect(node);
34646             return;
34647         }
34648         this.select(node);
34649     },
34650     
34651     /**
34652      * Select a node.
34653      * @param {TreeNode} node The node to select
34654      * @return {TreeNode} The selected node
34655      */
34656     select : function(node){
34657         var last = this.selNode;
34658         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34659             if(last){
34660                 last.ui.onSelectedChange(false);
34661             }
34662             this.selNode = node;
34663             node.ui.onSelectedChange(true);
34664             this.fireEvent("selectionchange", this, node, last);
34665         }
34666         return node;
34667     },
34668     
34669     /**
34670      * Deselect a node.
34671      * @param {TreeNode} node The node to unselect
34672      */
34673     unselect : function(node){
34674         if(this.selNode == node){
34675             this.clearSelections();
34676         }    
34677     },
34678     
34679     /**
34680      * Clear all selections
34681      */
34682     clearSelections : function(){
34683         var n = this.selNode;
34684         if(n){
34685             n.ui.onSelectedChange(false);
34686             this.selNode = null;
34687             this.fireEvent("selectionchange", this, null);
34688         }
34689         return n;
34690     },
34691     
34692     /**
34693      * Get the selected node
34694      * @return {TreeNode} The selected node
34695      */
34696     getSelectedNode : function(){
34697         return this.selNode;    
34698     },
34699     
34700     /**
34701      * Returns true if the node is selected
34702      * @param {TreeNode} node The node to check
34703      * @return {Boolean}
34704      */
34705     isSelected : function(node){
34706         return this.selNode == node;  
34707     },
34708
34709     /**
34710      * Selects the node above the selected node in the tree, intelligently walking the nodes
34711      * @return TreeNode The new selection
34712      */
34713     selectPrevious : function(){
34714         var s = this.selNode || this.lastSelNode;
34715         if(!s){
34716             return null;
34717         }
34718         var ps = s.previousSibling;
34719         if(ps){
34720             if(!ps.isExpanded() || ps.childNodes.length < 1){
34721                 return this.select(ps);
34722             } else{
34723                 var lc = ps.lastChild;
34724                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34725                     lc = lc.lastChild;
34726                 }
34727                 return this.select(lc);
34728             }
34729         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34730             return this.select(s.parentNode);
34731         }
34732         return null;
34733     },
34734
34735     /**
34736      * Selects the node above the selected node in the tree, intelligently walking the nodes
34737      * @return TreeNode The new selection
34738      */
34739     selectNext : function(){
34740         var s = this.selNode || this.lastSelNode;
34741         if(!s){
34742             return null;
34743         }
34744         if(s.firstChild && s.isExpanded()){
34745              return this.select(s.firstChild);
34746          }else if(s.nextSibling){
34747              return this.select(s.nextSibling);
34748          }else if(s.parentNode){
34749             var newS = null;
34750             s.parentNode.bubble(function(){
34751                 if(this.nextSibling){
34752                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34753                     return false;
34754                 }
34755             });
34756             return newS;
34757          }
34758         return null;
34759     },
34760
34761     onKeyDown : function(e){
34762         var s = this.selNode || this.lastSelNode;
34763         // undesirable, but required
34764         var sm = this;
34765         if(!s){
34766             return;
34767         }
34768         var k = e.getKey();
34769         switch(k){
34770              case e.DOWN:
34771                  e.stopEvent();
34772                  this.selectNext();
34773              break;
34774              case e.UP:
34775                  e.stopEvent();
34776                  this.selectPrevious();
34777              break;
34778              case e.RIGHT:
34779                  e.preventDefault();
34780                  if(s.hasChildNodes()){
34781                      if(!s.isExpanded()){
34782                          s.expand();
34783                      }else if(s.firstChild){
34784                          this.select(s.firstChild, e);
34785                      }
34786                  }
34787              break;
34788              case e.LEFT:
34789                  e.preventDefault();
34790                  if(s.hasChildNodes() && s.isExpanded()){
34791                      s.collapse();
34792                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34793                      this.select(s.parentNode, e);
34794                  }
34795              break;
34796         };
34797     }
34798 });
34799
34800 /**
34801  * @class Roo.tree.MultiSelectionModel
34802  * @extends Roo.util.Observable
34803  * Multi selection for a TreePanel.
34804  * @param {Object} cfg Configuration
34805  */
34806 Roo.tree.MultiSelectionModel = function(){
34807    this.selNodes = [];
34808    this.selMap = {};
34809    this.addEvents({
34810        /**
34811         * @event selectionchange
34812         * Fires when the selected nodes change
34813         * @param {MultiSelectionModel} this
34814         * @param {Array} nodes Array of the selected nodes
34815         */
34816        "selectionchange" : true
34817    });
34818    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34819    
34820 };
34821
34822 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34823     init : function(tree){
34824         this.tree = tree;
34825         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34826         tree.on("click", this.onNodeClick, this);
34827     },
34828     
34829     onNodeClick : function(node, e){
34830         this.select(node, e, e.ctrlKey);
34831     },
34832     
34833     /**
34834      * Select a node.
34835      * @param {TreeNode} node The node to select
34836      * @param {EventObject} e (optional) An event associated with the selection
34837      * @param {Boolean} keepExisting True to retain existing selections
34838      * @return {TreeNode} The selected node
34839      */
34840     select : function(node, e, keepExisting){
34841         if(keepExisting !== true){
34842             this.clearSelections(true);
34843         }
34844         if(this.isSelected(node)){
34845             this.lastSelNode = node;
34846             return node;
34847         }
34848         this.selNodes.push(node);
34849         this.selMap[node.id] = node;
34850         this.lastSelNode = node;
34851         node.ui.onSelectedChange(true);
34852         this.fireEvent("selectionchange", this, this.selNodes);
34853         return node;
34854     },
34855     
34856     /**
34857      * Deselect a node.
34858      * @param {TreeNode} node The node to unselect
34859      */
34860     unselect : function(node){
34861         if(this.selMap[node.id]){
34862             node.ui.onSelectedChange(false);
34863             var sn = this.selNodes;
34864             var index = -1;
34865             if(sn.indexOf){
34866                 index = sn.indexOf(node);
34867             }else{
34868                 for(var i = 0, len = sn.length; i < len; i++){
34869                     if(sn[i] == node){
34870                         index = i;
34871                         break;
34872                     }
34873                 }
34874             }
34875             if(index != -1){
34876                 this.selNodes.splice(index, 1);
34877             }
34878             delete this.selMap[node.id];
34879             this.fireEvent("selectionchange", this, this.selNodes);
34880         }
34881     },
34882     
34883     /**
34884      * Clear all selections
34885      */
34886     clearSelections : function(suppressEvent){
34887         var sn = this.selNodes;
34888         if(sn.length > 0){
34889             for(var i = 0, len = sn.length; i < len; i++){
34890                 sn[i].ui.onSelectedChange(false);
34891             }
34892             this.selNodes = [];
34893             this.selMap = {};
34894             if(suppressEvent !== true){
34895                 this.fireEvent("selectionchange", this, this.selNodes);
34896             }
34897         }
34898     },
34899     
34900     /**
34901      * Returns true if the node is selected
34902      * @param {TreeNode} node The node to check
34903      * @return {Boolean}
34904      */
34905     isSelected : function(node){
34906         return this.selMap[node.id] ? true : false;  
34907     },
34908     
34909     /**
34910      * Returns an array of the selected nodes
34911      * @return {Array}
34912      */
34913     getSelectedNodes : function(){
34914         return this.selNodes;    
34915     },
34916
34917     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
34918
34919     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
34920
34921     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
34922 });/*
34923  * Based on:
34924  * Ext JS Library 1.1.1
34925  * Copyright(c) 2006-2007, Ext JS, LLC.
34926  *
34927  * Originally Released Under LGPL - original licence link has changed is not relivant.
34928  *
34929  * Fork - LGPL
34930  * <script type="text/javascript">
34931  */
34932  
34933 /**
34934  * @class Roo.tree.TreeNode
34935  * @extends Roo.data.Node
34936  * @cfg {String} text The text for this node
34937  * @cfg {Boolean} expanded true to start the node expanded
34938  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
34939  * @cfg {Boolean} allowDrop false if this node cannot be drop on
34940  * @cfg {Boolean} disabled true to start the node disabled
34941  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
34942  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
34943  * @cfg {String} cls A css class to be added to the node
34944  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
34945  * @cfg {String} href URL of the link used for the node (defaults to #)
34946  * @cfg {String} hrefTarget target frame for the link
34947  * @cfg {String} qtip An Ext QuickTip for the node
34948  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
34949  * @cfg {Boolean} singleClickExpand True for single click expand on this node
34950  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
34951  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
34952  * (defaults to undefined with no checkbox rendered)
34953  * @constructor
34954  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
34955  */
34956 Roo.tree.TreeNode = function(attributes){
34957     attributes = attributes || {};
34958     if(typeof attributes == "string"){
34959         attributes = {text: attributes};
34960     }
34961     this.childrenRendered = false;
34962     this.rendered = false;
34963     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
34964     this.expanded = attributes.expanded === true;
34965     this.isTarget = attributes.isTarget !== false;
34966     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
34967     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
34968
34969     /**
34970      * Read-only. The text for this node. To change it use setText().
34971      * @type String
34972      */
34973     this.text = attributes.text;
34974     /**
34975      * True if this node is disabled.
34976      * @type Boolean
34977      */
34978     this.disabled = attributes.disabled === true;
34979
34980     this.addEvents({
34981         /**
34982         * @event textchange
34983         * Fires when the text for this node is changed
34984         * @param {Node} this This node
34985         * @param {String} text The new text
34986         * @param {String} oldText The old text
34987         */
34988         "textchange" : true,
34989         /**
34990         * @event beforeexpand
34991         * Fires before this node is expanded, return false to cancel.
34992         * @param {Node} this This node
34993         * @param {Boolean} deep
34994         * @param {Boolean} anim
34995         */
34996         "beforeexpand" : true,
34997         /**
34998         * @event beforecollapse
34999         * Fires before this node is collapsed, return false to cancel.
35000         * @param {Node} this This node
35001         * @param {Boolean} deep
35002         * @param {Boolean} anim
35003         */
35004         "beforecollapse" : true,
35005         /**
35006         * @event expand
35007         * Fires when this node is expanded
35008         * @param {Node} this This node
35009         */
35010         "expand" : true,
35011         /**
35012         * @event disabledchange
35013         * Fires when the disabled status of this node changes
35014         * @param {Node} this This node
35015         * @param {Boolean} disabled
35016         */
35017         "disabledchange" : true,
35018         /**
35019         * @event collapse
35020         * Fires when this node is collapsed
35021         * @param {Node} this This node
35022         */
35023         "collapse" : true,
35024         /**
35025         * @event beforeclick
35026         * Fires before click processing. Return false to cancel the default action.
35027         * @param {Node} this This node
35028         * @param {Roo.EventObject} e The event object
35029         */
35030         "beforeclick":true,
35031         /**
35032         * @event checkchange
35033         * Fires when a node with a checkbox's checked property changes
35034         * @param {Node} this This node
35035         * @param {Boolean} checked
35036         */
35037         "checkchange":true,
35038         /**
35039         * @event click
35040         * Fires when this node is clicked
35041         * @param {Node} this This node
35042         * @param {Roo.EventObject} e The event object
35043         */
35044         "click":true,
35045         /**
35046         * @event dblclick
35047         * Fires when this node is double clicked
35048         * @param {Node} this This node
35049         * @param {Roo.EventObject} e The event object
35050         */
35051         "dblclick":true,
35052         /**
35053         * @event contextmenu
35054         * Fires when this node is right clicked
35055         * @param {Node} this This node
35056         * @param {Roo.EventObject} e The event object
35057         */
35058         "contextmenu":true,
35059         /**
35060         * @event beforechildrenrendered
35061         * Fires right before the child nodes for this node are rendered
35062         * @param {Node} this This node
35063         */
35064         "beforechildrenrendered":true
35065     });
35066
35067     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35068
35069     /**
35070      * Read-only. The UI for this node
35071      * @type TreeNodeUI
35072      */
35073     this.ui = new uiClass(this);
35074     
35075     // finally support items[]
35076     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35077         return;
35078     }
35079     
35080     
35081     Roo.each(this.attributes.items, function(c) {
35082         this.appendChild(Roo.factory(c,Roo.Tree));
35083     }, this);
35084     delete this.attributes.items;
35085     
35086     
35087     
35088 };
35089 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35090     preventHScroll: true,
35091     /**
35092      * Returns true if this node is expanded
35093      * @return {Boolean}
35094      */
35095     isExpanded : function(){
35096         return this.expanded;
35097     },
35098
35099     /**
35100      * Returns the UI object for this node
35101      * @return {TreeNodeUI}
35102      */
35103     getUI : function(){
35104         return this.ui;
35105     },
35106
35107     // private override
35108     setFirstChild : function(node){
35109         var of = this.firstChild;
35110         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35111         if(this.childrenRendered && of && node != of){
35112             of.renderIndent(true, true);
35113         }
35114         if(this.rendered){
35115             this.renderIndent(true, true);
35116         }
35117     },
35118
35119     // private override
35120     setLastChild : function(node){
35121         var ol = this.lastChild;
35122         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35123         if(this.childrenRendered && ol && node != ol){
35124             ol.renderIndent(true, true);
35125         }
35126         if(this.rendered){
35127             this.renderIndent(true, true);
35128         }
35129     },
35130
35131     // these methods are overridden to provide lazy rendering support
35132     // private override
35133     appendChild : function()
35134     {
35135         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35136         if(node && this.childrenRendered){
35137             node.render();
35138         }
35139         this.ui.updateExpandIcon();
35140         return node;
35141     },
35142
35143     // private override
35144     removeChild : function(node){
35145         this.ownerTree.getSelectionModel().unselect(node);
35146         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35147         // if it's been rendered remove dom node
35148         if(this.childrenRendered){
35149             node.ui.remove();
35150         }
35151         if(this.childNodes.length < 1){
35152             this.collapse(false, false);
35153         }else{
35154             this.ui.updateExpandIcon();
35155         }
35156         if(!this.firstChild) {
35157             this.childrenRendered = false;
35158         }
35159         return node;
35160     },
35161
35162     // private override
35163     insertBefore : function(node, refNode){
35164         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35165         if(newNode && refNode && this.childrenRendered){
35166             node.render();
35167         }
35168         this.ui.updateExpandIcon();
35169         return newNode;
35170     },
35171
35172     /**
35173      * Sets the text for this node
35174      * @param {String} text
35175      */
35176     setText : function(text){
35177         var oldText = this.text;
35178         this.text = text;
35179         this.attributes.text = text;
35180         if(this.rendered){ // event without subscribing
35181             this.ui.onTextChange(this, text, oldText);
35182         }
35183         this.fireEvent("textchange", this, text, oldText);
35184     },
35185
35186     /**
35187      * Triggers selection of this node
35188      */
35189     select : function(){
35190         this.getOwnerTree().getSelectionModel().select(this);
35191     },
35192
35193     /**
35194      * Triggers deselection of this node
35195      */
35196     unselect : function(){
35197         this.getOwnerTree().getSelectionModel().unselect(this);
35198     },
35199
35200     /**
35201      * Returns true if this node is selected
35202      * @return {Boolean}
35203      */
35204     isSelected : function(){
35205         return this.getOwnerTree().getSelectionModel().isSelected(this);
35206     },
35207
35208     /**
35209      * Expand this node.
35210      * @param {Boolean} deep (optional) True to expand all children as well
35211      * @param {Boolean} anim (optional) false to cancel the default animation
35212      * @param {Function} callback (optional) A callback to be called when
35213      * expanding this node completes (does not wait for deep expand to complete).
35214      * Called with 1 parameter, this node.
35215      */
35216     expand : function(deep, anim, callback){
35217         if(!this.expanded){
35218             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35219                 return;
35220             }
35221             if(!this.childrenRendered){
35222                 this.renderChildren();
35223             }
35224             this.expanded = true;
35225             
35226             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35227                 this.ui.animExpand(function(){
35228                     this.fireEvent("expand", this);
35229                     if(typeof callback == "function"){
35230                         callback(this);
35231                     }
35232                     if(deep === true){
35233                         this.expandChildNodes(true);
35234                     }
35235                 }.createDelegate(this));
35236                 return;
35237             }else{
35238                 this.ui.expand();
35239                 this.fireEvent("expand", this);
35240                 if(typeof callback == "function"){
35241                     callback(this);
35242                 }
35243             }
35244         }else{
35245            if(typeof callback == "function"){
35246                callback(this);
35247            }
35248         }
35249         if(deep === true){
35250             this.expandChildNodes(true);
35251         }
35252     },
35253
35254     isHiddenRoot : function(){
35255         return this.isRoot && !this.getOwnerTree().rootVisible;
35256     },
35257
35258     /**
35259      * Collapse this node.
35260      * @param {Boolean} deep (optional) True to collapse all children as well
35261      * @param {Boolean} anim (optional) false to cancel the default animation
35262      */
35263     collapse : function(deep, anim){
35264         if(this.expanded && !this.isHiddenRoot()){
35265             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35266                 return;
35267             }
35268             this.expanded = false;
35269             if((this.getOwnerTree().animate && anim !== false) || anim){
35270                 this.ui.animCollapse(function(){
35271                     this.fireEvent("collapse", this);
35272                     if(deep === true){
35273                         this.collapseChildNodes(true);
35274                     }
35275                 }.createDelegate(this));
35276                 return;
35277             }else{
35278                 this.ui.collapse();
35279                 this.fireEvent("collapse", this);
35280             }
35281         }
35282         if(deep === true){
35283             var cs = this.childNodes;
35284             for(var i = 0, len = cs.length; i < len; i++) {
35285                 cs[i].collapse(true, false);
35286             }
35287         }
35288     },
35289
35290     // private
35291     delayedExpand : function(delay){
35292         if(!this.expandProcId){
35293             this.expandProcId = this.expand.defer(delay, this);
35294         }
35295     },
35296
35297     // private
35298     cancelExpand : function(){
35299         if(this.expandProcId){
35300             clearTimeout(this.expandProcId);
35301         }
35302         this.expandProcId = false;
35303     },
35304
35305     /**
35306      * Toggles expanded/collapsed state of the node
35307      */
35308     toggle : function(){
35309         if(this.expanded){
35310             this.collapse();
35311         }else{
35312             this.expand();
35313         }
35314     },
35315
35316     /**
35317      * Ensures all parent nodes are expanded
35318      */
35319     ensureVisible : function(callback){
35320         var tree = this.getOwnerTree();
35321         tree.expandPath(this.parentNode.getPath(), false, function(){
35322             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35323             Roo.callback(callback);
35324         }.createDelegate(this));
35325     },
35326
35327     /**
35328      * Expand all child nodes
35329      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35330      */
35331     expandChildNodes : function(deep){
35332         var cs = this.childNodes;
35333         for(var i = 0, len = cs.length; i < len; i++) {
35334                 cs[i].expand(deep);
35335         }
35336     },
35337
35338     /**
35339      * Collapse all child nodes
35340      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35341      */
35342     collapseChildNodes : function(deep){
35343         var cs = this.childNodes;
35344         for(var i = 0, len = cs.length; i < len; i++) {
35345                 cs[i].collapse(deep);
35346         }
35347     },
35348
35349     /**
35350      * Disables this node
35351      */
35352     disable : function(){
35353         this.disabled = true;
35354         this.unselect();
35355         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35356             this.ui.onDisableChange(this, true);
35357         }
35358         this.fireEvent("disabledchange", this, true);
35359     },
35360
35361     /**
35362      * Enables this node
35363      */
35364     enable : function(){
35365         this.disabled = false;
35366         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35367             this.ui.onDisableChange(this, false);
35368         }
35369         this.fireEvent("disabledchange", this, false);
35370     },
35371
35372     // private
35373     renderChildren : function(suppressEvent){
35374         if(suppressEvent !== false){
35375             this.fireEvent("beforechildrenrendered", this);
35376         }
35377         var cs = this.childNodes;
35378         for(var i = 0, len = cs.length; i < len; i++){
35379             cs[i].render(true);
35380         }
35381         this.childrenRendered = true;
35382     },
35383
35384     // private
35385     sort : function(fn, scope){
35386         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35387         if(this.childrenRendered){
35388             var cs = this.childNodes;
35389             for(var i = 0, len = cs.length; i < len; i++){
35390                 cs[i].render(true);
35391             }
35392         }
35393     },
35394
35395     // private
35396     render : function(bulkRender){
35397         this.ui.render(bulkRender);
35398         if(!this.rendered){
35399             this.rendered = true;
35400             if(this.expanded){
35401                 this.expanded = false;
35402                 this.expand(false, false);
35403             }
35404         }
35405     },
35406
35407     // private
35408     renderIndent : function(deep, refresh){
35409         if(refresh){
35410             this.ui.childIndent = null;
35411         }
35412         this.ui.renderIndent();
35413         if(deep === true && this.childrenRendered){
35414             var cs = this.childNodes;
35415             for(var i = 0, len = cs.length; i < len; i++){
35416                 cs[i].renderIndent(true, refresh);
35417             }
35418         }
35419     }
35420 });/*
35421  * Based on:
35422  * Ext JS Library 1.1.1
35423  * Copyright(c) 2006-2007, Ext JS, LLC.
35424  *
35425  * Originally Released Under LGPL - original licence link has changed is not relivant.
35426  *
35427  * Fork - LGPL
35428  * <script type="text/javascript">
35429  */
35430  
35431 /**
35432  * @class Roo.tree.AsyncTreeNode
35433  * @extends Roo.tree.TreeNode
35434  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35435  * @constructor
35436  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35437  */
35438  Roo.tree.AsyncTreeNode = function(config){
35439     this.loaded = false;
35440     this.loading = false;
35441     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35442     /**
35443     * @event beforeload
35444     * Fires before this node is loaded, return false to cancel
35445     * @param {Node} this This node
35446     */
35447     this.addEvents({'beforeload':true, 'load': true});
35448     /**
35449     * @event load
35450     * Fires when this node is loaded
35451     * @param {Node} this This node
35452     */
35453     /**
35454      * The loader used by this node (defaults to using the tree's defined loader)
35455      * @type TreeLoader
35456      * @property loader
35457      */
35458 };
35459 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35460     expand : function(deep, anim, callback){
35461         if(this.loading){ // if an async load is already running, waiting til it's done
35462             var timer;
35463             var f = function(){
35464                 if(!this.loading){ // done loading
35465                     clearInterval(timer);
35466                     this.expand(deep, anim, callback);
35467                 }
35468             }.createDelegate(this);
35469             timer = setInterval(f, 200);
35470             return;
35471         }
35472         if(!this.loaded){
35473             if(this.fireEvent("beforeload", this) === false){
35474                 return;
35475             }
35476             this.loading = true;
35477             this.ui.beforeLoad(this);
35478             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35479             if(loader){
35480                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35481                 return;
35482             }
35483         }
35484         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35485     },
35486     
35487     /**
35488      * Returns true if this node is currently loading
35489      * @return {Boolean}
35490      */
35491     isLoading : function(){
35492         return this.loading;  
35493     },
35494     
35495     loadComplete : function(deep, anim, callback){
35496         this.loading = false;
35497         this.loaded = true;
35498         this.ui.afterLoad(this);
35499         this.fireEvent("load", this);
35500         this.expand(deep, anim, callback);
35501     },
35502     
35503     /**
35504      * Returns true if this node has been loaded
35505      * @return {Boolean}
35506      */
35507     isLoaded : function(){
35508         return this.loaded;
35509     },
35510     
35511     hasChildNodes : function(){
35512         if(!this.isLeaf() && !this.loaded){
35513             return true;
35514         }else{
35515             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35516         }
35517     },
35518
35519     /**
35520      * Trigger a reload for this node
35521      * @param {Function} callback
35522      */
35523     reload : function(callback){
35524         this.collapse(false, false);
35525         while(this.firstChild){
35526             this.removeChild(this.firstChild);
35527         }
35528         this.childrenRendered = false;
35529         this.loaded = false;
35530         if(this.isHiddenRoot()){
35531             this.expanded = false;
35532         }
35533         this.expand(false, false, callback);
35534     }
35535 });/*
35536  * Based on:
35537  * Ext JS Library 1.1.1
35538  * Copyright(c) 2006-2007, Ext JS, LLC.
35539  *
35540  * Originally Released Under LGPL - original licence link has changed is not relivant.
35541  *
35542  * Fork - LGPL
35543  * <script type="text/javascript">
35544  */
35545  
35546 /**
35547  * @class Roo.tree.TreeNodeUI
35548  * @constructor
35549  * @param {Object} node The node to render
35550  * The TreeNode UI implementation is separate from the
35551  * tree implementation. Unless you are customizing the tree UI,
35552  * you should never have to use this directly.
35553  */
35554 Roo.tree.TreeNodeUI = function(node){
35555     this.node = node;
35556     this.rendered = false;
35557     this.animating = false;
35558     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35559 };
35560
35561 Roo.tree.TreeNodeUI.prototype = {
35562     removeChild : function(node){
35563         if(this.rendered){
35564             this.ctNode.removeChild(node.ui.getEl());
35565         }
35566     },
35567
35568     beforeLoad : function(){
35569          this.addClass("x-tree-node-loading");
35570     },
35571
35572     afterLoad : function(){
35573          this.removeClass("x-tree-node-loading");
35574     },
35575
35576     onTextChange : function(node, text, oldText){
35577         if(this.rendered){
35578             this.textNode.innerHTML = text;
35579         }
35580     },
35581
35582     onDisableChange : function(node, state){
35583         this.disabled = state;
35584         if(state){
35585             this.addClass("x-tree-node-disabled");
35586         }else{
35587             this.removeClass("x-tree-node-disabled");
35588         }
35589     },
35590
35591     onSelectedChange : function(state){
35592         if(state){
35593             this.focus();
35594             this.addClass("x-tree-selected");
35595         }else{
35596             //this.blur();
35597             this.removeClass("x-tree-selected");
35598         }
35599     },
35600
35601     onMove : function(tree, node, oldParent, newParent, index, refNode){
35602         this.childIndent = null;
35603         if(this.rendered){
35604             var targetNode = newParent.ui.getContainer();
35605             if(!targetNode){//target not rendered
35606                 this.holder = document.createElement("div");
35607                 this.holder.appendChild(this.wrap);
35608                 return;
35609             }
35610             var insertBefore = refNode ? refNode.ui.getEl() : null;
35611             if(insertBefore){
35612                 targetNode.insertBefore(this.wrap, insertBefore);
35613             }else{
35614                 targetNode.appendChild(this.wrap);
35615             }
35616             this.node.renderIndent(true);
35617         }
35618     },
35619
35620     addClass : function(cls){
35621         if(this.elNode){
35622             Roo.fly(this.elNode).addClass(cls);
35623         }
35624     },
35625
35626     removeClass : function(cls){
35627         if(this.elNode){
35628             Roo.fly(this.elNode).removeClass(cls);
35629         }
35630     },
35631
35632     remove : function(){
35633         if(this.rendered){
35634             this.holder = document.createElement("div");
35635             this.holder.appendChild(this.wrap);
35636         }
35637     },
35638
35639     fireEvent : function(){
35640         return this.node.fireEvent.apply(this.node, arguments);
35641     },
35642
35643     initEvents : function(){
35644         this.node.on("move", this.onMove, this);
35645         var E = Roo.EventManager;
35646         var a = this.anchor;
35647
35648         var el = Roo.fly(a, '_treeui');
35649
35650         if(Roo.isOpera){ // opera render bug ignores the CSS
35651             el.setStyle("text-decoration", "none");
35652         }
35653
35654         el.on("click", this.onClick, this);
35655         el.on("dblclick", this.onDblClick, this);
35656
35657         if(this.checkbox){
35658             Roo.EventManager.on(this.checkbox,
35659                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35660         }
35661
35662         el.on("contextmenu", this.onContextMenu, this);
35663
35664         var icon = Roo.fly(this.iconNode);
35665         icon.on("click", this.onClick, this);
35666         icon.on("dblclick", this.onDblClick, this);
35667         icon.on("contextmenu", this.onContextMenu, this);
35668         E.on(this.ecNode, "click", this.ecClick, this, true);
35669
35670         if(this.node.disabled){
35671             this.addClass("x-tree-node-disabled");
35672         }
35673         if(this.node.hidden){
35674             this.addClass("x-tree-node-disabled");
35675         }
35676         var ot = this.node.getOwnerTree();
35677         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35678         if(dd && (!this.node.isRoot || ot.rootVisible)){
35679             Roo.dd.Registry.register(this.elNode, {
35680                 node: this.node,
35681                 handles: this.getDDHandles(),
35682                 isHandle: false
35683             });
35684         }
35685     },
35686
35687     getDDHandles : function(){
35688         return [this.iconNode, this.textNode];
35689     },
35690
35691     hide : function(){
35692         if(this.rendered){
35693             this.wrap.style.display = "none";
35694         }
35695     },
35696
35697     show : function(){
35698         if(this.rendered){
35699             this.wrap.style.display = "";
35700         }
35701     },
35702
35703     onContextMenu : function(e){
35704         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35705             e.preventDefault();
35706             this.focus();
35707             this.fireEvent("contextmenu", this.node, e);
35708         }
35709     },
35710
35711     onClick : function(e){
35712         if(this.dropping){
35713             e.stopEvent();
35714             return;
35715         }
35716         if(this.fireEvent("beforeclick", this.node, e) !== false){
35717             if(!this.disabled && this.node.attributes.href){
35718                 this.fireEvent("click", this.node, e);
35719                 return;
35720             }
35721             e.preventDefault();
35722             if(this.disabled){
35723                 return;
35724             }
35725
35726             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35727                 this.node.toggle();
35728             }
35729
35730             this.fireEvent("click", this.node, e);
35731         }else{
35732             e.stopEvent();
35733         }
35734     },
35735
35736     onDblClick : function(e){
35737         e.preventDefault();
35738         if(this.disabled){
35739             return;
35740         }
35741         if(this.checkbox){
35742             this.toggleCheck();
35743         }
35744         if(!this.animating && this.node.hasChildNodes()){
35745             this.node.toggle();
35746         }
35747         this.fireEvent("dblclick", this.node, e);
35748     },
35749
35750     onCheckChange : function(){
35751         var checked = this.checkbox.checked;
35752         this.node.attributes.checked = checked;
35753         this.fireEvent('checkchange', this.node, checked);
35754     },
35755
35756     ecClick : function(e){
35757         if(!this.animating && this.node.hasChildNodes()){
35758             this.node.toggle();
35759         }
35760     },
35761
35762     startDrop : function(){
35763         this.dropping = true;
35764     },
35765
35766     // delayed drop so the click event doesn't get fired on a drop
35767     endDrop : function(){
35768        setTimeout(function(){
35769            this.dropping = false;
35770        }.createDelegate(this), 50);
35771     },
35772
35773     expand : function(){
35774         this.updateExpandIcon();
35775         this.ctNode.style.display = "";
35776     },
35777
35778     focus : function(){
35779         if(!this.node.preventHScroll){
35780             try{this.anchor.focus();
35781             }catch(e){}
35782         }else if(!Roo.isIE){
35783             try{
35784                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35785                 var l = noscroll.scrollLeft;
35786                 this.anchor.focus();
35787                 noscroll.scrollLeft = l;
35788             }catch(e){}
35789         }
35790     },
35791
35792     toggleCheck : function(value){
35793         var cb = this.checkbox;
35794         if(cb){
35795             cb.checked = (value === undefined ? !cb.checked : value);
35796         }
35797     },
35798
35799     blur : function(){
35800         try{
35801             this.anchor.blur();
35802         }catch(e){}
35803     },
35804
35805     animExpand : function(callback){
35806         var ct = Roo.get(this.ctNode);
35807         ct.stopFx();
35808         if(!this.node.hasChildNodes()){
35809             this.updateExpandIcon();
35810             this.ctNode.style.display = "";
35811             Roo.callback(callback);
35812             return;
35813         }
35814         this.animating = true;
35815         this.updateExpandIcon();
35816
35817         ct.slideIn('t', {
35818            callback : function(){
35819                this.animating = false;
35820                Roo.callback(callback);
35821             },
35822             scope: this,
35823             duration: this.node.ownerTree.duration || .25
35824         });
35825     },
35826
35827     highlight : function(){
35828         var tree = this.node.getOwnerTree();
35829         Roo.fly(this.wrap).highlight(
35830             tree.hlColor || "C3DAF9",
35831             {endColor: tree.hlBaseColor}
35832         );
35833     },
35834
35835     collapse : function(){
35836         this.updateExpandIcon();
35837         this.ctNode.style.display = "none";
35838     },
35839
35840     animCollapse : function(callback){
35841         var ct = Roo.get(this.ctNode);
35842         ct.enableDisplayMode('block');
35843         ct.stopFx();
35844
35845         this.animating = true;
35846         this.updateExpandIcon();
35847
35848         ct.slideOut('t', {
35849             callback : function(){
35850                this.animating = false;
35851                Roo.callback(callback);
35852             },
35853             scope: this,
35854             duration: this.node.ownerTree.duration || .25
35855         });
35856     },
35857
35858     getContainer : function(){
35859         return this.ctNode;
35860     },
35861
35862     getEl : function(){
35863         return this.wrap;
35864     },
35865
35866     appendDDGhost : function(ghostNode){
35867         ghostNode.appendChild(this.elNode.cloneNode(true));
35868     },
35869
35870     getDDRepairXY : function(){
35871         return Roo.lib.Dom.getXY(this.iconNode);
35872     },
35873
35874     onRender : function(){
35875         this.render();
35876     },
35877
35878     render : function(bulkRender){
35879         var n = this.node, a = n.attributes;
35880         var targetNode = n.parentNode ?
35881               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
35882
35883         if(!this.rendered){
35884             this.rendered = true;
35885
35886             this.renderElements(n, a, targetNode, bulkRender);
35887
35888             if(a.qtip){
35889                if(this.textNode.setAttributeNS){
35890                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
35891                    if(a.qtipTitle){
35892                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
35893                    }
35894                }else{
35895                    this.textNode.setAttribute("ext:qtip", a.qtip);
35896                    if(a.qtipTitle){
35897                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
35898                    }
35899                }
35900             }else if(a.qtipCfg){
35901                 a.qtipCfg.target = Roo.id(this.textNode);
35902                 Roo.QuickTips.register(a.qtipCfg);
35903             }
35904             this.initEvents();
35905             if(!this.node.expanded){
35906                 this.updateExpandIcon();
35907             }
35908         }else{
35909             if(bulkRender === true) {
35910                 targetNode.appendChild(this.wrap);
35911             }
35912         }
35913     },
35914
35915     renderElements : function(n, a, targetNode, bulkRender)
35916     {
35917         // add some indent caching, this helps performance when rendering a large tree
35918         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
35919         var t = n.getOwnerTree();
35920         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
35921         if (typeof(n.attributes.html) != 'undefined') {
35922             txt = n.attributes.html;
35923         }
35924         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
35925         var cb = typeof a.checked == 'boolean';
35926         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
35927         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
35928             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
35929             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
35930             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
35931             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
35932             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
35933              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
35934                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
35935             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
35936             "</li>"];
35937
35938         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
35939             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
35940                                 n.nextSibling.ui.getEl(), buf.join(""));
35941         }else{
35942             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
35943         }
35944
35945         this.elNode = this.wrap.childNodes[0];
35946         this.ctNode = this.wrap.childNodes[1];
35947         var cs = this.elNode.childNodes;
35948         this.indentNode = cs[0];
35949         this.ecNode = cs[1];
35950         this.iconNode = cs[2];
35951         var index = 3;
35952         if(cb){
35953             this.checkbox = cs[3];
35954             index++;
35955         }
35956         this.anchor = cs[index];
35957         this.textNode = cs[index].firstChild;
35958     },
35959
35960     getAnchor : function(){
35961         return this.anchor;
35962     },
35963
35964     getTextEl : function(){
35965         return this.textNode;
35966     },
35967
35968     getIconEl : function(){
35969         return this.iconNode;
35970     },
35971
35972     isChecked : function(){
35973         return this.checkbox ? this.checkbox.checked : false;
35974     },
35975
35976     updateExpandIcon : function(){
35977         if(this.rendered){
35978             var n = this.node, c1, c2;
35979             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
35980             var hasChild = n.hasChildNodes();
35981             if(hasChild){
35982                 if(n.expanded){
35983                     cls += "-minus";
35984                     c1 = "x-tree-node-collapsed";
35985                     c2 = "x-tree-node-expanded";
35986                 }else{
35987                     cls += "-plus";
35988                     c1 = "x-tree-node-expanded";
35989                     c2 = "x-tree-node-collapsed";
35990                 }
35991                 if(this.wasLeaf){
35992                     this.removeClass("x-tree-node-leaf");
35993                     this.wasLeaf = false;
35994                 }
35995                 if(this.c1 != c1 || this.c2 != c2){
35996                     Roo.fly(this.elNode).replaceClass(c1, c2);
35997                     this.c1 = c1; this.c2 = c2;
35998                 }
35999             }else{
36000                 // this changes non-leafs into leafs if they have no children.
36001                 // it's not very rational behaviour..
36002                 
36003                 if(!this.wasLeaf && this.node.leaf){
36004                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36005                     delete this.c1;
36006                     delete this.c2;
36007                     this.wasLeaf = true;
36008                 }
36009             }
36010             var ecc = "x-tree-ec-icon "+cls;
36011             if(this.ecc != ecc){
36012                 this.ecNode.className = ecc;
36013                 this.ecc = ecc;
36014             }
36015         }
36016     },
36017
36018     getChildIndent : function(){
36019         if(!this.childIndent){
36020             var buf = [];
36021             var p = this.node;
36022             while(p){
36023                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36024                     if(!p.isLast()) {
36025                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36026                     } else {
36027                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36028                     }
36029                 }
36030                 p = p.parentNode;
36031             }
36032             this.childIndent = buf.join("");
36033         }
36034         return this.childIndent;
36035     },
36036
36037     renderIndent : function(){
36038         if(this.rendered){
36039             var indent = "";
36040             var p = this.node.parentNode;
36041             if(p){
36042                 indent = p.ui.getChildIndent();
36043             }
36044             if(this.indentMarkup != indent){ // don't rerender if not required
36045                 this.indentNode.innerHTML = indent;
36046                 this.indentMarkup = indent;
36047             }
36048             this.updateExpandIcon();
36049         }
36050     }
36051 };
36052
36053 Roo.tree.RootTreeNodeUI = function(){
36054     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36055 };
36056 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36057     render : function(){
36058         if(!this.rendered){
36059             var targetNode = this.node.ownerTree.innerCt.dom;
36060             this.node.expanded = true;
36061             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36062             this.wrap = this.ctNode = targetNode.firstChild;
36063         }
36064     },
36065     collapse : function(){
36066     },
36067     expand : function(){
36068     }
36069 });/*
36070  * Based on:
36071  * Ext JS Library 1.1.1
36072  * Copyright(c) 2006-2007, Ext JS, LLC.
36073  *
36074  * Originally Released Under LGPL - original licence link has changed is not relivant.
36075  *
36076  * Fork - LGPL
36077  * <script type="text/javascript">
36078  */
36079 /**
36080  * @class Roo.tree.TreeLoader
36081  * @extends Roo.util.Observable
36082  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36083  * nodes from a specified URL. The response must be a javascript Array definition
36084  * who's elements are node definition objects. eg:
36085  * <pre><code>
36086 {  success : true,
36087    data :      [
36088    
36089     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36090     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36091     ]
36092 }
36093
36094
36095 </code></pre>
36096  * <br><br>
36097  * The old style respose with just an array is still supported, but not recommended.
36098  * <br><br>
36099  *
36100  * A server request is sent, and child nodes are loaded only when a node is expanded.
36101  * The loading node's id is passed to the server under the parameter name "node" to
36102  * enable the server to produce the correct child nodes.
36103  * <br><br>
36104  * To pass extra parameters, an event handler may be attached to the "beforeload"
36105  * event, and the parameters specified in the TreeLoader's baseParams property:
36106  * <pre><code>
36107     myTreeLoader.on("beforeload", function(treeLoader, node) {
36108         this.baseParams.category = node.attributes.category;
36109     }, this);
36110     
36111 </code></pre>
36112  *
36113  * This would pass an HTTP parameter called "category" to the server containing
36114  * the value of the Node's "category" attribute.
36115  * @constructor
36116  * Creates a new Treeloader.
36117  * @param {Object} config A config object containing config properties.
36118  */
36119 Roo.tree.TreeLoader = function(config){
36120     this.baseParams = {};
36121     this.requestMethod = "POST";
36122     Roo.apply(this, config);
36123
36124     this.addEvents({
36125     
36126         /**
36127          * @event beforeload
36128          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36129          * @param {Object} This TreeLoader object.
36130          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36131          * @param {Object} callback The callback function specified in the {@link #load} call.
36132          */
36133         beforeload : true,
36134         /**
36135          * @event load
36136          * Fires when the node has been successfuly loaded.
36137          * @param {Object} This TreeLoader object.
36138          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36139          * @param {Object} response The response object containing the data from the server.
36140          */
36141         load : true,
36142         /**
36143          * @event loadexception
36144          * Fires if the network request failed.
36145          * @param {Object} This TreeLoader object.
36146          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36147          * @param {Object} response The response object containing the data from the server.
36148          */
36149         loadexception : true,
36150         /**
36151          * @event create
36152          * Fires before a node is created, enabling you to return custom Node types 
36153          * @param {Object} This TreeLoader object.
36154          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36155          */
36156         create : true
36157     });
36158
36159     Roo.tree.TreeLoader.superclass.constructor.call(this);
36160 };
36161
36162 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36163     /**
36164     * @cfg {String} dataUrl The URL from which to request a Json string which
36165     * specifies an array of node definition object representing the child nodes
36166     * to be loaded.
36167     */
36168     /**
36169     * @cfg {String} requestMethod either GET or POST
36170     * defaults to POST (due to BC)
36171     * to be loaded.
36172     */
36173     /**
36174     * @cfg {Object} baseParams (optional) An object containing properties which
36175     * specify HTTP parameters to be passed to each request for child nodes.
36176     */
36177     /**
36178     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36179     * created by this loader. If the attributes sent by the server have an attribute in this object,
36180     * they take priority.
36181     */
36182     /**
36183     * @cfg {Object} uiProviders (optional) An object containing properties which
36184     * 
36185     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36186     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36187     * <i>uiProvider</i> attribute of a returned child node is a string rather
36188     * than a reference to a TreeNodeUI implementation, this that string value
36189     * is used as a property name in the uiProviders object. You can define the provider named
36190     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36191     */
36192     uiProviders : {},
36193
36194     /**
36195     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36196     * child nodes before loading.
36197     */
36198     clearOnLoad : true,
36199
36200     /**
36201     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36202     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36203     * Grid query { data : [ .....] }
36204     */
36205     
36206     root : false,
36207      /**
36208     * @cfg {String} queryParam (optional) 
36209     * Name of the query as it will be passed on the querystring (defaults to 'node')
36210     * eg. the request will be ?node=[id]
36211     */
36212     
36213     
36214     queryParam: false,
36215     
36216     /**
36217      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36218      * This is called automatically when a node is expanded, but may be used to reload
36219      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36220      * @param {Roo.tree.TreeNode} node
36221      * @param {Function} callback
36222      */
36223     load : function(node, callback){
36224         if(this.clearOnLoad){
36225             while(node.firstChild){
36226                 node.removeChild(node.firstChild);
36227             }
36228         }
36229         if(node.attributes.children){ // preloaded json children
36230             var cs = node.attributes.children;
36231             for(var i = 0, len = cs.length; i < len; i++){
36232                 node.appendChild(this.createNode(cs[i]));
36233             }
36234             if(typeof callback == "function"){
36235                 callback();
36236             }
36237         }else if(this.dataUrl){
36238             this.requestData(node, callback);
36239         }
36240     },
36241
36242     getParams: function(node){
36243         var buf = [], bp = this.baseParams;
36244         for(var key in bp){
36245             if(typeof bp[key] != "function"){
36246                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36247             }
36248         }
36249         var n = this.queryParam === false ? 'node' : this.queryParam;
36250         buf.push(n + "=", encodeURIComponent(node.id));
36251         return buf.join("");
36252     },
36253
36254     requestData : function(node, callback){
36255         if(this.fireEvent("beforeload", this, node, callback) !== false){
36256             this.transId = Roo.Ajax.request({
36257                 method:this.requestMethod,
36258                 url: this.dataUrl||this.url,
36259                 success: this.handleResponse,
36260                 failure: this.handleFailure,
36261                 scope: this,
36262                 argument: {callback: callback, node: node},
36263                 params: this.getParams(node)
36264             });
36265         }else{
36266             // if the load is cancelled, make sure we notify
36267             // the node that we are done
36268             if(typeof callback == "function"){
36269                 callback();
36270             }
36271         }
36272     },
36273
36274     isLoading : function(){
36275         return this.transId ? true : false;
36276     },
36277
36278     abort : function(){
36279         if(this.isLoading()){
36280             Roo.Ajax.abort(this.transId);
36281         }
36282     },
36283
36284     // private
36285     createNode : function(attr)
36286     {
36287         // apply baseAttrs, nice idea Corey!
36288         if(this.baseAttrs){
36289             Roo.applyIf(attr, this.baseAttrs);
36290         }
36291         if(this.applyLoader !== false){
36292             attr.loader = this;
36293         }
36294         // uiProvider = depreciated..
36295         
36296         if(typeof(attr.uiProvider) == 'string'){
36297            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36298                 /**  eval:var:attr */ eval(attr.uiProvider);
36299         }
36300         if(typeof(this.uiProviders['default']) != 'undefined') {
36301             attr.uiProvider = this.uiProviders['default'];
36302         }
36303         
36304         this.fireEvent('create', this, attr);
36305         
36306         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36307         return(attr.leaf ?
36308                         new Roo.tree.TreeNode(attr) :
36309                         new Roo.tree.AsyncTreeNode(attr));
36310     },
36311
36312     processResponse : function(response, node, callback)
36313     {
36314         var json = response.responseText;
36315         try {
36316             
36317             var o = Roo.decode(json);
36318             
36319             if (this.root === false && typeof(o.success) != undefined) {
36320                 this.root = 'data'; // the default behaviour for list like data..
36321                 }
36322                 
36323             if (this.root !== false &&  !o.success) {
36324                 // it's a failure condition.
36325                 var a = response.argument;
36326                 this.fireEvent("loadexception", this, a.node, response);
36327                 Roo.log("Load failed - should have a handler really");
36328                 return;
36329             }
36330             
36331             
36332             
36333             if (this.root !== false) {
36334                  o = o[this.root];
36335             }
36336             
36337             for(var i = 0, len = o.length; i < len; i++){
36338                 var n = this.createNode(o[i]);
36339                 if(n){
36340                     node.appendChild(n);
36341                 }
36342             }
36343             if(typeof callback == "function"){
36344                 callback(this, node);
36345             }
36346         }catch(e){
36347             this.handleFailure(response);
36348         }
36349     },
36350
36351     handleResponse : function(response){
36352         this.transId = false;
36353         var a = response.argument;
36354         this.processResponse(response, a.node, a.callback);
36355         this.fireEvent("load", this, a.node, response);
36356     },
36357
36358     handleFailure : function(response)
36359     {
36360         // should handle failure better..
36361         this.transId = false;
36362         var a = response.argument;
36363         this.fireEvent("loadexception", this, a.node, response);
36364         if(typeof a.callback == "function"){
36365             a.callback(this, a.node);
36366         }
36367     }
36368 });/*
36369  * Based on:
36370  * Ext JS Library 1.1.1
36371  * Copyright(c) 2006-2007, Ext JS, LLC.
36372  *
36373  * Originally Released Under LGPL - original licence link has changed is not relivant.
36374  *
36375  * Fork - LGPL
36376  * <script type="text/javascript">
36377  */
36378
36379 /**
36380 * @class Roo.tree.TreeFilter
36381 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36382 * @param {TreePanel} tree
36383 * @param {Object} config (optional)
36384  */
36385 Roo.tree.TreeFilter = function(tree, config){
36386     this.tree = tree;
36387     this.filtered = {};
36388     Roo.apply(this, config);
36389 };
36390
36391 Roo.tree.TreeFilter.prototype = {
36392     clearBlank:false,
36393     reverse:false,
36394     autoClear:false,
36395     remove:false,
36396
36397      /**
36398      * Filter the data by a specific attribute.
36399      * @param {String/RegExp} value Either string that the attribute value
36400      * should start with or a RegExp to test against the attribute
36401      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36402      * @param {TreeNode} startNode (optional) The node to start the filter at.
36403      */
36404     filter : function(value, attr, startNode){
36405         attr = attr || "text";
36406         var f;
36407         if(typeof value == "string"){
36408             var vlen = value.length;
36409             // auto clear empty filter
36410             if(vlen == 0 && this.clearBlank){
36411                 this.clear();
36412                 return;
36413             }
36414             value = value.toLowerCase();
36415             f = function(n){
36416                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36417             };
36418         }else if(value.exec){ // regex?
36419             f = function(n){
36420                 return value.test(n.attributes[attr]);
36421             };
36422         }else{
36423             throw 'Illegal filter type, must be string or regex';
36424         }
36425         this.filterBy(f, null, startNode);
36426         },
36427
36428     /**
36429      * Filter by a function. The passed function will be called with each
36430      * node in the tree (or from the startNode). If the function returns true, the node is kept
36431      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36432      * @param {Function} fn The filter function
36433      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36434      */
36435     filterBy : function(fn, scope, startNode){
36436         startNode = startNode || this.tree.root;
36437         if(this.autoClear){
36438             this.clear();
36439         }
36440         var af = this.filtered, rv = this.reverse;
36441         var f = function(n){
36442             if(n == startNode){
36443                 return true;
36444             }
36445             if(af[n.id]){
36446                 return false;
36447             }
36448             var m = fn.call(scope || n, n);
36449             if(!m || rv){
36450                 af[n.id] = n;
36451                 n.ui.hide();
36452                 return false;
36453             }
36454             return true;
36455         };
36456         startNode.cascade(f);
36457         if(this.remove){
36458            for(var id in af){
36459                if(typeof id != "function"){
36460                    var n = af[id];
36461                    if(n && n.parentNode){
36462                        n.parentNode.removeChild(n);
36463                    }
36464                }
36465            }
36466         }
36467     },
36468
36469     /**
36470      * Clears the current filter. Note: with the "remove" option
36471      * set a filter cannot be cleared.
36472      */
36473     clear : function(){
36474         var t = this.tree;
36475         var af = this.filtered;
36476         for(var id in af){
36477             if(typeof id != "function"){
36478                 var n = af[id];
36479                 if(n){
36480                     n.ui.show();
36481                 }
36482             }
36483         }
36484         this.filtered = {};
36485     }
36486 };
36487 /*
36488  * Based on:
36489  * Ext JS Library 1.1.1
36490  * Copyright(c) 2006-2007, Ext JS, LLC.
36491  *
36492  * Originally Released Under LGPL - original licence link has changed is not relivant.
36493  *
36494  * Fork - LGPL
36495  * <script type="text/javascript">
36496  */
36497  
36498
36499 /**
36500  * @class Roo.tree.TreeSorter
36501  * Provides sorting of nodes in a TreePanel
36502  * 
36503  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36504  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36505  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36506  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36507  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36508  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36509  * @constructor
36510  * @param {TreePanel} tree
36511  * @param {Object} config
36512  */
36513 Roo.tree.TreeSorter = function(tree, config){
36514     Roo.apply(this, config);
36515     tree.on("beforechildrenrendered", this.doSort, this);
36516     tree.on("append", this.updateSort, this);
36517     tree.on("insert", this.updateSort, this);
36518     
36519     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36520     var p = this.property || "text";
36521     var sortType = this.sortType;
36522     var fs = this.folderSort;
36523     var cs = this.caseSensitive === true;
36524     var leafAttr = this.leafAttr || 'leaf';
36525
36526     this.sortFn = function(n1, n2){
36527         if(fs){
36528             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36529                 return 1;
36530             }
36531             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36532                 return -1;
36533             }
36534         }
36535         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36536         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36537         if(v1 < v2){
36538                         return dsc ? +1 : -1;
36539                 }else if(v1 > v2){
36540                         return dsc ? -1 : +1;
36541         }else{
36542                 return 0;
36543         }
36544     };
36545 };
36546
36547 Roo.tree.TreeSorter.prototype = {
36548     doSort : function(node){
36549         node.sort(this.sortFn);
36550     },
36551     
36552     compareNodes : function(n1, n2){
36553         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36554     },
36555     
36556     updateSort : function(tree, node){
36557         if(node.childrenRendered){
36558             this.doSort.defer(1, this, [node]);
36559         }
36560     }
36561 };/*
36562  * Based on:
36563  * Ext JS Library 1.1.1
36564  * Copyright(c) 2006-2007, Ext JS, LLC.
36565  *
36566  * Originally Released Under LGPL - original licence link has changed is not relivant.
36567  *
36568  * Fork - LGPL
36569  * <script type="text/javascript">
36570  */
36571
36572 if(Roo.dd.DropZone){
36573     
36574 Roo.tree.TreeDropZone = function(tree, config){
36575     this.allowParentInsert = false;
36576     this.allowContainerDrop = false;
36577     this.appendOnly = false;
36578     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36579     this.tree = tree;
36580     this.lastInsertClass = "x-tree-no-status";
36581     this.dragOverData = {};
36582 };
36583
36584 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36585     ddGroup : "TreeDD",
36586     scroll:  true,
36587     
36588     expandDelay : 1000,
36589     
36590     expandNode : function(node){
36591         if(node.hasChildNodes() && !node.isExpanded()){
36592             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36593         }
36594     },
36595     
36596     queueExpand : function(node){
36597         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36598     },
36599     
36600     cancelExpand : function(){
36601         if(this.expandProcId){
36602             clearTimeout(this.expandProcId);
36603             this.expandProcId = false;
36604         }
36605     },
36606     
36607     isValidDropPoint : function(n, pt, dd, e, data){
36608         if(!n || !data){ return false; }
36609         var targetNode = n.node;
36610         var dropNode = data.node;
36611         // default drop rules
36612         if(!(targetNode && targetNode.isTarget && pt)){
36613             return false;
36614         }
36615         if(pt == "append" && targetNode.allowChildren === false){
36616             return false;
36617         }
36618         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36619             return false;
36620         }
36621         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36622             return false;
36623         }
36624         // reuse the object
36625         var overEvent = this.dragOverData;
36626         overEvent.tree = this.tree;
36627         overEvent.target = targetNode;
36628         overEvent.data = data;
36629         overEvent.point = pt;
36630         overEvent.source = dd;
36631         overEvent.rawEvent = e;
36632         overEvent.dropNode = dropNode;
36633         overEvent.cancel = false;  
36634         var result = this.tree.fireEvent("nodedragover", overEvent);
36635         return overEvent.cancel === false && result !== false;
36636     },
36637     
36638     getDropPoint : function(e, n, dd)
36639     {
36640         var tn = n.node;
36641         if(tn.isRoot){
36642             return tn.allowChildren !== false ? "append" : false; // always append for root
36643         }
36644         var dragEl = n.ddel;
36645         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36646         var y = Roo.lib.Event.getPageY(e);
36647         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36648         
36649         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36650         var noAppend = tn.allowChildren === false;
36651         if(this.appendOnly || tn.parentNode.allowChildren === false){
36652             return noAppend ? false : "append";
36653         }
36654         var noBelow = false;
36655         if(!this.allowParentInsert){
36656             noBelow = tn.hasChildNodes() && tn.isExpanded();
36657         }
36658         var q = (b - t) / (noAppend ? 2 : 3);
36659         if(y >= t && y < (t + q)){
36660             return "above";
36661         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36662             return "below";
36663         }else{
36664             return "append";
36665         }
36666     },
36667     
36668     onNodeEnter : function(n, dd, e, data)
36669     {
36670         this.cancelExpand();
36671     },
36672     
36673     onNodeOver : function(n, dd, e, data)
36674     {
36675        
36676         var pt = this.getDropPoint(e, n, dd);
36677         var node = n.node;
36678         
36679         // auto node expand check
36680         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36681             this.queueExpand(node);
36682         }else if(pt != "append"){
36683             this.cancelExpand();
36684         }
36685         
36686         // set the insert point style on the target node
36687         var returnCls = this.dropNotAllowed;
36688         if(this.isValidDropPoint(n, pt, dd, e, data)){
36689            if(pt){
36690                var el = n.ddel;
36691                var cls;
36692                if(pt == "above"){
36693                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36694                    cls = "x-tree-drag-insert-above";
36695                }else if(pt == "below"){
36696                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36697                    cls = "x-tree-drag-insert-below";
36698                }else{
36699                    returnCls = "x-tree-drop-ok-append";
36700                    cls = "x-tree-drag-append";
36701                }
36702                if(this.lastInsertClass != cls){
36703                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36704                    this.lastInsertClass = cls;
36705                }
36706            }
36707        }
36708        return returnCls;
36709     },
36710     
36711     onNodeOut : function(n, dd, e, data){
36712         
36713         this.cancelExpand();
36714         this.removeDropIndicators(n);
36715     },
36716     
36717     onNodeDrop : function(n, dd, e, data){
36718         var point = this.getDropPoint(e, n, dd);
36719         var targetNode = n.node;
36720         targetNode.ui.startDrop();
36721         if(!this.isValidDropPoint(n, point, dd, e, data)){
36722             targetNode.ui.endDrop();
36723             return false;
36724         }
36725         // first try to find the drop node
36726         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36727         var dropEvent = {
36728             tree : this.tree,
36729             target: targetNode,
36730             data: data,
36731             point: point,
36732             source: dd,
36733             rawEvent: e,
36734             dropNode: dropNode,
36735             cancel: !dropNode   
36736         };
36737         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36738         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36739             targetNode.ui.endDrop();
36740             return false;
36741         }
36742         // allow target changing
36743         targetNode = dropEvent.target;
36744         if(point == "append" && !targetNode.isExpanded()){
36745             targetNode.expand(false, null, function(){
36746                 this.completeDrop(dropEvent);
36747             }.createDelegate(this));
36748         }else{
36749             this.completeDrop(dropEvent);
36750         }
36751         return true;
36752     },
36753     
36754     completeDrop : function(de){
36755         var ns = de.dropNode, p = de.point, t = de.target;
36756         if(!(ns instanceof Array)){
36757             ns = [ns];
36758         }
36759         var n;
36760         for(var i = 0, len = ns.length; i < len; i++){
36761             n = ns[i];
36762             if(p == "above"){
36763                 t.parentNode.insertBefore(n, t);
36764             }else if(p == "below"){
36765                 t.parentNode.insertBefore(n, t.nextSibling);
36766             }else{
36767                 t.appendChild(n);
36768             }
36769         }
36770         n.ui.focus();
36771         if(this.tree.hlDrop){
36772             n.ui.highlight();
36773         }
36774         t.ui.endDrop();
36775         this.tree.fireEvent("nodedrop", de);
36776     },
36777     
36778     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36779         if(this.tree.hlDrop){
36780             dropNode.ui.focus();
36781             dropNode.ui.highlight();
36782         }
36783         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36784     },
36785     
36786     getTree : function(){
36787         return this.tree;
36788     },
36789     
36790     removeDropIndicators : function(n){
36791         if(n && n.ddel){
36792             var el = n.ddel;
36793             Roo.fly(el).removeClass([
36794                     "x-tree-drag-insert-above",
36795                     "x-tree-drag-insert-below",
36796                     "x-tree-drag-append"]);
36797             this.lastInsertClass = "_noclass";
36798         }
36799     },
36800     
36801     beforeDragDrop : function(target, e, id){
36802         this.cancelExpand();
36803         return true;
36804     },
36805     
36806     afterRepair : function(data){
36807         if(data && Roo.enableFx){
36808             data.node.ui.highlight();
36809         }
36810         this.hideProxy();
36811     } 
36812     
36813 });
36814
36815 }
36816 /*
36817  * Based on:
36818  * Ext JS Library 1.1.1
36819  * Copyright(c) 2006-2007, Ext JS, LLC.
36820  *
36821  * Originally Released Under LGPL - original licence link has changed is not relivant.
36822  *
36823  * Fork - LGPL
36824  * <script type="text/javascript">
36825  */
36826  
36827
36828 if(Roo.dd.DragZone){
36829 Roo.tree.TreeDragZone = function(tree, config){
36830     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36831     this.tree = tree;
36832 };
36833
36834 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36835     ddGroup : "TreeDD",
36836    
36837     onBeforeDrag : function(data, e){
36838         var n = data.node;
36839         return n && n.draggable && !n.disabled;
36840     },
36841      
36842     
36843     onInitDrag : function(e){
36844         var data = this.dragData;
36845         this.tree.getSelectionModel().select(data.node);
36846         this.proxy.update("");
36847         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36848         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36849     },
36850     
36851     getRepairXY : function(e, data){
36852         return data.node.ui.getDDRepairXY();
36853     },
36854     
36855     onEndDrag : function(data, e){
36856         this.tree.fireEvent("enddrag", this.tree, data.node, e);
36857         
36858         
36859     },
36860     
36861     onValidDrop : function(dd, e, id){
36862         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
36863         this.hideProxy();
36864     },
36865     
36866     beforeInvalidDrop : function(e, id){
36867         // this scrolls the original position back into view
36868         var sm = this.tree.getSelectionModel();
36869         sm.clearSelections();
36870         sm.select(this.dragData.node);
36871     }
36872 });
36873 }/*
36874  * Based on:
36875  * Ext JS Library 1.1.1
36876  * Copyright(c) 2006-2007, Ext JS, LLC.
36877  *
36878  * Originally Released Under LGPL - original licence link has changed is not relivant.
36879  *
36880  * Fork - LGPL
36881  * <script type="text/javascript">
36882  */
36883 /**
36884  * @class Roo.tree.TreeEditor
36885  * @extends Roo.Editor
36886  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
36887  * as the editor field.
36888  * @constructor
36889  * @param {Object} config (used to be the tree panel.)
36890  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
36891  * 
36892  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
36893  * @cfg {Roo.form.TextField|Object} field The field configuration
36894  *
36895  * 
36896  */
36897 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
36898     var tree = config;
36899     var field;
36900     if (oldconfig) { // old style..
36901         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
36902     } else {
36903         // new style..
36904         tree = config.tree;
36905         config.field = config.field  || {};
36906         config.field.xtype = 'TextField';
36907         field = Roo.factory(config.field, Roo.form);
36908     }
36909     config = config || {};
36910     
36911     
36912     this.addEvents({
36913         /**
36914          * @event beforenodeedit
36915          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
36916          * false from the handler of this event.
36917          * @param {Editor} this
36918          * @param {Roo.tree.Node} node 
36919          */
36920         "beforenodeedit" : true
36921     });
36922     
36923     //Roo.log(config);
36924     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
36925
36926     this.tree = tree;
36927
36928     tree.on('beforeclick', this.beforeNodeClick, this);
36929     tree.getTreeEl().on('mousedown', this.hide, this);
36930     this.on('complete', this.updateNode, this);
36931     this.on('beforestartedit', this.fitToTree, this);
36932     this.on('startedit', this.bindScroll, this, {delay:10});
36933     this.on('specialkey', this.onSpecialKey, this);
36934 };
36935
36936 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
36937     /**
36938      * @cfg {String} alignment
36939      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
36940      */
36941     alignment: "l-l",
36942     // inherit
36943     autoSize: false,
36944     /**
36945      * @cfg {Boolean} hideEl
36946      * True to hide the bound element while the editor is displayed (defaults to false)
36947      */
36948     hideEl : false,
36949     /**
36950      * @cfg {String} cls
36951      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
36952      */
36953     cls: "x-small-editor x-tree-editor",
36954     /**
36955      * @cfg {Boolean} shim
36956      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
36957      */
36958     shim:false,
36959     // inherit
36960     shadow:"frame",
36961     /**
36962      * @cfg {Number} maxWidth
36963      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
36964      * the containing tree element's size, it will be automatically limited for you to the container width, taking
36965      * scroll and client offsets into account prior to each edit.
36966      */
36967     maxWidth: 250,
36968
36969     editDelay : 350,
36970
36971     // private
36972     fitToTree : function(ed, el){
36973         var td = this.tree.getTreeEl().dom, nd = el.dom;
36974         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
36975             td.scrollLeft = nd.offsetLeft;
36976         }
36977         var w = Math.min(
36978                 this.maxWidth,
36979                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
36980         this.setSize(w, '');
36981         
36982         return this.fireEvent('beforenodeedit', this, this.editNode);
36983         
36984     },
36985
36986     // private
36987     triggerEdit : function(node){
36988         this.completeEdit();
36989         this.editNode = node;
36990         this.startEdit(node.ui.textNode, node.text);
36991     },
36992
36993     // private
36994     bindScroll : function(){
36995         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
36996     },
36997
36998     // private
36999     beforeNodeClick : function(node, e){
37000         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37001         this.lastClick = new Date();
37002         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37003             e.stopEvent();
37004             this.triggerEdit(node);
37005             return false;
37006         }
37007         return true;
37008     },
37009
37010     // private
37011     updateNode : function(ed, value){
37012         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37013         this.editNode.setText(value);
37014     },
37015
37016     // private
37017     onHide : function(){
37018         Roo.tree.TreeEditor.superclass.onHide.call(this);
37019         if(this.editNode){
37020             this.editNode.ui.focus();
37021         }
37022     },
37023
37024     // private
37025     onSpecialKey : function(field, e){
37026         var k = e.getKey();
37027         if(k == e.ESC){
37028             e.stopEvent();
37029             this.cancelEdit();
37030         }else if(k == e.ENTER && !e.hasModifier()){
37031             e.stopEvent();
37032             this.completeEdit();
37033         }
37034     }
37035 });//<Script type="text/javascript">
37036 /*
37037  * Based on:
37038  * Ext JS Library 1.1.1
37039  * Copyright(c) 2006-2007, Ext JS, LLC.
37040  *
37041  * Originally Released Under LGPL - original licence link has changed is not relivant.
37042  *
37043  * Fork - LGPL
37044  * <script type="text/javascript">
37045  */
37046  
37047 /**
37048  * Not documented??? - probably should be...
37049  */
37050
37051 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37052     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37053     
37054     renderElements : function(n, a, targetNode, bulkRender){
37055         //consel.log("renderElements?");
37056         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37057
37058         var t = n.getOwnerTree();
37059         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37060         
37061         var cols = t.columns;
37062         var bw = t.borderWidth;
37063         var c = cols[0];
37064         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37065          var cb = typeof a.checked == "boolean";
37066         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37067         var colcls = 'x-t-' + tid + '-c0';
37068         var buf = [
37069             '<li class="x-tree-node">',
37070             
37071                 
37072                 '<div class="x-tree-node-el ', a.cls,'">',
37073                     // extran...
37074                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37075                 
37076                 
37077                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37078                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37079                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37080                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37081                            (a.iconCls ? ' '+a.iconCls : ''),
37082                            '" unselectable="on" />',
37083                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37084                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37085                              
37086                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37087                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37088                             '<span unselectable="on" qtip="' + tx + '">',
37089                              tx,
37090                              '</span></a>' ,
37091                     '</div>',
37092                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37093                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37094                  ];
37095         for(var i = 1, len = cols.length; i < len; i++){
37096             c = cols[i];
37097             colcls = 'x-t-' + tid + '-c' +i;
37098             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37099             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37100                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37101                       "</div>");
37102          }
37103          
37104          buf.push(
37105             '</a>',
37106             '<div class="x-clear"></div></div>',
37107             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37108             "</li>");
37109         
37110         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37111             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37112                                 n.nextSibling.ui.getEl(), buf.join(""));
37113         }else{
37114             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37115         }
37116         var el = this.wrap.firstChild;
37117         this.elRow = el;
37118         this.elNode = el.firstChild;
37119         this.ranchor = el.childNodes[1];
37120         this.ctNode = this.wrap.childNodes[1];
37121         var cs = el.firstChild.childNodes;
37122         this.indentNode = cs[0];
37123         this.ecNode = cs[1];
37124         this.iconNode = cs[2];
37125         var index = 3;
37126         if(cb){
37127             this.checkbox = cs[3];
37128             index++;
37129         }
37130         this.anchor = cs[index];
37131         
37132         this.textNode = cs[index].firstChild;
37133         
37134         //el.on("click", this.onClick, this);
37135         //el.on("dblclick", this.onDblClick, this);
37136         
37137         
37138        // console.log(this);
37139     },
37140     initEvents : function(){
37141         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37142         
37143             
37144         var a = this.ranchor;
37145
37146         var el = Roo.get(a);
37147
37148         if(Roo.isOpera){ // opera render bug ignores the CSS
37149             el.setStyle("text-decoration", "none");
37150         }
37151
37152         el.on("click", this.onClick, this);
37153         el.on("dblclick", this.onDblClick, this);
37154         el.on("contextmenu", this.onContextMenu, this);
37155         
37156     },
37157     
37158     /*onSelectedChange : function(state){
37159         if(state){
37160             this.focus();
37161             this.addClass("x-tree-selected");
37162         }else{
37163             //this.blur();
37164             this.removeClass("x-tree-selected");
37165         }
37166     },*/
37167     addClass : function(cls){
37168         if(this.elRow){
37169             Roo.fly(this.elRow).addClass(cls);
37170         }
37171         
37172     },
37173     
37174     
37175     removeClass : function(cls){
37176         if(this.elRow){
37177             Roo.fly(this.elRow).removeClass(cls);
37178         }
37179     }
37180
37181     
37182     
37183 });//<Script type="text/javascript">
37184
37185 /*
37186  * Based on:
37187  * Ext JS Library 1.1.1
37188  * Copyright(c) 2006-2007, Ext JS, LLC.
37189  *
37190  * Originally Released Under LGPL - original licence link has changed is not relivant.
37191  *
37192  * Fork - LGPL
37193  * <script type="text/javascript">
37194  */
37195  
37196
37197 /**
37198  * @class Roo.tree.ColumnTree
37199  * @extends Roo.data.TreePanel
37200  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37201  * @cfg {int} borderWidth  compined right/left border allowance
37202  * @constructor
37203  * @param {String/HTMLElement/Element} el The container element
37204  * @param {Object} config
37205  */
37206 Roo.tree.ColumnTree =  function(el, config)
37207 {
37208    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37209    this.addEvents({
37210         /**
37211         * @event resize
37212         * Fire this event on a container when it resizes
37213         * @param {int} w Width
37214         * @param {int} h Height
37215         */
37216        "resize" : true
37217     });
37218     this.on('resize', this.onResize, this);
37219 };
37220
37221 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37222     //lines:false,
37223     
37224     
37225     borderWidth: Roo.isBorderBox ? 0 : 2, 
37226     headEls : false,
37227     
37228     render : function(){
37229         // add the header.....
37230        
37231         Roo.tree.ColumnTree.superclass.render.apply(this);
37232         
37233         this.el.addClass('x-column-tree');
37234         
37235         this.headers = this.el.createChild(
37236             {cls:'x-tree-headers'},this.innerCt.dom);
37237    
37238         var cols = this.columns, c;
37239         var totalWidth = 0;
37240         this.headEls = [];
37241         var  len = cols.length;
37242         for(var i = 0; i < len; i++){
37243              c = cols[i];
37244              totalWidth += c.width;
37245             this.headEls.push(this.headers.createChild({
37246                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37247                  cn: {
37248                      cls:'x-tree-hd-text',
37249                      html: c.header
37250                  },
37251                  style:'width:'+(c.width-this.borderWidth)+'px;'
37252              }));
37253         }
37254         this.headers.createChild({cls:'x-clear'});
37255         // prevent floats from wrapping when clipped
37256         this.headers.setWidth(totalWidth);
37257         //this.innerCt.setWidth(totalWidth);
37258         this.innerCt.setStyle({ overflow: 'auto' });
37259         this.onResize(this.width, this.height);
37260              
37261         
37262     },
37263     onResize : function(w,h)
37264     {
37265         this.height = h;
37266         this.width = w;
37267         // resize cols..
37268         this.innerCt.setWidth(this.width);
37269         this.innerCt.setHeight(this.height-20);
37270         
37271         // headers...
37272         var cols = this.columns, c;
37273         var totalWidth = 0;
37274         var expEl = false;
37275         var len = cols.length;
37276         for(var i = 0; i < len; i++){
37277             c = cols[i];
37278             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37279                 // it's the expander..
37280                 expEl  = this.headEls[i];
37281                 continue;
37282             }
37283             totalWidth += c.width;
37284             
37285         }
37286         if (expEl) {
37287             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37288         }
37289         this.headers.setWidth(w-20);
37290
37291         
37292         
37293         
37294     }
37295 });
37296 /*
37297  * Based on:
37298  * Ext JS Library 1.1.1
37299  * Copyright(c) 2006-2007, Ext JS, LLC.
37300  *
37301  * Originally Released Under LGPL - original licence link has changed is not relivant.
37302  *
37303  * Fork - LGPL
37304  * <script type="text/javascript">
37305  */
37306  
37307 /**
37308  * @class Roo.menu.Menu
37309  * @extends Roo.util.Observable
37310  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37311  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37312  * @constructor
37313  * Creates a new Menu
37314  * @param {Object} config Configuration options
37315  */
37316 Roo.menu.Menu = function(config){
37317     
37318     Roo.menu.Menu.superclass.constructor.call(this, config);
37319     
37320     this.id = this.id || Roo.id();
37321     this.addEvents({
37322         /**
37323          * @event beforeshow
37324          * Fires before this menu is displayed
37325          * @param {Roo.menu.Menu} this
37326          */
37327         beforeshow : true,
37328         /**
37329          * @event beforehide
37330          * Fires before this menu is hidden
37331          * @param {Roo.menu.Menu} this
37332          */
37333         beforehide : true,
37334         /**
37335          * @event show
37336          * Fires after this menu is displayed
37337          * @param {Roo.menu.Menu} this
37338          */
37339         show : true,
37340         /**
37341          * @event hide
37342          * Fires after this menu is hidden
37343          * @param {Roo.menu.Menu} this
37344          */
37345         hide : true,
37346         /**
37347          * @event click
37348          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37349          * @param {Roo.menu.Menu} this
37350          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37351          * @param {Roo.EventObject} e
37352          */
37353         click : true,
37354         /**
37355          * @event mouseover
37356          * Fires when the mouse is hovering over this menu
37357          * @param {Roo.menu.Menu} this
37358          * @param {Roo.EventObject} e
37359          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37360          */
37361         mouseover : true,
37362         /**
37363          * @event mouseout
37364          * Fires when the mouse exits this menu
37365          * @param {Roo.menu.Menu} this
37366          * @param {Roo.EventObject} e
37367          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37368          */
37369         mouseout : true,
37370         /**
37371          * @event itemclick
37372          * Fires when a menu item contained in this menu is clicked
37373          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37374          * @param {Roo.EventObject} e
37375          */
37376         itemclick: true
37377     });
37378     if (this.registerMenu) {
37379         Roo.menu.MenuMgr.register(this);
37380     }
37381     
37382     var mis = this.items;
37383     this.items = new Roo.util.MixedCollection();
37384     if(mis){
37385         this.add.apply(this, mis);
37386     }
37387 };
37388
37389 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37390     /**
37391      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37392      */
37393     minWidth : 120,
37394     /**
37395      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37396      * for bottom-right shadow (defaults to "sides")
37397      */
37398     shadow : "sides",
37399     /**
37400      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37401      * this menu (defaults to "tl-tr?")
37402      */
37403     subMenuAlign : "tl-tr?",
37404     /**
37405      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37406      * relative to its element of origin (defaults to "tl-bl?")
37407      */
37408     defaultAlign : "tl-bl?",
37409     /**
37410      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37411      */
37412     allowOtherMenus : false,
37413     /**
37414      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37415      */
37416     registerMenu : true,
37417
37418     hidden:true,
37419
37420     // private
37421     render : function(){
37422         if(this.el){
37423             return;
37424         }
37425         var el = this.el = new Roo.Layer({
37426             cls: "x-menu",
37427             shadow:this.shadow,
37428             constrain: false,
37429             parentEl: this.parentEl || document.body,
37430             zindex:15000
37431         });
37432
37433         this.keyNav = new Roo.menu.MenuNav(this);
37434
37435         if(this.plain){
37436             el.addClass("x-menu-plain");
37437         }
37438         if(this.cls){
37439             el.addClass(this.cls);
37440         }
37441         // generic focus element
37442         this.focusEl = el.createChild({
37443             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37444         });
37445         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37446         //disabling touch- as it's causing issues ..
37447         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37448         ul.on('click'   , this.onClick, this);
37449         
37450         
37451         ul.on("mouseover", this.onMouseOver, this);
37452         ul.on("mouseout", this.onMouseOut, this);
37453         this.items.each(function(item){
37454             if (item.hidden) {
37455                 return;
37456             }
37457             
37458             var li = document.createElement("li");
37459             li.className = "x-menu-list-item";
37460             ul.dom.appendChild(li);
37461             item.render(li, this);
37462         }, this);
37463         this.ul = ul;
37464         this.autoWidth();
37465     },
37466
37467     // private
37468     autoWidth : function(){
37469         var el = this.el, ul = this.ul;
37470         if(!el){
37471             return;
37472         }
37473         var w = this.width;
37474         if(w){
37475             el.setWidth(w);
37476         }else if(Roo.isIE){
37477             el.setWidth(this.minWidth);
37478             var t = el.dom.offsetWidth; // force recalc
37479             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37480         }
37481     },
37482
37483     // private
37484     delayAutoWidth : function(){
37485         if(this.rendered){
37486             if(!this.awTask){
37487                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37488             }
37489             this.awTask.delay(20);
37490         }
37491     },
37492
37493     // private
37494     findTargetItem : function(e){
37495         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37496         if(t && t.menuItemId){
37497             return this.items.get(t.menuItemId);
37498         }
37499     },
37500
37501     // private
37502     onClick : function(e){
37503         Roo.log("menu.onClick");
37504         var t = this.findTargetItem(e);
37505         if(!t){
37506             return;
37507         }
37508         Roo.log(e);
37509         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37510             if(t == this.activeItem && t.shouldDeactivate(e)){
37511                 this.activeItem.deactivate();
37512                 delete this.activeItem;
37513                 return;
37514             }
37515             if(t.canActivate){
37516                 this.setActiveItem(t, true);
37517             }
37518             return;
37519             
37520             
37521         }
37522         
37523         t.onClick(e);
37524         this.fireEvent("click", this, t, e);
37525     },
37526
37527     // private
37528     setActiveItem : function(item, autoExpand){
37529         if(item != this.activeItem){
37530             if(this.activeItem){
37531                 this.activeItem.deactivate();
37532             }
37533             this.activeItem = item;
37534             item.activate(autoExpand);
37535         }else if(autoExpand){
37536             item.expandMenu();
37537         }
37538     },
37539
37540     // private
37541     tryActivate : function(start, step){
37542         var items = this.items;
37543         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37544             var item = items.get(i);
37545             if(!item.disabled && item.canActivate){
37546                 this.setActiveItem(item, false);
37547                 return item;
37548             }
37549         }
37550         return false;
37551     },
37552
37553     // private
37554     onMouseOver : function(e){
37555         var t;
37556         if(t = this.findTargetItem(e)){
37557             if(t.canActivate && !t.disabled){
37558                 this.setActiveItem(t, true);
37559             }
37560         }
37561         this.fireEvent("mouseover", this, e, t);
37562     },
37563
37564     // private
37565     onMouseOut : function(e){
37566         var t;
37567         if(t = this.findTargetItem(e)){
37568             if(t == this.activeItem && t.shouldDeactivate(e)){
37569                 this.activeItem.deactivate();
37570                 delete this.activeItem;
37571             }
37572         }
37573         this.fireEvent("mouseout", this, e, t);
37574     },
37575
37576     /**
37577      * Read-only.  Returns true if the menu is currently displayed, else false.
37578      * @type Boolean
37579      */
37580     isVisible : function(){
37581         return this.el && !this.hidden;
37582     },
37583
37584     /**
37585      * Displays this menu relative to another element
37586      * @param {String/HTMLElement/Roo.Element} element The element to align to
37587      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37588      * the element (defaults to this.defaultAlign)
37589      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37590      */
37591     show : function(el, pos, parentMenu){
37592         this.parentMenu = parentMenu;
37593         if(!this.el){
37594             this.render();
37595         }
37596         this.fireEvent("beforeshow", this);
37597         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37598     },
37599
37600     /**
37601      * Displays this menu at a specific xy position
37602      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37603      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37604      */
37605     showAt : function(xy, parentMenu, /* private: */_e){
37606         this.parentMenu = parentMenu;
37607         if(!this.el){
37608             this.render();
37609         }
37610         if(_e !== false){
37611             this.fireEvent("beforeshow", this);
37612             xy = this.el.adjustForConstraints(xy);
37613         }
37614         this.el.setXY(xy);
37615         this.el.show();
37616         this.hidden = false;
37617         this.focus();
37618         this.fireEvent("show", this);
37619     },
37620
37621     focus : function(){
37622         if(!this.hidden){
37623             this.doFocus.defer(50, this);
37624         }
37625     },
37626
37627     doFocus : function(){
37628         if(!this.hidden){
37629             this.focusEl.focus();
37630         }
37631     },
37632
37633     /**
37634      * Hides this menu and optionally all parent menus
37635      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37636      */
37637     hide : function(deep){
37638         if(this.el && this.isVisible()){
37639             this.fireEvent("beforehide", this);
37640             if(this.activeItem){
37641                 this.activeItem.deactivate();
37642                 this.activeItem = null;
37643             }
37644             this.el.hide();
37645             this.hidden = true;
37646             this.fireEvent("hide", this);
37647         }
37648         if(deep === true && this.parentMenu){
37649             this.parentMenu.hide(true);
37650         }
37651     },
37652
37653     /**
37654      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37655      * Any of the following are valid:
37656      * <ul>
37657      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37658      * <li>An HTMLElement object which will be converted to a menu item</li>
37659      * <li>A menu item config object that will be created as a new menu item</li>
37660      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37661      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37662      * </ul>
37663      * Usage:
37664      * <pre><code>
37665 // Create the menu
37666 var menu = new Roo.menu.Menu();
37667
37668 // Create a menu item to add by reference
37669 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37670
37671 // Add a bunch of items at once using different methods.
37672 // Only the last item added will be returned.
37673 var item = menu.add(
37674     menuItem,                // add existing item by ref
37675     'Dynamic Item',          // new TextItem
37676     '-',                     // new separator
37677     { text: 'Config Item' }  // new item by config
37678 );
37679 </code></pre>
37680      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37681      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37682      */
37683     add : function(){
37684         var a = arguments, l = a.length, item;
37685         for(var i = 0; i < l; i++){
37686             var el = a[i];
37687             if ((typeof(el) == "object") && el.xtype && el.xns) {
37688                 el = Roo.factory(el, Roo.menu);
37689             }
37690             
37691             if(el.render){ // some kind of Item
37692                 item = this.addItem(el);
37693             }else if(typeof el == "string"){ // string
37694                 if(el == "separator" || el == "-"){
37695                     item = this.addSeparator();
37696                 }else{
37697                     item = this.addText(el);
37698                 }
37699             }else if(el.tagName || el.el){ // element
37700                 item = this.addElement(el);
37701             }else if(typeof el == "object"){ // must be menu item config?
37702                 item = this.addMenuItem(el);
37703             }
37704         }
37705         return item;
37706     },
37707
37708     /**
37709      * Returns this menu's underlying {@link Roo.Element} object
37710      * @return {Roo.Element} The element
37711      */
37712     getEl : function(){
37713         if(!this.el){
37714             this.render();
37715         }
37716         return this.el;
37717     },
37718
37719     /**
37720      * Adds a separator bar to the menu
37721      * @return {Roo.menu.Item} The menu item that was added
37722      */
37723     addSeparator : function(){
37724         return this.addItem(new Roo.menu.Separator());
37725     },
37726
37727     /**
37728      * Adds an {@link Roo.Element} object to the menu
37729      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37730      * @return {Roo.menu.Item} The menu item that was added
37731      */
37732     addElement : function(el){
37733         return this.addItem(new Roo.menu.BaseItem(el));
37734     },
37735
37736     /**
37737      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37738      * @param {Roo.menu.Item} item The menu item to add
37739      * @return {Roo.menu.Item} The menu item that was added
37740      */
37741     addItem : function(item){
37742         this.items.add(item);
37743         if(this.ul){
37744             var li = document.createElement("li");
37745             li.className = "x-menu-list-item";
37746             this.ul.dom.appendChild(li);
37747             item.render(li, this);
37748             this.delayAutoWidth();
37749         }
37750         return item;
37751     },
37752
37753     /**
37754      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37755      * @param {Object} config A MenuItem config object
37756      * @return {Roo.menu.Item} The menu item that was added
37757      */
37758     addMenuItem : function(config){
37759         if(!(config instanceof Roo.menu.Item)){
37760             if(typeof config.checked == "boolean"){ // must be check menu item config?
37761                 config = new Roo.menu.CheckItem(config);
37762             }else{
37763                 config = new Roo.menu.Item(config);
37764             }
37765         }
37766         return this.addItem(config);
37767     },
37768
37769     /**
37770      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37771      * @param {String} text The text to display in the menu item
37772      * @return {Roo.menu.Item} The menu item that was added
37773      */
37774     addText : function(text){
37775         return this.addItem(new Roo.menu.TextItem({ text : text }));
37776     },
37777
37778     /**
37779      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37780      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37781      * @param {Roo.menu.Item} item The menu item to add
37782      * @return {Roo.menu.Item} The menu item that was added
37783      */
37784     insert : function(index, item){
37785         this.items.insert(index, item);
37786         if(this.ul){
37787             var li = document.createElement("li");
37788             li.className = "x-menu-list-item";
37789             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37790             item.render(li, this);
37791             this.delayAutoWidth();
37792         }
37793         return item;
37794     },
37795
37796     /**
37797      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37798      * @param {Roo.menu.Item} item The menu item to remove
37799      */
37800     remove : function(item){
37801         this.items.removeKey(item.id);
37802         item.destroy();
37803     },
37804
37805     /**
37806      * Removes and destroys all items in the menu
37807      */
37808     removeAll : function(){
37809         var f;
37810         while(f = this.items.first()){
37811             this.remove(f);
37812         }
37813     }
37814 });
37815
37816 // MenuNav is a private utility class used internally by the Menu
37817 Roo.menu.MenuNav = function(menu){
37818     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37819     this.scope = this.menu = menu;
37820 };
37821
37822 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37823     doRelay : function(e, h){
37824         var k = e.getKey();
37825         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37826             this.menu.tryActivate(0, 1);
37827             return false;
37828         }
37829         return h.call(this.scope || this, e, this.menu);
37830     },
37831
37832     up : function(e, m){
37833         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37834             m.tryActivate(m.items.length-1, -1);
37835         }
37836     },
37837
37838     down : function(e, m){
37839         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37840             m.tryActivate(0, 1);
37841         }
37842     },
37843
37844     right : function(e, m){
37845         if(m.activeItem){
37846             m.activeItem.expandMenu(true);
37847         }
37848     },
37849
37850     left : function(e, m){
37851         m.hide();
37852         if(m.parentMenu && m.parentMenu.activeItem){
37853             m.parentMenu.activeItem.activate();
37854         }
37855     },
37856
37857     enter : function(e, m){
37858         if(m.activeItem){
37859             e.stopPropagation();
37860             m.activeItem.onClick(e);
37861             m.fireEvent("click", this, m.activeItem);
37862             return true;
37863         }
37864     }
37865 });/*
37866  * Based on:
37867  * Ext JS Library 1.1.1
37868  * Copyright(c) 2006-2007, Ext JS, LLC.
37869  *
37870  * Originally Released Under LGPL - original licence link has changed is not relivant.
37871  *
37872  * Fork - LGPL
37873  * <script type="text/javascript">
37874  */
37875  
37876 /**
37877  * @class Roo.menu.MenuMgr
37878  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
37879  * @singleton
37880  */
37881 Roo.menu.MenuMgr = function(){
37882    var menus, active, groups = {}, attached = false, lastShow = new Date();
37883
37884    // private - called when first menu is created
37885    function init(){
37886        menus = {};
37887        active = new Roo.util.MixedCollection();
37888        Roo.get(document).addKeyListener(27, function(){
37889            if(active.length > 0){
37890                hideAll();
37891            }
37892        });
37893    }
37894
37895    // private
37896    function hideAll(){
37897        if(active && active.length > 0){
37898            var c = active.clone();
37899            c.each(function(m){
37900                m.hide();
37901            });
37902        }
37903    }
37904
37905    // private
37906    function onHide(m){
37907        active.remove(m);
37908        if(active.length < 1){
37909            Roo.get(document).un("mousedown", onMouseDown);
37910            attached = false;
37911        }
37912    }
37913
37914    // private
37915    function onShow(m){
37916        var last = active.last();
37917        lastShow = new Date();
37918        active.add(m);
37919        if(!attached){
37920            Roo.get(document).on("mousedown", onMouseDown);
37921            attached = true;
37922        }
37923        if(m.parentMenu){
37924           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
37925           m.parentMenu.activeChild = m;
37926        }else if(last && last.isVisible()){
37927           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
37928        }
37929    }
37930
37931    // private
37932    function onBeforeHide(m){
37933        if(m.activeChild){
37934            m.activeChild.hide();
37935        }
37936        if(m.autoHideTimer){
37937            clearTimeout(m.autoHideTimer);
37938            delete m.autoHideTimer;
37939        }
37940    }
37941
37942    // private
37943    function onBeforeShow(m){
37944        var pm = m.parentMenu;
37945        if(!pm && !m.allowOtherMenus){
37946            hideAll();
37947        }else if(pm && pm.activeChild && active != m){
37948            pm.activeChild.hide();
37949        }
37950    }
37951
37952    // private
37953    function onMouseDown(e){
37954        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
37955            hideAll();
37956        }
37957    }
37958
37959    // private
37960    function onBeforeCheck(mi, state){
37961        if(state){
37962            var g = groups[mi.group];
37963            for(var i = 0, l = g.length; i < l; i++){
37964                if(g[i] != mi){
37965                    g[i].setChecked(false);
37966                }
37967            }
37968        }
37969    }
37970
37971    return {
37972
37973        /**
37974         * Hides all menus that are currently visible
37975         */
37976        hideAll : function(){
37977             hideAll();  
37978        },
37979
37980        // private
37981        register : function(menu){
37982            if(!menus){
37983                init();
37984            }
37985            menus[menu.id] = menu;
37986            menu.on("beforehide", onBeforeHide);
37987            menu.on("hide", onHide);
37988            menu.on("beforeshow", onBeforeShow);
37989            menu.on("show", onShow);
37990            var g = menu.group;
37991            if(g && menu.events["checkchange"]){
37992                if(!groups[g]){
37993                    groups[g] = [];
37994                }
37995                groups[g].push(menu);
37996                menu.on("checkchange", onCheck);
37997            }
37998        },
37999
38000         /**
38001          * Returns a {@link Roo.menu.Menu} object
38002          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38003          * be used to generate and return a new Menu instance.
38004          */
38005        get : function(menu){
38006            if(typeof menu == "string"){ // menu id
38007                return menus[menu];
38008            }else if(menu.events){  // menu instance
38009                return menu;
38010            }else if(typeof menu.length == 'number'){ // array of menu items?
38011                return new Roo.menu.Menu({items:menu});
38012            }else{ // otherwise, must be a config
38013                return new Roo.menu.Menu(menu);
38014            }
38015        },
38016
38017        // private
38018        unregister : function(menu){
38019            delete menus[menu.id];
38020            menu.un("beforehide", onBeforeHide);
38021            menu.un("hide", onHide);
38022            menu.un("beforeshow", onBeforeShow);
38023            menu.un("show", onShow);
38024            var g = menu.group;
38025            if(g && menu.events["checkchange"]){
38026                groups[g].remove(menu);
38027                menu.un("checkchange", onCheck);
38028            }
38029        },
38030
38031        // private
38032        registerCheckable : function(menuItem){
38033            var g = menuItem.group;
38034            if(g){
38035                if(!groups[g]){
38036                    groups[g] = [];
38037                }
38038                groups[g].push(menuItem);
38039                menuItem.on("beforecheckchange", onBeforeCheck);
38040            }
38041        },
38042
38043        // private
38044        unregisterCheckable : function(menuItem){
38045            var g = menuItem.group;
38046            if(g){
38047                groups[g].remove(menuItem);
38048                menuItem.un("beforecheckchange", onBeforeCheck);
38049            }
38050        }
38051    };
38052 }();/*
38053  * Based on:
38054  * Ext JS Library 1.1.1
38055  * Copyright(c) 2006-2007, Ext JS, LLC.
38056  *
38057  * Originally Released Under LGPL - original licence link has changed is not relivant.
38058  *
38059  * Fork - LGPL
38060  * <script type="text/javascript">
38061  */
38062  
38063
38064 /**
38065  * @class Roo.menu.BaseItem
38066  * @extends Roo.Component
38067  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38068  * management and base configuration options shared by all menu components.
38069  * @constructor
38070  * Creates a new BaseItem
38071  * @param {Object} config Configuration options
38072  */
38073 Roo.menu.BaseItem = function(config){
38074     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38075
38076     this.addEvents({
38077         /**
38078          * @event click
38079          * Fires when this item is clicked
38080          * @param {Roo.menu.BaseItem} this
38081          * @param {Roo.EventObject} e
38082          */
38083         click: true,
38084         /**
38085          * @event activate
38086          * Fires when this item is activated
38087          * @param {Roo.menu.BaseItem} this
38088          */
38089         activate : true,
38090         /**
38091          * @event deactivate
38092          * Fires when this item is deactivated
38093          * @param {Roo.menu.BaseItem} this
38094          */
38095         deactivate : true
38096     });
38097
38098     if(this.handler){
38099         this.on("click", this.handler, this.scope, true);
38100     }
38101 };
38102
38103 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38104     /**
38105      * @cfg {Function} handler
38106      * A function that will handle the click event of this menu item (defaults to undefined)
38107      */
38108     /**
38109      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38110      */
38111     canActivate : false,
38112     
38113      /**
38114      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38115      */
38116     hidden: false,
38117     
38118     /**
38119      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38120      */
38121     activeClass : "x-menu-item-active",
38122     /**
38123      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38124      */
38125     hideOnClick : true,
38126     /**
38127      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38128      */
38129     hideDelay : 100,
38130
38131     // private
38132     ctype: "Roo.menu.BaseItem",
38133
38134     // private
38135     actionMode : "container",
38136
38137     // private
38138     render : function(container, parentMenu){
38139         this.parentMenu = parentMenu;
38140         Roo.menu.BaseItem.superclass.render.call(this, container);
38141         this.container.menuItemId = this.id;
38142     },
38143
38144     // private
38145     onRender : function(container, position){
38146         this.el = Roo.get(this.el);
38147         container.dom.appendChild(this.el.dom);
38148     },
38149
38150     // private
38151     onClick : function(e){
38152         if(!this.disabled && this.fireEvent("click", this, e) !== false
38153                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38154             this.handleClick(e);
38155         }else{
38156             e.stopEvent();
38157         }
38158     },
38159
38160     // private
38161     activate : function(){
38162         if(this.disabled){
38163             return false;
38164         }
38165         var li = this.container;
38166         li.addClass(this.activeClass);
38167         this.region = li.getRegion().adjust(2, 2, -2, -2);
38168         this.fireEvent("activate", this);
38169         return true;
38170     },
38171
38172     // private
38173     deactivate : function(){
38174         this.container.removeClass(this.activeClass);
38175         this.fireEvent("deactivate", this);
38176     },
38177
38178     // private
38179     shouldDeactivate : function(e){
38180         return !this.region || !this.region.contains(e.getPoint());
38181     },
38182
38183     // private
38184     handleClick : function(e){
38185         if(this.hideOnClick){
38186             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38187         }
38188     },
38189
38190     // private
38191     expandMenu : function(autoActivate){
38192         // do nothing
38193     },
38194
38195     // private
38196     hideMenu : function(){
38197         // do nothing
38198     }
38199 });/*
38200  * Based on:
38201  * Ext JS Library 1.1.1
38202  * Copyright(c) 2006-2007, Ext JS, LLC.
38203  *
38204  * Originally Released Under LGPL - original licence link has changed is not relivant.
38205  *
38206  * Fork - LGPL
38207  * <script type="text/javascript">
38208  */
38209  
38210 /**
38211  * @class Roo.menu.Adapter
38212  * @extends Roo.menu.BaseItem
38213  * 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.
38214  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38215  * @constructor
38216  * Creates a new Adapter
38217  * @param {Object} config Configuration options
38218  */
38219 Roo.menu.Adapter = function(component, config){
38220     Roo.menu.Adapter.superclass.constructor.call(this, config);
38221     this.component = component;
38222 };
38223 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38224     // private
38225     canActivate : true,
38226
38227     // private
38228     onRender : function(container, position){
38229         this.component.render(container);
38230         this.el = this.component.getEl();
38231     },
38232
38233     // private
38234     activate : function(){
38235         if(this.disabled){
38236             return false;
38237         }
38238         this.component.focus();
38239         this.fireEvent("activate", this);
38240         return true;
38241     },
38242
38243     // private
38244     deactivate : function(){
38245         this.fireEvent("deactivate", this);
38246     },
38247
38248     // private
38249     disable : function(){
38250         this.component.disable();
38251         Roo.menu.Adapter.superclass.disable.call(this);
38252     },
38253
38254     // private
38255     enable : function(){
38256         this.component.enable();
38257         Roo.menu.Adapter.superclass.enable.call(this);
38258     }
38259 });/*
38260  * Based on:
38261  * Ext JS Library 1.1.1
38262  * Copyright(c) 2006-2007, Ext JS, LLC.
38263  *
38264  * Originally Released Under LGPL - original licence link has changed is not relivant.
38265  *
38266  * Fork - LGPL
38267  * <script type="text/javascript">
38268  */
38269
38270 /**
38271  * @class Roo.menu.TextItem
38272  * @extends Roo.menu.BaseItem
38273  * Adds a static text string to a menu, usually used as either a heading or group separator.
38274  * Note: old style constructor with text is still supported.
38275  * 
38276  * @constructor
38277  * Creates a new TextItem
38278  * @param {Object} cfg Configuration
38279  */
38280 Roo.menu.TextItem = function(cfg){
38281     if (typeof(cfg) == 'string') {
38282         this.text = cfg;
38283     } else {
38284         Roo.apply(this,cfg);
38285     }
38286     
38287     Roo.menu.TextItem.superclass.constructor.call(this);
38288 };
38289
38290 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38291     /**
38292      * @cfg {Boolean} text Text to show on item.
38293      */
38294     text : '',
38295     
38296     /**
38297      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38298      */
38299     hideOnClick : false,
38300     /**
38301      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38302      */
38303     itemCls : "x-menu-text",
38304
38305     // private
38306     onRender : function(){
38307         var s = document.createElement("span");
38308         s.className = this.itemCls;
38309         s.innerHTML = this.text;
38310         this.el = s;
38311         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38312     }
38313 });/*
38314  * Based on:
38315  * Ext JS Library 1.1.1
38316  * Copyright(c) 2006-2007, Ext JS, LLC.
38317  *
38318  * Originally Released Under LGPL - original licence link has changed is not relivant.
38319  *
38320  * Fork - LGPL
38321  * <script type="text/javascript">
38322  */
38323
38324 /**
38325  * @class Roo.menu.Separator
38326  * @extends Roo.menu.BaseItem
38327  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38328  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38329  * @constructor
38330  * @param {Object} config Configuration options
38331  */
38332 Roo.menu.Separator = function(config){
38333     Roo.menu.Separator.superclass.constructor.call(this, config);
38334 };
38335
38336 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38337     /**
38338      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38339      */
38340     itemCls : "x-menu-sep",
38341     /**
38342      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38343      */
38344     hideOnClick : false,
38345
38346     // private
38347     onRender : function(li){
38348         var s = document.createElement("span");
38349         s.className = this.itemCls;
38350         s.innerHTML = "&#160;";
38351         this.el = s;
38352         li.addClass("x-menu-sep-li");
38353         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38354     }
38355 });/*
38356  * Based on:
38357  * Ext JS Library 1.1.1
38358  * Copyright(c) 2006-2007, Ext JS, LLC.
38359  *
38360  * Originally Released Under LGPL - original licence link has changed is not relivant.
38361  *
38362  * Fork - LGPL
38363  * <script type="text/javascript">
38364  */
38365 /**
38366  * @class Roo.menu.Item
38367  * @extends Roo.menu.BaseItem
38368  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38369  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38370  * activation and click handling.
38371  * @constructor
38372  * Creates a new Item
38373  * @param {Object} config Configuration options
38374  */
38375 Roo.menu.Item = function(config){
38376     Roo.menu.Item.superclass.constructor.call(this, config);
38377     if(this.menu){
38378         this.menu = Roo.menu.MenuMgr.get(this.menu);
38379     }
38380 };
38381 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38382     
38383     /**
38384      * @cfg {String} text
38385      * The text to show on the menu item.
38386      */
38387     text: '',
38388      /**
38389      * @cfg {String} HTML to render in menu
38390      * The text to show on the menu item (HTML version).
38391      */
38392     html: '',
38393     /**
38394      * @cfg {String} icon
38395      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38396      */
38397     icon: undefined,
38398     /**
38399      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38400      */
38401     itemCls : "x-menu-item",
38402     /**
38403      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38404      */
38405     canActivate : true,
38406     /**
38407      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38408      */
38409     showDelay: 200,
38410     // doc'd in BaseItem
38411     hideDelay: 200,
38412
38413     // private
38414     ctype: "Roo.menu.Item",
38415     
38416     // private
38417     onRender : function(container, position){
38418         var el = document.createElement("a");
38419         el.hideFocus = true;
38420         el.unselectable = "on";
38421         el.href = this.href || "#";
38422         if(this.hrefTarget){
38423             el.target = this.hrefTarget;
38424         }
38425         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38426         
38427         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38428         
38429         el.innerHTML = String.format(
38430                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38431                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38432         this.el = el;
38433         Roo.menu.Item.superclass.onRender.call(this, container, position);
38434     },
38435
38436     /**
38437      * Sets the text to display in this menu item
38438      * @param {String} text The text to display
38439      * @param {Boolean} isHTML true to indicate text is pure html.
38440      */
38441     setText : function(text, isHTML){
38442         if (isHTML) {
38443             this.html = text;
38444         } else {
38445             this.text = text;
38446             this.html = '';
38447         }
38448         if(this.rendered){
38449             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38450      
38451             this.el.update(String.format(
38452                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38453                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38454             this.parentMenu.autoWidth();
38455         }
38456     },
38457
38458     // private
38459     handleClick : function(e){
38460         if(!this.href){ // if no link defined, stop the event automatically
38461             e.stopEvent();
38462         }
38463         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38464     },
38465
38466     // private
38467     activate : function(autoExpand){
38468         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38469             this.focus();
38470             if(autoExpand){
38471                 this.expandMenu();
38472             }
38473         }
38474         return true;
38475     },
38476
38477     // private
38478     shouldDeactivate : function(e){
38479         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38480             if(this.menu && this.menu.isVisible()){
38481                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38482             }
38483             return true;
38484         }
38485         return false;
38486     },
38487
38488     // private
38489     deactivate : function(){
38490         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38491         this.hideMenu();
38492     },
38493
38494     // private
38495     expandMenu : function(autoActivate){
38496         if(!this.disabled && this.menu){
38497             clearTimeout(this.hideTimer);
38498             delete this.hideTimer;
38499             if(!this.menu.isVisible() && !this.showTimer){
38500                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38501             }else if (this.menu.isVisible() && autoActivate){
38502                 this.menu.tryActivate(0, 1);
38503             }
38504         }
38505     },
38506
38507     // private
38508     deferExpand : function(autoActivate){
38509         delete this.showTimer;
38510         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38511         if(autoActivate){
38512             this.menu.tryActivate(0, 1);
38513         }
38514     },
38515
38516     // private
38517     hideMenu : function(){
38518         clearTimeout(this.showTimer);
38519         delete this.showTimer;
38520         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38521             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38522         }
38523     },
38524
38525     // private
38526     deferHide : function(){
38527         delete this.hideTimer;
38528         this.menu.hide();
38529     }
38530 });/*
38531  * Based on:
38532  * Ext JS Library 1.1.1
38533  * Copyright(c) 2006-2007, Ext JS, LLC.
38534  *
38535  * Originally Released Under LGPL - original licence link has changed is not relivant.
38536  *
38537  * Fork - LGPL
38538  * <script type="text/javascript">
38539  */
38540  
38541 /**
38542  * @class Roo.menu.CheckItem
38543  * @extends Roo.menu.Item
38544  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38545  * @constructor
38546  * Creates a new CheckItem
38547  * @param {Object} config Configuration options
38548  */
38549 Roo.menu.CheckItem = function(config){
38550     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38551     this.addEvents({
38552         /**
38553          * @event beforecheckchange
38554          * Fires before the checked value is set, providing an opportunity to cancel if needed
38555          * @param {Roo.menu.CheckItem} this
38556          * @param {Boolean} checked The new checked value that will be set
38557          */
38558         "beforecheckchange" : true,
38559         /**
38560          * @event checkchange
38561          * Fires after the checked value has been set
38562          * @param {Roo.menu.CheckItem} this
38563          * @param {Boolean} checked The checked value that was set
38564          */
38565         "checkchange" : true
38566     });
38567     if(this.checkHandler){
38568         this.on('checkchange', this.checkHandler, this.scope);
38569     }
38570 };
38571 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38572     /**
38573      * @cfg {String} group
38574      * All check items with the same group name will automatically be grouped into a single-select
38575      * radio button group (defaults to '')
38576      */
38577     /**
38578      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38579      */
38580     itemCls : "x-menu-item x-menu-check-item",
38581     /**
38582      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38583      */
38584     groupClass : "x-menu-group-item",
38585
38586     /**
38587      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38588      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38589      * initialized with checked = true will be rendered as checked.
38590      */
38591     checked: false,
38592
38593     // private
38594     ctype: "Roo.menu.CheckItem",
38595
38596     // private
38597     onRender : function(c){
38598         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38599         if(this.group){
38600             this.el.addClass(this.groupClass);
38601         }
38602         Roo.menu.MenuMgr.registerCheckable(this);
38603         if(this.checked){
38604             this.checked = false;
38605             this.setChecked(true, true);
38606         }
38607     },
38608
38609     // private
38610     destroy : function(){
38611         if(this.rendered){
38612             Roo.menu.MenuMgr.unregisterCheckable(this);
38613         }
38614         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38615     },
38616
38617     /**
38618      * Set the checked state of this item
38619      * @param {Boolean} checked The new checked value
38620      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38621      */
38622     setChecked : function(state, suppressEvent){
38623         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38624             if(this.container){
38625                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38626             }
38627             this.checked = state;
38628             if(suppressEvent !== true){
38629                 this.fireEvent("checkchange", this, state);
38630             }
38631         }
38632     },
38633
38634     // private
38635     handleClick : function(e){
38636        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38637            this.setChecked(!this.checked);
38638        }
38639        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38640     }
38641 });/*
38642  * Based on:
38643  * Ext JS Library 1.1.1
38644  * Copyright(c) 2006-2007, Ext JS, LLC.
38645  *
38646  * Originally Released Under LGPL - original licence link has changed is not relivant.
38647  *
38648  * Fork - LGPL
38649  * <script type="text/javascript">
38650  */
38651  
38652 /**
38653  * @class Roo.menu.DateItem
38654  * @extends Roo.menu.Adapter
38655  * A menu item that wraps the {@link Roo.DatPicker} component.
38656  * @constructor
38657  * Creates a new DateItem
38658  * @param {Object} config Configuration options
38659  */
38660 Roo.menu.DateItem = function(config){
38661     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38662     /** The Roo.DatePicker object @type Roo.DatePicker */
38663     this.picker = this.component;
38664     this.addEvents({select: true});
38665     
38666     this.picker.on("render", function(picker){
38667         picker.getEl().swallowEvent("click");
38668         picker.container.addClass("x-menu-date-item");
38669     });
38670
38671     this.picker.on("select", this.onSelect, this);
38672 };
38673
38674 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38675     // private
38676     onSelect : function(picker, date){
38677         this.fireEvent("select", this, date, picker);
38678         Roo.menu.DateItem.superclass.handleClick.call(this);
38679     }
38680 });/*
38681  * Based on:
38682  * Ext JS Library 1.1.1
38683  * Copyright(c) 2006-2007, Ext JS, LLC.
38684  *
38685  * Originally Released Under LGPL - original licence link has changed is not relivant.
38686  *
38687  * Fork - LGPL
38688  * <script type="text/javascript">
38689  */
38690  
38691 /**
38692  * @class Roo.menu.ColorItem
38693  * @extends Roo.menu.Adapter
38694  * A menu item that wraps the {@link Roo.ColorPalette} component.
38695  * @constructor
38696  * Creates a new ColorItem
38697  * @param {Object} config Configuration options
38698  */
38699 Roo.menu.ColorItem = function(config){
38700     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38701     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38702     this.palette = this.component;
38703     this.relayEvents(this.palette, ["select"]);
38704     if(this.selectHandler){
38705         this.on('select', this.selectHandler, this.scope);
38706     }
38707 };
38708 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38709  * Based on:
38710  * Ext JS Library 1.1.1
38711  * Copyright(c) 2006-2007, Ext JS, LLC.
38712  *
38713  * Originally Released Under LGPL - original licence link has changed is not relivant.
38714  *
38715  * Fork - LGPL
38716  * <script type="text/javascript">
38717  */
38718  
38719
38720 /**
38721  * @class Roo.menu.DateMenu
38722  * @extends Roo.menu.Menu
38723  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38724  * @constructor
38725  * Creates a new DateMenu
38726  * @param {Object} config Configuration options
38727  */
38728 Roo.menu.DateMenu = function(config){
38729     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38730     this.plain = true;
38731     var di = new Roo.menu.DateItem(config);
38732     this.add(di);
38733     /**
38734      * The {@link Roo.DatePicker} instance for this DateMenu
38735      * @type DatePicker
38736      */
38737     this.picker = di.picker;
38738     /**
38739      * @event select
38740      * @param {DatePicker} picker
38741      * @param {Date} date
38742      */
38743     this.relayEvents(di, ["select"]);
38744     this.on('beforeshow', function(){
38745         if(this.picker){
38746             this.picker.hideMonthPicker(false);
38747         }
38748     }, this);
38749 };
38750 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38751     cls:'x-date-menu'
38752 });/*
38753  * Based on:
38754  * Ext JS Library 1.1.1
38755  * Copyright(c) 2006-2007, Ext JS, LLC.
38756  *
38757  * Originally Released Under LGPL - original licence link has changed is not relivant.
38758  *
38759  * Fork - LGPL
38760  * <script type="text/javascript">
38761  */
38762  
38763
38764 /**
38765  * @class Roo.menu.ColorMenu
38766  * @extends Roo.menu.Menu
38767  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38768  * @constructor
38769  * Creates a new ColorMenu
38770  * @param {Object} config Configuration options
38771  */
38772 Roo.menu.ColorMenu = function(config){
38773     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38774     this.plain = true;
38775     var ci = new Roo.menu.ColorItem(config);
38776     this.add(ci);
38777     /**
38778      * The {@link Roo.ColorPalette} instance for this ColorMenu
38779      * @type ColorPalette
38780      */
38781     this.palette = ci.palette;
38782     /**
38783      * @event select
38784      * @param {ColorPalette} palette
38785      * @param {String} color
38786      */
38787     this.relayEvents(ci, ["select"]);
38788 };
38789 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38790  * Based on:
38791  * Ext JS Library 1.1.1
38792  * Copyright(c) 2006-2007, Ext JS, LLC.
38793  *
38794  * Originally Released Under LGPL - original licence link has changed is not relivant.
38795  *
38796  * Fork - LGPL
38797  * <script type="text/javascript">
38798  */
38799  
38800 /**
38801  * @class Roo.form.TextItem
38802  * @extends Roo.BoxComponent
38803  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38804  * @constructor
38805  * Creates a new TextItem
38806  * @param {Object} config Configuration options
38807  */
38808 Roo.form.TextItem = function(config){
38809     Roo.form.TextItem.superclass.constructor.call(this, config);
38810 };
38811
38812 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
38813     
38814     /**
38815      * @cfg {String} tag the tag for this item (default div)
38816      */
38817     tag : 'div',
38818     /**
38819      * @cfg {String} html the content for this item
38820      */
38821     html : '',
38822     
38823     getAutoCreate : function()
38824     {
38825         var cfg = {
38826             id: this.id,
38827             tag: this.tag,
38828             html: this.html,
38829             cls: 'x-form-item'
38830         };
38831         
38832         return cfg;
38833         
38834     },
38835     
38836     onRender : function(ct, position)
38837     {
38838         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
38839         
38840         if(!this.el){
38841             var cfg = this.getAutoCreate();
38842             if(!cfg.name){
38843                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38844             }
38845             if (!cfg.name.length) {
38846                 delete cfg.name;
38847             }
38848             this.el = ct.createChild(cfg, position);
38849         }
38850     }
38851     
38852 });/*
38853  * Based on:
38854  * Ext JS Library 1.1.1
38855  * Copyright(c) 2006-2007, Ext JS, LLC.
38856  *
38857  * Originally Released Under LGPL - original licence link has changed is not relivant.
38858  *
38859  * Fork - LGPL
38860  * <script type="text/javascript">
38861  */
38862  
38863 /**
38864  * @class Roo.form.Field
38865  * @extends Roo.BoxComponent
38866  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38867  * @constructor
38868  * Creates a new Field
38869  * @param {Object} config Configuration options
38870  */
38871 Roo.form.Field = function(config){
38872     Roo.form.Field.superclass.constructor.call(this, config);
38873 };
38874
38875 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
38876     /**
38877      * @cfg {String} fieldLabel Label to use when rendering a form.
38878      */
38879        /**
38880      * @cfg {String} qtip Mouse over tip
38881      */
38882      
38883     /**
38884      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
38885      */
38886     invalidClass : "x-form-invalid",
38887     /**
38888      * @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")
38889      */
38890     invalidText : "The value in this field is invalid",
38891     /**
38892      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
38893      */
38894     focusClass : "x-form-focus",
38895     /**
38896      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
38897       automatic validation (defaults to "keyup").
38898      */
38899     validationEvent : "keyup",
38900     /**
38901      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
38902      */
38903     validateOnBlur : true,
38904     /**
38905      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
38906      */
38907     validationDelay : 250,
38908     /**
38909      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
38910      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
38911      */
38912     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
38913     /**
38914      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
38915      */
38916     fieldClass : "x-form-field",
38917     /**
38918      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
38919      *<pre>
38920 Value         Description
38921 -----------   ----------------------------------------------------------------------
38922 qtip          Display a quick tip when the user hovers over the field
38923 title         Display a default browser title attribute popup
38924 under         Add a block div beneath the field containing the error text
38925 side          Add an error icon to the right of the field with a popup on hover
38926 [element id]  Add the error text directly to the innerHTML of the specified element
38927 </pre>
38928      */
38929     msgTarget : 'qtip',
38930     /**
38931      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
38932      */
38933     msgFx : 'normal',
38934
38935     /**
38936      * @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.
38937      */
38938     readOnly : false,
38939
38940     /**
38941      * @cfg {Boolean} disabled True to disable the field (defaults to false).
38942      */
38943     disabled : false,
38944
38945     /**
38946      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
38947      */
38948     inputType : undefined,
38949     
38950     /**
38951      * @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).
38952          */
38953         tabIndex : undefined,
38954         
38955     // private
38956     isFormField : true,
38957
38958     // private
38959     hasFocus : false,
38960     /**
38961      * @property {Roo.Element} fieldEl
38962      * Element Containing the rendered Field (with label etc.)
38963      */
38964     /**
38965      * @cfg {Mixed} value A value to initialize this field with.
38966      */
38967     value : undefined,
38968
38969     /**
38970      * @cfg {String} name The field's HTML name attribute.
38971      */
38972     /**
38973      * @cfg {String} cls A CSS class to apply to the field's underlying element.
38974      */
38975     // private
38976     loadedValue : false,
38977      
38978      
38979         // private ??
38980         initComponent : function(){
38981         Roo.form.Field.superclass.initComponent.call(this);
38982         this.addEvents({
38983             /**
38984              * @event focus
38985              * Fires when this field receives input focus.
38986              * @param {Roo.form.Field} this
38987              */
38988             focus : true,
38989             /**
38990              * @event blur
38991              * Fires when this field loses input focus.
38992              * @param {Roo.form.Field} this
38993              */
38994             blur : true,
38995             /**
38996              * @event specialkey
38997              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
38998              * {@link Roo.EventObject#getKey} to determine which key was pressed.
38999              * @param {Roo.form.Field} this
39000              * @param {Roo.EventObject} e The event object
39001              */
39002             specialkey : true,
39003             /**
39004              * @event change
39005              * Fires just before the field blurs if the field value has changed.
39006              * @param {Roo.form.Field} this
39007              * @param {Mixed} newValue The new value
39008              * @param {Mixed} oldValue The original value
39009              */
39010             change : true,
39011             /**
39012              * @event invalid
39013              * Fires after the field has been marked as invalid.
39014              * @param {Roo.form.Field} this
39015              * @param {String} msg The validation message
39016              */
39017             invalid : true,
39018             /**
39019              * @event valid
39020              * Fires after the field has been validated with no errors.
39021              * @param {Roo.form.Field} this
39022              */
39023             valid : true,
39024              /**
39025              * @event keyup
39026              * Fires after the key up
39027              * @param {Roo.form.Field} this
39028              * @param {Roo.EventObject}  e The event Object
39029              */
39030             keyup : true
39031         });
39032     },
39033
39034     /**
39035      * Returns the name attribute of the field if available
39036      * @return {String} name The field name
39037      */
39038     getName: function(){
39039          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39040     },
39041
39042     // private
39043     onRender : function(ct, position){
39044         Roo.form.Field.superclass.onRender.call(this, ct, position);
39045         if(!this.el){
39046             var cfg = this.getAutoCreate();
39047             if(!cfg.name){
39048                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39049             }
39050             if (!cfg.name.length) {
39051                 delete cfg.name;
39052             }
39053             if(this.inputType){
39054                 cfg.type = this.inputType;
39055             }
39056             this.el = ct.createChild(cfg, position);
39057         }
39058         var type = this.el.dom.type;
39059         if(type){
39060             if(type == 'password'){
39061                 type = 'text';
39062             }
39063             this.el.addClass('x-form-'+type);
39064         }
39065         if(this.readOnly){
39066             this.el.dom.readOnly = true;
39067         }
39068         if(this.tabIndex !== undefined){
39069             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39070         }
39071
39072         this.el.addClass([this.fieldClass, this.cls]);
39073         this.initValue();
39074     },
39075
39076     /**
39077      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39078      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39079      * @return {Roo.form.Field} this
39080      */
39081     applyTo : function(target){
39082         this.allowDomMove = false;
39083         this.el = Roo.get(target);
39084         this.render(this.el.dom.parentNode);
39085         return this;
39086     },
39087
39088     // private
39089     initValue : function(){
39090         if(this.value !== undefined){
39091             this.setValue(this.value);
39092         }else if(this.el.dom.value.length > 0){
39093             this.setValue(this.el.dom.value);
39094         }
39095     },
39096
39097     /**
39098      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39099      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39100      */
39101     isDirty : function() {
39102         if(this.disabled) {
39103             return false;
39104         }
39105         return String(this.getValue()) !== String(this.originalValue);
39106     },
39107
39108     /**
39109      * stores the current value in loadedValue
39110      */
39111     resetHasChanged : function()
39112     {
39113         this.loadedValue = String(this.getValue());
39114     },
39115     /**
39116      * checks the current value against the 'loaded' value.
39117      * Note - will return false if 'resetHasChanged' has not been called first.
39118      */
39119     hasChanged : function()
39120     {
39121         if(this.disabled || this.readOnly) {
39122             return false;
39123         }
39124         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39125     },
39126     
39127     
39128     
39129     // private
39130     afterRender : function(){
39131         Roo.form.Field.superclass.afterRender.call(this);
39132         this.initEvents();
39133     },
39134
39135     // private
39136     fireKey : function(e){
39137         //Roo.log('field ' + e.getKey());
39138         if(e.isNavKeyPress()){
39139             this.fireEvent("specialkey", this, e);
39140         }
39141     },
39142
39143     /**
39144      * Resets the current field value to the originally loaded value and clears any validation messages
39145      */
39146     reset : function(){
39147         this.setValue(this.resetValue);
39148         this.originalValue = this.getValue();
39149         this.clearInvalid();
39150     },
39151
39152     // private
39153     initEvents : function(){
39154         // safari killled keypress - so keydown is now used..
39155         this.el.on("keydown" , this.fireKey,  this);
39156         this.el.on("focus", this.onFocus,  this);
39157         this.el.on("blur", this.onBlur,  this);
39158         this.el.relayEvent('keyup', this);
39159
39160         // reference to original value for reset
39161         this.originalValue = this.getValue();
39162         this.resetValue =  this.getValue();
39163     },
39164
39165     // private
39166     onFocus : function(){
39167         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39168             this.el.addClass(this.focusClass);
39169         }
39170         if(!this.hasFocus){
39171             this.hasFocus = true;
39172             this.startValue = this.getValue();
39173             this.fireEvent("focus", this);
39174         }
39175     },
39176
39177     beforeBlur : Roo.emptyFn,
39178
39179     // private
39180     onBlur : function(){
39181         this.beforeBlur();
39182         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39183             this.el.removeClass(this.focusClass);
39184         }
39185         this.hasFocus = false;
39186         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39187             this.validate();
39188         }
39189         var v = this.getValue();
39190         if(String(v) !== String(this.startValue)){
39191             this.fireEvent('change', this, v, this.startValue);
39192         }
39193         this.fireEvent("blur", this);
39194     },
39195
39196     /**
39197      * Returns whether or not the field value is currently valid
39198      * @param {Boolean} preventMark True to disable marking the field invalid
39199      * @return {Boolean} True if the value is valid, else false
39200      */
39201     isValid : function(preventMark){
39202         if(this.disabled){
39203             return true;
39204         }
39205         var restore = this.preventMark;
39206         this.preventMark = preventMark === true;
39207         var v = this.validateValue(this.processValue(this.getRawValue()));
39208         this.preventMark = restore;
39209         return v;
39210     },
39211
39212     /**
39213      * Validates the field value
39214      * @return {Boolean} True if the value is valid, else false
39215      */
39216     validate : function(){
39217         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39218             this.clearInvalid();
39219             return true;
39220         }
39221         return false;
39222     },
39223
39224     processValue : function(value){
39225         return value;
39226     },
39227
39228     // private
39229     // Subclasses should provide the validation implementation by overriding this
39230     validateValue : function(value){
39231         return true;
39232     },
39233
39234     /**
39235      * Mark this field as invalid
39236      * @param {String} msg The validation message
39237      */
39238     markInvalid : function(msg){
39239         if(!this.rendered || this.preventMark){ // not rendered
39240             return;
39241         }
39242         
39243         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39244         
39245         obj.el.addClass(this.invalidClass);
39246         msg = msg || this.invalidText;
39247         switch(this.msgTarget){
39248             case 'qtip':
39249                 obj.el.dom.qtip = msg;
39250                 obj.el.dom.qclass = 'x-form-invalid-tip';
39251                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39252                     Roo.QuickTips.enable();
39253                 }
39254                 break;
39255             case 'title':
39256                 this.el.dom.title = msg;
39257                 break;
39258             case 'under':
39259                 if(!this.errorEl){
39260                     var elp = this.el.findParent('.x-form-element', 5, true);
39261                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39262                     this.errorEl.setWidth(elp.getWidth(true)-20);
39263                 }
39264                 this.errorEl.update(msg);
39265                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39266                 break;
39267             case 'side':
39268                 if(!this.errorIcon){
39269                     var elp = this.el.findParent('.x-form-element', 5, true);
39270                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39271                 }
39272                 this.alignErrorIcon();
39273                 this.errorIcon.dom.qtip = msg;
39274                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39275                 this.errorIcon.show();
39276                 this.on('resize', this.alignErrorIcon, this);
39277                 break;
39278             default:
39279                 var t = Roo.getDom(this.msgTarget);
39280                 t.innerHTML = msg;
39281                 t.style.display = this.msgDisplay;
39282                 break;
39283         }
39284         this.fireEvent('invalid', this, msg);
39285     },
39286
39287     // private
39288     alignErrorIcon : function(){
39289         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39290     },
39291
39292     /**
39293      * Clear any invalid styles/messages for this field
39294      */
39295     clearInvalid : function(){
39296         if(!this.rendered || this.preventMark){ // not rendered
39297             return;
39298         }
39299         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39300         
39301         obj.el.removeClass(this.invalidClass);
39302         switch(this.msgTarget){
39303             case 'qtip':
39304                 obj.el.dom.qtip = '';
39305                 break;
39306             case 'title':
39307                 this.el.dom.title = '';
39308                 break;
39309             case 'under':
39310                 if(this.errorEl){
39311                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39312                 }
39313                 break;
39314             case 'side':
39315                 if(this.errorIcon){
39316                     this.errorIcon.dom.qtip = '';
39317                     this.errorIcon.hide();
39318                     this.un('resize', this.alignErrorIcon, this);
39319                 }
39320                 break;
39321             default:
39322                 var t = Roo.getDom(this.msgTarget);
39323                 t.innerHTML = '';
39324                 t.style.display = 'none';
39325                 break;
39326         }
39327         this.fireEvent('valid', this);
39328     },
39329
39330     /**
39331      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39332      * @return {Mixed} value The field value
39333      */
39334     getRawValue : function(){
39335         var v = this.el.getValue();
39336         
39337         return v;
39338     },
39339
39340     /**
39341      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39342      * @return {Mixed} value The field value
39343      */
39344     getValue : function(){
39345         var v = this.el.getValue();
39346          
39347         return v;
39348     },
39349
39350     /**
39351      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39352      * @param {Mixed} value The value to set
39353      */
39354     setRawValue : function(v){
39355         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39356     },
39357
39358     /**
39359      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39360      * @param {Mixed} value The value to set
39361      */
39362     setValue : function(v){
39363         this.value = v;
39364         if(this.rendered){
39365             this.el.dom.value = (v === null || v === undefined ? '' : v);
39366              this.validate();
39367         }
39368     },
39369
39370     adjustSize : function(w, h){
39371         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39372         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39373         return s;
39374     },
39375
39376     adjustWidth : function(tag, w){
39377         tag = tag.toLowerCase();
39378         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39379             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39380                 if(tag == 'input'){
39381                     return w + 2;
39382                 }
39383                 if(tag == 'textarea'){
39384                     return w-2;
39385                 }
39386             }else if(Roo.isOpera){
39387                 if(tag == 'input'){
39388                     return w + 2;
39389                 }
39390                 if(tag == 'textarea'){
39391                     return w-2;
39392                 }
39393             }
39394         }
39395         return w;
39396     }
39397 });
39398
39399
39400 // anything other than normal should be considered experimental
39401 Roo.form.Field.msgFx = {
39402     normal : {
39403         show: function(msgEl, f){
39404             msgEl.setDisplayed('block');
39405         },
39406
39407         hide : function(msgEl, f){
39408             msgEl.setDisplayed(false).update('');
39409         }
39410     },
39411
39412     slide : {
39413         show: function(msgEl, f){
39414             msgEl.slideIn('t', {stopFx:true});
39415         },
39416
39417         hide : function(msgEl, f){
39418             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39419         }
39420     },
39421
39422     slideRight : {
39423         show: function(msgEl, f){
39424             msgEl.fixDisplay();
39425             msgEl.alignTo(f.el, 'tl-tr');
39426             msgEl.slideIn('l', {stopFx:true});
39427         },
39428
39429         hide : function(msgEl, f){
39430             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39431         }
39432     }
39433 };/*
39434  * Based on:
39435  * Ext JS Library 1.1.1
39436  * Copyright(c) 2006-2007, Ext JS, LLC.
39437  *
39438  * Originally Released Under LGPL - original licence link has changed is not relivant.
39439  *
39440  * Fork - LGPL
39441  * <script type="text/javascript">
39442  */
39443  
39444
39445 /**
39446  * @class Roo.form.TextField
39447  * @extends Roo.form.Field
39448  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39449  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39450  * @constructor
39451  * Creates a new TextField
39452  * @param {Object} config Configuration options
39453  */
39454 Roo.form.TextField = function(config){
39455     Roo.form.TextField.superclass.constructor.call(this, config);
39456     this.addEvents({
39457         /**
39458          * @event autosize
39459          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39460          * according to the default logic, but this event provides a hook for the developer to apply additional
39461          * logic at runtime to resize the field if needed.
39462              * @param {Roo.form.Field} this This text field
39463              * @param {Number} width The new field width
39464              */
39465         autosize : true
39466     });
39467 };
39468
39469 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39470     /**
39471      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39472      */
39473     grow : false,
39474     /**
39475      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39476      */
39477     growMin : 30,
39478     /**
39479      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39480      */
39481     growMax : 800,
39482     /**
39483      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39484      */
39485     vtype : null,
39486     /**
39487      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39488      */
39489     maskRe : null,
39490     /**
39491      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39492      */
39493     disableKeyFilter : false,
39494     /**
39495      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39496      */
39497     allowBlank : true,
39498     /**
39499      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39500      */
39501     minLength : 0,
39502     /**
39503      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39504      */
39505     maxLength : Number.MAX_VALUE,
39506     /**
39507      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39508      */
39509     minLengthText : "The minimum length for this field is {0}",
39510     /**
39511      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39512      */
39513     maxLengthText : "The maximum length for this field is {0}",
39514     /**
39515      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39516      */
39517     selectOnFocus : false,
39518     /**
39519      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39520      */    
39521     allowLeadingSpace : false,
39522     /**
39523      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39524      */
39525     blankText : "This field is required",
39526     /**
39527      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39528      * If available, this function will be called only after the basic validators all return true, and will be passed the
39529      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39530      */
39531     validator : null,
39532     /**
39533      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39534      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39535      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39536      */
39537     regex : null,
39538     /**
39539      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39540      */
39541     regexText : "",
39542     /**
39543      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39544      */
39545     emptyText : null,
39546    
39547
39548     // private
39549     initEvents : function()
39550     {
39551         if (this.emptyText) {
39552             this.el.attr('placeholder', this.emptyText);
39553         }
39554         
39555         Roo.form.TextField.superclass.initEvents.call(this);
39556         if(this.validationEvent == 'keyup'){
39557             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39558             this.el.on('keyup', this.filterValidation, this);
39559         }
39560         else if(this.validationEvent !== false){
39561             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39562         }
39563         
39564         if(this.selectOnFocus){
39565             this.on("focus", this.preFocus, this);
39566         }
39567         if (!this.allowLeadingSpace) {
39568             this.on('blur', this.cleanLeadingSpace, this);
39569         }
39570         
39571         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39572             this.el.on("keypress", this.filterKeys, this);
39573         }
39574         if(this.grow){
39575             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39576             this.el.on("click", this.autoSize,  this);
39577         }
39578         if(this.el.is('input[type=password]') && Roo.isSafari){
39579             this.el.on('keydown', this.SafariOnKeyDown, this);
39580         }
39581     },
39582
39583     processValue : function(value){
39584         if(this.stripCharsRe){
39585             var newValue = value.replace(this.stripCharsRe, '');
39586             if(newValue !== value){
39587                 this.setRawValue(newValue);
39588                 return newValue;
39589             }
39590         }
39591         return value;
39592     },
39593
39594     filterValidation : function(e){
39595         if(!e.isNavKeyPress()){
39596             this.validationTask.delay(this.validationDelay);
39597         }
39598     },
39599
39600     // private
39601     onKeyUp : function(e){
39602         if(!e.isNavKeyPress()){
39603             this.autoSize();
39604         }
39605     },
39606     // private - clean the leading white space
39607     cleanLeadingSpace : function(e)
39608     {
39609         if ( this.inputType == 'file') {
39610             return;
39611         }
39612         
39613         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39614     },
39615     /**
39616      * Resets the current field value to the originally-loaded value and clears any validation messages.
39617      *  
39618      */
39619     reset : function(){
39620         Roo.form.TextField.superclass.reset.call(this);
39621        
39622     }, 
39623     // private
39624     preFocus : function(){
39625         
39626         if(this.selectOnFocus){
39627             this.el.dom.select();
39628         }
39629     },
39630
39631     
39632     // private
39633     filterKeys : function(e){
39634         var k = e.getKey();
39635         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39636             return;
39637         }
39638         var c = e.getCharCode(), cc = String.fromCharCode(c);
39639         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39640             return;
39641         }
39642         if(!this.maskRe.test(cc)){
39643             e.stopEvent();
39644         }
39645     },
39646
39647     setValue : function(v){
39648         
39649         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39650         
39651         this.autoSize();
39652     },
39653
39654     /**
39655      * Validates a value according to the field's validation rules and marks the field as invalid
39656      * if the validation fails
39657      * @param {Mixed} value The value to validate
39658      * @return {Boolean} True if the value is valid, else false
39659      */
39660     validateValue : function(value){
39661         if(value.length < 1)  { // if it's blank
39662              if(this.allowBlank){
39663                 this.clearInvalid();
39664                 return true;
39665              }else{
39666                 this.markInvalid(this.blankText);
39667                 return false;
39668              }
39669         }
39670         if(value.length < this.minLength){
39671             this.markInvalid(String.format(this.minLengthText, this.minLength));
39672             return false;
39673         }
39674         if(value.length > this.maxLength){
39675             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39676             return false;
39677         }
39678         if(this.vtype){
39679             var vt = Roo.form.VTypes;
39680             if(!vt[this.vtype](value, this)){
39681                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39682                 return false;
39683             }
39684         }
39685         if(typeof this.validator == "function"){
39686             var msg = this.validator(value);
39687             if(msg !== true){
39688                 this.markInvalid(msg);
39689                 return false;
39690             }
39691         }
39692         if(this.regex && !this.regex.test(value)){
39693             this.markInvalid(this.regexText);
39694             return false;
39695         }
39696         return true;
39697     },
39698
39699     /**
39700      * Selects text in this field
39701      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39702      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39703      */
39704     selectText : function(start, end){
39705         var v = this.getRawValue();
39706         if(v.length > 0){
39707             start = start === undefined ? 0 : start;
39708             end = end === undefined ? v.length : end;
39709             var d = this.el.dom;
39710             if(d.setSelectionRange){
39711                 d.setSelectionRange(start, end);
39712             }else if(d.createTextRange){
39713                 var range = d.createTextRange();
39714                 range.moveStart("character", start);
39715                 range.moveEnd("character", v.length-end);
39716                 range.select();
39717             }
39718         }
39719     },
39720
39721     /**
39722      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39723      * This only takes effect if grow = true, and fires the autosize event.
39724      */
39725     autoSize : function(){
39726         if(!this.grow || !this.rendered){
39727             return;
39728         }
39729         if(!this.metrics){
39730             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39731         }
39732         var el = this.el;
39733         var v = el.dom.value;
39734         var d = document.createElement('div');
39735         d.appendChild(document.createTextNode(v));
39736         v = d.innerHTML;
39737         d = null;
39738         v += "&#160;";
39739         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39740         this.el.setWidth(w);
39741         this.fireEvent("autosize", this, w);
39742     },
39743     
39744     // private
39745     SafariOnKeyDown : function(event)
39746     {
39747         // this is a workaround for a password hang bug on chrome/ webkit.
39748         
39749         var isSelectAll = false;
39750         
39751         if(this.el.dom.selectionEnd > 0){
39752             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39753         }
39754         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39755             event.preventDefault();
39756             this.setValue('');
39757             return;
39758         }
39759         
39760         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39761             
39762             event.preventDefault();
39763             // this is very hacky as keydown always get's upper case.
39764             
39765             var cc = String.fromCharCode(event.getCharCode());
39766             
39767             
39768             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39769             
39770         }
39771         
39772         
39773     }
39774 });/*
39775  * Based on:
39776  * Ext JS Library 1.1.1
39777  * Copyright(c) 2006-2007, Ext JS, LLC.
39778  *
39779  * Originally Released Under LGPL - original licence link has changed is not relivant.
39780  *
39781  * Fork - LGPL
39782  * <script type="text/javascript">
39783  */
39784  
39785 /**
39786  * @class Roo.form.Hidden
39787  * @extends Roo.form.TextField
39788  * Simple Hidden element used on forms 
39789  * 
39790  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39791  * 
39792  * @constructor
39793  * Creates a new Hidden form element.
39794  * @param {Object} config Configuration options
39795  */
39796
39797
39798
39799 // easy hidden field...
39800 Roo.form.Hidden = function(config){
39801     Roo.form.Hidden.superclass.constructor.call(this, config);
39802 };
39803   
39804 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39805     fieldLabel:      '',
39806     inputType:      'hidden',
39807     width:          50,
39808     allowBlank:     true,
39809     labelSeparator: '',
39810     hidden:         true,
39811     itemCls :       'x-form-item-display-none'
39812
39813
39814 });
39815
39816
39817 /*
39818  * Based on:
39819  * Ext JS Library 1.1.1
39820  * Copyright(c) 2006-2007, Ext JS, LLC.
39821  *
39822  * Originally Released Under LGPL - original licence link has changed is not relivant.
39823  *
39824  * Fork - LGPL
39825  * <script type="text/javascript">
39826  */
39827  
39828 /**
39829  * @class Roo.form.TriggerField
39830  * @extends Roo.form.TextField
39831  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39832  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39833  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39834  * for which you can provide a custom implementation.  For example:
39835  * <pre><code>
39836 var trigger = new Roo.form.TriggerField();
39837 trigger.onTriggerClick = myTriggerFn;
39838 trigger.applyTo('my-field');
39839 </code></pre>
39840  *
39841  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39842  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39843  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39844  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
39845  * @constructor
39846  * Create a new TriggerField.
39847  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
39848  * to the base TextField)
39849  */
39850 Roo.form.TriggerField = function(config){
39851     this.mimicing = false;
39852     Roo.form.TriggerField.superclass.constructor.call(this, config);
39853 };
39854
39855 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
39856     /**
39857      * @cfg {String} triggerClass A CSS class to apply to the trigger
39858      */
39859     /**
39860      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39861      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
39862      */
39863     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
39864     /**
39865      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
39866      */
39867     hideTrigger:false,
39868
39869     /** @cfg {Boolean} grow @hide */
39870     /** @cfg {Number} growMin @hide */
39871     /** @cfg {Number} growMax @hide */
39872
39873     /**
39874      * @hide 
39875      * @method
39876      */
39877     autoSize: Roo.emptyFn,
39878     // private
39879     monitorTab : true,
39880     // private
39881     deferHeight : true,
39882
39883     
39884     actionMode : 'wrap',
39885     // private
39886     onResize : function(w, h){
39887         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
39888         if(typeof w == 'number'){
39889             var x = w - this.trigger.getWidth();
39890             this.el.setWidth(this.adjustWidth('input', x));
39891             this.trigger.setStyle('left', x+'px');
39892         }
39893     },
39894
39895     // private
39896     adjustSize : Roo.BoxComponent.prototype.adjustSize,
39897
39898     // private
39899     getResizeEl : function(){
39900         return this.wrap;
39901     },
39902
39903     // private
39904     getPositionEl : function(){
39905         return this.wrap;
39906     },
39907
39908     // private
39909     alignErrorIcon : function(){
39910         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
39911     },
39912
39913     // private
39914     onRender : function(ct, position){
39915         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
39916         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
39917         this.trigger = this.wrap.createChild(this.triggerConfig ||
39918                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
39919         if(this.hideTrigger){
39920             this.trigger.setDisplayed(false);
39921         }
39922         this.initTrigger();
39923         if(!this.width){
39924             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
39925         }
39926     },
39927
39928     // private
39929     initTrigger : function(){
39930         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
39931         this.trigger.addClassOnOver('x-form-trigger-over');
39932         this.trigger.addClassOnClick('x-form-trigger-click');
39933     },
39934
39935     // private
39936     onDestroy : function(){
39937         if(this.trigger){
39938             this.trigger.removeAllListeners();
39939             this.trigger.remove();
39940         }
39941         if(this.wrap){
39942             this.wrap.remove();
39943         }
39944         Roo.form.TriggerField.superclass.onDestroy.call(this);
39945     },
39946
39947     // private
39948     onFocus : function(){
39949         Roo.form.TriggerField.superclass.onFocus.call(this);
39950         if(!this.mimicing){
39951             this.wrap.addClass('x-trigger-wrap-focus');
39952             this.mimicing = true;
39953             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
39954             if(this.monitorTab){
39955                 this.el.on("keydown", this.checkTab, this);
39956             }
39957         }
39958     },
39959
39960     // private
39961     checkTab : function(e){
39962         if(e.getKey() == e.TAB){
39963             this.triggerBlur();
39964         }
39965     },
39966
39967     // private
39968     onBlur : function(){
39969         // do nothing
39970     },
39971
39972     // private
39973     mimicBlur : function(e, t){
39974         if(!this.wrap.contains(t) && this.validateBlur()){
39975             this.triggerBlur();
39976         }
39977     },
39978
39979     // private
39980     triggerBlur : function(){
39981         this.mimicing = false;
39982         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
39983         if(this.monitorTab){
39984             this.el.un("keydown", this.checkTab, this);
39985         }
39986         this.wrap.removeClass('x-trigger-wrap-focus');
39987         Roo.form.TriggerField.superclass.onBlur.call(this);
39988     },
39989
39990     // private
39991     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
39992     validateBlur : function(e, t){
39993         return true;
39994     },
39995
39996     // private
39997     onDisable : function(){
39998         Roo.form.TriggerField.superclass.onDisable.call(this);
39999         if(this.wrap){
40000             this.wrap.addClass('x-item-disabled');
40001         }
40002     },
40003
40004     // private
40005     onEnable : function(){
40006         Roo.form.TriggerField.superclass.onEnable.call(this);
40007         if(this.wrap){
40008             this.wrap.removeClass('x-item-disabled');
40009         }
40010     },
40011
40012     // private
40013     onShow : function(){
40014         var ae = this.getActionEl();
40015         
40016         if(ae){
40017             ae.dom.style.display = '';
40018             ae.dom.style.visibility = 'visible';
40019         }
40020     },
40021
40022     // private
40023     
40024     onHide : function(){
40025         var ae = this.getActionEl();
40026         ae.dom.style.display = 'none';
40027     },
40028
40029     /**
40030      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40031      * by an implementing function.
40032      * @method
40033      * @param {EventObject} e
40034      */
40035     onTriggerClick : Roo.emptyFn
40036 });
40037
40038 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40039 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40040 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40041 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40042     initComponent : function(){
40043         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40044
40045         this.triggerConfig = {
40046             tag:'span', cls:'x-form-twin-triggers', cn:[
40047             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40048             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40049         ]};
40050     },
40051
40052     getTrigger : function(index){
40053         return this.triggers[index];
40054     },
40055
40056     initTrigger : function(){
40057         var ts = this.trigger.select('.x-form-trigger', true);
40058         this.wrap.setStyle('overflow', 'hidden');
40059         var triggerField = this;
40060         ts.each(function(t, all, index){
40061             t.hide = function(){
40062                 var w = triggerField.wrap.getWidth();
40063                 this.dom.style.display = 'none';
40064                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40065             };
40066             t.show = function(){
40067                 var w = triggerField.wrap.getWidth();
40068                 this.dom.style.display = '';
40069                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40070             };
40071             var triggerIndex = 'Trigger'+(index+1);
40072
40073             if(this['hide'+triggerIndex]){
40074                 t.dom.style.display = 'none';
40075             }
40076             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40077             t.addClassOnOver('x-form-trigger-over');
40078             t.addClassOnClick('x-form-trigger-click');
40079         }, this);
40080         this.triggers = ts.elements;
40081     },
40082
40083     onTrigger1Click : Roo.emptyFn,
40084     onTrigger2Click : Roo.emptyFn
40085 });/*
40086  * Based on:
40087  * Ext JS Library 1.1.1
40088  * Copyright(c) 2006-2007, Ext JS, LLC.
40089  *
40090  * Originally Released Under LGPL - original licence link has changed is not relivant.
40091  *
40092  * Fork - LGPL
40093  * <script type="text/javascript">
40094  */
40095  
40096 /**
40097  * @class Roo.form.TextArea
40098  * @extends Roo.form.TextField
40099  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40100  * support for auto-sizing.
40101  * @constructor
40102  * Creates a new TextArea
40103  * @param {Object} config Configuration options
40104  */
40105 Roo.form.TextArea = function(config){
40106     Roo.form.TextArea.superclass.constructor.call(this, config);
40107     // these are provided exchanges for backwards compat
40108     // minHeight/maxHeight were replaced by growMin/growMax to be
40109     // compatible with TextField growing config values
40110     if(this.minHeight !== undefined){
40111         this.growMin = this.minHeight;
40112     }
40113     if(this.maxHeight !== undefined){
40114         this.growMax = this.maxHeight;
40115     }
40116 };
40117
40118 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40119     /**
40120      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40121      */
40122     growMin : 60,
40123     /**
40124      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40125      */
40126     growMax: 1000,
40127     /**
40128      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40129      * in the field (equivalent to setting overflow: hidden, defaults to false)
40130      */
40131     preventScrollbars: false,
40132     /**
40133      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40134      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40135      */
40136
40137     // private
40138     onRender : function(ct, position){
40139         if(!this.el){
40140             this.defaultAutoCreate = {
40141                 tag: "textarea",
40142                 style:"width:300px;height:60px;",
40143                 autocomplete: "new-password"
40144             };
40145         }
40146         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40147         if(this.grow){
40148             this.textSizeEl = Roo.DomHelper.append(document.body, {
40149                 tag: "pre", cls: "x-form-grow-sizer"
40150             });
40151             if(this.preventScrollbars){
40152                 this.el.setStyle("overflow", "hidden");
40153             }
40154             this.el.setHeight(this.growMin);
40155         }
40156     },
40157
40158     onDestroy : function(){
40159         if(this.textSizeEl){
40160             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40161         }
40162         Roo.form.TextArea.superclass.onDestroy.call(this);
40163     },
40164
40165     // private
40166     onKeyUp : function(e){
40167         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40168             this.autoSize();
40169         }
40170     },
40171
40172     /**
40173      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40174      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40175      */
40176     autoSize : function(){
40177         if(!this.grow || !this.textSizeEl){
40178             return;
40179         }
40180         var el = this.el;
40181         var v = el.dom.value;
40182         var ts = this.textSizeEl;
40183
40184         ts.innerHTML = '';
40185         ts.appendChild(document.createTextNode(v));
40186         v = ts.innerHTML;
40187
40188         Roo.fly(ts).setWidth(this.el.getWidth());
40189         if(v.length < 1){
40190             v = "&#160;&#160;";
40191         }else{
40192             if(Roo.isIE){
40193                 v = v.replace(/\n/g, '<p>&#160;</p>');
40194             }
40195             v += "&#160;\n&#160;";
40196         }
40197         ts.innerHTML = v;
40198         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40199         if(h != this.lastHeight){
40200             this.lastHeight = h;
40201             this.el.setHeight(h);
40202             this.fireEvent("autosize", this, h);
40203         }
40204     }
40205 });/*
40206  * Based on:
40207  * Ext JS Library 1.1.1
40208  * Copyright(c) 2006-2007, Ext JS, LLC.
40209  *
40210  * Originally Released Under LGPL - original licence link has changed is not relivant.
40211  *
40212  * Fork - LGPL
40213  * <script type="text/javascript">
40214  */
40215  
40216
40217 /**
40218  * @class Roo.form.NumberField
40219  * @extends Roo.form.TextField
40220  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40221  * @constructor
40222  * Creates a new NumberField
40223  * @param {Object} config Configuration options
40224  */
40225 Roo.form.NumberField = function(config){
40226     Roo.form.NumberField.superclass.constructor.call(this, config);
40227 };
40228
40229 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40230     /**
40231      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40232      */
40233     fieldClass: "x-form-field x-form-num-field",
40234     /**
40235      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40236      */
40237     allowDecimals : true,
40238     /**
40239      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40240      */
40241     decimalSeparator : ".",
40242     /**
40243      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40244      */
40245     decimalPrecision : 2,
40246     /**
40247      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40248      */
40249     allowNegative : true,
40250     /**
40251      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40252      */
40253     minValue : Number.NEGATIVE_INFINITY,
40254     /**
40255      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40256      */
40257     maxValue : Number.MAX_VALUE,
40258     /**
40259      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40260      */
40261     minText : "The minimum value for this field is {0}",
40262     /**
40263      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40264      */
40265     maxText : "The maximum value for this field is {0}",
40266     /**
40267      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40268      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40269      */
40270     nanText : "{0} is not a valid number",
40271
40272     // private
40273     initEvents : function(){
40274         Roo.form.NumberField.superclass.initEvents.call(this);
40275         var allowed = "0123456789";
40276         if(this.allowDecimals){
40277             allowed += this.decimalSeparator;
40278         }
40279         if(this.allowNegative){
40280             allowed += "-";
40281         }
40282         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40283         var keyPress = function(e){
40284             var k = e.getKey();
40285             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40286                 return;
40287             }
40288             var c = e.getCharCode();
40289             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40290                 e.stopEvent();
40291             }
40292         };
40293         this.el.on("keypress", keyPress, this);
40294     },
40295
40296     // private
40297     validateValue : function(value){
40298         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40299             return false;
40300         }
40301         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40302              return true;
40303         }
40304         var num = this.parseValue(value);
40305         if(isNaN(num)){
40306             this.markInvalid(String.format(this.nanText, value));
40307             return false;
40308         }
40309         if(num < this.minValue){
40310             this.markInvalid(String.format(this.minText, this.minValue));
40311             return false;
40312         }
40313         if(num > this.maxValue){
40314             this.markInvalid(String.format(this.maxText, this.maxValue));
40315             return false;
40316         }
40317         return true;
40318     },
40319
40320     getValue : function(){
40321         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40322     },
40323
40324     // private
40325     parseValue : function(value){
40326         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40327         return isNaN(value) ? '' : value;
40328     },
40329
40330     // private
40331     fixPrecision : function(value){
40332         var nan = isNaN(value);
40333         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40334             return nan ? '' : value;
40335         }
40336         return parseFloat(value).toFixed(this.decimalPrecision);
40337     },
40338
40339     setValue : function(v){
40340         v = this.fixPrecision(v);
40341         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40342     },
40343
40344     // private
40345     decimalPrecisionFcn : function(v){
40346         return Math.floor(v);
40347     },
40348
40349     beforeBlur : function(){
40350         var v = this.parseValue(this.getRawValue());
40351         if(v){
40352             this.setValue(v);
40353         }
40354     }
40355 });/*
40356  * Based on:
40357  * Ext JS Library 1.1.1
40358  * Copyright(c) 2006-2007, Ext JS, LLC.
40359  *
40360  * Originally Released Under LGPL - original licence link has changed is not relivant.
40361  *
40362  * Fork - LGPL
40363  * <script type="text/javascript">
40364  */
40365  
40366 /**
40367  * @class Roo.form.DateField
40368  * @extends Roo.form.TriggerField
40369  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40370 * @constructor
40371 * Create a new DateField
40372 * @param {Object} config
40373  */
40374 Roo.form.DateField = function(config)
40375 {
40376     Roo.form.DateField.superclass.constructor.call(this, config);
40377     
40378       this.addEvents({
40379          
40380         /**
40381          * @event select
40382          * Fires when a date is selected
40383              * @param {Roo.form.DateField} combo This combo box
40384              * @param {Date} date The date selected
40385              */
40386         'select' : true
40387          
40388     });
40389     
40390     
40391     if(typeof this.minValue == "string") {
40392         this.minValue = this.parseDate(this.minValue);
40393     }
40394     if(typeof this.maxValue == "string") {
40395         this.maxValue = this.parseDate(this.maxValue);
40396     }
40397     this.ddMatch = null;
40398     if(this.disabledDates){
40399         var dd = this.disabledDates;
40400         var re = "(?:";
40401         for(var i = 0; i < dd.length; i++){
40402             re += dd[i];
40403             if(i != dd.length-1) {
40404                 re += "|";
40405             }
40406         }
40407         this.ddMatch = new RegExp(re + ")");
40408     }
40409 };
40410
40411 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40412     /**
40413      * @cfg {String} format
40414      * The default date format string which can be overriden for localization support.  The format must be
40415      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40416      */
40417     format : "m/d/y",
40418     /**
40419      * @cfg {String} altFormats
40420      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40421      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40422      */
40423     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40424     /**
40425      * @cfg {Array} disabledDays
40426      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40427      */
40428     disabledDays : null,
40429     /**
40430      * @cfg {String} disabledDaysText
40431      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40432      */
40433     disabledDaysText : "Disabled",
40434     /**
40435      * @cfg {Array} disabledDates
40436      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40437      * expression so they are very powerful. Some examples:
40438      * <ul>
40439      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40440      * <li>["03/08", "09/16"] would disable those days for every year</li>
40441      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40442      * <li>["03/../2006"] would disable every day in March 2006</li>
40443      * <li>["^03"] would disable every day in every March</li>
40444      * </ul>
40445      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40446      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40447      */
40448     disabledDates : null,
40449     /**
40450      * @cfg {String} disabledDatesText
40451      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40452      */
40453     disabledDatesText : "Disabled",
40454     /**
40455      * @cfg {Date/String} minValue
40456      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40457      * valid format (defaults to null).
40458      */
40459     minValue : null,
40460     /**
40461      * @cfg {Date/String} maxValue
40462      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40463      * valid format (defaults to null).
40464      */
40465     maxValue : null,
40466     /**
40467      * @cfg {String} minText
40468      * The error text to display when the date in the cell is before minValue (defaults to
40469      * 'The date in this field must be after {minValue}').
40470      */
40471     minText : "The date in this field must be equal to or after {0}",
40472     /**
40473      * @cfg {String} maxText
40474      * The error text to display when the date in the cell is after maxValue (defaults to
40475      * 'The date in this field must be before {maxValue}').
40476      */
40477     maxText : "The date in this field must be equal to or before {0}",
40478     /**
40479      * @cfg {String} invalidText
40480      * The error text to display when the date in the field is invalid (defaults to
40481      * '{value} is not a valid date - it must be in the format {format}').
40482      */
40483     invalidText : "{0} is not a valid date - it must be in the format {1}",
40484     /**
40485      * @cfg {String} triggerClass
40486      * An additional CSS class used to style the trigger button.  The trigger will always get the
40487      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40488      * which displays a calendar icon).
40489      */
40490     triggerClass : 'x-form-date-trigger',
40491     
40492
40493     /**
40494      * @cfg {Boolean} useIso
40495      * if enabled, then the date field will use a hidden field to store the 
40496      * real value as iso formated date. default (false)
40497      */ 
40498     useIso : false,
40499     /**
40500      * @cfg {String/Object} autoCreate
40501      * A DomHelper element spec, or true for a default element spec (defaults to
40502      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40503      */ 
40504     // private
40505     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40506     
40507     // private
40508     hiddenField: false,
40509     
40510     onRender : function(ct, position)
40511     {
40512         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40513         if (this.useIso) {
40514             //this.el.dom.removeAttribute('name'); 
40515             Roo.log("Changing name?");
40516             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40517             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40518                     'before', true);
40519             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40520             // prevent input submission
40521             this.hiddenName = this.name;
40522         }
40523             
40524             
40525     },
40526     
40527     // private
40528     validateValue : function(value)
40529     {
40530         value = this.formatDate(value);
40531         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40532             Roo.log('super failed');
40533             return false;
40534         }
40535         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40536              return true;
40537         }
40538         var svalue = value;
40539         value = this.parseDate(value);
40540         if(!value){
40541             Roo.log('parse date failed' + svalue);
40542             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40543             return false;
40544         }
40545         var time = value.getTime();
40546         if(this.minValue && time < this.minValue.getTime()){
40547             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40548             return false;
40549         }
40550         if(this.maxValue && time > this.maxValue.getTime()){
40551             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40552             return false;
40553         }
40554         if(this.disabledDays){
40555             var day = value.getDay();
40556             for(var i = 0; i < this.disabledDays.length; i++) {
40557                 if(day === this.disabledDays[i]){
40558                     this.markInvalid(this.disabledDaysText);
40559                     return false;
40560                 }
40561             }
40562         }
40563         var fvalue = this.formatDate(value);
40564         if(this.ddMatch && this.ddMatch.test(fvalue)){
40565             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40566             return false;
40567         }
40568         return true;
40569     },
40570
40571     // private
40572     // Provides logic to override the default TriggerField.validateBlur which just returns true
40573     validateBlur : function(){
40574         return !this.menu || !this.menu.isVisible();
40575     },
40576     
40577     getName: function()
40578     {
40579         // returns hidden if it's set..
40580         if (!this.rendered) {return ''};
40581         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40582         
40583     },
40584
40585     /**
40586      * Returns the current date value of the date field.
40587      * @return {Date} The date value
40588      */
40589     getValue : function(){
40590         
40591         return  this.hiddenField ?
40592                 this.hiddenField.value :
40593                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40594     },
40595
40596     /**
40597      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40598      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40599      * (the default format used is "m/d/y").
40600      * <br />Usage:
40601      * <pre><code>
40602 //All of these calls set the same date value (May 4, 2006)
40603
40604 //Pass a date object:
40605 var dt = new Date('5/4/06');
40606 dateField.setValue(dt);
40607
40608 //Pass a date string (default format):
40609 dateField.setValue('5/4/06');
40610
40611 //Pass a date string (custom format):
40612 dateField.format = 'Y-m-d';
40613 dateField.setValue('2006-5-4');
40614 </code></pre>
40615      * @param {String/Date} date The date or valid date string
40616      */
40617     setValue : function(date){
40618         if (this.hiddenField) {
40619             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40620         }
40621         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40622         // make sure the value field is always stored as a date..
40623         this.value = this.parseDate(date);
40624         
40625         
40626     },
40627
40628     // private
40629     parseDate : function(value){
40630         if(!value || value instanceof Date){
40631             return value;
40632         }
40633         var v = Date.parseDate(value, this.format);
40634          if (!v && this.useIso) {
40635             v = Date.parseDate(value, 'Y-m-d');
40636         }
40637         if(!v && this.altFormats){
40638             if(!this.altFormatsArray){
40639                 this.altFormatsArray = this.altFormats.split("|");
40640             }
40641             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40642                 v = Date.parseDate(value, this.altFormatsArray[i]);
40643             }
40644         }
40645         return v;
40646     },
40647
40648     // private
40649     formatDate : function(date, fmt){
40650         return (!date || !(date instanceof Date)) ?
40651                date : date.dateFormat(fmt || this.format);
40652     },
40653
40654     // private
40655     menuListeners : {
40656         select: function(m, d){
40657             
40658             this.setValue(d);
40659             this.fireEvent('select', this, d);
40660         },
40661         show : function(){ // retain focus styling
40662             this.onFocus();
40663         },
40664         hide : function(){
40665             this.focus.defer(10, this);
40666             var ml = this.menuListeners;
40667             this.menu.un("select", ml.select,  this);
40668             this.menu.un("show", ml.show,  this);
40669             this.menu.un("hide", ml.hide,  this);
40670         }
40671     },
40672
40673     // private
40674     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40675     onTriggerClick : function(){
40676         if(this.disabled){
40677             return;
40678         }
40679         if(this.menu == null){
40680             this.menu = new Roo.menu.DateMenu();
40681         }
40682         Roo.apply(this.menu.picker,  {
40683             showClear: this.allowBlank,
40684             minDate : this.minValue,
40685             maxDate : this.maxValue,
40686             disabledDatesRE : this.ddMatch,
40687             disabledDatesText : this.disabledDatesText,
40688             disabledDays : this.disabledDays,
40689             disabledDaysText : this.disabledDaysText,
40690             format : this.useIso ? 'Y-m-d' : this.format,
40691             minText : String.format(this.minText, this.formatDate(this.minValue)),
40692             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40693         });
40694         this.menu.on(Roo.apply({}, this.menuListeners, {
40695             scope:this
40696         }));
40697         this.menu.picker.setValue(this.getValue() || new Date());
40698         this.menu.show(this.el, "tl-bl?");
40699     },
40700
40701     beforeBlur : function(){
40702         var v = this.parseDate(this.getRawValue());
40703         if(v){
40704             this.setValue(v);
40705         }
40706     },
40707
40708     /*@
40709      * overide
40710      * 
40711      */
40712     isDirty : function() {
40713         if(this.disabled) {
40714             return false;
40715         }
40716         
40717         if(typeof(this.startValue) === 'undefined'){
40718             return false;
40719         }
40720         
40721         return String(this.getValue()) !== String(this.startValue);
40722         
40723     },
40724     // @overide
40725     cleanLeadingSpace : function(e)
40726     {
40727        return;
40728     }
40729     
40730 });/*
40731  * Based on:
40732  * Ext JS Library 1.1.1
40733  * Copyright(c) 2006-2007, Ext JS, LLC.
40734  *
40735  * Originally Released Under LGPL - original licence link has changed is not relivant.
40736  *
40737  * Fork - LGPL
40738  * <script type="text/javascript">
40739  */
40740  
40741 /**
40742  * @class Roo.form.MonthField
40743  * @extends Roo.form.TriggerField
40744  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40745 * @constructor
40746 * Create a new MonthField
40747 * @param {Object} config
40748  */
40749 Roo.form.MonthField = function(config){
40750     
40751     Roo.form.MonthField.superclass.constructor.call(this, config);
40752     
40753       this.addEvents({
40754          
40755         /**
40756          * @event select
40757          * Fires when a date is selected
40758              * @param {Roo.form.MonthFieeld} combo This combo box
40759              * @param {Date} date The date selected
40760              */
40761         'select' : true
40762          
40763     });
40764     
40765     
40766     if(typeof this.minValue == "string") {
40767         this.minValue = this.parseDate(this.minValue);
40768     }
40769     if(typeof this.maxValue == "string") {
40770         this.maxValue = this.parseDate(this.maxValue);
40771     }
40772     this.ddMatch = null;
40773     if(this.disabledDates){
40774         var dd = this.disabledDates;
40775         var re = "(?:";
40776         for(var i = 0; i < dd.length; i++){
40777             re += dd[i];
40778             if(i != dd.length-1) {
40779                 re += "|";
40780             }
40781         }
40782         this.ddMatch = new RegExp(re + ")");
40783     }
40784 };
40785
40786 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40787     /**
40788      * @cfg {String} format
40789      * The default date format string which can be overriden for localization support.  The format must be
40790      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40791      */
40792     format : "M Y",
40793     /**
40794      * @cfg {String} altFormats
40795      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40796      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40797      */
40798     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40799     /**
40800      * @cfg {Array} disabledDays
40801      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40802      */
40803     disabledDays : [0,1,2,3,4,5,6],
40804     /**
40805      * @cfg {String} disabledDaysText
40806      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40807      */
40808     disabledDaysText : "Disabled",
40809     /**
40810      * @cfg {Array} disabledDates
40811      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40812      * expression so they are very powerful. Some examples:
40813      * <ul>
40814      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40815      * <li>["03/08", "09/16"] would disable those days for every year</li>
40816      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40817      * <li>["03/../2006"] would disable every day in March 2006</li>
40818      * <li>["^03"] would disable every day in every March</li>
40819      * </ul>
40820      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40821      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40822      */
40823     disabledDates : null,
40824     /**
40825      * @cfg {String} disabledDatesText
40826      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40827      */
40828     disabledDatesText : "Disabled",
40829     /**
40830      * @cfg {Date/String} minValue
40831      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40832      * valid format (defaults to null).
40833      */
40834     minValue : null,
40835     /**
40836      * @cfg {Date/String} maxValue
40837      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40838      * valid format (defaults to null).
40839      */
40840     maxValue : null,
40841     /**
40842      * @cfg {String} minText
40843      * The error text to display when the date in the cell is before minValue (defaults to
40844      * 'The date in this field must be after {minValue}').
40845      */
40846     minText : "The date in this field must be equal to or after {0}",
40847     /**
40848      * @cfg {String} maxTextf
40849      * The error text to display when the date in the cell is after maxValue (defaults to
40850      * 'The date in this field must be before {maxValue}').
40851      */
40852     maxText : "The date in this field must be equal to or before {0}",
40853     /**
40854      * @cfg {String} invalidText
40855      * The error text to display when the date in the field is invalid (defaults to
40856      * '{value} is not a valid date - it must be in the format {format}').
40857      */
40858     invalidText : "{0} is not a valid date - it must be in the format {1}",
40859     /**
40860      * @cfg {String} triggerClass
40861      * An additional CSS class used to style the trigger button.  The trigger will always get the
40862      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40863      * which displays a calendar icon).
40864      */
40865     triggerClass : 'x-form-date-trigger',
40866     
40867
40868     /**
40869      * @cfg {Boolean} useIso
40870      * if enabled, then the date field will use a hidden field to store the 
40871      * real value as iso formated date. default (true)
40872      */ 
40873     useIso : true,
40874     /**
40875      * @cfg {String/Object} autoCreate
40876      * A DomHelper element spec, or true for a default element spec (defaults to
40877      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40878      */ 
40879     // private
40880     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
40881     
40882     // private
40883     hiddenField: false,
40884     
40885     hideMonthPicker : false,
40886     
40887     onRender : function(ct, position)
40888     {
40889         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
40890         if (this.useIso) {
40891             this.el.dom.removeAttribute('name'); 
40892             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40893                     'before', true);
40894             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40895             // prevent input submission
40896             this.hiddenName = this.name;
40897         }
40898             
40899             
40900     },
40901     
40902     // private
40903     validateValue : function(value)
40904     {
40905         value = this.formatDate(value);
40906         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
40907             return false;
40908         }
40909         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40910              return true;
40911         }
40912         var svalue = value;
40913         value = this.parseDate(value);
40914         if(!value){
40915             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40916             return false;
40917         }
40918         var time = value.getTime();
40919         if(this.minValue && time < this.minValue.getTime()){
40920             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40921             return false;
40922         }
40923         if(this.maxValue && time > this.maxValue.getTime()){
40924             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40925             return false;
40926         }
40927         /*if(this.disabledDays){
40928             var day = value.getDay();
40929             for(var i = 0; i < this.disabledDays.length; i++) {
40930                 if(day === this.disabledDays[i]){
40931                     this.markInvalid(this.disabledDaysText);
40932                     return false;
40933                 }
40934             }
40935         }
40936         */
40937         var fvalue = this.formatDate(value);
40938         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
40939             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40940             return false;
40941         }
40942         */
40943         return true;
40944     },
40945
40946     // private
40947     // Provides logic to override the default TriggerField.validateBlur which just returns true
40948     validateBlur : function(){
40949         return !this.menu || !this.menu.isVisible();
40950     },
40951
40952     /**
40953      * Returns the current date value of the date field.
40954      * @return {Date} The date value
40955      */
40956     getValue : function(){
40957         
40958         
40959         
40960         return  this.hiddenField ?
40961                 this.hiddenField.value :
40962                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
40963     },
40964
40965     /**
40966      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40967      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
40968      * (the default format used is "m/d/y").
40969      * <br />Usage:
40970      * <pre><code>
40971 //All of these calls set the same date value (May 4, 2006)
40972
40973 //Pass a date object:
40974 var dt = new Date('5/4/06');
40975 monthField.setValue(dt);
40976
40977 //Pass a date string (default format):
40978 monthField.setValue('5/4/06');
40979
40980 //Pass a date string (custom format):
40981 monthField.format = 'Y-m-d';
40982 monthField.setValue('2006-5-4');
40983 </code></pre>
40984      * @param {String/Date} date The date or valid date string
40985      */
40986     setValue : function(date){
40987         Roo.log('month setValue' + date);
40988         // can only be first of month..
40989         
40990         var val = this.parseDate(date);
40991         
40992         if (this.hiddenField) {
40993             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40994         }
40995         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40996         this.value = this.parseDate(date);
40997     },
40998
40999     // private
41000     parseDate : function(value){
41001         if(!value || value instanceof Date){
41002             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41003             return value;
41004         }
41005         var v = Date.parseDate(value, this.format);
41006         if (!v && this.useIso) {
41007             v = Date.parseDate(value, 'Y-m-d');
41008         }
41009         if (v) {
41010             // 
41011             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41012         }
41013         
41014         
41015         if(!v && this.altFormats){
41016             if(!this.altFormatsArray){
41017                 this.altFormatsArray = this.altFormats.split("|");
41018             }
41019             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41020                 v = Date.parseDate(value, this.altFormatsArray[i]);
41021             }
41022         }
41023         return v;
41024     },
41025
41026     // private
41027     formatDate : function(date, fmt){
41028         return (!date || !(date instanceof Date)) ?
41029                date : date.dateFormat(fmt || this.format);
41030     },
41031
41032     // private
41033     menuListeners : {
41034         select: function(m, d){
41035             this.setValue(d);
41036             this.fireEvent('select', this, d);
41037         },
41038         show : function(){ // retain focus styling
41039             this.onFocus();
41040         },
41041         hide : function(){
41042             this.focus.defer(10, this);
41043             var ml = this.menuListeners;
41044             this.menu.un("select", ml.select,  this);
41045             this.menu.un("show", ml.show,  this);
41046             this.menu.un("hide", ml.hide,  this);
41047         }
41048     },
41049     // private
41050     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41051     onTriggerClick : function(){
41052         if(this.disabled){
41053             return;
41054         }
41055         if(this.menu == null){
41056             this.menu = new Roo.menu.DateMenu();
41057            
41058         }
41059         
41060         Roo.apply(this.menu.picker,  {
41061             
41062             showClear: this.allowBlank,
41063             minDate : this.minValue,
41064             maxDate : this.maxValue,
41065             disabledDatesRE : this.ddMatch,
41066             disabledDatesText : this.disabledDatesText,
41067             
41068             format : this.useIso ? 'Y-m-d' : this.format,
41069             minText : String.format(this.minText, this.formatDate(this.minValue)),
41070             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41071             
41072         });
41073          this.menu.on(Roo.apply({}, this.menuListeners, {
41074             scope:this
41075         }));
41076        
41077         
41078         var m = this.menu;
41079         var p = m.picker;
41080         
41081         // hide month picker get's called when we called by 'before hide';
41082         
41083         var ignorehide = true;
41084         p.hideMonthPicker  = function(disableAnim){
41085             if (ignorehide) {
41086                 return;
41087             }
41088              if(this.monthPicker){
41089                 Roo.log("hideMonthPicker called");
41090                 if(disableAnim === true){
41091                     this.monthPicker.hide();
41092                 }else{
41093                     this.monthPicker.slideOut('t', {duration:.2});
41094                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41095                     p.fireEvent("select", this, this.value);
41096                     m.hide();
41097                 }
41098             }
41099         }
41100         
41101         Roo.log('picker set value');
41102         Roo.log(this.getValue());
41103         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41104         m.show(this.el, 'tl-bl?');
41105         ignorehide  = false;
41106         // this will trigger hideMonthPicker..
41107         
41108         
41109         // hidden the day picker
41110         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41111         
41112         
41113         
41114       
41115         
41116         p.showMonthPicker.defer(100, p);
41117     
41118         
41119        
41120     },
41121
41122     beforeBlur : function(){
41123         var v = this.parseDate(this.getRawValue());
41124         if(v){
41125             this.setValue(v);
41126         }
41127     }
41128
41129     /** @cfg {Boolean} grow @hide */
41130     /** @cfg {Number} growMin @hide */
41131     /** @cfg {Number} growMax @hide */
41132     /**
41133      * @hide
41134      * @method autoSize
41135      */
41136 });/*
41137  * Based on:
41138  * Ext JS Library 1.1.1
41139  * Copyright(c) 2006-2007, Ext JS, LLC.
41140  *
41141  * Originally Released Under LGPL - original licence link has changed is not relivant.
41142  *
41143  * Fork - LGPL
41144  * <script type="text/javascript">
41145  */
41146  
41147
41148 /**
41149  * @class Roo.form.ComboBox
41150  * @extends Roo.form.TriggerField
41151  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41152  * @constructor
41153  * Create a new ComboBox.
41154  * @param {Object} config Configuration options
41155  */
41156 Roo.form.ComboBox = function(config){
41157     Roo.form.ComboBox.superclass.constructor.call(this, config);
41158     this.addEvents({
41159         /**
41160          * @event expand
41161          * Fires when the dropdown list is expanded
41162              * @param {Roo.form.ComboBox} combo This combo box
41163              */
41164         'expand' : true,
41165         /**
41166          * @event collapse
41167          * Fires when the dropdown list is collapsed
41168              * @param {Roo.form.ComboBox} combo This combo box
41169              */
41170         'collapse' : true,
41171         /**
41172          * @event beforeselect
41173          * Fires before a list item is selected. Return false to cancel the selection.
41174              * @param {Roo.form.ComboBox} combo This combo box
41175              * @param {Roo.data.Record} record The data record returned from the underlying store
41176              * @param {Number} index The index of the selected item in the dropdown list
41177              */
41178         'beforeselect' : true,
41179         /**
41180          * @event select
41181          * Fires when a list item is selected
41182              * @param {Roo.form.ComboBox} combo This combo box
41183              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41184              * @param {Number} index The index of the selected item in the dropdown list
41185              */
41186         'select' : true,
41187         /**
41188          * @event beforequery
41189          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41190          * The event object passed has these properties:
41191              * @param {Roo.form.ComboBox} combo This combo box
41192              * @param {String} query The query
41193              * @param {Boolean} forceAll true to force "all" query
41194              * @param {Boolean} cancel true to cancel the query
41195              * @param {Object} e The query event object
41196              */
41197         'beforequery': true,
41198          /**
41199          * @event add
41200          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41201              * @param {Roo.form.ComboBox} combo This combo box
41202              */
41203         'add' : true,
41204         /**
41205          * @event edit
41206          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41207              * @param {Roo.form.ComboBox} combo This combo box
41208              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41209              */
41210         'edit' : true
41211         
41212         
41213     });
41214     if(this.transform){
41215         this.allowDomMove = false;
41216         var s = Roo.getDom(this.transform);
41217         if(!this.hiddenName){
41218             this.hiddenName = s.name;
41219         }
41220         if(!this.store){
41221             this.mode = 'local';
41222             var d = [], opts = s.options;
41223             for(var i = 0, len = opts.length;i < len; i++){
41224                 var o = opts[i];
41225                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41226                 if(o.selected) {
41227                     this.value = value;
41228                 }
41229                 d.push([value, o.text]);
41230             }
41231             this.store = new Roo.data.SimpleStore({
41232                 'id': 0,
41233                 fields: ['value', 'text'],
41234                 data : d
41235             });
41236             this.valueField = 'value';
41237             this.displayField = 'text';
41238         }
41239         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41240         if(!this.lazyRender){
41241             this.target = true;
41242             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41243             s.parentNode.removeChild(s); // remove it
41244             this.render(this.el.parentNode);
41245         }else{
41246             s.parentNode.removeChild(s); // remove it
41247         }
41248
41249     }
41250     if (this.store) {
41251         this.store = Roo.factory(this.store, Roo.data);
41252     }
41253     
41254     this.selectedIndex = -1;
41255     if(this.mode == 'local'){
41256         if(config.queryDelay === undefined){
41257             this.queryDelay = 10;
41258         }
41259         if(config.minChars === undefined){
41260             this.minChars = 0;
41261         }
41262     }
41263 };
41264
41265 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41266     /**
41267      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41268      */
41269     /**
41270      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41271      * rendering into an Roo.Editor, defaults to false)
41272      */
41273     /**
41274      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41275      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41276      */
41277     /**
41278      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41279      */
41280     /**
41281      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41282      * the dropdown list (defaults to undefined, with no header element)
41283      */
41284
41285      /**
41286      * @cfg {String/Roo.Template} tpl The template to use to render the output
41287      */
41288      
41289     // private
41290     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41291     /**
41292      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41293      */
41294     listWidth: undefined,
41295     /**
41296      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41297      * mode = 'remote' or 'text' if mode = 'local')
41298      */
41299     displayField: undefined,
41300     /**
41301      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41302      * mode = 'remote' or 'value' if mode = 'local'). 
41303      * Note: use of a valueField requires the user make a selection
41304      * in order for a value to be mapped.
41305      */
41306     valueField: undefined,
41307     
41308     
41309     /**
41310      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41311      * field's data value (defaults to the underlying DOM element's name)
41312      */
41313     hiddenName: undefined,
41314     /**
41315      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41316      */
41317     listClass: '',
41318     /**
41319      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41320      */
41321     selectedClass: 'x-combo-selected',
41322     /**
41323      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41324      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41325      * which displays a downward arrow icon).
41326      */
41327     triggerClass : 'x-form-arrow-trigger',
41328     /**
41329      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41330      */
41331     shadow:'sides',
41332     /**
41333      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41334      * anchor positions (defaults to 'tl-bl')
41335      */
41336     listAlign: 'tl-bl?',
41337     /**
41338      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41339      */
41340     maxHeight: 300,
41341     /**
41342      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41343      * query specified by the allQuery config option (defaults to 'query')
41344      */
41345     triggerAction: 'query',
41346     /**
41347      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41348      * (defaults to 4, does not apply if editable = false)
41349      */
41350     minChars : 4,
41351     /**
41352      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41353      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41354      */
41355     typeAhead: false,
41356     /**
41357      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41358      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41359      */
41360     queryDelay: 500,
41361     /**
41362      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41363      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41364      */
41365     pageSize: 0,
41366     /**
41367      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41368      * when editable = true (defaults to false)
41369      */
41370     selectOnFocus:false,
41371     /**
41372      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41373      */
41374     queryParam: 'query',
41375     /**
41376      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41377      * when mode = 'remote' (defaults to 'Loading...')
41378      */
41379     loadingText: 'Loading...',
41380     /**
41381      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41382      */
41383     resizable: false,
41384     /**
41385      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41386      */
41387     handleHeight : 8,
41388     /**
41389      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41390      * traditional select (defaults to true)
41391      */
41392     editable: true,
41393     /**
41394      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41395      */
41396     allQuery: '',
41397     /**
41398      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41399      */
41400     mode: 'remote',
41401     /**
41402      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41403      * listWidth has a higher value)
41404      */
41405     minListWidth : 70,
41406     /**
41407      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41408      * allow the user to set arbitrary text into the field (defaults to false)
41409      */
41410     forceSelection:false,
41411     /**
41412      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41413      * if typeAhead = true (defaults to 250)
41414      */
41415     typeAheadDelay : 250,
41416     /**
41417      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41418      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41419      */
41420     valueNotFoundText : undefined,
41421     /**
41422      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41423      */
41424     blockFocus : false,
41425     
41426     /**
41427      * @cfg {Boolean} disableClear Disable showing of clear button.
41428      */
41429     disableClear : false,
41430     /**
41431      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41432      */
41433     alwaysQuery : false,
41434     
41435     //private
41436     addicon : false,
41437     editicon: false,
41438     
41439     // element that contains real text value.. (when hidden is used..)
41440      
41441     // private
41442     onRender : function(ct, position)
41443     {
41444         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41445         
41446         if(this.hiddenName){
41447             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41448                     'before', true);
41449             this.hiddenField.value =
41450                 this.hiddenValue !== undefined ? this.hiddenValue :
41451                 this.value !== undefined ? this.value : '';
41452
41453             // prevent input submission
41454             this.el.dom.removeAttribute('name');
41455              
41456              
41457         }
41458         
41459         if(Roo.isGecko){
41460             this.el.dom.setAttribute('autocomplete', 'off');
41461         }
41462
41463         var cls = 'x-combo-list';
41464
41465         this.list = new Roo.Layer({
41466             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41467         });
41468
41469         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41470         this.list.setWidth(lw);
41471         this.list.swallowEvent('mousewheel');
41472         this.assetHeight = 0;
41473
41474         if(this.title){
41475             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41476             this.assetHeight += this.header.getHeight();
41477         }
41478
41479         this.innerList = this.list.createChild({cls:cls+'-inner'});
41480         this.innerList.on('mouseover', this.onViewOver, this);
41481         this.innerList.on('mousemove', this.onViewMove, this);
41482         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41483         
41484         if(this.allowBlank && !this.pageSize && !this.disableClear){
41485             this.footer = this.list.createChild({cls:cls+'-ft'});
41486             this.pageTb = new Roo.Toolbar(this.footer);
41487            
41488         }
41489         if(this.pageSize){
41490             this.footer = this.list.createChild({cls:cls+'-ft'});
41491             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41492                     {pageSize: this.pageSize});
41493             
41494         }
41495         
41496         if (this.pageTb && this.allowBlank && !this.disableClear) {
41497             var _this = this;
41498             this.pageTb.add(new Roo.Toolbar.Fill(), {
41499                 cls: 'x-btn-icon x-btn-clear',
41500                 text: '&#160;',
41501                 handler: function()
41502                 {
41503                     _this.collapse();
41504                     _this.clearValue();
41505                     _this.onSelect(false, -1);
41506                 }
41507             });
41508         }
41509         if (this.footer) {
41510             this.assetHeight += this.footer.getHeight();
41511         }
41512         
41513
41514         if(!this.tpl){
41515             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41516         }
41517
41518         this.view = new Roo.View(this.innerList, this.tpl, {
41519             singleSelect:true,
41520             store: this.store,
41521             selectedClass: this.selectedClass
41522         });
41523
41524         this.view.on('click', this.onViewClick, this);
41525
41526         this.store.on('beforeload', this.onBeforeLoad, this);
41527         this.store.on('load', this.onLoad, this);
41528         this.store.on('loadexception', this.onLoadException, this);
41529
41530         if(this.resizable){
41531             this.resizer = new Roo.Resizable(this.list,  {
41532                pinned:true, handles:'se'
41533             });
41534             this.resizer.on('resize', function(r, w, h){
41535                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41536                 this.listWidth = w;
41537                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41538                 this.restrictHeight();
41539             }, this);
41540             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41541         }
41542         if(!this.editable){
41543             this.editable = true;
41544             this.setEditable(false);
41545         }  
41546         
41547         
41548         if (typeof(this.events.add.listeners) != 'undefined') {
41549             
41550             this.addicon = this.wrap.createChild(
41551                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41552        
41553             this.addicon.on('click', function(e) {
41554                 this.fireEvent('add', this);
41555             }, this);
41556         }
41557         if (typeof(this.events.edit.listeners) != 'undefined') {
41558             
41559             this.editicon = this.wrap.createChild(
41560                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41561             if (this.addicon) {
41562                 this.editicon.setStyle('margin-left', '40px');
41563             }
41564             this.editicon.on('click', function(e) {
41565                 
41566                 // we fire even  if inothing is selected..
41567                 this.fireEvent('edit', this, this.lastData );
41568                 
41569             }, this);
41570         }
41571         
41572         
41573         
41574     },
41575
41576     // private
41577     initEvents : function(){
41578         Roo.form.ComboBox.superclass.initEvents.call(this);
41579
41580         this.keyNav = new Roo.KeyNav(this.el, {
41581             "up" : function(e){
41582                 this.inKeyMode = true;
41583                 this.selectPrev();
41584             },
41585
41586             "down" : function(e){
41587                 if(!this.isExpanded()){
41588                     this.onTriggerClick();
41589                 }else{
41590                     this.inKeyMode = true;
41591                     this.selectNext();
41592                 }
41593             },
41594
41595             "enter" : function(e){
41596                 this.onViewClick();
41597                 //return true;
41598             },
41599
41600             "esc" : function(e){
41601                 this.collapse();
41602             },
41603
41604             "tab" : function(e){
41605                 this.onViewClick(false);
41606                 this.fireEvent("specialkey", this, e);
41607                 return true;
41608             },
41609
41610             scope : this,
41611
41612             doRelay : function(foo, bar, hname){
41613                 if(hname == 'down' || this.scope.isExpanded()){
41614                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41615                 }
41616                 return true;
41617             },
41618
41619             forceKeyDown: true
41620         });
41621         this.queryDelay = Math.max(this.queryDelay || 10,
41622                 this.mode == 'local' ? 10 : 250);
41623         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41624         if(this.typeAhead){
41625             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41626         }
41627         if(this.editable !== false){
41628             this.el.on("keyup", this.onKeyUp, this);
41629         }
41630         if(this.forceSelection){
41631             this.on('blur', this.doForce, this);
41632         }
41633     },
41634
41635     onDestroy : function(){
41636         if(this.view){
41637             this.view.setStore(null);
41638             this.view.el.removeAllListeners();
41639             this.view.el.remove();
41640             this.view.purgeListeners();
41641         }
41642         if(this.list){
41643             this.list.destroy();
41644         }
41645         if(this.store){
41646             this.store.un('beforeload', this.onBeforeLoad, this);
41647             this.store.un('load', this.onLoad, this);
41648             this.store.un('loadexception', this.onLoadException, this);
41649         }
41650         Roo.form.ComboBox.superclass.onDestroy.call(this);
41651     },
41652
41653     // private
41654     fireKey : function(e){
41655         if(e.isNavKeyPress() && !this.list.isVisible()){
41656             this.fireEvent("specialkey", this, e);
41657         }
41658     },
41659
41660     // private
41661     onResize: function(w, h){
41662         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41663         
41664         if(typeof w != 'number'){
41665             // we do not handle it!?!?
41666             return;
41667         }
41668         var tw = this.trigger.getWidth();
41669         tw += this.addicon ? this.addicon.getWidth() : 0;
41670         tw += this.editicon ? this.editicon.getWidth() : 0;
41671         var x = w - tw;
41672         this.el.setWidth( this.adjustWidth('input', x));
41673             
41674         this.trigger.setStyle('left', x+'px');
41675         
41676         if(this.list && this.listWidth === undefined){
41677             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41678             this.list.setWidth(lw);
41679             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41680         }
41681         
41682     
41683         
41684     },
41685
41686     /**
41687      * Allow or prevent the user from directly editing the field text.  If false is passed,
41688      * the user will only be able to select from the items defined in the dropdown list.  This method
41689      * is the runtime equivalent of setting the 'editable' config option at config time.
41690      * @param {Boolean} value True to allow the user to directly edit the field text
41691      */
41692     setEditable : function(value){
41693         if(value == this.editable){
41694             return;
41695         }
41696         this.editable = value;
41697         if(!value){
41698             this.el.dom.setAttribute('readOnly', true);
41699             this.el.on('mousedown', this.onTriggerClick,  this);
41700             this.el.addClass('x-combo-noedit');
41701         }else{
41702             this.el.dom.setAttribute('readOnly', false);
41703             this.el.un('mousedown', this.onTriggerClick,  this);
41704             this.el.removeClass('x-combo-noedit');
41705         }
41706     },
41707
41708     // private
41709     onBeforeLoad : function(){
41710         if(!this.hasFocus){
41711             return;
41712         }
41713         this.innerList.update(this.loadingText ?
41714                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41715         this.restrictHeight();
41716         this.selectedIndex = -1;
41717     },
41718
41719     // private
41720     onLoad : function(){
41721         if(!this.hasFocus){
41722             return;
41723         }
41724         if(this.store.getCount() > 0){
41725             this.expand();
41726             this.restrictHeight();
41727             if(this.lastQuery == this.allQuery){
41728                 if(this.editable){
41729                     this.el.dom.select();
41730                 }
41731                 if(!this.selectByValue(this.value, true)){
41732                     this.select(0, true);
41733                 }
41734             }else{
41735                 this.selectNext();
41736                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41737                     this.taTask.delay(this.typeAheadDelay);
41738                 }
41739             }
41740         }else{
41741             this.onEmptyResults();
41742         }
41743         //this.el.focus();
41744     },
41745     // private
41746     onLoadException : function()
41747     {
41748         this.collapse();
41749         Roo.log(this.store.reader.jsonData);
41750         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41751             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41752         }
41753         
41754         
41755     },
41756     // private
41757     onTypeAhead : function(){
41758         if(this.store.getCount() > 0){
41759             var r = this.store.getAt(0);
41760             var newValue = r.data[this.displayField];
41761             var len = newValue.length;
41762             var selStart = this.getRawValue().length;
41763             if(selStart != len){
41764                 this.setRawValue(newValue);
41765                 this.selectText(selStart, newValue.length);
41766             }
41767         }
41768     },
41769
41770     // private
41771     onSelect : function(record, index){
41772         if(this.fireEvent('beforeselect', this, record, index) !== false){
41773             this.setFromData(index > -1 ? record.data : false);
41774             this.collapse();
41775             this.fireEvent('select', this, record, index);
41776         }
41777     },
41778
41779     /**
41780      * Returns the currently selected field value or empty string if no value is set.
41781      * @return {String} value The selected value
41782      */
41783     getValue : function(){
41784         if(this.valueField){
41785             return typeof this.value != 'undefined' ? this.value : '';
41786         }
41787         return Roo.form.ComboBox.superclass.getValue.call(this);
41788     },
41789
41790     /**
41791      * Clears any text/value currently set in the field
41792      */
41793     clearValue : function(){
41794         if(this.hiddenField){
41795             this.hiddenField.value = '';
41796         }
41797         this.value = '';
41798         this.setRawValue('');
41799         this.lastSelectionText = '';
41800         
41801     },
41802
41803     /**
41804      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41805      * will be displayed in the field.  If the value does not match the data value of an existing item,
41806      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41807      * Otherwise the field will be blank (although the value will still be set).
41808      * @param {String} value The value to match
41809      */
41810     setValue : function(v){
41811         var text = v;
41812         if(this.valueField){
41813             var r = this.findRecord(this.valueField, v);
41814             if(r){
41815                 text = r.data[this.displayField];
41816             }else if(this.valueNotFoundText !== undefined){
41817                 text = this.valueNotFoundText;
41818             }
41819         }
41820         this.lastSelectionText = text;
41821         if(this.hiddenField){
41822             this.hiddenField.value = v;
41823         }
41824         Roo.form.ComboBox.superclass.setValue.call(this, text);
41825         this.value = v;
41826     },
41827     /**
41828      * @property {Object} the last set data for the element
41829      */
41830     
41831     lastData : false,
41832     /**
41833      * Sets the value of the field based on a object which is related to the record format for the store.
41834      * @param {Object} value the value to set as. or false on reset?
41835      */
41836     setFromData : function(o){
41837         var dv = ''; // display value
41838         var vv = ''; // value value..
41839         this.lastData = o;
41840         if (this.displayField) {
41841             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41842         } else {
41843             // this is an error condition!!!
41844             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
41845         }
41846         
41847         if(this.valueField){
41848             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
41849         }
41850         if(this.hiddenField){
41851             this.hiddenField.value = vv;
41852             
41853             this.lastSelectionText = dv;
41854             Roo.form.ComboBox.superclass.setValue.call(this, dv);
41855             this.value = vv;
41856             return;
41857         }
41858         // no hidden field.. - we store the value in 'value', but still display
41859         // display field!!!!
41860         this.lastSelectionText = dv;
41861         Roo.form.ComboBox.superclass.setValue.call(this, dv);
41862         this.value = vv;
41863         
41864         
41865     },
41866     // private
41867     reset : function(){
41868         // overridden so that last data is reset..
41869         this.setValue(this.resetValue);
41870         this.originalValue = this.getValue();
41871         this.clearInvalid();
41872         this.lastData = false;
41873         if (this.view) {
41874             this.view.clearSelections();
41875         }
41876     },
41877     // private
41878     findRecord : function(prop, value){
41879         var record;
41880         if(this.store.getCount() > 0){
41881             this.store.each(function(r){
41882                 if(r.data[prop] == value){
41883                     record = r;
41884                     return false;
41885                 }
41886                 return true;
41887             });
41888         }
41889         return record;
41890     },
41891     
41892     getName: function()
41893     {
41894         // returns hidden if it's set..
41895         if (!this.rendered) {return ''};
41896         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
41897         
41898     },
41899     // private
41900     onViewMove : function(e, t){
41901         this.inKeyMode = false;
41902     },
41903
41904     // private
41905     onViewOver : function(e, t){
41906         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
41907             return;
41908         }
41909         var item = this.view.findItemFromChild(t);
41910         if(item){
41911             var index = this.view.indexOf(item);
41912             this.select(index, false);
41913         }
41914     },
41915
41916     // private
41917     onViewClick : function(doFocus)
41918     {
41919         var index = this.view.getSelectedIndexes()[0];
41920         var r = this.store.getAt(index);
41921         if(r){
41922             this.onSelect(r, index);
41923         }
41924         if(doFocus !== false && !this.blockFocus){
41925             this.el.focus();
41926         }
41927     },
41928
41929     // private
41930     restrictHeight : function(){
41931         this.innerList.dom.style.height = '';
41932         var inner = this.innerList.dom;
41933         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
41934         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
41935         this.list.beginUpdate();
41936         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
41937         this.list.alignTo(this.el, this.listAlign);
41938         this.list.endUpdate();
41939     },
41940
41941     // private
41942     onEmptyResults : function(){
41943         this.collapse();
41944     },
41945
41946     /**
41947      * Returns true if the dropdown list is expanded, else false.
41948      */
41949     isExpanded : function(){
41950         return this.list.isVisible();
41951     },
41952
41953     /**
41954      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
41955      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
41956      * @param {String} value The data value of the item to select
41957      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
41958      * selected item if it is not currently in view (defaults to true)
41959      * @return {Boolean} True if the value matched an item in the list, else false
41960      */
41961     selectByValue : function(v, scrollIntoView){
41962         if(v !== undefined && v !== null){
41963             var r = this.findRecord(this.valueField || this.displayField, v);
41964             if(r){
41965                 this.select(this.store.indexOf(r), scrollIntoView);
41966                 return true;
41967             }
41968         }
41969         return false;
41970     },
41971
41972     /**
41973      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
41974      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
41975      * @param {Number} index The zero-based index of the list item to select
41976      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
41977      * selected item if it is not currently in view (defaults to true)
41978      */
41979     select : function(index, scrollIntoView){
41980         this.selectedIndex = index;
41981         this.view.select(index);
41982         if(scrollIntoView !== false){
41983             var el = this.view.getNode(index);
41984             if(el){
41985                 this.innerList.scrollChildIntoView(el, false);
41986             }
41987         }
41988     },
41989
41990     // private
41991     selectNext : function(){
41992         var ct = this.store.getCount();
41993         if(ct > 0){
41994             if(this.selectedIndex == -1){
41995                 this.select(0);
41996             }else if(this.selectedIndex < ct-1){
41997                 this.select(this.selectedIndex+1);
41998             }
41999         }
42000     },
42001
42002     // private
42003     selectPrev : function(){
42004         var ct = this.store.getCount();
42005         if(ct > 0){
42006             if(this.selectedIndex == -1){
42007                 this.select(0);
42008             }else if(this.selectedIndex != 0){
42009                 this.select(this.selectedIndex-1);
42010             }
42011         }
42012     },
42013
42014     // private
42015     onKeyUp : function(e){
42016         if(this.editable !== false && !e.isSpecialKey()){
42017             this.lastKey = e.getKey();
42018             this.dqTask.delay(this.queryDelay);
42019         }
42020     },
42021
42022     // private
42023     validateBlur : function(){
42024         return !this.list || !this.list.isVisible();   
42025     },
42026
42027     // private
42028     initQuery : function(){
42029         this.doQuery(this.getRawValue());
42030     },
42031
42032     // private
42033     doForce : function(){
42034         if(this.el.dom.value.length > 0){
42035             this.el.dom.value =
42036                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42037              
42038         }
42039     },
42040
42041     /**
42042      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42043      * query allowing the query action to be canceled if needed.
42044      * @param {String} query The SQL query to execute
42045      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42046      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42047      * saved in the current store (defaults to false)
42048      */
42049     doQuery : function(q, forceAll){
42050         if(q === undefined || q === null){
42051             q = '';
42052         }
42053         var qe = {
42054             query: q,
42055             forceAll: forceAll,
42056             combo: this,
42057             cancel:false
42058         };
42059         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42060             return false;
42061         }
42062         q = qe.query;
42063         forceAll = qe.forceAll;
42064         if(forceAll === true || (q.length >= this.minChars)){
42065             if(this.lastQuery != q || this.alwaysQuery){
42066                 this.lastQuery = q;
42067                 if(this.mode == 'local'){
42068                     this.selectedIndex = -1;
42069                     if(forceAll){
42070                         this.store.clearFilter();
42071                     }else{
42072                         this.store.filter(this.displayField, q);
42073                     }
42074                     this.onLoad();
42075                 }else{
42076                     this.store.baseParams[this.queryParam] = q;
42077                     this.store.load({
42078                         params: this.getParams(q)
42079                     });
42080                     this.expand();
42081                 }
42082             }else{
42083                 this.selectedIndex = -1;
42084                 this.onLoad();   
42085             }
42086         }
42087     },
42088
42089     // private
42090     getParams : function(q){
42091         var p = {};
42092         //p[this.queryParam] = q;
42093         if(this.pageSize){
42094             p.start = 0;
42095             p.limit = this.pageSize;
42096         }
42097         return p;
42098     },
42099
42100     /**
42101      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42102      */
42103     collapse : function(){
42104         if(!this.isExpanded()){
42105             return;
42106         }
42107         this.list.hide();
42108         Roo.get(document).un('mousedown', this.collapseIf, this);
42109         Roo.get(document).un('mousewheel', this.collapseIf, this);
42110         if (!this.editable) {
42111             Roo.get(document).un('keydown', this.listKeyPress, this);
42112         }
42113         this.fireEvent('collapse', this);
42114     },
42115
42116     // private
42117     collapseIf : function(e){
42118         if(!e.within(this.wrap) && !e.within(this.list)){
42119             this.collapse();
42120         }
42121     },
42122
42123     /**
42124      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42125      */
42126     expand : function(){
42127         if(this.isExpanded() || !this.hasFocus){
42128             return;
42129         }
42130         this.list.alignTo(this.el, this.listAlign);
42131         this.list.show();
42132         Roo.get(document).on('mousedown', this.collapseIf, this);
42133         Roo.get(document).on('mousewheel', this.collapseIf, this);
42134         if (!this.editable) {
42135             Roo.get(document).on('keydown', this.listKeyPress, this);
42136         }
42137         
42138         this.fireEvent('expand', this);
42139     },
42140
42141     // private
42142     // Implements the default empty TriggerField.onTriggerClick function
42143     onTriggerClick : function(){
42144         if(this.disabled){
42145             return;
42146         }
42147         if(this.isExpanded()){
42148             this.collapse();
42149             if (!this.blockFocus) {
42150                 this.el.focus();
42151             }
42152             
42153         }else {
42154             this.hasFocus = true;
42155             if(this.triggerAction == 'all') {
42156                 this.doQuery(this.allQuery, true);
42157             } else {
42158                 this.doQuery(this.getRawValue());
42159             }
42160             if (!this.blockFocus) {
42161                 this.el.focus();
42162             }
42163         }
42164     },
42165     listKeyPress : function(e)
42166     {
42167         //Roo.log('listkeypress');
42168         // scroll to first matching element based on key pres..
42169         if (e.isSpecialKey()) {
42170             return false;
42171         }
42172         var k = String.fromCharCode(e.getKey()).toUpperCase();
42173         //Roo.log(k);
42174         var match  = false;
42175         var csel = this.view.getSelectedNodes();
42176         var cselitem = false;
42177         if (csel.length) {
42178             var ix = this.view.indexOf(csel[0]);
42179             cselitem  = this.store.getAt(ix);
42180             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42181                 cselitem = false;
42182             }
42183             
42184         }
42185         
42186         this.store.each(function(v) { 
42187             if (cselitem) {
42188                 // start at existing selection.
42189                 if (cselitem.id == v.id) {
42190                     cselitem = false;
42191                 }
42192                 return;
42193             }
42194                 
42195             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42196                 match = this.store.indexOf(v);
42197                 return false;
42198             }
42199         }, this);
42200         
42201         if (match === false) {
42202             return true; // no more action?
42203         }
42204         // scroll to?
42205         this.view.select(match);
42206         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42207         sn.scrollIntoView(sn.dom.parentNode, false);
42208     } 
42209
42210     /** 
42211     * @cfg {Boolean} grow 
42212     * @hide 
42213     */
42214     /** 
42215     * @cfg {Number} growMin 
42216     * @hide 
42217     */
42218     /** 
42219     * @cfg {Number} growMax 
42220     * @hide 
42221     */
42222     /**
42223      * @hide
42224      * @method autoSize
42225      */
42226 });/*
42227  * Copyright(c) 2010-2012, Roo J Solutions Limited
42228  *
42229  * Licence LGPL
42230  *
42231  */
42232
42233 /**
42234  * @class Roo.form.ComboBoxArray
42235  * @extends Roo.form.TextField
42236  * A facebook style adder... for lists of email / people / countries  etc...
42237  * pick multiple items from a combo box, and shows each one.
42238  *
42239  *  Fred [x]  Brian [x]  [Pick another |v]
42240  *
42241  *
42242  *  For this to work: it needs various extra information
42243  *    - normal combo problay has
42244  *      name, hiddenName
42245  *    + displayField, valueField
42246  *
42247  *    For our purpose...
42248  *
42249  *
42250  *   If we change from 'extends' to wrapping...
42251  *   
42252  *  
42253  *
42254  
42255  
42256  * @constructor
42257  * Create a new ComboBoxArray.
42258  * @param {Object} config Configuration options
42259  */
42260  
42261
42262 Roo.form.ComboBoxArray = function(config)
42263 {
42264     this.addEvents({
42265         /**
42266          * @event beforeremove
42267          * Fires before remove the value from the list
42268              * @param {Roo.form.ComboBoxArray} _self This combo box array
42269              * @param {Roo.form.ComboBoxArray.Item} item removed item
42270              */
42271         'beforeremove' : true,
42272         /**
42273          * @event remove
42274          * Fires when remove the value from the list
42275              * @param {Roo.form.ComboBoxArray} _self This combo box array
42276              * @param {Roo.form.ComboBoxArray.Item} item removed item
42277              */
42278         'remove' : true
42279         
42280         
42281     });
42282     
42283     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42284     
42285     this.items = new Roo.util.MixedCollection(false);
42286     
42287     // construct the child combo...
42288     
42289     
42290     
42291     
42292    
42293     
42294 }
42295
42296  
42297 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42298
42299     /**
42300      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42301      */
42302     
42303     lastData : false,
42304     
42305     // behavies liek a hiddne field
42306     inputType:      'hidden',
42307     /**
42308      * @cfg {Number} width The width of the box that displays the selected element
42309      */ 
42310     width:          300,
42311
42312     
42313     
42314     /**
42315      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42316      */
42317     name : false,
42318     /**
42319      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42320      */
42321     hiddenName : false,
42322     
42323     
42324     // private the array of items that are displayed..
42325     items  : false,
42326     // private - the hidden field el.
42327     hiddenEl : false,
42328     // private - the filed el..
42329     el : false,
42330     
42331     //validateValue : function() { return true; }, // all values are ok!
42332     //onAddClick: function() { },
42333     
42334     onRender : function(ct, position) 
42335     {
42336         
42337         // create the standard hidden element
42338         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42339         
42340         
42341         // give fake names to child combo;
42342         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42343         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42344         
42345         this.combo = Roo.factory(this.combo, Roo.form);
42346         this.combo.onRender(ct, position);
42347         if (typeof(this.combo.width) != 'undefined') {
42348             this.combo.onResize(this.combo.width,0);
42349         }
42350         
42351         this.combo.initEvents();
42352         
42353         // assigned so form know we need to do this..
42354         this.store          = this.combo.store;
42355         this.valueField     = this.combo.valueField;
42356         this.displayField   = this.combo.displayField ;
42357         
42358         
42359         this.combo.wrap.addClass('x-cbarray-grp');
42360         
42361         var cbwrap = this.combo.wrap.createChild(
42362             {tag: 'div', cls: 'x-cbarray-cb'},
42363             this.combo.el.dom
42364         );
42365         
42366              
42367         this.hiddenEl = this.combo.wrap.createChild({
42368             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42369         });
42370         this.el = this.combo.wrap.createChild({
42371             tag: 'input',  type:'hidden' , name: this.name, value : ''
42372         });
42373          //   this.el.dom.removeAttribute("name");
42374         
42375         
42376         this.outerWrap = this.combo.wrap;
42377         this.wrap = cbwrap;
42378         
42379         this.outerWrap.setWidth(this.width);
42380         this.outerWrap.dom.removeChild(this.el.dom);
42381         
42382         this.wrap.dom.appendChild(this.el.dom);
42383         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42384         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42385         
42386         this.combo.trigger.setStyle('position','relative');
42387         this.combo.trigger.setStyle('left', '0px');
42388         this.combo.trigger.setStyle('top', '2px');
42389         
42390         this.combo.el.setStyle('vertical-align', 'text-bottom');
42391         
42392         //this.trigger.setStyle('vertical-align', 'top');
42393         
42394         // this should use the code from combo really... on('add' ....)
42395         if (this.adder) {
42396             
42397         
42398             this.adder = this.outerWrap.createChild(
42399                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42400             var _t = this;
42401             this.adder.on('click', function(e) {
42402                 _t.fireEvent('adderclick', this, e);
42403             }, _t);
42404         }
42405         //var _t = this;
42406         //this.adder.on('click', this.onAddClick, _t);
42407         
42408         
42409         this.combo.on('select', function(cb, rec, ix) {
42410             this.addItem(rec.data);
42411             
42412             cb.setValue('');
42413             cb.el.dom.value = '';
42414             //cb.lastData = rec.data;
42415             // add to list
42416             
42417         }, this);
42418         
42419         
42420     },
42421     
42422     
42423     getName: function()
42424     {
42425         // returns hidden if it's set..
42426         if (!this.rendered) {return ''};
42427         return  this.hiddenName ? this.hiddenName : this.name;
42428         
42429     },
42430     
42431     
42432     onResize: function(w, h){
42433         
42434         return;
42435         // not sure if this is needed..
42436         //this.combo.onResize(w,h);
42437         
42438         if(typeof w != 'number'){
42439             // we do not handle it!?!?
42440             return;
42441         }
42442         var tw = this.combo.trigger.getWidth();
42443         tw += this.addicon ? this.addicon.getWidth() : 0;
42444         tw += this.editicon ? this.editicon.getWidth() : 0;
42445         var x = w - tw;
42446         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42447             
42448         this.combo.trigger.setStyle('left', '0px');
42449         
42450         if(this.list && this.listWidth === undefined){
42451             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42452             this.list.setWidth(lw);
42453             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42454         }
42455         
42456     
42457         
42458     },
42459     
42460     addItem: function(rec)
42461     {
42462         var valueField = this.combo.valueField;
42463         var displayField = this.combo.displayField;
42464         
42465         if (this.items.indexOfKey(rec[valueField]) > -1) {
42466             //console.log("GOT " + rec.data.id);
42467             return;
42468         }
42469         
42470         var x = new Roo.form.ComboBoxArray.Item({
42471             //id : rec[this.idField],
42472             data : rec,
42473             displayField : displayField ,
42474             tipField : displayField ,
42475             cb : this
42476         });
42477         // use the 
42478         this.items.add(rec[valueField],x);
42479         // add it before the element..
42480         this.updateHiddenEl();
42481         x.render(this.outerWrap, this.wrap.dom);
42482         // add the image handler..
42483     },
42484     
42485     updateHiddenEl : function()
42486     {
42487         this.validate();
42488         if (!this.hiddenEl) {
42489             return;
42490         }
42491         var ar = [];
42492         var idField = this.combo.valueField;
42493         
42494         this.items.each(function(f) {
42495             ar.push(f.data[idField]);
42496         });
42497         this.hiddenEl.dom.value = ar.join(',');
42498         this.validate();
42499     },
42500     
42501     reset : function()
42502     {
42503         this.items.clear();
42504         
42505         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42506            el.remove();
42507         });
42508         
42509         this.el.dom.value = '';
42510         if (this.hiddenEl) {
42511             this.hiddenEl.dom.value = '';
42512         }
42513         
42514     },
42515     getValue: function()
42516     {
42517         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42518     },
42519     setValue: function(v) // not a valid action - must use addItems..
42520     {
42521         
42522         this.reset();
42523          
42524         if (this.store.isLocal && (typeof(v) == 'string')) {
42525             // then we can use the store to find the values..
42526             // comma seperated at present.. this needs to allow JSON based encoding..
42527             this.hiddenEl.value  = v;
42528             var v_ar = [];
42529             Roo.each(v.split(','), function(k) {
42530                 Roo.log("CHECK " + this.valueField + ',' + k);
42531                 var li = this.store.query(this.valueField, k);
42532                 if (!li.length) {
42533                     return;
42534                 }
42535                 var add = {};
42536                 add[this.valueField] = k;
42537                 add[this.displayField] = li.item(0).data[this.displayField];
42538                 
42539                 this.addItem(add);
42540             }, this) 
42541              
42542         }
42543         if (typeof(v) == 'object' ) {
42544             // then let's assume it's an array of objects..
42545             Roo.each(v, function(l) {
42546                 this.addItem(l);
42547             }, this);
42548              
42549         }
42550         
42551         
42552     },
42553     setFromData: function(v)
42554     {
42555         // this recieves an object, if setValues is called.
42556         this.reset();
42557         this.el.dom.value = v[this.displayField];
42558         this.hiddenEl.dom.value = v[this.valueField];
42559         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42560             return;
42561         }
42562         var kv = v[this.valueField];
42563         var dv = v[this.displayField];
42564         kv = typeof(kv) != 'string' ? '' : kv;
42565         dv = typeof(dv) != 'string' ? '' : dv;
42566         
42567         
42568         var keys = kv.split(',');
42569         var display = dv.split(',');
42570         for (var i = 0 ; i < keys.length; i++) {
42571             
42572             add = {};
42573             add[this.valueField] = keys[i];
42574             add[this.displayField] = display[i];
42575             this.addItem(add);
42576         }
42577       
42578         
42579     },
42580     
42581     /**
42582      * Validates the combox array value
42583      * @return {Boolean} True if the value is valid, else false
42584      */
42585     validate : function(){
42586         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42587             this.clearInvalid();
42588             return true;
42589         }
42590         return false;
42591     },
42592     
42593     validateValue : function(value){
42594         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42595         
42596     },
42597     
42598     /*@
42599      * overide
42600      * 
42601      */
42602     isDirty : function() {
42603         if(this.disabled) {
42604             return false;
42605         }
42606         
42607         try {
42608             var d = Roo.decode(String(this.originalValue));
42609         } catch (e) {
42610             return String(this.getValue()) !== String(this.originalValue);
42611         }
42612         
42613         var originalValue = [];
42614         
42615         for (var i = 0; i < d.length; i++){
42616             originalValue.push(d[i][this.valueField]);
42617         }
42618         
42619         return String(this.getValue()) !== String(originalValue.join(','));
42620         
42621     }
42622     
42623 });
42624
42625
42626
42627 /**
42628  * @class Roo.form.ComboBoxArray.Item
42629  * @extends Roo.BoxComponent
42630  * A selected item in the list
42631  *  Fred [x]  Brian [x]  [Pick another |v]
42632  * 
42633  * @constructor
42634  * Create a new item.
42635  * @param {Object} config Configuration options
42636  */
42637  
42638 Roo.form.ComboBoxArray.Item = function(config) {
42639     config.id = Roo.id();
42640     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42641 }
42642
42643 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42644     data : {},
42645     cb: false,
42646     displayField : false,
42647     tipField : false,
42648     
42649     
42650     defaultAutoCreate : {
42651         tag: 'div',
42652         cls: 'x-cbarray-item',
42653         cn : [ 
42654             { tag: 'div' },
42655             {
42656                 tag: 'img',
42657                 width:16,
42658                 height : 16,
42659                 src : Roo.BLANK_IMAGE_URL ,
42660                 align: 'center'
42661             }
42662         ]
42663         
42664     },
42665     
42666  
42667     onRender : function(ct, position)
42668     {
42669         Roo.form.Field.superclass.onRender.call(this, ct, position);
42670         
42671         if(!this.el){
42672             var cfg = this.getAutoCreate();
42673             this.el = ct.createChild(cfg, position);
42674         }
42675         
42676         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42677         
42678         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42679             this.cb.renderer(this.data) :
42680             String.format('{0}',this.data[this.displayField]);
42681         
42682             
42683         this.el.child('div').dom.setAttribute('qtip',
42684                         String.format('{0}',this.data[this.tipField])
42685         );
42686         
42687         this.el.child('img').on('click', this.remove, this);
42688         
42689     },
42690    
42691     remove : function()
42692     {
42693         if(this.cb.disabled){
42694             return;
42695         }
42696         
42697         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42698             this.cb.items.remove(this);
42699             this.el.child('img').un('click', this.remove, this);
42700             this.el.remove();
42701             this.cb.updateHiddenEl();
42702
42703             this.cb.fireEvent('remove', this.cb, this);
42704         }
42705         
42706     }
42707 });/*
42708  * RooJS Library 1.1.1
42709  * Copyright(c) 2008-2011  Alan Knowles
42710  *
42711  * License - LGPL
42712  */
42713  
42714
42715 /**
42716  * @class Roo.form.ComboNested
42717  * @extends Roo.form.ComboBox
42718  * A combobox for that allows selection of nested items in a list,
42719  * eg.
42720  *
42721  *  Book
42722  *    -> red
42723  *    -> green
42724  *  Table
42725  *    -> square
42726  *      ->red
42727  *      ->green
42728  *    -> rectangle
42729  *      ->green
42730  *      
42731  * 
42732  * @constructor
42733  * Create a new ComboNested
42734  * @param {Object} config Configuration options
42735  */
42736 Roo.form.ComboNested = function(config){
42737     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42738     // should verify some data...
42739     // like
42740     // hiddenName = required..
42741     // displayField = required
42742     // valudField == required
42743     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42744     var _t = this;
42745     Roo.each(req, function(e) {
42746         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42747             throw "Roo.form.ComboNested : missing value for: " + e;
42748         }
42749     });
42750      
42751     
42752 };
42753
42754 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42755    
42756     /*
42757      * @config {Number} max Number of columns to show
42758      */
42759     
42760     maxColumns : 3,
42761    
42762     list : null, // the outermost div..
42763     innerLists : null, // the
42764     views : null,
42765     stores : null,
42766     // private
42767     loadingChildren : false,
42768     
42769     onRender : function(ct, position)
42770     {
42771         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42772         
42773         if(this.hiddenName){
42774             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42775                     'before', true);
42776             this.hiddenField.value =
42777                 this.hiddenValue !== undefined ? this.hiddenValue :
42778                 this.value !== undefined ? this.value : '';
42779
42780             // prevent input submission
42781             this.el.dom.removeAttribute('name');
42782              
42783              
42784         }
42785         
42786         if(Roo.isGecko){
42787             this.el.dom.setAttribute('autocomplete', 'off');
42788         }
42789
42790         var cls = 'x-combo-list';
42791
42792         this.list = new Roo.Layer({
42793             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
42794         });
42795
42796         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
42797         this.list.setWidth(lw);
42798         this.list.swallowEvent('mousewheel');
42799         this.assetHeight = 0;
42800
42801         if(this.title){
42802             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
42803             this.assetHeight += this.header.getHeight();
42804         }
42805         this.innerLists = [];
42806         this.views = [];
42807         this.stores = [];
42808         for (var i =0 ; i < this.maxColumns; i++) {
42809             this.onRenderList( cls, i);
42810         }
42811         
42812         // always needs footer, as we are going to have an 'OK' button.
42813         this.footer = this.list.createChild({cls:cls+'-ft'});
42814         this.pageTb = new Roo.Toolbar(this.footer);  
42815         var _this = this;
42816         this.pageTb.add(  {
42817             
42818             text: 'Done',
42819             handler: function()
42820             {
42821                 _this.collapse();
42822             }
42823         });
42824         
42825         if ( this.allowBlank && !this.disableClear) {
42826             
42827             this.pageTb.add(new Roo.Toolbar.Fill(), {
42828                 cls: 'x-btn-icon x-btn-clear',
42829                 text: '&#160;',
42830                 handler: function()
42831                 {
42832                     _this.collapse();
42833                     _this.clearValue();
42834                     _this.onSelect(false, -1);
42835                 }
42836             });
42837         }
42838         if (this.footer) {
42839             this.assetHeight += this.footer.getHeight();
42840         }
42841         
42842     },
42843     onRenderList : function (  cls, i)
42844     {
42845         
42846         var lw = Math.floor(
42847                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
42848         );
42849         
42850         this.list.setWidth(lw); // default to '1'
42851
42852         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
42853         //il.on('mouseover', this.onViewOver, this, { list:  i });
42854         //il.on('mousemove', this.onViewMove, this, { list:  i });
42855         il.setWidth(lw);
42856         il.setStyle({ 'overflow-x' : 'hidden'});
42857
42858         if(!this.tpl){
42859             this.tpl = new Roo.Template({
42860                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
42861                 isEmpty: function (value, allValues) {
42862                     //Roo.log(value);
42863                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
42864                     return dl ? 'has-children' : 'no-children'
42865                 }
42866             });
42867         }
42868         
42869         var store  = this.store;
42870         if (i > 0) {
42871             store  = new Roo.data.SimpleStore({
42872                 //fields : this.store.reader.meta.fields,
42873                 reader : this.store.reader,
42874                 data : [ ]
42875             });
42876         }
42877         this.stores[i]  = store;
42878                   
42879         var view = this.views[i] = new Roo.View(
42880             il,
42881             this.tpl,
42882             {
42883                 singleSelect:true,
42884                 store: store,
42885                 selectedClass: this.selectedClass
42886             }
42887         );
42888         view.getEl().setWidth(lw);
42889         view.getEl().setStyle({
42890             position: i < 1 ? 'relative' : 'absolute',
42891             top: 0,
42892             left: (i * lw ) + 'px',
42893             display : i > 0 ? 'none' : 'block'
42894         });
42895         view.on('selectionchange', this.onSelectChange, this, {list : i });
42896         view.on('dblclick', this.onDoubleClick, this, {list : i });
42897         //view.on('click', this.onViewClick, this, { list : i });
42898
42899         store.on('beforeload', this.onBeforeLoad, this);
42900         store.on('load',  this.onLoad, this, { list  : i});
42901         store.on('loadexception', this.onLoadException, this);
42902
42903         // hide the other vies..
42904         
42905         
42906         
42907     },
42908       
42909     restrictHeight : function()
42910     {
42911         var mh = 0;
42912         Roo.each(this.innerLists, function(il,i) {
42913             var el = this.views[i].getEl();
42914             el.dom.style.height = '';
42915             var inner = el.dom;
42916             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
42917             // only adjust heights on other ones..
42918             mh = Math.max(h, mh);
42919             if (i < 1) {
42920                 
42921                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42922                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42923                
42924             }
42925             
42926             
42927         }, this);
42928         
42929         this.list.beginUpdate();
42930         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
42931         this.list.alignTo(this.el, this.listAlign);
42932         this.list.endUpdate();
42933         
42934     },
42935      
42936     
42937     // -- store handlers..
42938     // private
42939     onBeforeLoad : function()
42940     {
42941         if(!this.hasFocus){
42942             return;
42943         }
42944         this.innerLists[0].update(this.loadingText ?
42945                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
42946         this.restrictHeight();
42947         this.selectedIndex = -1;
42948     },
42949     // private
42950     onLoad : function(a,b,c,d)
42951     {
42952         if (!this.loadingChildren) {
42953             // then we are loading the top level. - hide the children
42954             for (var i = 1;i < this.views.length; i++) {
42955                 this.views[i].getEl().setStyle({ display : 'none' });
42956             }
42957             var lw = Math.floor(
42958                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
42959             );
42960         
42961              this.list.setWidth(lw); // default to '1'
42962
42963             
42964         }
42965         if(!this.hasFocus){
42966             return;
42967         }
42968         
42969         if(this.store.getCount() > 0) {
42970             this.expand();
42971             this.restrictHeight();   
42972         } else {
42973             this.onEmptyResults();
42974         }
42975         
42976         if (!this.loadingChildren) {
42977             this.selectActive();
42978         }
42979         /*
42980         this.stores[1].loadData([]);
42981         this.stores[2].loadData([]);
42982         this.views
42983         */    
42984     
42985         //this.el.focus();
42986     },
42987     
42988     
42989     // private
42990     onLoadException : function()
42991     {
42992         this.collapse();
42993         Roo.log(this.store.reader.jsonData);
42994         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
42995             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
42996         }
42997         
42998         
42999     },
43000     // no cleaning of leading spaces on blur here.
43001     cleanLeadingSpace : function(e) { },
43002     
43003
43004     onSelectChange : function (view, sels, opts )
43005     {
43006         var ix = view.getSelectedIndexes();
43007          
43008         if (opts.list > this.maxColumns - 2) {
43009             if (view.store.getCount()<  1) {
43010                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43011
43012             } else  {
43013                 if (ix.length) {
43014                     // used to clear ?? but if we are loading unselected 
43015                     this.setFromData(view.store.getAt(ix[0]).data);
43016                 }
43017                 
43018             }
43019             
43020             return;
43021         }
43022         
43023         if (!ix.length) {
43024             // this get's fired when trigger opens..
43025            // this.setFromData({});
43026             var str = this.stores[opts.list+1];
43027             str.data.clear(); // removeall wihtout the fire events..
43028             return;
43029         }
43030         
43031         var rec = view.store.getAt(ix[0]);
43032          
43033         this.setFromData(rec.data);
43034         this.fireEvent('select', this, rec, ix[0]);
43035         
43036         var lw = Math.floor(
43037              (
43038                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43039              ) / this.maxColumns
43040         );
43041         this.loadingChildren = true;
43042         this.stores[opts.list+1].loadDataFromChildren( rec );
43043         this.loadingChildren = false;
43044         var dl = this.stores[opts.list+1]. getTotalCount();
43045         
43046         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43047         
43048         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43049         for (var i = opts.list+2; i < this.views.length;i++) {
43050             this.views[i].getEl().setStyle({ display : 'none' });
43051         }
43052         
43053         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43054         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43055         
43056         if (this.isLoading) {
43057            // this.selectActive(opts.list);
43058         }
43059          
43060     },
43061     
43062     
43063     
43064     
43065     onDoubleClick : function()
43066     {
43067         this.collapse(); //??
43068     },
43069     
43070      
43071     
43072     
43073     
43074     // private
43075     recordToStack : function(store, prop, value, stack)
43076     {
43077         var cstore = new Roo.data.SimpleStore({
43078             //fields : this.store.reader.meta.fields, // we need array reader.. for
43079             reader : this.store.reader,
43080             data : [ ]
43081         });
43082         var _this = this;
43083         var record  = false;
43084         var srec = false;
43085         if(store.getCount() < 1){
43086             return false;
43087         }
43088         store.each(function(r){
43089             if(r.data[prop] == value){
43090                 record = r;
43091             srec = r;
43092                 return false;
43093             }
43094             if (r.data.cn && r.data.cn.length) {
43095                 cstore.loadDataFromChildren( r);
43096                 var cret = _this.recordToStack(cstore, prop, value, stack);
43097                 if (cret !== false) {
43098                     record = cret;
43099                     srec = r;
43100                     return false;
43101                 }
43102             }
43103              
43104             return true;
43105         });
43106         if (record == false) {
43107             return false
43108         }
43109         stack.unshift(srec);
43110         return record;
43111     },
43112     
43113     /*
43114      * find the stack of stores that match our value.
43115      *
43116      * 
43117      */
43118     
43119     selectActive : function ()
43120     {
43121         // if store is not loaded, then we will need to wait for that to happen first.
43122         var stack = [];
43123         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43124         for (var i = 0; i < stack.length; i++ ) {
43125             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43126         }
43127         
43128     }
43129         
43130          
43131     
43132     
43133     
43134     
43135 });/*
43136  * Based on:
43137  * Ext JS Library 1.1.1
43138  * Copyright(c) 2006-2007, Ext JS, LLC.
43139  *
43140  * Originally Released Under LGPL - original licence link has changed is not relivant.
43141  *
43142  * Fork - LGPL
43143  * <script type="text/javascript">
43144  */
43145 /**
43146  * @class Roo.form.Checkbox
43147  * @extends Roo.form.Field
43148  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43149  * @constructor
43150  * Creates a new Checkbox
43151  * @param {Object} config Configuration options
43152  */
43153 Roo.form.Checkbox = function(config){
43154     Roo.form.Checkbox.superclass.constructor.call(this, config);
43155     this.addEvents({
43156         /**
43157          * @event check
43158          * Fires when the checkbox is checked or unchecked.
43159              * @param {Roo.form.Checkbox} this This checkbox
43160              * @param {Boolean} checked The new checked value
43161              */
43162         check : true
43163     });
43164 };
43165
43166 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43167     /**
43168      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43169      */
43170     focusClass : undefined,
43171     /**
43172      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43173      */
43174     fieldClass: "x-form-field",
43175     /**
43176      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43177      */
43178     checked: false,
43179     /**
43180      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43181      * {tag: "input", type: "checkbox", autocomplete: "off"})
43182      */
43183     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43184     /**
43185      * @cfg {String} boxLabel The text that appears beside the checkbox
43186      */
43187     boxLabel : "",
43188     /**
43189      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43190      */  
43191     inputValue : '1',
43192     /**
43193      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43194      */
43195      valueOff: '0', // value when not checked..
43196
43197     actionMode : 'viewEl', 
43198     //
43199     // private
43200     itemCls : 'x-menu-check-item x-form-item',
43201     groupClass : 'x-menu-group-item',
43202     inputType : 'hidden',
43203     
43204     
43205     inSetChecked: false, // check that we are not calling self...
43206     
43207     inputElement: false, // real input element?
43208     basedOn: false, // ????
43209     
43210     isFormField: true, // not sure where this is needed!!!!
43211
43212     onResize : function(){
43213         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43214         if(!this.boxLabel){
43215             this.el.alignTo(this.wrap, 'c-c');
43216         }
43217     },
43218
43219     initEvents : function(){
43220         Roo.form.Checkbox.superclass.initEvents.call(this);
43221         this.el.on("click", this.onClick,  this);
43222         this.el.on("change", this.onClick,  this);
43223     },
43224
43225
43226     getResizeEl : function(){
43227         return this.wrap;
43228     },
43229
43230     getPositionEl : function(){
43231         return this.wrap;
43232     },
43233
43234     // private
43235     onRender : function(ct, position){
43236         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43237         /*
43238         if(this.inputValue !== undefined){
43239             this.el.dom.value = this.inputValue;
43240         }
43241         */
43242         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43243         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43244         var viewEl = this.wrap.createChild({ 
43245             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43246         this.viewEl = viewEl;   
43247         this.wrap.on('click', this.onClick,  this); 
43248         
43249         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43250         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43251         
43252         
43253         
43254         if(this.boxLabel){
43255             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43256         //    viewEl.on('click', this.onClick,  this); 
43257         }
43258         //if(this.checked){
43259             this.setChecked(this.checked);
43260         //}else{
43261             //this.checked = this.el.dom;
43262         //}
43263
43264     },
43265
43266     // private
43267     initValue : Roo.emptyFn,
43268
43269     /**
43270      * Returns the checked state of the checkbox.
43271      * @return {Boolean} True if checked, else false
43272      */
43273     getValue : function(){
43274         if(this.el){
43275             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43276         }
43277         return this.valueOff;
43278         
43279     },
43280
43281         // private
43282     onClick : function(){ 
43283         if (this.disabled) {
43284             return;
43285         }
43286         this.setChecked(!this.checked);
43287
43288         //if(this.el.dom.checked != this.checked){
43289         //    this.setValue(this.el.dom.checked);
43290        // }
43291     },
43292
43293     /**
43294      * Sets the checked state of the checkbox.
43295      * On is always based on a string comparison between inputValue and the param.
43296      * @param {Boolean/String} value - the value to set 
43297      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43298      */
43299     setValue : function(v,suppressEvent){
43300         
43301         
43302         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43303         //if(this.el && this.el.dom){
43304         //    this.el.dom.checked = this.checked;
43305         //    this.el.dom.defaultChecked = this.checked;
43306         //}
43307         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43308         //this.fireEvent("check", this, this.checked);
43309     },
43310     // private..
43311     setChecked : function(state,suppressEvent)
43312     {
43313         if (this.inSetChecked) {
43314             this.checked = state;
43315             return;
43316         }
43317         
43318     
43319         if(this.wrap){
43320             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43321         }
43322         this.checked = state;
43323         if(suppressEvent !== true){
43324             this.fireEvent('check', this, state);
43325         }
43326         this.inSetChecked = true;
43327         this.el.dom.value = state ? this.inputValue : this.valueOff;
43328         this.inSetChecked = false;
43329         
43330     },
43331     // handle setting of hidden value by some other method!!?!?
43332     setFromHidden: function()
43333     {
43334         if(!this.el){
43335             return;
43336         }
43337         //console.log("SET FROM HIDDEN");
43338         //alert('setFrom hidden');
43339         this.setValue(this.el.dom.value);
43340     },
43341     
43342     onDestroy : function()
43343     {
43344         if(this.viewEl){
43345             Roo.get(this.viewEl).remove();
43346         }
43347          
43348         Roo.form.Checkbox.superclass.onDestroy.call(this);
43349     },
43350     
43351     setBoxLabel : function(str)
43352     {
43353         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43354     }
43355
43356 });/*
43357  * Based on:
43358  * Ext JS Library 1.1.1
43359  * Copyright(c) 2006-2007, Ext JS, LLC.
43360  *
43361  * Originally Released Under LGPL - original licence link has changed is not relivant.
43362  *
43363  * Fork - LGPL
43364  * <script type="text/javascript">
43365  */
43366  
43367 /**
43368  * @class Roo.form.Radio
43369  * @extends Roo.form.Checkbox
43370  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43371  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43372  * @constructor
43373  * Creates a new Radio
43374  * @param {Object} config Configuration options
43375  */
43376 Roo.form.Radio = function(){
43377     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43378 };
43379 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43380     inputType: 'radio',
43381
43382     /**
43383      * If this radio is part of a group, it will return the selected value
43384      * @return {String}
43385      */
43386     getGroupValue : function(){
43387         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43388     },
43389     
43390     
43391     onRender : function(ct, position){
43392         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43393         
43394         if(this.inputValue !== undefined){
43395             this.el.dom.value = this.inputValue;
43396         }
43397          
43398         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43399         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43400         //var viewEl = this.wrap.createChild({ 
43401         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43402         //this.viewEl = viewEl;   
43403         //this.wrap.on('click', this.onClick,  this); 
43404         
43405         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43406         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43407         
43408         
43409         
43410         if(this.boxLabel){
43411             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43412         //    viewEl.on('click', this.onClick,  this); 
43413         }
43414          if(this.checked){
43415             this.el.dom.checked =   'checked' ;
43416         }
43417          
43418     } 
43419     
43420     
43421 });//<script type="text/javascript">
43422
43423 /*
43424  * Based  Ext JS Library 1.1.1
43425  * Copyright(c) 2006-2007, Ext JS, LLC.
43426  * LGPL
43427  *
43428  */
43429  
43430 /**
43431  * @class Roo.HtmlEditorCore
43432  * @extends Roo.Component
43433  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43434  *
43435  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43436  */
43437
43438 Roo.HtmlEditorCore = function(config){
43439     
43440     
43441     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43442     
43443     
43444     this.addEvents({
43445         /**
43446          * @event initialize
43447          * Fires when the editor is fully initialized (including the iframe)
43448          * @param {Roo.HtmlEditorCore} this
43449          */
43450         initialize: true,
43451         /**
43452          * @event activate
43453          * Fires when the editor is first receives the focus. Any insertion must wait
43454          * until after this event.
43455          * @param {Roo.HtmlEditorCore} this
43456          */
43457         activate: true,
43458          /**
43459          * @event beforesync
43460          * Fires before the textarea is updated with content from the editor iframe. Return false
43461          * to cancel the sync.
43462          * @param {Roo.HtmlEditorCore} this
43463          * @param {String} html
43464          */
43465         beforesync: true,
43466          /**
43467          * @event beforepush
43468          * Fires before the iframe editor is updated with content from the textarea. Return false
43469          * to cancel the push.
43470          * @param {Roo.HtmlEditorCore} this
43471          * @param {String} html
43472          */
43473         beforepush: true,
43474          /**
43475          * @event sync
43476          * Fires when the textarea is updated with content from the editor iframe.
43477          * @param {Roo.HtmlEditorCore} this
43478          * @param {String} html
43479          */
43480         sync: true,
43481          /**
43482          * @event push
43483          * Fires when the iframe editor is updated with content from the textarea.
43484          * @param {Roo.HtmlEditorCore} this
43485          * @param {String} html
43486          */
43487         push: true,
43488         
43489         /**
43490          * @event editorevent
43491          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43492          * @param {Roo.HtmlEditorCore} this
43493          */
43494         editorevent: true
43495         
43496     });
43497     
43498     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43499     
43500     // defaults : white / black...
43501     this.applyBlacklists();
43502     
43503     
43504     
43505 };
43506
43507
43508 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43509
43510
43511      /**
43512      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43513      */
43514     
43515     owner : false,
43516     
43517      /**
43518      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43519      *                        Roo.resizable.
43520      */
43521     resizable : false,
43522      /**
43523      * @cfg {Number} height (in pixels)
43524      */   
43525     height: 300,
43526    /**
43527      * @cfg {Number} width (in pixels)
43528      */   
43529     width: 500,
43530     
43531     /**
43532      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43533      * 
43534      */
43535     stylesheets: false,
43536     
43537     // id of frame..
43538     frameId: false,
43539     
43540     // private properties
43541     validationEvent : false,
43542     deferHeight: true,
43543     initialized : false,
43544     activated : false,
43545     sourceEditMode : false,
43546     onFocus : Roo.emptyFn,
43547     iframePad:3,
43548     hideMode:'offsets',
43549     
43550     clearUp: true,
43551     
43552     // blacklist + whitelisted elements..
43553     black: false,
43554     white: false,
43555      
43556     bodyCls : '',
43557
43558     /**
43559      * Protected method that will not generally be called directly. It
43560      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43561      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43562      */
43563     getDocMarkup : function(){
43564         // body styles..
43565         var st = '';
43566         
43567         // inherit styels from page...?? 
43568         if (this.stylesheets === false) {
43569             
43570             Roo.get(document.head).select('style').each(function(node) {
43571                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43572             });
43573             
43574             Roo.get(document.head).select('link').each(function(node) { 
43575                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43576             });
43577             
43578         } else if (!this.stylesheets.length) {
43579                 // simple..
43580                 st = '<style type="text/css">' +
43581                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43582                    '</style>';
43583         } else { 
43584             st = '<style type="text/css">' +
43585                     this.stylesheets +
43586                 '</style>';
43587         }
43588         
43589         st +=  '<style type="text/css">' +
43590             'IMG { cursor: pointer } ' +
43591         '</style>';
43592
43593         var cls = 'roo-htmleditor-body';
43594         
43595         if(this.bodyCls.length){
43596             cls += ' ' + this.bodyCls;
43597         }
43598         
43599         return '<html><head>' + st  +
43600             //<style type="text/css">' +
43601             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43602             //'</style>' +
43603             ' </head><body class="' +  cls + '"></body></html>';
43604     },
43605
43606     // private
43607     onRender : function(ct, position)
43608     {
43609         var _t = this;
43610         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43611         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43612         
43613         
43614         this.el.dom.style.border = '0 none';
43615         this.el.dom.setAttribute('tabIndex', -1);
43616         this.el.addClass('x-hidden hide');
43617         
43618         
43619         
43620         if(Roo.isIE){ // fix IE 1px bogus margin
43621             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43622         }
43623        
43624         
43625         this.frameId = Roo.id();
43626         
43627          
43628         
43629         var iframe = this.owner.wrap.createChild({
43630             tag: 'iframe',
43631             cls: 'form-control', // bootstrap..
43632             id: this.frameId,
43633             name: this.frameId,
43634             frameBorder : 'no',
43635             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43636         }, this.el
43637         );
43638         
43639         
43640         this.iframe = iframe.dom;
43641
43642          this.assignDocWin();
43643         
43644         this.doc.designMode = 'on';
43645        
43646         this.doc.open();
43647         this.doc.write(this.getDocMarkup());
43648         this.doc.close();
43649
43650         
43651         var task = { // must defer to wait for browser to be ready
43652             run : function(){
43653                 //console.log("run task?" + this.doc.readyState);
43654                 this.assignDocWin();
43655                 if(this.doc.body || this.doc.readyState == 'complete'){
43656                     try {
43657                         this.doc.designMode="on";
43658                     } catch (e) {
43659                         return;
43660                     }
43661                     Roo.TaskMgr.stop(task);
43662                     this.initEditor.defer(10, this);
43663                 }
43664             },
43665             interval : 10,
43666             duration: 10000,
43667             scope: this
43668         };
43669         Roo.TaskMgr.start(task);
43670
43671     },
43672
43673     // private
43674     onResize : function(w, h)
43675     {
43676          Roo.log('resize: ' +w + ',' + h );
43677         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43678         if(!this.iframe){
43679             return;
43680         }
43681         if(typeof w == 'number'){
43682             
43683             this.iframe.style.width = w + 'px';
43684         }
43685         if(typeof h == 'number'){
43686             
43687             this.iframe.style.height = h + 'px';
43688             if(this.doc){
43689                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43690             }
43691         }
43692         
43693     },
43694
43695     /**
43696      * Toggles the editor between standard and source edit mode.
43697      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43698      */
43699     toggleSourceEdit : function(sourceEditMode){
43700         
43701         this.sourceEditMode = sourceEditMode === true;
43702         
43703         if(this.sourceEditMode){
43704  
43705             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43706             
43707         }else{
43708             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43709             //this.iframe.className = '';
43710             this.deferFocus();
43711         }
43712         //this.setSize(this.owner.wrap.getSize());
43713         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43714     },
43715
43716     
43717   
43718
43719     /**
43720      * Protected method that will not generally be called directly. If you need/want
43721      * custom HTML cleanup, this is the method you should override.
43722      * @param {String} html The HTML to be cleaned
43723      * return {String} The cleaned HTML
43724      */
43725     cleanHtml : function(html){
43726         html = String(html);
43727         if(html.length > 5){
43728             if(Roo.isSafari){ // strip safari nonsense
43729                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43730             }
43731         }
43732         if(html == '&nbsp;'){
43733             html = '';
43734         }
43735         return html;
43736     },
43737
43738     /**
43739      * HTML Editor -> Textarea
43740      * Protected method that will not generally be called directly. Syncs the contents
43741      * of the editor iframe with the textarea.
43742      */
43743     syncValue : function(){
43744         if(this.initialized){
43745             var bd = (this.doc.body || this.doc.documentElement);
43746             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43747             var html = bd.innerHTML;
43748             if(Roo.isSafari){
43749                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43750                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43751                 if(m && m[1]){
43752                     html = '<div style="'+m[0]+'">' + html + '</div>';
43753                 }
43754             }
43755             html = this.cleanHtml(html);
43756             // fix up the special chars.. normaly like back quotes in word...
43757             // however we do not want to do this with chinese..
43758             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43759                 
43760                 var cc = match.charCodeAt();
43761
43762                 // Get the character value, handling surrogate pairs
43763                 if (match.length == 2) {
43764                     // It's a surrogate pair, calculate the Unicode code point
43765                     var high = match.charCodeAt(0) - 0xD800;
43766                     var low  = match.charCodeAt(1) - 0xDC00;
43767                     cc = (high * 0x400) + low + 0x10000;
43768                 }  else if (
43769                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43770                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43771                     (cc >= 0xf900 && cc < 0xfb00 )
43772                 ) {
43773                         return match;
43774                 }  
43775          
43776                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43777                 return "&#" + cc + ";";
43778                 
43779                 
43780             });
43781             
43782             
43783              
43784             if(this.owner.fireEvent('beforesync', this, html) !== false){
43785                 this.el.dom.value = html;
43786                 this.owner.fireEvent('sync', this, html);
43787             }
43788         }
43789     },
43790
43791     /**
43792      * Protected method that will not generally be called directly. Pushes the value of the textarea
43793      * into the iframe editor.
43794      */
43795     pushValue : function(){
43796         if(this.initialized){
43797             var v = this.el.dom.value.trim();
43798             
43799 //            if(v.length < 1){
43800 //                v = '&#160;';
43801 //            }
43802             
43803             if(this.owner.fireEvent('beforepush', this, v) !== false){
43804                 var d = (this.doc.body || this.doc.documentElement);
43805                 d.innerHTML = v;
43806                 this.cleanUpPaste();
43807                 this.el.dom.value = d.innerHTML;
43808                 this.owner.fireEvent('push', this, v);
43809             }
43810         }
43811     },
43812
43813     // private
43814     deferFocus : function(){
43815         this.focus.defer(10, this);
43816     },
43817
43818     // doc'ed in Field
43819     focus : function(){
43820         if(this.win && !this.sourceEditMode){
43821             this.win.focus();
43822         }else{
43823             this.el.focus();
43824         }
43825     },
43826     
43827     assignDocWin: function()
43828     {
43829         var iframe = this.iframe;
43830         
43831          if(Roo.isIE){
43832             this.doc = iframe.contentWindow.document;
43833             this.win = iframe.contentWindow;
43834         } else {
43835 //            if (!Roo.get(this.frameId)) {
43836 //                return;
43837 //            }
43838 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43839 //            this.win = Roo.get(this.frameId).dom.contentWindow;
43840             
43841             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
43842                 return;
43843             }
43844             
43845             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43846             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
43847         }
43848     },
43849     
43850     // private
43851     initEditor : function(){
43852         //console.log("INIT EDITOR");
43853         this.assignDocWin();
43854         
43855         
43856         
43857         this.doc.designMode="on";
43858         this.doc.open();
43859         this.doc.write(this.getDocMarkup());
43860         this.doc.close();
43861         
43862         var dbody = (this.doc.body || this.doc.documentElement);
43863         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
43864         // this copies styles from the containing element into thsi one..
43865         // not sure why we need all of this..
43866         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
43867         
43868         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
43869         //ss['background-attachment'] = 'fixed'; // w3c
43870         dbody.bgProperties = 'fixed'; // ie
43871         //Roo.DomHelper.applyStyles(dbody, ss);
43872         Roo.EventManager.on(this.doc, {
43873             //'mousedown': this.onEditorEvent,
43874             'mouseup': this.onEditorEvent,
43875             'dblclick': this.onEditorEvent,
43876             'click': this.onEditorEvent,
43877             'keyup': this.onEditorEvent,
43878             buffer:100,
43879             scope: this
43880         });
43881         if(Roo.isGecko){
43882             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
43883         }
43884         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
43885             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
43886         }
43887         this.initialized = true;
43888
43889         this.owner.fireEvent('initialize', this);
43890         this.pushValue();
43891     },
43892
43893     // private
43894     onDestroy : function(){
43895         
43896         
43897         
43898         if(this.rendered){
43899             
43900             //for (var i =0; i < this.toolbars.length;i++) {
43901             //    // fixme - ask toolbars for heights?
43902             //    this.toolbars[i].onDestroy();
43903            // }
43904             
43905             //this.wrap.dom.innerHTML = '';
43906             //this.wrap.remove();
43907         }
43908     },
43909
43910     // private
43911     onFirstFocus : function(){
43912         
43913         this.assignDocWin();
43914         
43915         
43916         this.activated = true;
43917          
43918     
43919         if(Roo.isGecko){ // prevent silly gecko errors
43920             this.win.focus();
43921             var s = this.win.getSelection();
43922             if(!s.focusNode || s.focusNode.nodeType != 3){
43923                 var r = s.getRangeAt(0);
43924                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
43925                 r.collapse(true);
43926                 this.deferFocus();
43927             }
43928             try{
43929                 this.execCmd('useCSS', true);
43930                 this.execCmd('styleWithCSS', false);
43931             }catch(e){}
43932         }
43933         this.owner.fireEvent('activate', this);
43934     },
43935
43936     // private
43937     adjustFont: function(btn){
43938         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
43939         //if(Roo.isSafari){ // safari
43940         //    adjust *= 2;
43941        // }
43942         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
43943         if(Roo.isSafari){ // safari
43944             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
43945             v =  (v < 10) ? 10 : v;
43946             v =  (v > 48) ? 48 : v;
43947             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
43948             
43949         }
43950         
43951         
43952         v = Math.max(1, v+adjust);
43953         
43954         this.execCmd('FontSize', v  );
43955     },
43956
43957     onEditorEvent : function(e)
43958     {
43959         this.owner.fireEvent('editorevent', this, e);
43960       //  this.updateToolbar();
43961         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
43962     },
43963
43964     insertTag : function(tg)
43965     {
43966         // could be a bit smarter... -> wrap the current selected tRoo..
43967         if (tg.toLowerCase() == 'span' ||
43968             tg.toLowerCase() == 'code' ||
43969             tg.toLowerCase() == 'sup' ||
43970             tg.toLowerCase() == 'sub' 
43971             ) {
43972             
43973             range = this.createRange(this.getSelection());
43974             var wrappingNode = this.doc.createElement(tg.toLowerCase());
43975             wrappingNode.appendChild(range.extractContents());
43976             range.insertNode(wrappingNode);
43977
43978             return;
43979             
43980             
43981             
43982         }
43983         this.execCmd("formatblock",   tg);
43984         
43985     },
43986     
43987     insertText : function(txt)
43988     {
43989         
43990         
43991         var range = this.createRange();
43992         range.deleteContents();
43993                //alert(Sender.getAttribute('label'));
43994                
43995         range.insertNode(this.doc.createTextNode(txt));
43996     } ,
43997     
43998      
43999
44000     /**
44001      * Executes a Midas editor command on the editor document and performs necessary focus and
44002      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44003      * @param {String} cmd The Midas command
44004      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44005      */
44006     relayCmd : function(cmd, value){
44007         this.win.focus();
44008         this.execCmd(cmd, value);
44009         this.owner.fireEvent('editorevent', this);
44010         //this.updateToolbar();
44011         this.owner.deferFocus();
44012     },
44013
44014     /**
44015      * Executes a Midas editor command directly on the editor document.
44016      * For visual commands, you should use {@link #relayCmd} instead.
44017      * <b>This should only be called after the editor is initialized.</b>
44018      * @param {String} cmd The Midas command
44019      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44020      */
44021     execCmd : function(cmd, value){
44022         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44023         this.syncValue();
44024     },
44025  
44026  
44027    
44028     /**
44029      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44030      * to insert tRoo.
44031      * @param {String} text | dom node.. 
44032      */
44033     insertAtCursor : function(text)
44034     {
44035         
44036         if(!this.activated){
44037             return;
44038         }
44039         /*
44040         if(Roo.isIE){
44041             this.win.focus();
44042             var r = this.doc.selection.createRange();
44043             if(r){
44044                 r.collapse(true);
44045                 r.pasteHTML(text);
44046                 this.syncValue();
44047                 this.deferFocus();
44048             
44049             }
44050             return;
44051         }
44052         */
44053         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44054             this.win.focus();
44055             
44056             
44057             // from jquery ui (MIT licenced)
44058             var range, node;
44059             var win = this.win;
44060             
44061             if (win.getSelection && win.getSelection().getRangeAt) {
44062                 range = win.getSelection().getRangeAt(0);
44063                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44064                 range.insertNode(node);
44065             } else if (win.document.selection && win.document.selection.createRange) {
44066                 // no firefox support
44067                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44068                 win.document.selection.createRange().pasteHTML(txt);
44069             } else {
44070                 // no firefox support
44071                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44072                 this.execCmd('InsertHTML', txt);
44073             } 
44074             
44075             this.syncValue();
44076             
44077             this.deferFocus();
44078         }
44079     },
44080  // private
44081     mozKeyPress : function(e){
44082         if(e.ctrlKey){
44083             var c = e.getCharCode(), cmd;
44084           
44085             if(c > 0){
44086                 c = String.fromCharCode(c).toLowerCase();
44087                 switch(c){
44088                     case 'b':
44089                         cmd = 'bold';
44090                         break;
44091                     case 'i':
44092                         cmd = 'italic';
44093                         break;
44094                     
44095                     case 'u':
44096                         cmd = 'underline';
44097                         break;
44098                     
44099                     case 'v':
44100                         this.cleanUpPaste.defer(100, this);
44101                         return;
44102                         
44103                 }
44104                 if(cmd){
44105                     this.win.focus();
44106                     this.execCmd(cmd);
44107                     this.deferFocus();
44108                     e.preventDefault();
44109                 }
44110                 
44111             }
44112         }
44113     },
44114
44115     // private
44116     fixKeys : function(){ // load time branching for fastest keydown performance
44117         if(Roo.isIE){
44118             return function(e){
44119                 var k = e.getKey(), r;
44120                 if(k == e.TAB){
44121                     e.stopEvent();
44122                     r = this.doc.selection.createRange();
44123                     if(r){
44124                         r.collapse(true);
44125                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44126                         this.deferFocus();
44127                     }
44128                     return;
44129                 }
44130                 
44131                 if(k == e.ENTER){
44132                     r = this.doc.selection.createRange();
44133                     if(r){
44134                         var target = r.parentElement();
44135                         if(!target || target.tagName.toLowerCase() != 'li'){
44136                             e.stopEvent();
44137                             r.pasteHTML('<br />');
44138                             r.collapse(false);
44139                             r.select();
44140                         }
44141                     }
44142                 }
44143                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44144                     this.cleanUpPaste.defer(100, this);
44145                     return;
44146                 }
44147                 
44148                 
44149             };
44150         }else if(Roo.isOpera){
44151             return function(e){
44152                 var k = e.getKey();
44153                 if(k == e.TAB){
44154                     e.stopEvent();
44155                     this.win.focus();
44156                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44157                     this.deferFocus();
44158                 }
44159                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44160                     this.cleanUpPaste.defer(100, this);
44161                     return;
44162                 }
44163                 
44164             };
44165         }else if(Roo.isSafari){
44166             return function(e){
44167                 var k = e.getKey();
44168                 
44169                 if(k == e.TAB){
44170                     e.stopEvent();
44171                     this.execCmd('InsertText','\t');
44172                     this.deferFocus();
44173                     return;
44174                 }
44175                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44176                     this.cleanUpPaste.defer(100, this);
44177                     return;
44178                 }
44179                 
44180              };
44181         }
44182     }(),
44183     
44184     getAllAncestors: function()
44185     {
44186         var p = this.getSelectedNode();
44187         var a = [];
44188         if (!p) {
44189             a.push(p); // push blank onto stack..
44190             p = this.getParentElement();
44191         }
44192         
44193         
44194         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44195             a.push(p);
44196             p = p.parentNode;
44197         }
44198         a.push(this.doc.body);
44199         return a;
44200     },
44201     lastSel : false,
44202     lastSelNode : false,
44203     
44204     
44205     getSelection : function() 
44206     {
44207         this.assignDocWin();
44208         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44209     },
44210     
44211     getSelectedNode: function() 
44212     {
44213         // this may only work on Gecko!!!
44214         
44215         // should we cache this!!!!
44216         
44217         
44218         
44219          
44220         var range = this.createRange(this.getSelection()).cloneRange();
44221         
44222         if (Roo.isIE) {
44223             var parent = range.parentElement();
44224             while (true) {
44225                 var testRange = range.duplicate();
44226                 testRange.moveToElementText(parent);
44227                 if (testRange.inRange(range)) {
44228                     break;
44229                 }
44230                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44231                     break;
44232                 }
44233                 parent = parent.parentElement;
44234             }
44235             return parent;
44236         }
44237         
44238         // is ancestor a text element.
44239         var ac =  range.commonAncestorContainer;
44240         if (ac.nodeType == 3) {
44241             ac = ac.parentNode;
44242         }
44243         
44244         var ar = ac.childNodes;
44245          
44246         var nodes = [];
44247         var other_nodes = [];
44248         var has_other_nodes = false;
44249         for (var i=0;i<ar.length;i++) {
44250             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44251                 continue;
44252             }
44253             // fullly contained node.
44254             
44255             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44256                 nodes.push(ar[i]);
44257                 continue;
44258             }
44259             
44260             // probably selected..
44261             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44262                 other_nodes.push(ar[i]);
44263                 continue;
44264             }
44265             // outer..
44266             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44267                 continue;
44268             }
44269             
44270             
44271             has_other_nodes = true;
44272         }
44273         if (!nodes.length && other_nodes.length) {
44274             nodes= other_nodes;
44275         }
44276         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44277             return false;
44278         }
44279         
44280         return nodes[0];
44281     },
44282     createRange: function(sel)
44283     {
44284         // this has strange effects when using with 
44285         // top toolbar - not sure if it's a great idea.
44286         //this.editor.contentWindow.focus();
44287         if (typeof sel != "undefined") {
44288             try {
44289                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44290             } catch(e) {
44291                 return this.doc.createRange();
44292             }
44293         } else {
44294             return this.doc.createRange();
44295         }
44296     },
44297     getParentElement: function()
44298     {
44299         
44300         this.assignDocWin();
44301         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44302         
44303         var range = this.createRange(sel);
44304          
44305         try {
44306             var p = range.commonAncestorContainer;
44307             while (p.nodeType == 3) { // text node
44308                 p = p.parentNode;
44309             }
44310             return p;
44311         } catch (e) {
44312             return null;
44313         }
44314     
44315     },
44316     /***
44317      *
44318      * Range intersection.. the hard stuff...
44319      *  '-1' = before
44320      *  '0' = hits..
44321      *  '1' = after.
44322      *         [ -- selected range --- ]
44323      *   [fail]                        [fail]
44324      *
44325      *    basically..
44326      *      if end is before start or  hits it. fail.
44327      *      if start is after end or hits it fail.
44328      *
44329      *   if either hits (but other is outside. - then it's not 
44330      *   
44331      *    
44332      **/
44333     
44334     
44335     // @see http://www.thismuchiknow.co.uk/?p=64.
44336     rangeIntersectsNode : function(range, node)
44337     {
44338         var nodeRange = node.ownerDocument.createRange();
44339         try {
44340             nodeRange.selectNode(node);
44341         } catch (e) {
44342             nodeRange.selectNodeContents(node);
44343         }
44344     
44345         var rangeStartRange = range.cloneRange();
44346         rangeStartRange.collapse(true);
44347     
44348         var rangeEndRange = range.cloneRange();
44349         rangeEndRange.collapse(false);
44350     
44351         var nodeStartRange = nodeRange.cloneRange();
44352         nodeStartRange.collapse(true);
44353     
44354         var nodeEndRange = nodeRange.cloneRange();
44355         nodeEndRange.collapse(false);
44356     
44357         return rangeStartRange.compareBoundaryPoints(
44358                  Range.START_TO_START, nodeEndRange) == -1 &&
44359                rangeEndRange.compareBoundaryPoints(
44360                  Range.START_TO_START, nodeStartRange) == 1;
44361         
44362          
44363     },
44364     rangeCompareNode : function(range, node)
44365     {
44366         var nodeRange = node.ownerDocument.createRange();
44367         try {
44368             nodeRange.selectNode(node);
44369         } catch (e) {
44370             nodeRange.selectNodeContents(node);
44371         }
44372         
44373         
44374         range.collapse(true);
44375     
44376         nodeRange.collapse(true);
44377      
44378         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44379         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44380          
44381         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44382         
44383         var nodeIsBefore   =  ss == 1;
44384         var nodeIsAfter    = ee == -1;
44385         
44386         if (nodeIsBefore && nodeIsAfter) {
44387             return 0; // outer
44388         }
44389         if (!nodeIsBefore && nodeIsAfter) {
44390             return 1; //right trailed.
44391         }
44392         
44393         if (nodeIsBefore && !nodeIsAfter) {
44394             return 2;  // left trailed.
44395         }
44396         // fully contined.
44397         return 3;
44398     },
44399
44400     // private? - in a new class?
44401     cleanUpPaste :  function()
44402     {
44403         // cleans up the whole document..
44404         Roo.log('cleanuppaste');
44405         
44406         this.cleanUpChildren(this.doc.body);
44407         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44408         if (clean != this.doc.body.innerHTML) {
44409             this.doc.body.innerHTML = clean;
44410         }
44411         
44412     },
44413     
44414     cleanWordChars : function(input) {// change the chars to hex code
44415         var he = Roo.HtmlEditorCore;
44416         
44417         var output = input;
44418         Roo.each(he.swapCodes, function(sw) { 
44419             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44420             
44421             output = output.replace(swapper, sw[1]);
44422         });
44423         
44424         return output;
44425     },
44426     
44427     
44428     cleanUpChildren : function (n)
44429     {
44430         if (!n.childNodes.length) {
44431             return;
44432         }
44433         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44434            this.cleanUpChild(n.childNodes[i]);
44435         }
44436     },
44437     
44438     
44439         
44440     
44441     cleanUpChild : function (node)
44442     {
44443         var ed = this;
44444         //console.log(node);
44445         if (node.nodeName == "#text") {
44446             // clean up silly Windows -- stuff?
44447             return; 
44448         }
44449         if (node.nodeName == "#comment") {
44450             node.parentNode.removeChild(node);
44451             // clean up silly Windows -- stuff?
44452             return; 
44453         }
44454         var lcname = node.tagName.toLowerCase();
44455         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44456         // whitelist of tags..
44457         
44458         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44459             // remove node.
44460             node.parentNode.removeChild(node);
44461             return;
44462             
44463         }
44464         
44465         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44466         
44467         // spans with no attributes - just remove them..
44468         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44469             remove_keep_children = true;
44470         }
44471         
44472         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44473         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44474         
44475         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44476         //    remove_keep_children = true;
44477         //}
44478         
44479         if (remove_keep_children) {
44480             this.cleanUpChildren(node);
44481             // inserts everything just before this node...
44482             while (node.childNodes.length) {
44483                 var cn = node.childNodes[0];
44484                 node.removeChild(cn);
44485                 node.parentNode.insertBefore(cn, node);
44486             }
44487             node.parentNode.removeChild(node);
44488             return;
44489         }
44490         
44491         if (!node.attributes || !node.attributes.length) {
44492             
44493           
44494             
44495             
44496             this.cleanUpChildren(node);
44497             return;
44498         }
44499         
44500         function cleanAttr(n,v)
44501         {
44502             
44503             if (v.match(/^\./) || v.match(/^\//)) {
44504                 return;
44505             }
44506             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44507                 return;
44508             }
44509             if (v.match(/^#/)) {
44510                 return;
44511             }
44512 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44513             node.removeAttribute(n);
44514             
44515         }
44516         
44517         var cwhite = this.cwhite;
44518         var cblack = this.cblack;
44519             
44520         function cleanStyle(n,v)
44521         {
44522             if (v.match(/expression/)) { //XSS?? should we even bother..
44523                 node.removeAttribute(n);
44524                 return;
44525             }
44526             
44527             var parts = v.split(/;/);
44528             var clean = [];
44529             
44530             Roo.each(parts, function(p) {
44531                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44532                 if (!p.length) {
44533                     return true;
44534                 }
44535                 var l = p.split(':').shift().replace(/\s+/g,'');
44536                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44537                 
44538                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44539 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44540                     //node.removeAttribute(n);
44541                     return true;
44542                 }
44543                 //Roo.log()
44544                 // only allow 'c whitelisted system attributes'
44545                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44546 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44547                     //node.removeAttribute(n);
44548                     return true;
44549                 }
44550                 
44551                 
44552                  
44553                 
44554                 clean.push(p);
44555                 return true;
44556             });
44557             if (clean.length) { 
44558                 node.setAttribute(n, clean.join(';'));
44559             } else {
44560                 node.removeAttribute(n);
44561             }
44562             
44563         }
44564         
44565         
44566         for (var i = node.attributes.length-1; i > -1 ; i--) {
44567             var a = node.attributes[i];
44568             //console.log(a);
44569             
44570             if (a.name.toLowerCase().substr(0,2)=='on')  {
44571                 node.removeAttribute(a.name);
44572                 continue;
44573             }
44574             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44575                 node.removeAttribute(a.name);
44576                 continue;
44577             }
44578             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44579                 cleanAttr(a.name,a.value); // fixme..
44580                 continue;
44581             }
44582             if (a.name == 'style') {
44583                 cleanStyle(a.name,a.value);
44584                 continue;
44585             }
44586             /// clean up MS crap..
44587             // tecnically this should be a list of valid class'es..
44588             
44589             
44590             if (a.name == 'class') {
44591                 if (a.value.match(/^Mso/)) {
44592                     node.removeAttribute('class');
44593                 }
44594                 
44595                 if (a.value.match(/^body$/)) {
44596                     node.removeAttribute('class');
44597                 }
44598                 continue;
44599             }
44600             
44601             // style cleanup!?
44602             // class cleanup?
44603             
44604         }
44605         
44606         
44607         this.cleanUpChildren(node);
44608         
44609         
44610     },
44611     
44612     /**
44613      * Clean up MS wordisms...
44614      */
44615     cleanWord : function(node)
44616     {
44617         if (!node) {
44618             this.cleanWord(this.doc.body);
44619             return;
44620         }
44621         
44622         if(
44623                 node.nodeName == 'SPAN' &&
44624                 !node.hasAttributes() &&
44625                 node.childNodes.length == 1 &&
44626                 node.firstChild.nodeName == "#text"  
44627         ) {
44628             var textNode = node.firstChild;
44629             node.removeChild(textNode);
44630             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44631                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44632             }
44633             node.parentNode.insertBefore(textNode, node);
44634             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44635                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44636             }
44637             node.parentNode.removeChild(node);
44638         }
44639         
44640         if (node.nodeName == "#text") {
44641             // clean up silly Windows -- stuff?
44642             return; 
44643         }
44644         if (node.nodeName == "#comment") {
44645             node.parentNode.removeChild(node);
44646             // clean up silly Windows -- stuff?
44647             return; 
44648         }
44649         
44650         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44651             node.parentNode.removeChild(node);
44652             return;
44653         }
44654         //Roo.log(node.tagName);
44655         // remove - but keep children..
44656         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44657             //Roo.log('-- removed');
44658             while (node.childNodes.length) {
44659                 var cn = node.childNodes[0];
44660                 node.removeChild(cn);
44661                 node.parentNode.insertBefore(cn, node);
44662                 // move node to parent - and clean it..
44663                 this.cleanWord(cn);
44664             }
44665             node.parentNode.removeChild(node);
44666             /// no need to iterate chidlren = it's got none..
44667             //this.iterateChildren(node, this.cleanWord);
44668             return;
44669         }
44670         // clean styles
44671         if (node.className.length) {
44672             
44673             var cn = node.className.split(/\W+/);
44674             var cna = [];
44675             Roo.each(cn, function(cls) {
44676                 if (cls.match(/Mso[a-zA-Z]+/)) {
44677                     return;
44678                 }
44679                 cna.push(cls);
44680             });
44681             node.className = cna.length ? cna.join(' ') : '';
44682             if (!cna.length) {
44683                 node.removeAttribute("class");
44684             }
44685         }
44686         
44687         if (node.hasAttribute("lang")) {
44688             node.removeAttribute("lang");
44689         }
44690         
44691         if (node.hasAttribute("style")) {
44692             
44693             var styles = node.getAttribute("style").split(";");
44694             var nstyle = [];
44695             Roo.each(styles, function(s) {
44696                 if (!s.match(/:/)) {
44697                     return;
44698                 }
44699                 var kv = s.split(":");
44700                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44701                     return;
44702                 }
44703                 // what ever is left... we allow.
44704                 nstyle.push(s);
44705             });
44706             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44707             if (!nstyle.length) {
44708                 node.removeAttribute('style');
44709             }
44710         }
44711         this.iterateChildren(node, this.cleanWord);
44712         
44713         
44714         
44715     },
44716     /**
44717      * iterateChildren of a Node, calling fn each time, using this as the scole..
44718      * @param {DomNode} node node to iterate children of.
44719      * @param {Function} fn method of this class to call on each item.
44720      */
44721     iterateChildren : function(node, fn)
44722     {
44723         if (!node.childNodes.length) {
44724                 return;
44725         }
44726         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44727            fn.call(this, node.childNodes[i])
44728         }
44729     },
44730     
44731     
44732     /**
44733      * cleanTableWidths.
44734      *
44735      * Quite often pasting from word etc.. results in tables with column and widths.
44736      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44737      *
44738      */
44739     cleanTableWidths : function(node)
44740     {
44741          
44742          
44743         if (!node) {
44744             this.cleanTableWidths(this.doc.body);
44745             return;
44746         }
44747         
44748         // ignore list...
44749         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44750             return; 
44751         }
44752         Roo.log(node.tagName);
44753         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44754             this.iterateChildren(node, this.cleanTableWidths);
44755             return;
44756         }
44757         if (node.hasAttribute('width')) {
44758             node.removeAttribute('width');
44759         }
44760         
44761          
44762         if (node.hasAttribute("style")) {
44763             // pretty basic...
44764             
44765             var styles = node.getAttribute("style").split(";");
44766             var nstyle = [];
44767             Roo.each(styles, function(s) {
44768                 if (!s.match(/:/)) {
44769                     return;
44770                 }
44771                 var kv = s.split(":");
44772                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44773                     return;
44774                 }
44775                 // what ever is left... we allow.
44776                 nstyle.push(s);
44777             });
44778             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44779             if (!nstyle.length) {
44780                 node.removeAttribute('style');
44781             }
44782         }
44783         
44784         this.iterateChildren(node, this.cleanTableWidths);
44785         
44786         
44787     },
44788     
44789     
44790     
44791     
44792     domToHTML : function(currentElement, depth, nopadtext) {
44793         
44794         depth = depth || 0;
44795         nopadtext = nopadtext || false;
44796     
44797         if (!currentElement) {
44798             return this.domToHTML(this.doc.body);
44799         }
44800         
44801         //Roo.log(currentElement);
44802         var j;
44803         var allText = false;
44804         var nodeName = currentElement.nodeName;
44805         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44806         
44807         if  (nodeName == '#text') {
44808             
44809             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44810         }
44811         
44812         
44813         var ret = '';
44814         if (nodeName != 'BODY') {
44815              
44816             var i = 0;
44817             // Prints the node tagName, such as <A>, <IMG>, etc
44818             if (tagName) {
44819                 var attr = [];
44820                 for(i = 0; i < currentElement.attributes.length;i++) {
44821                     // quoting?
44822                     var aname = currentElement.attributes.item(i).name;
44823                     if (!currentElement.attributes.item(i).value.length) {
44824                         continue;
44825                     }
44826                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44827                 }
44828                 
44829                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44830             } 
44831             else {
44832                 
44833                 // eack
44834             }
44835         } else {
44836             tagName = false;
44837         }
44838         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
44839             return ret;
44840         }
44841         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
44842             nopadtext = true;
44843         }
44844         
44845         
44846         // Traverse the tree
44847         i = 0;
44848         var currentElementChild = currentElement.childNodes.item(i);
44849         var allText = true;
44850         var innerHTML  = '';
44851         lastnode = '';
44852         while (currentElementChild) {
44853             // Formatting code (indent the tree so it looks nice on the screen)
44854             var nopad = nopadtext;
44855             if (lastnode == 'SPAN') {
44856                 nopad  = true;
44857             }
44858             // text
44859             if  (currentElementChild.nodeName == '#text') {
44860                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
44861                 toadd = nopadtext ? toadd : toadd.trim();
44862                 if (!nopad && toadd.length > 80) {
44863                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
44864                 }
44865                 innerHTML  += toadd;
44866                 
44867                 i++;
44868                 currentElementChild = currentElement.childNodes.item(i);
44869                 lastNode = '';
44870                 continue;
44871             }
44872             allText = false;
44873             
44874             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
44875                 
44876             // Recursively traverse the tree structure of the child node
44877             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
44878             lastnode = currentElementChild.nodeName;
44879             i++;
44880             currentElementChild=currentElement.childNodes.item(i);
44881         }
44882         
44883         ret += innerHTML;
44884         
44885         if (!allText) {
44886                 // The remaining code is mostly for formatting the tree
44887             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
44888         }
44889         
44890         
44891         if (tagName) {
44892             ret+= "</"+tagName+">";
44893         }
44894         return ret;
44895         
44896     },
44897         
44898     applyBlacklists : function()
44899     {
44900         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
44901         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
44902         
44903         this.white = [];
44904         this.black = [];
44905         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
44906             if (b.indexOf(tag) > -1) {
44907                 return;
44908             }
44909             this.white.push(tag);
44910             
44911         }, this);
44912         
44913         Roo.each(w, function(tag) {
44914             if (b.indexOf(tag) > -1) {
44915                 return;
44916             }
44917             if (this.white.indexOf(tag) > -1) {
44918                 return;
44919             }
44920             this.white.push(tag);
44921             
44922         }, this);
44923         
44924         
44925         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
44926             if (w.indexOf(tag) > -1) {
44927                 return;
44928             }
44929             this.black.push(tag);
44930             
44931         }, this);
44932         
44933         Roo.each(b, function(tag) {
44934             if (w.indexOf(tag) > -1) {
44935                 return;
44936             }
44937             if (this.black.indexOf(tag) > -1) {
44938                 return;
44939             }
44940             this.black.push(tag);
44941             
44942         }, this);
44943         
44944         
44945         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
44946         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
44947         
44948         this.cwhite = [];
44949         this.cblack = [];
44950         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
44951             if (b.indexOf(tag) > -1) {
44952                 return;
44953             }
44954             this.cwhite.push(tag);
44955             
44956         }, this);
44957         
44958         Roo.each(w, function(tag) {
44959             if (b.indexOf(tag) > -1) {
44960                 return;
44961             }
44962             if (this.cwhite.indexOf(tag) > -1) {
44963                 return;
44964             }
44965             this.cwhite.push(tag);
44966             
44967         }, this);
44968         
44969         
44970         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
44971             if (w.indexOf(tag) > -1) {
44972                 return;
44973             }
44974             this.cblack.push(tag);
44975             
44976         }, this);
44977         
44978         Roo.each(b, function(tag) {
44979             if (w.indexOf(tag) > -1) {
44980                 return;
44981             }
44982             if (this.cblack.indexOf(tag) > -1) {
44983                 return;
44984             }
44985             this.cblack.push(tag);
44986             
44987         }, this);
44988     },
44989     
44990     setStylesheets : function(stylesheets)
44991     {
44992         if(typeof(stylesheets) == 'string'){
44993             Roo.get(this.iframe.contentDocument.head).createChild({
44994                 tag : 'link',
44995                 rel : 'stylesheet',
44996                 type : 'text/css',
44997                 href : stylesheets
44998             });
44999             
45000             return;
45001         }
45002         var _this = this;
45003      
45004         Roo.each(stylesheets, function(s) {
45005             if(!s.length){
45006                 return;
45007             }
45008             
45009             Roo.get(_this.iframe.contentDocument.head).createChild({
45010                 tag : 'link',
45011                 rel : 'stylesheet',
45012                 type : 'text/css',
45013                 href : s
45014             });
45015         });
45016
45017         
45018     },
45019     
45020     removeStylesheets : function()
45021     {
45022         var _this = this;
45023         
45024         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45025             s.remove();
45026         });
45027     },
45028     
45029     setStyle : function(style)
45030     {
45031         Roo.get(this.iframe.contentDocument.head).createChild({
45032             tag : 'style',
45033             type : 'text/css',
45034             html : style
45035         });
45036
45037         return;
45038     }
45039     
45040     // hide stuff that is not compatible
45041     /**
45042      * @event blur
45043      * @hide
45044      */
45045     /**
45046      * @event change
45047      * @hide
45048      */
45049     /**
45050      * @event focus
45051      * @hide
45052      */
45053     /**
45054      * @event specialkey
45055      * @hide
45056      */
45057     /**
45058      * @cfg {String} fieldClass @hide
45059      */
45060     /**
45061      * @cfg {String} focusClass @hide
45062      */
45063     /**
45064      * @cfg {String} autoCreate @hide
45065      */
45066     /**
45067      * @cfg {String} inputType @hide
45068      */
45069     /**
45070      * @cfg {String} invalidClass @hide
45071      */
45072     /**
45073      * @cfg {String} invalidText @hide
45074      */
45075     /**
45076      * @cfg {String} msgFx @hide
45077      */
45078     /**
45079      * @cfg {String} validateOnBlur @hide
45080      */
45081 });
45082
45083 Roo.HtmlEditorCore.white = [
45084         'area', 'br', 'img', 'input', 'hr', 'wbr',
45085         
45086        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45087        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45088        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45089        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45090        'table',   'ul',         'xmp', 
45091        
45092        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45093       'thead',   'tr', 
45094      
45095       'dir', 'menu', 'ol', 'ul', 'dl',
45096        
45097       'embed',  'object'
45098 ];
45099
45100
45101 Roo.HtmlEditorCore.black = [
45102     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45103         'applet', // 
45104         'base',   'basefont', 'bgsound', 'blink',  'body', 
45105         'frame',  'frameset', 'head',    'html',   'ilayer', 
45106         'iframe', 'layer',  'link',     'meta',    'object',   
45107         'script', 'style' ,'title',  'xml' // clean later..
45108 ];
45109 Roo.HtmlEditorCore.clean = [
45110     'script', 'style', 'title', 'xml'
45111 ];
45112 Roo.HtmlEditorCore.remove = [
45113     'font'
45114 ];
45115 // attributes..
45116
45117 Roo.HtmlEditorCore.ablack = [
45118     'on'
45119 ];
45120     
45121 Roo.HtmlEditorCore.aclean = [ 
45122     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45123 ];
45124
45125 // protocols..
45126 Roo.HtmlEditorCore.pwhite= [
45127         'http',  'https',  'mailto'
45128 ];
45129
45130 // white listed style attributes.
45131 Roo.HtmlEditorCore.cwhite= [
45132       //  'text-align', /// default is to allow most things..
45133       
45134          
45135 //        'font-size'//??
45136 ];
45137
45138 // black listed style attributes.
45139 Roo.HtmlEditorCore.cblack= [
45140       //  'font-size' -- this can be set by the project 
45141 ];
45142
45143
45144 Roo.HtmlEditorCore.swapCodes   =[ 
45145     [    8211, "--" ], 
45146     [    8212, "--" ], 
45147     [    8216,  "'" ],  
45148     [    8217, "'" ],  
45149     [    8220, '"' ],  
45150     [    8221, '"' ],  
45151     [    8226, "*" ],  
45152     [    8230, "..." ]
45153 ]; 
45154
45155     //<script type="text/javascript">
45156
45157 /*
45158  * Ext JS Library 1.1.1
45159  * Copyright(c) 2006-2007, Ext JS, LLC.
45160  * Licence LGPL
45161  * 
45162  */
45163  
45164  
45165 Roo.form.HtmlEditor = function(config){
45166     
45167     
45168     
45169     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45170     
45171     if (!this.toolbars) {
45172         this.toolbars = [];
45173     }
45174     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45175     
45176     
45177 };
45178
45179 /**
45180  * @class Roo.form.HtmlEditor
45181  * @extends Roo.form.Field
45182  * Provides a lightweight HTML Editor component.
45183  *
45184  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45185  * 
45186  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45187  * supported by this editor.</b><br/><br/>
45188  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45189  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45190  */
45191 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45192     /**
45193      * @cfg {Boolean} clearUp
45194      */
45195     clearUp : true,
45196       /**
45197      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45198      */
45199     toolbars : false,
45200    
45201      /**
45202      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45203      *                        Roo.resizable.
45204      */
45205     resizable : false,
45206      /**
45207      * @cfg {Number} height (in pixels)
45208      */   
45209     height: 300,
45210    /**
45211      * @cfg {Number} width (in pixels)
45212      */   
45213     width: 500,
45214     
45215     /**
45216      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45217      * 
45218      */
45219     stylesheets: false,
45220     
45221     
45222      /**
45223      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45224      * 
45225      */
45226     cblack: false,
45227     /**
45228      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45229      * 
45230      */
45231     cwhite: false,
45232     
45233      /**
45234      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45235      * 
45236      */
45237     black: false,
45238     /**
45239      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45240      * 
45241      */
45242     white: false,
45243     
45244     // id of frame..
45245     frameId: false,
45246     
45247     // private properties
45248     validationEvent : false,
45249     deferHeight: true,
45250     initialized : false,
45251     activated : false,
45252     
45253     onFocus : Roo.emptyFn,
45254     iframePad:3,
45255     hideMode:'offsets',
45256     
45257     actionMode : 'container', // defaults to hiding it...
45258     
45259     defaultAutoCreate : { // modified by initCompnoent..
45260         tag: "textarea",
45261         style:"width:500px;height:300px;",
45262         autocomplete: "new-password"
45263     },
45264
45265     // private
45266     initComponent : function(){
45267         this.addEvents({
45268             /**
45269              * @event initialize
45270              * Fires when the editor is fully initialized (including the iframe)
45271              * @param {HtmlEditor} this
45272              */
45273             initialize: true,
45274             /**
45275              * @event activate
45276              * Fires when the editor is first receives the focus. Any insertion must wait
45277              * until after this event.
45278              * @param {HtmlEditor} this
45279              */
45280             activate: true,
45281              /**
45282              * @event beforesync
45283              * Fires before the textarea is updated with content from the editor iframe. Return false
45284              * to cancel the sync.
45285              * @param {HtmlEditor} this
45286              * @param {String} html
45287              */
45288             beforesync: true,
45289              /**
45290              * @event beforepush
45291              * Fires before the iframe editor is updated with content from the textarea. Return false
45292              * to cancel the push.
45293              * @param {HtmlEditor} this
45294              * @param {String} html
45295              */
45296             beforepush: true,
45297              /**
45298              * @event sync
45299              * Fires when the textarea is updated with content from the editor iframe.
45300              * @param {HtmlEditor} this
45301              * @param {String} html
45302              */
45303             sync: true,
45304              /**
45305              * @event push
45306              * Fires when the iframe editor is updated with content from the textarea.
45307              * @param {HtmlEditor} this
45308              * @param {String} html
45309              */
45310             push: true,
45311              /**
45312              * @event editmodechange
45313              * Fires when the editor switches edit modes
45314              * @param {HtmlEditor} this
45315              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45316              */
45317             editmodechange: true,
45318             /**
45319              * @event editorevent
45320              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45321              * @param {HtmlEditor} this
45322              */
45323             editorevent: true,
45324             /**
45325              * @event firstfocus
45326              * Fires when on first focus - needed by toolbars..
45327              * @param {HtmlEditor} this
45328              */
45329             firstfocus: true,
45330             /**
45331              * @event autosave
45332              * Auto save the htmlEditor value as a file into Events
45333              * @param {HtmlEditor} this
45334              */
45335             autosave: true,
45336             /**
45337              * @event savedpreview
45338              * preview the saved version of htmlEditor
45339              * @param {HtmlEditor} this
45340              */
45341             savedpreview: true,
45342             
45343             /**
45344             * @event stylesheetsclick
45345             * Fires when press the Sytlesheets button
45346             * @param {Roo.HtmlEditorCore} this
45347             */
45348             stylesheetsclick: true
45349         });
45350         this.defaultAutoCreate =  {
45351             tag: "textarea",
45352             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45353             autocomplete: "new-password"
45354         };
45355     },
45356
45357     /**
45358      * Protected method that will not generally be called directly. It
45359      * is called when the editor creates its toolbar. Override this method if you need to
45360      * add custom toolbar buttons.
45361      * @param {HtmlEditor} editor
45362      */
45363     createToolbar : function(editor){
45364         Roo.log("create toolbars");
45365         if (!editor.toolbars || !editor.toolbars.length) {
45366             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45367         }
45368         
45369         for (var i =0 ; i < editor.toolbars.length;i++) {
45370             editor.toolbars[i] = Roo.factory(
45371                     typeof(editor.toolbars[i]) == 'string' ?
45372                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45373                 Roo.form.HtmlEditor);
45374             editor.toolbars[i].init(editor);
45375         }
45376          
45377         
45378     },
45379
45380      
45381     // private
45382     onRender : function(ct, position)
45383     {
45384         var _t = this;
45385         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45386         
45387         this.wrap = this.el.wrap({
45388             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45389         });
45390         
45391         this.editorcore.onRender(ct, position);
45392          
45393         if (this.resizable) {
45394             this.resizeEl = new Roo.Resizable(this.wrap, {
45395                 pinned : true,
45396                 wrap: true,
45397                 dynamic : true,
45398                 minHeight : this.height,
45399                 height: this.height,
45400                 handles : this.resizable,
45401                 width: this.width,
45402                 listeners : {
45403                     resize : function(r, w, h) {
45404                         _t.onResize(w,h); // -something
45405                     }
45406                 }
45407             });
45408             
45409         }
45410         this.createToolbar(this);
45411        
45412         
45413         if(!this.width){
45414             this.setSize(this.wrap.getSize());
45415         }
45416         if (this.resizeEl) {
45417             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45418             // should trigger onReize..
45419         }
45420         
45421         this.keyNav = new Roo.KeyNav(this.el, {
45422             
45423             "tab" : function(e){
45424                 e.preventDefault();
45425                 
45426                 var value = this.getValue();
45427                 
45428                 var start = this.el.dom.selectionStart;
45429                 var end = this.el.dom.selectionEnd;
45430                 
45431                 if(!e.shiftKey){
45432                     
45433                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45434                     this.el.dom.setSelectionRange(end + 1, end + 1);
45435                     return;
45436                 }
45437                 
45438                 var f = value.substring(0, start).split("\t");
45439                 
45440                 if(f.pop().length != 0){
45441                     return;
45442                 }
45443                 
45444                 this.setValue(f.join("\t") + value.substring(end));
45445                 this.el.dom.setSelectionRange(start - 1, start - 1);
45446                 
45447             },
45448             
45449             "home" : function(e){
45450                 e.preventDefault();
45451                 
45452                 var curr = this.el.dom.selectionStart;
45453                 var lines = this.getValue().split("\n");
45454                 
45455                 if(!lines.length){
45456                     return;
45457                 }
45458                 
45459                 if(e.ctrlKey){
45460                     this.el.dom.setSelectionRange(0, 0);
45461                     return;
45462                 }
45463                 
45464                 var pos = 0;
45465                 
45466                 for (var i = 0; i < lines.length;i++) {
45467                     pos += lines[i].length;
45468                     
45469                     if(i != 0){
45470                         pos += 1;
45471                     }
45472                     
45473                     if(pos < curr){
45474                         continue;
45475                     }
45476                     
45477                     pos -= lines[i].length;
45478                     
45479                     break;
45480                 }
45481                 
45482                 if(!e.shiftKey){
45483                     this.el.dom.setSelectionRange(pos, pos);
45484                     return;
45485                 }
45486                 
45487                 this.el.dom.selectionStart = pos;
45488                 this.el.dom.selectionEnd = curr;
45489             },
45490             
45491             "end" : function(e){
45492                 e.preventDefault();
45493                 
45494                 var curr = this.el.dom.selectionStart;
45495                 var lines = this.getValue().split("\n");
45496                 
45497                 if(!lines.length){
45498                     return;
45499                 }
45500                 
45501                 if(e.ctrlKey){
45502                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45503                     return;
45504                 }
45505                 
45506                 var pos = 0;
45507                 
45508                 for (var i = 0; i < lines.length;i++) {
45509                     
45510                     pos += lines[i].length;
45511                     
45512                     if(i != 0){
45513                         pos += 1;
45514                     }
45515                     
45516                     if(pos < curr){
45517                         continue;
45518                     }
45519                     
45520                     break;
45521                 }
45522                 
45523                 if(!e.shiftKey){
45524                     this.el.dom.setSelectionRange(pos, pos);
45525                     return;
45526                 }
45527                 
45528                 this.el.dom.selectionStart = curr;
45529                 this.el.dom.selectionEnd = pos;
45530             },
45531
45532             scope : this,
45533
45534             doRelay : function(foo, bar, hname){
45535                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45536             },
45537
45538             forceKeyDown: true
45539         });
45540         
45541 //        if(this.autosave && this.w){
45542 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45543 //        }
45544     },
45545
45546     // private
45547     onResize : function(w, h)
45548     {
45549         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45550         var ew = false;
45551         var eh = false;
45552         
45553         if(this.el ){
45554             if(typeof w == 'number'){
45555                 var aw = w - this.wrap.getFrameWidth('lr');
45556                 this.el.setWidth(this.adjustWidth('textarea', aw));
45557                 ew = aw;
45558             }
45559             if(typeof h == 'number'){
45560                 var tbh = 0;
45561                 for (var i =0; i < this.toolbars.length;i++) {
45562                     // fixme - ask toolbars for heights?
45563                     tbh += this.toolbars[i].tb.el.getHeight();
45564                     if (this.toolbars[i].footer) {
45565                         tbh += this.toolbars[i].footer.el.getHeight();
45566                     }
45567                 }
45568                 
45569                 
45570                 
45571                 
45572                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45573                 ah -= 5; // knock a few pixes off for look..
45574 //                Roo.log(ah);
45575                 this.el.setHeight(this.adjustWidth('textarea', ah));
45576                 var eh = ah;
45577             }
45578         }
45579         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45580         this.editorcore.onResize(ew,eh);
45581         
45582     },
45583
45584     /**
45585      * Toggles the editor between standard and source edit mode.
45586      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45587      */
45588     toggleSourceEdit : function(sourceEditMode)
45589     {
45590         this.editorcore.toggleSourceEdit(sourceEditMode);
45591         
45592         if(this.editorcore.sourceEditMode){
45593             Roo.log('editor - showing textarea');
45594             
45595 //            Roo.log('in');
45596 //            Roo.log(this.syncValue());
45597             this.editorcore.syncValue();
45598             this.el.removeClass('x-hidden');
45599             this.el.dom.removeAttribute('tabIndex');
45600             this.el.focus();
45601             
45602             for (var i = 0; i < this.toolbars.length; i++) {
45603                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45604                     this.toolbars[i].tb.hide();
45605                     this.toolbars[i].footer.hide();
45606                 }
45607             }
45608             
45609         }else{
45610             Roo.log('editor - hiding textarea');
45611 //            Roo.log('out')
45612 //            Roo.log(this.pushValue()); 
45613             this.editorcore.pushValue();
45614             
45615             this.el.addClass('x-hidden');
45616             this.el.dom.setAttribute('tabIndex', -1);
45617             
45618             for (var i = 0; i < this.toolbars.length; i++) {
45619                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45620                     this.toolbars[i].tb.show();
45621                     this.toolbars[i].footer.show();
45622                 }
45623             }
45624             
45625             //this.deferFocus();
45626         }
45627         
45628         this.setSize(this.wrap.getSize());
45629         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45630         
45631         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45632     },
45633  
45634     // private (for BoxComponent)
45635     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45636
45637     // private (for BoxComponent)
45638     getResizeEl : function(){
45639         return this.wrap;
45640     },
45641
45642     // private (for BoxComponent)
45643     getPositionEl : function(){
45644         return this.wrap;
45645     },
45646
45647     // private
45648     initEvents : function(){
45649         this.originalValue = this.getValue();
45650     },
45651
45652     /**
45653      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45654      * @method
45655      */
45656     markInvalid : Roo.emptyFn,
45657     /**
45658      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45659      * @method
45660      */
45661     clearInvalid : Roo.emptyFn,
45662
45663     setValue : function(v){
45664         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45665         this.editorcore.pushValue();
45666     },
45667
45668      
45669     // private
45670     deferFocus : function(){
45671         this.focus.defer(10, this);
45672     },
45673
45674     // doc'ed in Field
45675     focus : function(){
45676         this.editorcore.focus();
45677         
45678     },
45679       
45680
45681     // private
45682     onDestroy : function(){
45683         
45684         
45685         
45686         if(this.rendered){
45687             
45688             for (var i =0; i < this.toolbars.length;i++) {
45689                 // fixme - ask toolbars for heights?
45690                 this.toolbars[i].onDestroy();
45691             }
45692             
45693             this.wrap.dom.innerHTML = '';
45694             this.wrap.remove();
45695         }
45696     },
45697
45698     // private
45699     onFirstFocus : function(){
45700         //Roo.log("onFirstFocus");
45701         this.editorcore.onFirstFocus();
45702          for (var i =0; i < this.toolbars.length;i++) {
45703             this.toolbars[i].onFirstFocus();
45704         }
45705         
45706     },
45707     
45708     // private
45709     syncValue : function()
45710     {
45711         this.editorcore.syncValue();
45712     },
45713     
45714     pushValue : function()
45715     {
45716         this.editorcore.pushValue();
45717     },
45718     
45719     setStylesheets : function(stylesheets)
45720     {
45721         this.editorcore.setStylesheets(stylesheets);
45722     },
45723     
45724     removeStylesheets : function()
45725     {
45726         this.editorcore.removeStylesheets();
45727     }
45728      
45729     
45730     // hide stuff that is not compatible
45731     /**
45732      * @event blur
45733      * @hide
45734      */
45735     /**
45736      * @event change
45737      * @hide
45738      */
45739     /**
45740      * @event focus
45741      * @hide
45742      */
45743     /**
45744      * @event specialkey
45745      * @hide
45746      */
45747     /**
45748      * @cfg {String} fieldClass @hide
45749      */
45750     /**
45751      * @cfg {String} focusClass @hide
45752      */
45753     /**
45754      * @cfg {String} autoCreate @hide
45755      */
45756     /**
45757      * @cfg {String} inputType @hide
45758      */
45759     /**
45760      * @cfg {String} invalidClass @hide
45761      */
45762     /**
45763      * @cfg {String} invalidText @hide
45764      */
45765     /**
45766      * @cfg {String} msgFx @hide
45767      */
45768     /**
45769      * @cfg {String} validateOnBlur @hide
45770      */
45771 });
45772  
45773     // <script type="text/javascript">
45774 /*
45775  * Based on
45776  * Ext JS Library 1.1.1
45777  * Copyright(c) 2006-2007, Ext JS, LLC.
45778  *  
45779  
45780  */
45781
45782 /**
45783  * @class Roo.form.HtmlEditorToolbar1
45784  * Basic Toolbar
45785  * 
45786  * Usage:
45787  *
45788  new Roo.form.HtmlEditor({
45789     ....
45790     toolbars : [
45791         new Roo.form.HtmlEditorToolbar1({
45792             disable : { fonts: 1 , format: 1, ..., ... , ...],
45793             btns : [ .... ]
45794         })
45795     }
45796      
45797  * 
45798  * @cfg {Object} disable List of elements to disable..
45799  * @cfg {Array} btns List of additional buttons.
45800  * 
45801  * 
45802  * NEEDS Extra CSS? 
45803  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45804  */
45805  
45806 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45807 {
45808     
45809     Roo.apply(this, config);
45810     
45811     // default disabled, based on 'good practice'..
45812     this.disable = this.disable || {};
45813     Roo.applyIf(this.disable, {
45814         fontSize : true,
45815         colors : true,
45816         specialElements : true
45817     });
45818     
45819     
45820     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45821     // dont call parent... till later.
45822 }
45823
45824 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45825     
45826     tb: false,
45827     
45828     rendered: false,
45829     
45830     editor : false,
45831     editorcore : false,
45832     /**
45833      * @cfg {Object} disable  List of toolbar elements to disable
45834          
45835      */
45836     disable : false,
45837     
45838     
45839      /**
45840      * @cfg {String} createLinkText The default text for the create link prompt
45841      */
45842     createLinkText : 'Please enter the URL for the link:',
45843     /**
45844      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
45845      */
45846     defaultLinkValue : 'http:/'+'/',
45847    
45848     
45849       /**
45850      * @cfg {Array} fontFamilies An array of available font families
45851      */
45852     fontFamilies : [
45853         'Arial',
45854         'Courier New',
45855         'Tahoma',
45856         'Times New Roman',
45857         'Verdana'
45858     ],
45859     
45860     specialChars : [
45861            "&#169;",
45862           "&#174;",     
45863           "&#8482;",    
45864           "&#163;" ,    
45865          // "&#8212;",    
45866           "&#8230;",    
45867           "&#247;" ,    
45868         //  "&#225;" ,     ?? a acute?
45869            "&#8364;"    , //Euro
45870        //   "&#8220;"    ,
45871         //  "&#8221;"    ,
45872         //  "&#8226;"    ,
45873           "&#176;"  //   , // degrees
45874
45875          // "&#233;"     , // e ecute
45876          // "&#250;"     , // u ecute?
45877     ],
45878     
45879     specialElements : [
45880         {
45881             text: "Insert Table",
45882             xtype: 'MenuItem',
45883             xns : Roo.Menu,
45884             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
45885                 
45886         },
45887         {    
45888             text: "Insert Image",
45889             xtype: 'MenuItem',
45890             xns : Roo.Menu,
45891             ihtml : '<img src="about:blank"/>'
45892             
45893         }
45894         
45895          
45896     ],
45897     
45898     
45899     inputElements : [ 
45900             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
45901             "input:submit", "input:button", "select", "textarea", "label" ],
45902     formats : [
45903         ["p"] ,  
45904         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
45905         ["pre"],[ "code"], 
45906         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
45907         ['div'],['span'],
45908         ['sup'],['sub']
45909     ],
45910     
45911     cleanStyles : [
45912         "font-size"
45913     ],
45914      /**
45915      * @cfg {String} defaultFont default font to use.
45916      */
45917     defaultFont: 'tahoma',
45918    
45919     fontSelect : false,
45920     
45921     
45922     formatCombo : false,
45923     
45924     init : function(editor)
45925     {
45926         this.editor = editor;
45927         this.editorcore = editor.editorcore ? editor.editorcore : editor;
45928         var editorcore = this.editorcore;
45929         
45930         var _t = this;
45931         
45932         var fid = editorcore.frameId;
45933         var etb = this;
45934         function btn(id, toggle, handler){
45935             var xid = fid + '-'+ id ;
45936             return {
45937                 id : xid,
45938                 cmd : id,
45939                 cls : 'x-btn-icon x-edit-'+id,
45940                 enableToggle:toggle !== false,
45941                 scope: _t, // was editor...
45942                 handler:handler||_t.relayBtnCmd,
45943                 clickEvent:'mousedown',
45944                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
45945                 tabIndex:-1
45946             };
45947         }
45948         
45949         
45950         
45951         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
45952         this.tb = tb;
45953          // stop form submits
45954         tb.el.on('click', function(e){
45955             e.preventDefault(); // what does this do?
45956         });
45957
45958         if(!this.disable.font) { // && !Roo.isSafari){
45959             /* why no safari for fonts 
45960             editor.fontSelect = tb.el.createChild({
45961                 tag:'select',
45962                 tabIndex: -1,
45963                 cls:'x-font-select',
45964                 html: this.createFontOptions()
45965             });
45966             
45967             editor.fontSelect.on('change', function(){
45968                 var font = editor.fontSelect.dom.value;
45969                 editor.relayCmd('fontname', font);
45970                 editor.deferFocus();
45971             }, editor);
45972             
45973             tb.add(
45974                 editor.fontSelect.dom,
45975                 '-'
45976             );
45977             */
45978             
45979         };
45980         if(!this.disable.formats){
45981             this.formatCombo = new Roo.form.ComboBox({
45982                 store: new Roo.data.SimpleStore({
45983                     id : 'tag',
45984                     fields: ['tag'],
45985                     data : this.formats // from states.js
45986                 }),
45987                 blockFocus : true,
45988                 name : '',
45989                 //autoCreate : {tag: "div",  size: "20"},
45990                 displayField:'tag',
45991                 typeAhead: false,
45992                 mode: 'local',
45993                 editable : false,
45994                 triggerAction: 'all',
45995                 emptyText:'Add tag',
45996                 selectOnFocus:true,
45997                 width:135,
45998                 listeners : {
45999                     'select': function(c, r, i) {
46000                         editorcore.insertTag(r.get('tag'));
46001                         editor.focus();
46002                     }
46003                 }
46004
46005             });
46006             tb.addField(this.formatCombo);
46007             
46008         }
46009         
46010         if(!this.disable.format){
46011             tb.add(
46012                 btn('bold'),
46013                 btn('italic'),
46014                 btn('underline'),
46015                 btn('strikethrough')
46016             );
46017         };
46018         if(!this.disable.fontSize){
46019             tb.add(
46020                 '-',
46021                 
46022                 
46023                 btn('increasefontsize', false, editorcore.adjustFont),
46024                 btn('decreasefontsize', false, editorcore.adjustFont)
46025             );
46026         };
46027         
46028         
46029         if(!this.disable.colors){
46030             tb.add(
46031                 '-', {
46032                     id:editorcore.frameId +'-forecolor',
46033                     cls:'x-btn-icon x-edit-forecolor',
46034                     clickEvent:'mousedown',
46035                     tooltip: this.buttonTips['forecolor'] || undefined,
46036                     tabIndex:-1,
46037                     menu : new Roo.menu.ColorMenu({
46038                         allowReselect: true,
46039                         focus: Roo.emptyFn,
46040                         value:'000000',
46041                         plain:true,
46042                         selectHandler: function(cp, color){
46043                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46044                             editor.deferFocus();
46045                         },
46046                         scope: editorcore,
46047                         clickEvent:'mousedown'
46048                     })
46049                 }, {
46050                     id:editorcore.frameId +'backcolor',
46051                     cls:'x-btn-icon x-edit-backcolor',
46052                     clickEvent:'mousedown',
46053                     tooltip: this.buttonTips['backcolor'] || undefined,
46054                     tabIndex:-1,
46055                     menu : new Roo.menu.ColorMenu({
46056                         focus: Roo.emptyFn,
46057                         value:'FFFFFF',
46058                         plain:true,
46059                         allowReselect: true,
46060                         selectHandler: function(cp, color){
46061                             if(Roo.isGecko){
46062                                 editorcore.execCmd('useCSS', false);
46063                                 editorcore.execCmd('hilitecolor', color);
46064                                 editorcore.execCmd('useCSS', true);
46065                                 editor.deferFocus();
46066                             }else{
46067                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46068                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46069                                 editor.deferFocus();
46070                             }
46071                         },
46072                         scope:editorcore,
46073                         clickEvent:'mousedown'
46074                     })
46075                 }
46076             );
46077         };
46078         // now add all the items...
46079         
46080
46081         if(!this.disable.alignments){
46082             tb.add(
46083                 '-',
46084                 btn('justifyleft'),
46085                 btn('justifycenter'),
46086                 btn('justifyright')
46087             );
46088         };
46089
46090         //if(!Roo.isSafari){
46091             if(!this.disable.links){
46092                 tb.add(
46093                     '-',
46094                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46095                 );
46096             };
46097
46098             if(!this.disable.lists){
46099                 tb.add(
46100                     '-',
46101                     btn('insertorderedlist'),
46102                     btn('insertunorderedlist')
46103                 );
46104             }
46105             if(!this.disable.sourceEdit){
46106                 tb.add(
46107                     '-',
46108                     btn('sourceedit', true, function(btn){
46109                         this.toggleSourceEdit(btn.pressed);
46110                     })
46111                 );
46112             }
46113         //}
46114         
46115         var smenu = { };
46116         // special menu.. - needs to be tidied up..
46117         if (!this.disable.special) {
46118             smenu = {
46119                 text: "&#169;",
46120                 cls: 'x-edit-none',
46121                 
46122                 menu : {
46123                     items : []
46124                 }
46125             };
46126             for (var i =0; i < this.specialChars.length; i++) {
46127                 smenu.menu.items.push({
46128                     
46129                     html: this.specialChars[i],
46130                     handler: function(a,b) {
46131                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46132                         //editor.insertAtCursor(a.html);
46133                         
46134                     },
46135                     tabIndex:-1
46136                 });
46137             }
46138             
46139             
46140             tb.add(smenu);
46141             
46142             
46143         }
46144         
46145         var cmenu = { };
46146         if (!this.disable.cleanStyles) {
46147             cmenu = {
46148                 cls: 'x-btn-icon x-btn-clear',
46149                 
46150                 menu : {
46151                     items : []
46152                 }
46153             };
46154             for (var i =0; i < this.cleanStyles.length; i++) {
46155                 cmenu.menu.items.push({
46156                     actiontype : this.cleanStyles[i],
46157                     html: 'Remove ' + this.cleanStyles[i],
46158                     handler: function(a,b) {
46159 //                        Roo.log(a);
46160 //                        Roo.log(b);
46161                         var c = Roo.get(editorcore.doc.body);
46162                         c.select('[style]').each(function(s) {
46163                             s.dom.style.removeProperty(a.actiontype);
46164                         });
46165                         editorcore.syncValue();
46166                     },
46167                     tabIndex:-1
46168                 });
46169             }
46170              cmenu.menu.items.push({
46171                 actiontype : 'tablewidths',
46172                 html: 'Remove Table Widths',
46173                 handler: function(a,b) {
46174                     editorcore.cleanTableWidths();
46175                     editorcore.syncValue();
46176                 },
46177                 tabIndex:-1
46178             });
46179             cmenu.menu.items.push({
46180                 actiontype : 'word',
46181                 html: 'Remove MS Word Formating',
46182                 handler: function(a,b) {
46183                     editorcore.cleanWord();
46184                     editorcore.syncValue();
46185                 },
46186                 tabIndex:-1
46187             });
46188             
46189             cmenu.menu.items.push({
46190                 actiontype : 'all',
46191                 html: 'Remove All Styles',
46192                 handler: function(a,b) {
46193                     
46194                     var c = Roo.get(editorcore.doc.body);
46195                     c.select('[style]').each(function(s) {
46196                         s.dom.removeAttribute('style');
46197                     });
46198                     editorcore.syncValue();
46199                 },
46200                 tabIndex:-1
46201             });
46202             
46203             cmenu.menu.items.push({
46204                 actiontype : 'all',
46205                 html: 'Remove All CSS Classes',
46206                 handler: function(a,b) {
46207                     
46208                     var c = Roo.get(editorcore.doc.body);
46209                     c.select('[class]').each(function(s) {
46210                         s.dom.removeAttribute('class');
46211                     });
46212                     editorcore.cleanWord();
46213                     editorcore.syncValue();
46214                 },
46215                 tabIndex:-1
46216             });
46217             
46218              cmenu.menu.items.push({
46219                 actiontype : 'tidy',
46220                 html: 'Tidy HTML Source',
46221                 handler: function(a,b) {
46222                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46223                     editorcore.syncValue();
46224                 },
46225                 tabIndex:-1
46226             });
46227             
46228             
46229             tb.add(cmenu);
46230         }
46231          
46232         if (!this.disable.specialElements) {
46233             var semenu = {
46234                 text: "Other;",
46235                 cls: 'x-edit-none',
46236                 menu : {
46237                     items : []
46238                 }
46239             };
46240             for (var i =0; i < this.specialElements.length; i++) {
46241                 semenu.menu.items.push(
46242                     Roo.apply({ 
46243                         handler: function(a,b) {
46244                             editor.insertAtCursor(this.ihtml);
46245                         }
46246                     }, this.specialElements[i])
46247                 );
46248                     
46249             }
46250             
46251             tb.add(semenu);
46252             
46253             
46254         }
46255          
46256         
46257         if (this.btns) {
46258             for(var i =0; i< this.btns.length;i++) {
46259                 var b = Roo.factory(this.btns[i],Roo.form);
46260                 b.cls =  'x-edit-none';
46261                 
46262                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46263                     b.cls += ' x-init-enable';
46264                 }
46265                 
46266                 b.scope = editorcore;
46267                 tb.add(b);
46268             }
46269         
46270         }
46271         
46272         
46273         
46274         // disable everything...
46275         
46276         this.tb.items.each(function(item){
46277             
46278            if(
46279                 item.id != editorcore.frameId+ '-sourceedit' && 
46280                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46281             ){
46282                 
46283                 item.disable();
46284             }
46285         });
46286         this.rendered = true;
46287         
46288         // the all the btns;
46289         editor.on('editorevent', this.updateToolbar, this);
46290         // other toolbars need to implement this..
46291         //editor.on('editmodechange', this.updateToolbar, this);
46292     },
46293     
46294     
46295     relayBtnCmd : function(btn) {
46296         this.editorcore.relayCmd(btn.cmd);
46297     },
46298     // private used internally
46299     createLink : function(){
46300         Roo.log("create link?");
46301         var url = prompt(this.createLinkText, this.defaultLinkValue);
46302         if(url && url != 'http:/'+'/'){
46303             this.editorcore.relayCmd('createlink', url);
46304         }
46305     },
46306
46307     
46308     /**
46309      * Protected method that will not generally be called directly. It triggers
46310      * a toolbar update by reading the markup state of the current selection in the editor.
46311      */
46312     updateToolbar: function(){
46313
46314         if(!this.editorcore.activated){
46315             this.editor.onFirstFocus();
46316             return;
46317         }
46318
46319         var btns = this.tb.items.map, 
46320             doc = this.editorcore.doc,
46321             frameId = this.editorcore.frameId;
46322
46323         if(!this.disable.font && !Roo.isSafari){
46324             /*
46325             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46326             if(name != this.fontSelect.dom.value){
46327                 this.fontSelect.dom.value = name;
46328             }
46329             */
46330         }
46331         if(!this.disable.format){
46332             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46333             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46334             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46335             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46336         }
46337         if(!this.disable.alignments){
46338             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46339             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46340             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46341         }
46342         if(!Roo.isSafari && !this.disable.lists){
46343             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46344             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46345         }
46346         
46347         var ans = this.editorcore.getAllAncestors();
46348         if (this.formatCombo) {
46349             
46350             
46351             var store = this.formatCombo.store;
46352             this.formatCombo.setValue("");
46353             for (var i =0; i < ans.length;i++) {
46354                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46355                     // select it..
46356                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46357                     break;
46358                 }
46359             }
46360         }
46361         
46362         
46363         
46364         // hides menus... - so this cant be on a menu...
46365         Roo.menu.MenuMgr.hideAll();
46366
46367         //this.editorsyncValue();
46368     },
46369    
46370     
46371     createFontOptions : function(){
46372         var buf = [], fs = this.fontFamilies, ff, lc;
46373         
46374         
46375         
46376         for(var i = 0, len = fs.length; i< len; i++){
46377             ff = fs[i];
46378             lc = ff.toLowerCase();
46379             buf.push(
46380                 '<option value="',lc,'" style="font-family:',ff,';"',
46381                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46382                     ff,
46383                 '</option>'
46384             );
46385         }
46386         return buf.join('');
46387     },
46388     
46389     toggleSourceEdit : function(sourceEditMode){
46390         
46391         Roo.log("toolbar toogle");
46392         if(sourceEditMode === undefined){
46393             sourceEditMode = !this.sourceEditMode;
46394         }
46395         this.sourceEditMode = sourceEditMode === true;
46396         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46397         // just toggle the button?
46398         if(btn.pressed !== this.sourceEditMode){
46399             btn.toggle(this.sourceEditMode);
46400             return;
46401         }
46402         
46403         if(sourceEditMode){
46404             Roo.log("disabling buttons");
46405             this.tb.items.each(function(item){
46406                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46407                     item.disable();
46408                 }
46409             });
46410           
46411         }else{
46412             Roo.log("enabling buttons");
46413             if(this.editorcore.initialized){
46414                 this.tb.items.each(function(item){
46415                     item.enable();
46416                 });
46417             }
46418             
46419         }
46420         Roo.log("calling toggole on editor");
46421         // tell the editor that it's been pressed..
46422         this.editor.toggleSourceEdit(sourceEditMode);
46423        
46424     },
46425      /**
46426      * Object collection of toolbar tooltips for the buttons in the editor. The key
46427      * is the command id associated with that button and the value is a valid QuickTips object.
46428      * For example:
46429 <pre><code>
46430 {
46431     bold : {
46432         title: 'Bold (Ctrl+B)',
46433         text: 'Make the selected text bold.',
46434         cls: 'x-html-editor-tip'
46435     },
46436     italic : {
46437         title: 'Italic (Ctrl+I)',
46438         text: 'Make the selected text italic.',
46439         cls: 'x-html-editor-tip'
46440     },
46441     ...
46442 </code></pre>
46443     * @type Object
46444      */
46445     buttonTips : {
46446         bold : {
46447             title: 'Bold (Ctrl+B)',
46448             text: 'Make the selected text bold.',
46449             cls: 'x-html-editor-tip'
46450         },
46451         italic : {
46452             title: 'Italic (Ctrl+I)',
46453             text: 'Make the selected text italic.',
46454             cls: 'x-html-editor-tip'
46455         },
46456         underline : {
46457             title: 'Underline (Ctrl+U)',
46458             text: 'Underline the selected text.',
46459             cls: 'x-html-editor-tip'
46460         },
46461         strikethrough : {
46462             title: 'Strikethrough',
46463             text: 'Strikethrough the selected text.',
46464             cls: 'x-html-editor-tip'
46465         },
46466         increasefontsize : {
46467             title: 'Grow Text',
46468             text: 'Increase the font size.',
46469             cls: 'x-html-editor-tip'
46470         },
46471         decreasefontsize : {
46472             title: 'Shrink Text',
46473             text: 'Decrease the font size.',
46474             cls: 'x-html-editor-tip'
46475         },
46476         backcolor : {
46477             title: 'Text Highlight Color',
46478             text: 'Change the background color of the selected text.',
46479             cls: 'x-html-editor-tip'
46480         },
46481         forecolor : {
46482             title: 'Font Color',
46483             text: 'Change the color of the selected text.',
46484             cls: 'x-html-editor-tip'
46485         },
46486         justifyleft : {
46487             title: 'Align Text Left',
46488             text: 'Align text to the left.',
46489             cls: 'x-html-editor-tip'
46490         },
46491         justifycenter : {
46492             title: 'Center Text',
46493             text: 'Center text in the editor.',
46494             cls: 'x-html-editor-tip'
46495         },
46496         justifyright : {
46497             title: 'Align Text Right',
46498             text: 'Align text to the right.',
46499             cls: 'x-html-editor-tip'
46500         },
46501         insertunorderedlist : {
46502             title: 'Bullet List',
46503             text: 'Start a bulleted list.',
46504             cls: 'x-html-editor-tip'
46505         },
46506         insertorderedlist : {
46507             title: 'Numbered List',
46508             text: 'Start a numbered list.',
46509             cls: 'x-html-editor-tip'
46510         },
46511         createlink : {
46512             title: 'Hyperlink',
46513             text: 'Make the selected text a hyperlink.',
46514             cls: 'x-html-editor-tip'
46515         },
46516         sourceedit : {
46517             title: 'Source Edit',
46518             text: 'Switch to source editing mode.',
46519             cls: 'x-html-editor-tip'
46520         }
46521     },
46522     // private
46523     onDestroy : function(){
46524         if(this.rendered){
46525             
46526             this.tb.items.each(function(item){
46527                 if(item.menu){
46528                     item.menu.removeAll();
46529                     if(item.menu.el){
46530                         item.menu.el.destroy();
46531                     }
46532                 }
46533                 item.destroy();
46534             });
46535              
46536         }
46537     },
46538     onFirstFocus: function() {
46539         this.tb.items.each(function(item){
46540            item.enable();
46541         });
46542     }
46543 });
46544
46545
46546
46547
46548 // <script type="text/javascript">
46549 /*
46550  * Based on
46551  * Ext JS Library 1.1.1
46552  * Copyright(c) 2006-2007, Ext JS, LLC.
46553  *  
46554  
46555  */
46556
46557  
46558 /**
46559  * @class Roo.form.HtmlEditor.ToolbarContext
46560  * Context Toolbar
46561  * 
46562  * Usage:
46563  *
46564  new Roo.form.HtmlEditor({
46565     ....
46566     toolbars : [
46567         { xtype: 'ToolbarStandard', styles : {} }
46568         { xtype: 'ToolbarContext', disable : {} }
46569     ]
46570 })
46571
46572      
46573  * 
46574  * @config : {Object} disable List of elements to disable.. (not done yet.)
46575  * @config : {Object} styles  Map of styles available.
46576  * 
46577  */
46578
46579 Roo.form.HtmlEditor.ToolbarContext = function(config)
46580 {
46581     
46582     Roo.apply(this, config);
46583     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46584     // dont call parent... till later.
46585     this.styles = this.styles || {};
46586 }
46587
46588  
46589
46590 Roo.form.HtmlEditor.ToolbarContext.types = {
46591     'IMG' : {
46592         width : {
46593             title: "Width",
46594             width: 40
46595         },
46596         height:  {
46597             title: "Height",
46598             width: 40
46599         },
46600         align: {
46601             title: "Align",
46602             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46603             width : 80
46604             
46605         },
46606         border: {
46607             title: "Border",
46608             width: 40
46609         },
46610         alt: {
46611             title: "Alt",
46612             width: 120
46613         },
46614         src : {
46615             title: "Src",
46616             width: 220
46617         }
46618         
46619     },
46620     'A' : {
46621         name : {
46622             title: "Name",
46623             width: 50
46624         },
46625         target:  {
46626             title: "Target",
46627             width: 120
46628         },
46629         href:  {
46630             title: "Href",
46631             width: 220
46632         } // border?
46633         
46634     },
46635     'TABLE' : {
46636         rows : {
46637             title: "Rows",
46638             width: 20
46639         },
46640         cols : {
46641             title: "Cols",
46642             width: 20
46643         },
46644         width : {
46645             title: "Width",
46646             width: 40
46647         },
46648         height : {
46649             title: "Height",
46650             width: 40
46651         },
46652         border : {
46653             title: "Border",
46654             width: 20
46655         }
46656     },
46657     'TD' : {
46658         width : {
46659             title: "Width",
46660             width: 40
46661         },
46662         height : {
46663             title: "Height",
46664             width: 40
46665         },   
46666         align: {
46667             title: "Align",
46668             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46669             width: 80
46670         },
46671         valign: {
46672             title: "Valign",
46673             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46674             width: 80
46675         },
46676         colspan: {
46677             title: "Colspan",
46678             width: 20
46679             
46680         },
46681          'font-family'  : {
46682             title : "Font",
46683             style : 'fontFamily',
46684             displayField: 'display',
46685             optname : 'font-family',
46686             width: 140
46687         }
46688     },
46689     'INPUT' : {
46690         name : {
46691             title: "name",
46692             width: 120
46693         },
46694         value : {
46695             title: "Value",
46696             width: 120
46697         },
46698         width : {
46699             title: "Width",
46700             width: 40
46701         }
46702     },
46703     'LABEL' : {
46704         'for' : {
46705             title: "For",
46706             width: 120
46707         }
46708     },
46709     'TEXTAREA' : {
46710           name : {
46711             title: "name",
46712             width: 120
46713         },
46714         rows : {
46715             title: "Rows",
46716             width: 20
46717         },
46718         cols : {
46719             title: "Cols",
46720             width: 20
46721         }
46722     },
46723     'SELECT' : {
46724         name : {
46725             title: "name",
46726             width: 120
46727         },
46728         selectoptions : {
46729             title: "Options",
46730             width: 200
46731         }
46732     },
46733     
46734     // should we really allow this??
46735     // should this just be 
46736     'BODY' : {
46737         title : {
46738             title: "Title",
46739             width: 200,
46740             disabled : true
46741         }
46742     },
46743     'SPAN' : {
46744         'font-family'  : {
46745             title : "Font",
46746             style : 'fontFamily',
46747             displayField: 'display',
46748             optname : 'font-family',
46749             width: 140
46750         }
46751     },
46752     'DIV' : {
46753         'font-family'  : {
46754             title : "Font",
46755             style : 'fontFamily',
46756             displayField: 'display',
46757             optname : 'font-family',
46758             width: 140
46759         }
46760     },
46761      'P' : {
46762         'font-family'  : {
46763             title : "Font",
46764             style : 'fontFamily',
46765             displayField: 'display',
46766             optname : 'font-family',
46767             width: 140
46768         }
46769     },
46770     
46771     '*' : {
46772         // empty..
46773     }
46774
46775 };
46776
46777 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46778 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46779
46780 Roo.form.HtmlEditor.ToolbarContext.options = {
46781         'font-family'  : [ 
46782                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46783                 [ 'Courier New', 'Courier New'],
46784                 [ 'Tahoma', 'Tahoma'],
46785                 [ 'Times New Roman,serif', 'Times'],
46786                 [ 'Verdana','Verdana' ]
46787         ]
46788 };
46789
46790 // fixme - these need to be configurable..
46791  
46792
46793 //Roo.form.HtmlEditor.ToolbarContext.types
46794
46795
46796 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46797     
46798     tb: false,
46799     
46800     rendered: false,
46801     
46802     editor : false,
46803     editorcore : false,
46804     /**
46805      * @cfg {Object} disable  List of toolbar elements to disable
46806          
46807      */
46808     disable : false,
46809     /**
46810      * @cfg {Object} styles List of styles 
46811      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46812      *
46813      * These must be defined in the page, so they get rendered correctly..
46814      * .headline { }
46815      * TD.underline { }
46816      * 
46817      */
46818     styles : false,
46819     
46820     options: false,
46821     
46822     toolbars : false,
46823     
46824     init : function(editor)
46825     {
46826         this.editor = editor;
46827         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46828         var editorcore = this.editorcore;
46829         
46830         var fid = editorcore.frameId;
46831         var etb = this;
46832         function btn(id, toggle, handler){
46833             var xid = fid + '-'+ id ;
46834             return {
46835                 id : xid,
46836                 cmd : id,
46837                 cls : 'x-btn-icon x-edit-'+id,
46838                 enableToggle:toggle !== false,
46839                 scope: editorcore, // was editor...
46840                 handler:handler||editorcore.relayBtnCmd,
46841                 clickEvent:'mousedown',
46842                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46843                 tabIndex:-1
46844             };
46845         }
46846         // create a new element.
46847         var wdiv = editor.wrap.createChild({
46848                 tag: 'div'
46849             }, editor.wrap.dom.firstChild.nextSibling, true);
46850         
46851         // can we do this more than once??
46852         
46853          // stop form submits
46854       
46855  
46856         // disable everything...
46857         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46858         this.toolbars = {};
46859            
46860         for (var i in  ty) {
46861           
46862             this.toolbars[i] = this.buildToolbar(ty[i],i);
46863         }
46864         this.tb = this.toolbars.BODY;
46865         this.tb.el.show();
46866         this.buildFooter();
46867         this.footer.show();
46868         editor.on('hide', function( ) { this.footer.hide() }, this);
46869         editor.on('show', function( ) { this.footer.show() }, this);
46870         
46871          
46872         this.rendered = true;
46873         
46874         // the all the btns;
46875         editor.on('editorevent', this.updateToolbar, this);
46876         // other toolbars need to implement this..
46877         //editor.on('editmodechange', this.updateToolbar, this);
46878     },
46879     
46880     
46881     
46882     /**
46883      * Protected method that will not generally be called directly. It triggers
46884      * a toolbar update by reading the markup state of the current selection in the editor.
46885      *
46886      * Note you can force an update by calling on('editorevent', scope, false)
46887      */
46888     updateToolbar: function(editor,ev,sel){
46889
46890         //Roo.log(ev);
46891         // capture mouse up - this is handy for selecting images..
46892         // perhaps should go somewhere else...
46893         if(!this.editorcore.activated){
46894              this.editor.onFirstFocus();
46895             return;
46896         }
46897         
46898         
46899         
46900         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
46901         // selectNode - might want to handle IE?
46902         if (ev &&
46903             (ev.type == 'mouseup' || ev.type == 'click' ) &&
46904             ev.target && ev.target.tagName == 'IMG') {
46905             // they have click on an image...
46906             // let's see if we can change the selection...
46907             sel = ev.target;
46908          
46909               var nodeRange = sel.ownerDocument.createRange();
46910             try {
46911                 nodeRange.selectNode(sel);
46912             } catch (e) {
46913                 nodeRange.selectNodeContents(sel);
46914             }
46915             //nodeRange.collapse(true);
46916             var s = this.editorcore.win.getSelection();
46917             s.removeAllRanges();
46918             s.addRange(nodeRange);
46919         }  
46920         
46921       
46922         var updateFooter = sel ? false : true;
46923         
46924         
46925         var ans = this.editorcore.getAllAncestors();
46926         
46927         // pick
46928         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46929         
46930         if (!sel) { 
46931             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
46932             sel = sel ? sel : this.editorcore.doc.body;
46933             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
46934             
46935         }
46936         // pick a menu that exists..
46937         var tn = sel.tagName.toUpperCase();
46938         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
46939         
46940         tn = sel.tagName.toUpperCase();
46941         
46942         var lastSel = this.tb.selectedNode;
46943         
46944         this.tb.selectedNode = sel;
46945         
46946         // if current menu does not match..
46947         
46948         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
46949                 
46950             this.tb.el.hide();
46951             ///console.log("show: " + tn);
46952             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
46953             this.tb.el.show();
46954             // update name
46955             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
46956             
46957             
46958             // update attributes
46959             if (this.tb.fields) {
46960                 this.tb.fields.each(function(e) {
46961                     if (e.stylename) {
46962                         e.setValue(sel.style[e.stylename]);
46963                         return;
46964                     } 
46965                    e.setValue(sel.getAttribute(e.attrname));
46966                 });
46967             }
46968             
46969             var hasStyles = false;
46970             for(var i in this.styles) {
46971                 hasStyles = true;
46972                 break;
46973             }
46974             
46975             // update styles
46976             if (hasStyles) { 
46977                 var st = this.tb.fields.item(0);
46978                 
46979                 st.store.removeAll();
46980                
46981                 
46982                 var cn = sel.className.split(/\s+/);
46983                 
46984                 var avs = [];
46985                 if (this.styles['*']) {
46986                     
46987                     Roo.each(this.styles['*'], function(v) {
46988                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
46989                     });
46990                 }
46991                 if (this.styles[tn]) { 
46992                     Roo.each(this.styles[tn], function(v) {
46993                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
46994                     });
46995                 }
46996                 
46997                 st.store.loadData(avs);
46998                 st.collapse();
46999                 st.setValue(cn);
47000             }
47001             // flag our selected Node.
47002             this.tb.selectedNode = sel;
47003            
47004            
47005             Roo.menu.MenuMgr.hideAll();
47006
47007         }
47008         
47009         if (!updateFooter) {
47010             //this.footDisp.dom.innerHTML = ''; 
47011             return;
47012         }
47013         // update the footer
47014         //
47015         var html = '';
47016         
47017         this.footerEls = ans.reverse();
47018         Roo.each(this.footerEls, function(a,i) {
47019             if (!a) { return; }
47020             html += html.length ? ' &gt; '  :  '';
47021             
47022             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47023             
47024         });
47025        
47026         // 
47027         var sz = this.footDisp.up('td').getSize();
47028         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47029         this.footDisp.dom.style.marginLeft = '5px';
47030         
47031         this.footDisp.dom.style.overflow = 'hidden';
47032         
47033         this.footDisp.dom.innerHTML = html;
47034             
47035         //this.editorsyncValue();
47036     },
47037      
47038     
47039    
47040        
47041     // private
47042     onDestroy : function(){
47043         if(this.rendered){
47044             
47045             this.tb.items.each(function(item){
47046                 if(item.menu){
47047                     item.menu.removeAll();
47048                     if(item.menu.el){
47049                         item.menu.el.destroy();
47050                     }
47051                 }
47052                 item.destroy();
47053             });
47054              
47055         }
47056     },
47057     onFirstFocus: function() {
47058         // need to do this for all the toolbars..
47059         this.tb.items.each(function(item){
47060            item.enable();
47061         });
47062     },
47063     buildToolbar: function(tlist, nm)
47064     {
47065         var editor = this.editor;
47066         var editorcore = this.editorcore;
47067          // create a new element.
47068         var wdiv = editor.wrap.createChild({
47069                 tag: 'div'
47070             }, editor.wrap.dom.firstChild.nextSibling, true);
47071         
47072        
47073         var tb = new Roo.Toolbar(wdiv);
47074         // add the name..
47075         
47076         tb.add(nm+ ":&nbsp;");
47077         
47078         var styles = [];
47079         for(var i in this.styles) {
47080             styles.push(i);
47081         }
47082         
47083         // styles...
47084         if (styles && styles.length) {
47085             
47086             // this needs a multi-select checkbox...
47087             tb.addField( new Roo.form.ComboBox({
47088                 store: new Roo.data.SimpleStore({
47089                     id : 'val',
47090                     fields: ['val', 'selected'],
47091                     data : [] 
47092                 }),
47093                 name : '-roo-edit-className',
47094                 attrname : 'className',
47095                 displayField: 'val',
47096                 typeAhead: false,
47097                 mode: 'local',
47098                 editable : false,
47099                 triggerAction: 'all',
47100                 emptyText:'Select Style',
47101                 selectOnFocus:true,
47102                 width: 130,
47103                 listeners : {
47104                     'select': function(c, r, i) {
47105                         // initial support only for on class per el..
47106                         tb.selectedNode.className =  r ? r.get('val') : '';
47107                         editorcore.syncValue();
47108                     }
47109                 }
47110     
47111             }));
47112         }
47113         
47114         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47115         var tbops = tbc.options;
47116         
47117         for (var i in tlist) {
47118             
47119             var item = tlist[i];
47120             tb.add(item.title + ":&nbsp;");
47121             
47122             
47123             //optname == used so you can configure the options available..
47124             var opts = item.opts ? item.opts : false;
47125             if (item.optname) {
47126                 opts = tbops[item.optname];
47127            
47128             }
47129             
47130             if (opts) {
47131                 // opts == pulldown..
47132                 tb.addField( new Roo.form.ComboBox({
47133                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47134                         id : 'val',
47135                         fields: ['val', 'display'],
47136                         data : opts  
47137                     }),
47138                     name : '-roo-edit-' + i,
47139                     attrname : i,
47140                     stylename : item.style ? item.style : false,
47141                     displayField: item.displayField ? item.displayField : 'val',
47142                     valueField :  'val',
47143                     typeAhead: false,
47144                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47145                     editable : false,
47146                     triggerAction: 'all',
47147                     emptyText:'Select',
47148                     selectOnFocus:true,
47149                     width: item.width ? item.width  : 130,
47150                     listeners : {
47151                         'select': function(c, r, i) {
47152                             if (c.stylename) {
47153                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47154                                 return;
47155                             }
47156                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47157                         }
47158                     }
47159
47160                 }));
47161                 continue;
47162                     
47163                  
47164                 
47165                 tb.addField( new Roo.form.TextField({
47166                     name: i,
47167                     width: 100,
47168                     //allowBlank:false,
47169                     value: ''
47170                 }));
47171                 continue;
47172             }
47173             tb.addField( new Roo.form.TextField({
47174                 name: '-roo-edit-' + i,
47175                 attrname : i,
47176                 
47177                 width: item.width,
47178                 //allowBlank:true,
47179                 value: '',
47180                 listeners: {
47181                     'change' : function(f, nv, ov) {
47182                         tb.selectedNode.setAttribute(f.attrname, nv);
47183                         editorcore.syncValue();
47184                     }
47185                 }
47186             }));
47187              
47188         }
47189         
47190         var _this = this;
47191         
47192         if(nm == 'BODY'){
47193             tb.addSeparator();
47194         
47195             tb.addButton( {
47196                 text: 'Stylesheets',
47197
47198                 listeners : {
47199                     click : function ()
47200                     {
47201                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47202                     }
47203                 }
47204             });
47205         }
47206         
47207         tb.addFill();
47208         tb.addButton( {
47209             text: 'Remove Tag',
47210     
47211             listeners : {
47212                 click : function ()
47213                 {
47214                     // remove
47215                     // undo does not work.
47216                      
47217                     var sn = tb.selectedNode;
47218                     
47219                     var pn = sn.parentNode;
47220                     
47221                     var stn =  sn.childNodes[0];
47222                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47223                     while (sn.childNodes.length) {
47224                         var node = sn.childNodes[0];
47225                         sn.removeChild(node);
47226                         //Roo.log(node);
47227                         pn.insertBefore(node, sn);
47228                         
47229                     }
47230                     pn.removeChild(sn);
47231                     var range = editorcore.createRange();
47232         
47233                     range.setStart(stn,0);
47234                     range.setEnd(en,0); //????
47235                     //range.selectNode(sel);
47236                     
47237                     
47238                     var selection = editorcore.getSelection();
47239                     selection.removeAllRanges();
47240                     selection.addRange(range);
47241                     
47242                     
47243                     
47244                     //_this.updateToolbar(null, null, pn);
47245                     _this.updateToolbar(null, null, null);
47246                     _this.footDisp.dom.innerHTML = ''; 
47247                 }
47248             }
47249             
47250                     
47251                 
47252             
47253         });
47254         
47255         
47256         tb.el.on('click', function(e){
47257             e.preventDefault(); // what does this do?
47258         });
47259         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47260         tb.el.hide();
47261         tb.name = nm;
47262         // dont need to disable them... as they will get hidden
47263         return tb;
47264          
47265         
47266     },
47267     buildFooter : function()
47268     {
47269         
47270         var fel = this.editor.wrap.createChild();
47271         this.footer = new Roo.Toolbar(fel);
47272         // toolbar has scrolly on left / right?
47273         var footDisp= new Roo.Toolbar.Fill();
47274         var _t = this;
47275         this.footer.add(
47276             {
47277                 text : '&lt;',
47278                 xtype: 'Button',
47279                 handler : function() {
47280                     _t.footDisp.scrollTo('left',0,true)
47281                 }
47282             }
47283         );
47284         this.footer.add( footDisp );
47285         this.footer.add( 
47286             {
47287                 text : '&gt;',
47288                 xtype: 'Button',
47289                 handler : function() {
47290                     // no animation..
47291                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47292                 }
47293             }
47294         );
47295         var fel = Roo.get(footDisp.el);
47296         fel.addClass('x-editor-context');
47297         this.footDispWrap = fel; 
47298         this.footDispWrap.overflow  = 'hidden';
47299         
47300         this.footDisp = fel.createChild();
47301         this.footDispWrap.on('click', this.onContextClick, this)
47302         
47303         
47304     },
47305     onContextClick : function (ev,dom)
47306     {
47307         ev.preventDefault();
47308         var  cn = dom.className;
47309         //Roo.log(cn);
47310         if (!cn.match(/x-ed-loc-/)) {
47311             return;
47312         }
47313         var n = cn.split('-').pop();
47314         var ans = this.footerEls;
47315         var sel = ans[n];
47316         
47317          // pick
47318         var range = this.editorcore.createRange();
47319         
47320         range.selectNodeContents(sel);
47321         //range.selectNode(sel);
47322         
47323         
47324         var selection = this.editorcore.getSelection();
47325         selection.removeAllRanges();
47326         selection.addRange(range);
47327         
47328         
47329         
47330         this.updateToolbar(null, null, sel);
47331         
47332         
47333     }
47334     
47335     
47336     
47337     
47338     
47339 });
47340
47341
47342
47343
47344
47345 /*
47346  * Based on:
47347  * Ext JS Library 1.1.1
47348  * Copyright(c) 2006-2007, Ext JS, LLC.
47349  *
47350  * Originally Released Under LGPL - original licence link has changed is not relivant.
47351  *
47352  * Fork - LGPL
47353  * <script type="text/javascript">
47354  */
47355  
47356 /**
47357  * @class Roo.form.BasicForm
47358  * @extends Roo.util.Observable
47359  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47360  * @constructor
47361  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47362  * @param {Object} config Configuration options
47363  */
47364 Roo.form.BasicForm = function(el, config){
47365     this.allItems = [];
47366     this.childForms = [];
47367     Roo.apply(this, config);
47368     /*
47369      * The Roo.form.Field items in this form.
47370      * @type MixedCollection
47371      */
47372      
47373      
47374     this.items = new Roo.util.MixedCollection(false, function(o){
47375         return o.id || (o.id = Roo.id());
47376     });
47377     this.addEvents({
47378         /**
47379          * @event beforeaction
47380          * Fires before any action is performed. Return false to cancel the action.
47381          * @param {Form} this
47382          * @param {Action} action The action to be performed
47383          */
47384         beforeaction: true,
47385         /**
47386          * @event actionfailed
47387          * Fires when an action fails.
47388          * @param {Form} this
47389          * @param {Action} action The action that failed
47390          */
47391         actionfailed : true,
47392         /**
47393          * @event actioncomplete
47394          * Fires when an action is completed.
47395          * @param {Form} this
47396          * @param {Action} action The action that completed
47397          */
47398         actioncomplete : true
47399     });
47400     if(el){
47401         this.initEl(el);
47402     }
47403     Roo.form.BasicForm.superclass.constructor.call(this);
47404     
47405     Roo.form.BasicForm.popover.apply();
47406 };
47407
47408 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47409     /**
47410      * @cfg {String} method
47411      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47412      */
47413     /**
47414      * @cfg {DataReader} reader
47415      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47416      * This is optional as there is built-in support for processing JSON.
47417      */
47418     /**
47419      * @cfg {DataReader} errorReader
47420      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47421      * This is completely optional as there is built-in support for processing JSON.
47422      */
47423     /**
47424      * @cfg {String} url
47425      * The URL to use for form actions if one isn't supplied in the action options.
47426      */
47427     /**
47428      * @cfg {Boolean} fileUpload
47429      * Set to true if this form is a file upload.
47430      */
47431      
47432     /**
47433      * @cfg {Object} baseParams
47434      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47435      */
47436      /**
47437      
47438     /**
47439      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47440      */
47441     timeout: 30,
47442
47443     // private
47444     activeAction : null,
47445
47446     /**
47447      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47448      * or setValues() data instead of when the form was first created.
47449      */
47450     trackResetOnLoad : false,
47451     
47452     
47453     /**
47454      * childForms - used for multi-tab forms
47455      * @type {Array}
47456      */
47457     childForms : false,
47458     
47459     /**
47460      * allItems - full list of fields.
47461      * @type {Array}
47462      */
47463     allItems : false,
47464     
47465     /**
47466      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47467      * element by passing it or its id or mask the form itself by passing in true.
47468      * @type Mixed
47469      */
47470     waitMsgTarget : false,
47471     
47472     /**
47473      * @type Boolean
47474      */
47475     disableMask : false,
47476     
47477     /**
47478      * @cfg {Boolean} errorMask (true|false) default false
47479      */
47480     errorMask : false,
47481     
47482     /**
47483      * @cfg {Number} maskOffset Default 100
47484      */
47485     maskOffset : 100,
47486
47487     // private
47488     initEl : function(el){
47489         this.el = Roo.get(el);
47490         this.id = this.el.id || Roo.id();
47491         this.el.on('submit', this.onSubmit, this);
47492         this.el.addClass('x-form');
47493     },
47494
47495     // private
47496     onSubmit : function(e){
47497         e.stopEvent();
47498     },
47499
47500     /**
47501      * Returns true if client-side validation on the form is successful.
47502      * @return Boolean
47503      */
47504     isValid : function(){
47505         var valid = true;
47506         var target = false;
47507         this.items.each(function(f){
47508             if(f.validate()){
47509                 return;
47510             }
47511             
47512             valid = false;
47513                 
47514             if(!target && f.el.isVisible(true)){
47515                 target = f;
47516             }
47517         });
47518         
47519         if(this.errorMask && !valid){
47520             Roo.form.BasicForm.popover.mask(this, target);
47521         }
47522         
47523         return valid;
47524     },
47525
47526     /**
47527      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47528      * @return Boolean
47529      */
47530     isDirty : function(){
47531         var dirty = false;
47532         this.items.each(function(f){
47533            if(f.isDirty()){
47534                dirty = true;
47535                return false;
47536            }
47537         });
47538         return dirty;
47539     },
47540     
47541     /**
47542      * Returns true if any fields in this form have changed since their original load. (New version)
47543      * @return Boolean
47544      */
47545     
47546     hasChanged : function()
47547     {
47548         var dirty = false;
47549         this.items.each(function(f){
47550            if(f.hasChanged()){
47551                dirty = true;
47552                return false;
47553            }
47554         });
47555         return dirty;
47556         
47557     },
47558     /**
47559      * Resets all hasChanged to 'false' -
47560      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47561      * So hasChanged storage is only to be used for this purpose
47562      * @return Boolean
47563      */
47564     resetHasChanged : function()
47565     {
47566         this.items.each(function(f){
47567            f.resetHasChanged();
47568         });
47569         
47570     },
47571     
47572     
47573     /**
47574      * Performs a predefined action (submit or load) or custom actions you define on this form.
47575      * @param {String} actionName The name of the action type
47576      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47577      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47578      * accept other config options):
47579      * <pre>
47580 Property          Type             Description
47581 ----------------  ---------------  ----------------------------------------------------------------------------------
47582 url               String           The url for the action (defaults to the form's url)
47583 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47584 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47585 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47586                                    validate the form on the client (defaults to false)
47587      * </pre>
47588      * @return {BasicForm} this
47589      */
47590     doAction : function(action, options){
47591         if(typeof action == 'string'){
47592             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47593         }
47594         if(this.fireEvent('beforeaction', this, action) !== false){
47595             this.beforeAction(action);
47596             action.run.defer(100, action);
47597         }
47598         return this;
47599     },
47600
47601     /**
47602      * Shortcut to do a submit action.
47603      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47604      * @return {BasicForm} this
47605      */
47606     submit : function(options){
47607         this.doAction('submit', options);
47608         return this;
47609     },
47610
47611     /**
47612      * Shortcut to do a load action.
47613      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47614      * @return {BasicForm} this
47615      */
47616     load : function(options){
47617         this.doAction('load', options);
47618         return this;
47619     },
47620
47621     /**
47622      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47623      * @param {Record} record The record to edit
47624      * @return {BasicForm} this
47625      */
47626     updateRecord : function(record){
47627         record.beginEdit();
47628         var fs = record.fields;
47629         fs.each(function(f){
47630             var field = this.findField(f.name);
47631             if(field){
47632                 record.set(f.name, field.getValue());
47633             }
47634         }, this);
47635         record.endEdit();
47636         return this;
47637     },
47638
47639     /**
47640      * Loads an Roo.data.Record into this form.
47641      * @param {Record} record The record to load
47642      * @return {BasicForm} this
47643      */
47644     loadRecord : function(record){
47645         this.setValues(record.data);
47646         return this;
47647     },
47648
47649     // private
47650     beforeAction : function(action){
47651         var o = action.options;
47652         
47653         if(!this.disableMask) {
47654             if(this.waitMsgTarget === true){
47655                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47656             }else if(this.waitMsgTarget){
47657                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47658                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47659             }else {
47660                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47661             }
47662         }
47663         
47664          
47665     },
47666
47667     // private
47668     afterAction : function(action, success){
47669         this.activeAction = null;
47670         var o = action.options;
47671         
47672         if(!this.disableMask) {
47673             if(this.waitMsgTarget === true){
47674                 this.el.unmask();
47675             }else if(this.waitMsgTarget){
47676                 this.waitMsgTarget.unmask();
47677             }else{
47678                 Roo.MessageBox.updateProgress(1);
47679                 Roo.MessageBox.hide();
47680             }
47681         }
47682         
47683         if(success){
47684             if(o.reset){
47685                 this.reset();
47686             }
47687             Roo.callback(o.success, o.scope, [this, action]);
47688             this.fireEvent('actioncomplete', this, action);
47689             
47690         }else{
47691             
47692             // failure condition..
47693             // we have a scenario where updates need confirming.
47694             // eg. if a locking scenario exists..
47695             // we look for { errors : { needs_confirm : true }} in the response.
47696             if (
47697                 (typeof(action.result) != 'undefined')  &&
47698                 (typeof(action.result.errors) != 'undefined')  &&
47699                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47700            ){
47701                 var _t = this;
47702                 Roo.MessageBox.confirm(
47703                     "Change requires confirmation",
47704                     action.result.errorMsg,
47705                     function(r) {
47706                         if (r != 'yes') {
47707                             return;
47708                         }
47709                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47710                     }
47711                     
47712                 );
47713                 
47714                 
47715                 
47716                 return;
47717             }
47718             
47719             Roo.callback(o.failure, o.scope, [this, action]);
47720             // show an error message if no failed handler is set..
47721             if (!this.hasListener('actionfailed')) {
47722                 Roo.MessageBox.alert("Error",
47723                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47724                         action.result.errorMsg :
47725                         "Saving Failed, please check your entries or try again"
47726                 );
47727             }
47728             
47729             this.fireEvent('actionfailed', this, action);
47730         }
47731         
47732     },
47733
47734     /**
47735      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47736      * @param {String} id The value to search for
47737      * @return Field
47738      */
47739     findField : function(id){
47740         var field = this.items.get(id);
47741         if(!field){
47742             this.items.each(function(f){
47743                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47744                     field = f;
47745                     return false;
47746                 }
47747             });
47748         }
47749         return field || null;
47750     },
47751
47752     /**
47753      * Add a secondary form to this one, 
47754      * Used to provide tabbed forms. One form is primary, with hidden values 
47755      * which mirror the elements from the other forms.
47756      * 
47757      * @param {Roo.form.Form} form to add.
47758      * 
47759      */
47760     addForm : function(form)
47761     {
47762        
47763         if (this.childForms.indexOf(form) > -1) {
47764             // already added..
47765             return;
47766         }
47767         this.childForms.push(form);
47768         var n = '';
47769         Roo.each(form.allItems, function (fe) {
47770             
47771             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47772             if (this.findField(n)) { // already added..
47773                 return;
47774             }
47775             var add = new Roo.form.Hidden({
47776                 name : n
47777             });
47778             add.render(this.el);
47779             
47780             this.add( add );
47781         }, this);
47782         
47783     },
47784     /**
47785      * Mark fields in this form invalid in bulk.
47786      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47787      * @return {BasicForm} this
47788      */
47789     markInvalid : function(errors){
47790         if(errors instanceof Array){
47791             for(var i = 0, len = errors.length; i < len; i++){
47792                 var fieldError = errors[i];
47793                 var f = this.findField(fieldError.id);
47794                 if(f){
47795                     f.markInvalid(fieldError.msg);
47796                 }
47797             }
47798         }else{
47799             var field, id;
47800             for(id in errors){
47801                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
47802                     field.markInvalid(errors[id]);
47803                 }
47804             }
47805         }
47806         Roo.each(this.childForms || [], function (f) {
47807             f.markInvalid(errors);
47808         });
47809         
47810         return this;
47811     },
47812
47813     /**
47814      * Set values for fields in this form in bulk.
47815      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
47816      * @return {BasicForm} this
47817      */
47818     setValues : function(values){
47819         if(values instanceof Array){ // array of objects
47820             for(var i = 0, len = values.length; i < len; i++){
47821                 var v = values[i];
47822                 var f = this.findField(v.id);
47823                 if(f){
47824                     f.setValue(v.value);
47825                     if(this.trackResetOnLoad){
47826                         f.originalValue = f.getValue();
47827                     }
47828                 }
47829             }
47830         }else{ // object hash
47831             var field, id;
47832             for(id in values){
47833                 if(typeof values[id] != 'function' && (field = this.findField(id))){
47834                     
47835                     if (field.setFromData && 
47836                         field.valueField && 
47837                         field.displayField &&
47838                         // combos' with local stores can 
47839                         // be queried via setValue()
47840                         // to set their value..
47841                         (field.store && !field.store.isLocal)
47842                         ) {
47843                         // it's a combo
47844                         var sd = { };
47845                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
47846                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
47847                         field.setFromData(sd);
47848                         
47849                     } else {
47850                         field.setValue(values[id]);
47851                     }
47852                     
47853                     
47854                     if(this.trackResetOnLoad){
47855                         field.originalValue = field.getValue();
47856                     }
47857                 }
47858             }
47859         }
47860         this.resetHasChanged();
47861         
47862         
47863         Roo.each(this.childForms || [], function (f) {
47864             f.setValues(values);
47865             f.resetHasChanged();
47866         });
47867                 
47868         return this;
47869     },
47870  
47871     /**
47872      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
47873      * they are returned as an array.
47874      * @param {Boolean} asString
47875      * @return {Object}
47876      */
47877     getValues : function(asString){
47878         if (this.childForms) {
47879             // copy values from the child forms
47880             Roo.each(this.childForms, function (f) {
47881                 this.setValues(f.getValues());
47882             }, this);
47883         }
47884         
47885         // use formdata
47886         if (typeof(FormData) != 'undefined' && asString !== true) {
47887             // this relies on a 'recent' version of chrome apparently...
47888             try {
47889                 var fd = (new FormData(this.el.dom)).entries();
47890                 var ret = {};
47891                 var ent = fd.next();
47892                 while (!ent.done) {
47893                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
47894                     ent = fd.next();
47895                 };
47896                 return ret;
47897             } catch(e) {
47898                 
47899             }
47900             
47901         }
47902         
47903         
47904         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
47905         if(asString === true){
47906             return fs;
47907         }
47908         return Roo.urlDecode(fs);
47909     },
47910     
47911     /**
47912      * Returns the fields in this form as an object with key/value pairs. 
47913      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
47914      * @return {Object}
47915      */
47916     getFieldValues : function(with_hidden)
47917     {
47918         if (this.childForms) {
47919             // copy values from the child forms
47920             // should this call getFieldValues - probably not as we do not currently copy
47921             // hidden fields when we generate..
47922             Roo.each(this.childForms, function (f) {
47923                 this.setValues(f.getValues());
47924             }, this);
47925         }
47926         
47927         var ret = {};
47928         this.items.each(function(f){
47929             if (!f.getName()) {
47930                 return;
47931             }
47932             var v = f.getValue();
47933             if (f.inputType =='radio') {
47934                 if (typeof(ret[f.getName()]) == 'undefined') {
47935                     ret[f.getName()] = ''; // empty..
47936                 }
47937                 
47938                 if (!f.el.dom.checked) {
47939                     return;
47940                     
47941                 }
47942                 v = f.el.dom.value;
47943                 
47944             }
47945             
47946             // not sure if this supported any more..
47947             if ((typeof(v) == 'object') && f.getRawValue) {
47948                 v = f.getRawValue() ; // dates..
47949             }
47950             // combo boxes where name != hiddenName...
47951             if (f.name != f.getName()) {
47952                 ret[f.name] = f.getRawValue();
47953             }
47954             ret[f.getName()] = v;
47955         });
47956         
47957         return ret;
47958     },
47959
47960     /**
47961      * Clears all invalid messages in this form.
47962      * @return {BasicForm} this
47963      */
47964     clearInvalid : function(){
47965         this.items.each(function(f){
47966            f.clearInvalid();
47967         });
47968         
47969         Roo.each(this.childForms || [], function (f) {
47970             f.clearInvalid();
47971         });
47972         
47973         
47974         return this;
47975     },
47976
47977     /**
47978      * Resets this form.
47979      * @return {BasicForm} this
47980      */
47981     reset : function(){
47982         this.items.each(function(f){
47983             f.reset();
47984         });
47985         
47986         Roo.each(this.childForms || [], function (f) {
47987             f.reset();
47988         });
47989         this.resetHasChanged();
47990         
47991         return this;
47992     },
47993
47994     /**
47995      * Add Roo.form components to this form.
47996      * @param {Field} field1
47997      * @param {Field} field2 (optional)
47998      * @param {Field} etc (optional)
47999      * @return {BasicForm} this
48000      */
48001     add : function(){
48002         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48003         return this;
48004     },
48005
48006
48007     /**
48008      * Removes a field from the items collection (does NOT remove its markup).
48009      * @param {Field} field
48010      * @return {BasicForm} this
48011      */
48012     remove : function(field){
48013         this.items.remove(field);
48014         return this;
48015     },
48016
48017     /**
48018      * Looks at the fields in this form, checks them for an id attribute,
48019      * and calls applyTo on the existing dom element with that id.
48020      * @return {BasicForm} this
48021      */
48022     render : function(){
48023         this.items.each(function(f){
48024             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48025                 f.applyTo(f.id);
48026             }
48027         });
48028         return this;
48029     },
48030
48031     /**
48032      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48033      * @param {Object} values
48034      * @return {BasicForm} this
48035      */
48036     applyToFields : function(o){
48037         this.items.each(function(f){
48038            Roo.apply(f, o);
48039         });
48040         return this;
48041     },
48042
48043     /**
48044      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48045      * @param {Object} values
48046      * @return {BasicForm} this
48047      */
48048     applyIfToFields : function(o){
48049         this.items.each(function(f){
48050            Roo.applyIf(f, o);
48051         });
48052         return this;
48053     }
48054 });
48055
48056 // back compat
48057 Roo.BasicForm = Roo.form.BasicForm;
48058
48059 Roo.apply(Roo.form.BasicForm, {
48060     
48061     popover : {
48062         
48063         padding : 5,
48064         
48065         isApplied : false,
48066         
48067         isMasked : false,
48068         
48069         form : false,
48070         
48071         target : false,
48072         
48073         intervalID : false,
48074         
48075         maskEl : false,
48076         
48077         apply : function()
48078         {
48079             if(this.isApplied){
48080                 return;
48081             }
48082             
48083             this.maskEl = {
48084                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48085                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48086                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48087                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48088             };
48089             
48090             this.maskEl.top.enableDisplayMode("block");
48091             this.maskEl.left.enableDisplayMode("block");
48092             this.maskEl.bottom.enableDisplayMode("block");
48093             this.maskEl.right.enableDisplayMode("block");
48094             
48095             Roo.get(document.body).on('click', function(){
48096                 this.unmask();
48097             }, this);
48098             
48099             Roo.get(document.body).on('touchstart', function(){
48100                 this.unmask();
48101             }, this);
48102             
48103             this.isApplied = true
48104         },
48105         
48106         mask : function(form, target)
48107         {
48108             this.form = form;
48109             
48110             this.target = target;
48111             
48112             if(!this.form.errorMask || !target.el){
48113                 return;
48114             }
48115             
48116             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48117             
48118             var ot = this.target.el.calcOffsetsTo(scrollable);
48119             
48120             var scrollTo = ot[1] - this.form.maskOffset;
48121             
48122             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48123             
48124             scrollable.scrollTo('top', scrollTo);
48125             
48126             var el = this.target.wrap || this.target.el;
48127             
48128             var box = el.getBox();
48129             
48130             this.maskEl.top.setStyle('position', 'absolute');
48131             this.maskEl.top.setStyle('z-index', 10000);
48132             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48133             this.maskEl.top.setLeft(0);
48134             this.maskEl.top.setTop(0);
48135             this.maskEl.top.show();
48136             
48137             this.maskEl.left.setStyle('position', 'absolute');
48138             this.maskEl.left.setStyle('z-index', 10000);
48139             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48140             this.maskEl.left.setLeft(0);
48141             this.maskEl.left.setTop(box.y - this.padding);
48142             this.maskEl.left.show();
48143
48144             this.maskEl.bottom.setStyle('position', 'absolute');
48145             this.maskEl.bottom.setStyle('z-index', 10000);
48146             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48147             this.maskEl.bottom.setLeft(0);
48148             this.maskEl.bottom.setTop(box.bottom + this.padding);
48149             this.maskEl.bottom.show();
48150
48151             this.maskEl.right.setStyle('position', 'absolute');
48152             this.maskEl.right.setStyle('z-index', 10000);
48153             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48154             this.maskEl.right.setLeft(box.right + this.padding);
48155             this.maskEl.right.setTop(box.y - this.padding);
48156             this.maskEl.right.show();
48157
48158             this.intervalID = window.setInterval(function() {
48159                 Roo.form.BasicForm.popover.unmask();
48160             }, 10000);
48161
48162             window.onwheel = function(){ return false;};
48163             
48164             (function(){ this.isMasked = true; }).defer(500, this);
48165             
48166         },
48167         
48168         unmask : function()
48169         {
48170             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48171                 return;
48172             }
48173             
48174             this.maskEl.top.setStyle('position', 'absolute');
48175             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48176             this.maskEl.top.hide();
48177
48178             this.maskEl.left.setStyle('position', 'absolute');
48179             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48180             this.maskEl.left.hide();
48181
48182             this.maskEl.bottom.setStyle('position', 'absolute');
48183             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48184             this.maskEl.bottom.hide();
48185
48186             this.maskEl.right.setStyle('position', 'absolute');
48187             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48188             this.maskEl.right.hide();
48189             
48190             window.onwheel = function(){ return true;};
48191             
48192             if(this.intervalID){
48193                 window.clearInterval(this.intervalID);
48194                 this.intervalID = false;
48195             }
48196             
48197             this.isMasked = false;
48198             
48199         }
48200         
48201     }
48202     
48203 });/*
48204  * Based on:
48205  * Ext JS Library 1.1.1
48206  * Copyright(c) 2006-2007, Ext JS, LLC.
48207  *
48208  * Originally Released Under LGPL - original licence link has changed is not relivant.
48209  *
48210  * Fork - LGPL
48211  * <script type="text/javascript">
48212  */
48213
48214 /**
48215  * @class Roo.form.Form
48216  * @extends Roo.form.BasicForm
48217  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48218  * @constructor
48219  * @param {Object} config Configuration options
48220  */
48221 Roo.form.Form = function(config){
48222     var xitems =  [];
48223     if (config.items) {
48224         xitems = config.items;
48225         delete config.items;
48226     }
48227    
48228     
48229     Roo.form.Form.superclass.constructor.call(this, null, config);
48230     this.url = this.url || this.action;
48231     if(!this.root){
48232         this.root = new Roo.form.Layout(Roo.applyIf({
48233             id: Roo.id()
48234         }, config));
48235     }
48236     this.active = this.root;
48237     /**
48238      * Array of all the buttons that have been added to this form via {@link addButton}
48239      * @type Array
48240      */
48241     this.buttons = [];
48242     this.allItems = [];
48243     this.addEvents({
48244         /**
48245          * @event clientvalidation
48246          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48247          * @param {Form} this
48248          * @param {Boolean} valid true if the form has passed client-side validation
48249          */
48250         clientvalidation: true,
48251         /**
48252          * @event rendered
48253          * Fires when the form is rendered
48254          * @param {Roo.form.Form} form
48255          */
48256         rendered : true
48257     });
48258     
48259     if (this.progressUrl) {
48260             // push a hidden field onto the list of fields..
48261             this.addxtype( {
48262                     xns: Roo.form, 
48263                     xtype : 'Hidden', 
48264                     name : 'UPLOAD_IDENTIFIER' 
48265             });
48266         }
48267         
48268     
48269     Roo.each(xitems, this.addxtype, this);
48270     
48271 };
48272
48273 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48274     /**
48275      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48276      */
48277     /**
48278      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48279      */
48280     /**
48281      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48282      */
48283     buttonAlign:'center',
48284
48285     /**
48286      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48287      */
48288     minButtonWidth:75,
48289
48290     /**
48291      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48292      * This property cascades to child containers if not set.
48293      */
48294     labelAlign:'left',
48295
48296     /**
48297      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48298      * fires a looping event with that state. This is required to bind buttons to the valid
48299      * state using the config value formBind:true on the button.
48300      */
48301     monitorValid : false,
48302
48303     /**
48304      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48305      */
48306     monitorPoll : 200,
48307     
48308     /**
48309      * @cfg {String} progressUrl - Url to return progress data 
48310      */
48311     
48312     progressUrl : false,
48313     /**
48314      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48315      * sending a formdata with extra parameters - eg uploaded elements.
48316      */
48317     
48318     formData : false,
48319     
48320     /**
48321      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48322      * fields are added and the column is closed. If no fields are passed the column remains open
48323      * until end() is called.
48324      * @param {Object} config The config to pass to the column
48325      * @param {Field} field1 (optional)
48326      * @param {Field} field2 (optional)
48327      * @param {Field} etc (optional)
48328      * @return Column The column container object
48329      */
48330     column : function(c){
48331         var col = new Roo.form.Column(c);
48332         this.start(col);
48333         if(arguments.length > 1){ // duplicate code required because of Opera
48334             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48335             this.end();
48336         }
48337         return col;
48338     },
48339
48340     /**
48341      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48342      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48343      * until end() is called.
48344      * @param {Object} config The config to pass to the fieldset
48345      * @param {Field} field1 (optional)
48346      * @param {Field} field2 (optional)
48347      * @param {Field} etc (optional)
48348      * @return FieldSet The fieldset container object
48349      */
48350     fieldset : function(c){
48351         var fs = new Roo.form.FieldSet(c);
48352         this.start(fs);
48353         if(arguments.length > 1){ // duplicate code required because of Opera
48354             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48355             this.end();
48356         }
48357         return fs;
48358     },
48359
48360     /**
48361      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48362      * fields are added and the container is closed. If no fields are passed the container remains open
48363      * until end() is called.
48364      * @param {Object} config The config to pass to the Layout
48365      * @param {Field} field1 (optional)
48366      * @param {Field} field2 (optional)
48367      * @param {Field} etc (optional)
48368      * @return Layout The container object
48369      */
48370     container : function(c){
48371         var l = new Roo.form.Layout(c);
48372         this.start(l);
48373         if(arguments.length > 1){ // duplicate code required because of Opera
48374             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48375             this.end();
48376         }
48377         return l;
48378     },
48379
48380     /**
48381      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48382      * @param {Object} container A Roo.form.Layout or subclass of Layout
48383      * @return {Form} this
48384      */
48385     start : function(c){
48386         // cascade label info
48387         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48388         this.active.stack.push(c);
48389         c.ownerCt = this.active;
48390         this.active = c;
48391         return this;
48392     },
48393
48394     /**
48395      * Closes the current open container
48396      * @return {Form} this
48397      */
48398     end : function(){
48399         if(this.active == this.root){
48400             return this;
48401         }
48402         this.active = this.active.ownerCt;
48403         return this;
48404     },
48405
48406     /**
48407      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48408      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48409      * as the label of the field.
48410      * @param {Field} field1
48411      * @param {Field} field2 (optional)
48412      * @param {Field} etc. (optional)
48413      * @return {Form} this
48414      */
48415     add : function(){
48416         this.active.stack.push.apply(this.active.stack, arguments);
48417         this.allItems.push.apply(this.allItems,arguments);
48418         var r = [];
48419         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48420             if(a[i].isFormField){
48421                 r.push(a[i]);
48422             }
48423         }
48424         if(r.length > 0){
48425             Roo.form.Form.superclass.add.apply(this, r);
48426         }
48427         return this;
48428     },
48429     
48430
48431     
48432     
48433     
48434      /**
48435      * Find any element that has been added to a form, using it's ID or name
48436      * This can include framesets, columns etc. along with regular fields..
48437      * @param {String} id - id or name to find.
48438      
48439      * @return {Element} e - or false if nothing found.
48440      */
48441     findbyId : function(id)
48442     {
48443         var ret = false;
48444         if (!id) {
48445             return ret;
48446         }
48447         Roo.each(this.allItems, function(f){
48448             if (f.id == id || f.name == id ){
48449                 ret = f;
48450                 return false;
48451             }
48452         });
48453         return ret;
48454     },
48455
48456     
48457     
48458     /**
48459      * Render this form into the passed container. This should only be called once!
48460      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48461      * @return {Form} this
48462      */
48463     render : function(ct)
48464     {
48465         
48466         
48467         
48468         ct = Roo.get(ct);
48469         var o = this.autoCreate || {
48470             tag: 'form',
48471             method : this.method || 'POST',
48472             id : this.id || Roo.id()
48473         };
48474         this.initEl(ct.createChild(o));
48475
48476         this.root.render(this.el);
48477         
48478        
48479              
48480         this.items.each(function(f){
48481             f.render('x-form-el-'+f.id);
48482         });
48483
48484         if(this.buttons.length > 0){
48485             // tables are required to maintain order and for correct IE layout
48486             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48487                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48488                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48489             }}, null, true);
48490             var tr = tb.getElementsByTagName('tr')[0];
48491             for(var i = 0, len = this.buttons.length; i < len; i++) {
48492                 var b = this.buttons[i];
48493                 var td = document.createElement('td');
48494                 td.className = 'x-form-btn-td';
48495                 b.render(tr.appendChild(td));
48496             }
48497         }
48498         if(this.monitorValid){ // initialize after render
48499             this.startMonitoring();
48500         }
48501         this.fireEvent('rendered', this);
48502         return this;
48503     },
48504
48505     /**
48506      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48507      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48508      * object or a valid Roo.DomHelper element config
48509      * @param {Function} handler The function called when the button is clicked
48510      * @param {Object} scope (optional) The scope of the handler function
48511      * @return {Roo.Button}
48512      */
48513     addButton : function(config, handler, scope){
48514         var bc = {
48515             handler: handler,
48516             scope: scope,
48517             minWidth: this.minButtonWidth,
48518             hideParent:true
48519         };
48520         if(typeof config == "string"){
48521             bc.text = config;
48522         }else{
48523             Roo.apply(bc, config);
48524         }
48525         var btn = new Roo.Button(null, bc);
48526         this.buttons.push(btn);
48527         return btn;
48528     },
48529
48530      /**
48531      * Adds a series of form elements (using the xtype property as the factory method.
48532      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48533      * @param {Object} config 
48534      */
48535     
48536     addxtype : function()
48537     {
48538         var ar = Array.prototype.slice.call(arguments, 0);
48539         var ret = false;
48540         for(var i = 0; i < ar.length; i++) {
48541             if (!ar[i]) {
48542                 continue; // skip -- if this happends something invalid got sent, we 
48543                 // should ignore it, as basically that interface element will not show up
48544                 // and that should be pretty obvious!!
48545             }
48546             
48547             if (Roo.form[ar[i].xtype]) {
48548                 ar[i].form = this;
48549                 var fe = Roo.factory(ar[i], Roo.form);
48550                 if (!ret) {
48551                     ret = fe;
48552                 }
48553                 fe.form = this;
48554                 if (fe.store) {
48555                     fe.store.form = this;
48556                 }
48557                 if (fe.isLayout) {  
48558                          
48559                     this.start(fe);
48560                     this.allItems.push(fe);
48561                     if (fe.items && fe.addxtype) {
48562                         fe.addxtype.apply(fe, fe.items);
48563                         delete fe.items;
48564                     }
48565                      this.end();
48566                     continue;
48567                 }
48568                 
48569                 
48570                  
48571                 this.add(fe);
48572               //  console.log('adding ' + ar[i].xtype);
48573             }
48574             if (ar[i].xtype == 'Button') {  
48575                 //console.log('adding button');
48576                 //console.log(ar[i]);
48577                 this.addButton(ar[i]);
48578                 this.allItems.push(fe);
48579                 continue;
48580             }
48581             
48582             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48583                 alert('end is not supported on xtype any more, use items');
48584             //    this.end();
48585             //    //console.log('adding end');
48586             }
48587             
48588         }
48589         return ret;
48590     },
48591     
48592     /**
48593      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48594      * option "monitorValid"
48595      */
48596     startMonitoring : function(){
48597         if(!this.bound){
48598             this.bound = true;
48599             Roo.TaskMgr.start({
48600                 run : this.bindHandler,
48601                 interval : this.monitorPoll || 200,
48602                 scope: this
48603             });
48604         }
48605     },
48606
48607     /**
48608      * Stops monitoring of the valid state of this form
48609      */
48610     stopMonitoring : function(){
48611         this.bound = false;
48612     },
48613
48614     // private
48615     bindHandler : function(){
48616         if(!this.bound){
48617             return false; // stops binding
48618         }
48619         var valid = true;
48620         this.items.each(function(f){
48621             if(!f.isValid(true)){
48622                 valid = false;
48623                 return false;
48624             }
48625         });
48626         for(var i = 0, len = this.buttons.length; i < len; i++){
48627             var btn = this.buttons[i];
48628             if(btn.formBind === true && btn.disabled === valid){
48629                 btn.setDisabled(!valid);
48630             }
48631         }
48632         this.fireEvent('clientvalidation', this, valid);
48633     }
48634     
48635     
48636     
48637     
48638     
48639     
48640     
48641     
48642 });
48643
48644
48645 // back compat
48646 Roo.Form = Roo.form.Form;
48647 /*
48648  * Based on:
48649  * Ext JS Library 1.1.1
48650  * Copyright(c) 2006-2007, Ext JS, LLC.
48651  *
48652  * Originally Released Under LGPL - original licence link has changed is not relivant.
48653  *
48654  * Fork - LGPL
48655  * <script type="text/javascript">
48656  */
48657
48658 // as we use this in bootstrap.
48659 Roo.namespace('Roo.form');
48660  /**
48661  * @class Roo.form.Action
48662  * Internal Class used to handle form actions
48663  * @constructor
48664  * @param {Roo.form.BasicForm} el The form element or its id
48665  * @param {Object} config Configuration options
48666  */
48667
48668  
48669  
48670 // define the action interface
48671 Roo.form.Action = function(form, options){
48672     this.form = form;
48673     this.options = options || {};
48674 };
48675 /**
48676  * Client Validation Failed
48677  * @const 
48678  */
48679 Roo.form.Action.CLIENT_INVALID = 'client';
48680 /**
48681  * Server Validation Failed
48682  * @const 
48683  */
48684 Roo.form.Action.SERVER_INVALID = 'server';
48685  /**
48686  * Connect to Server Failed
48687  * @const 
48688  */
48689 Roo.form.Action.CONNECT_FAILURE = 'connect';
48690 /**
48691  * Reading Data from Server Failed
48692  * @const 
48693  */
48694 Roo.form.Action.LOAD_FAILURE = 'load';
48695
48696 Roo.form.Action.prototype = {
48697     type : 'default',
48698     failureType : undefined,
48699     response : undefined,
48700     result : undefined,
48701
48702     // interface method
48703     run : function(options){
48704
48705     },
48706
48707     // interface method
48708     success : function(response){
48709
48710     },
48711
48712     // interface method
48713     handleResponse : function(response){
48714
48715     },
48716
48717     // default connection failure
48718     failure : function(response){
48719         
48720         this.response = response;
48721         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48722         this.form.afterAction(this, false);
48723     },
48724
48725     processResponse : function(response){
48726         this.response = response;
48727         if(!response.responseText){
48728             return true;
48729         }
48730         this.result = this.handleResponse(response);
48731         return this.result;
48732     },
48733
48734     // utility functions used internally
48735     getUrl : function(appendParams){
48736         var url = this.options.url || this.form.url || this.form.el.dom.action;
48737         if(appendParams){
48738             var p = this.getParams();
48739             if(p){
48740                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48741             }
48742         }
48743         return url;
48744     },
48745
48746     getMethod : function(){
48747         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48748     },
48749
48750     getParams : function(){
48751         var bp = this.form.baseParams;
48752         var p = this.options.params;
48753         if(p){
48754             if(typeof p == "object"){
48755                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48756             }else if(typeof p == 'string' && bp){
48757                 p += '&' + Roo.urlEncode(bp);
48758             }
48759         }else if(bp){
48760             p = Roo.urlEncode(bp);
48761         }
48762         return p;
48763     },
48764
48765     createCallback : function(){
48766         return {
48767             success: this.success,
48768             failure: this.failure,
48769             scope: this,
48770             timeout: (this.form.timeout*1000),
48771             upload: this.form.fileUpload ? this.success : undefined
48772         };
48773     }
48774 };
48775
48776 Roo.form.Action.Submit = function(form, options){
48777     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
48778 };
48779
48780 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
48781     type : 'submit',
48782
48783     haveProgress : false,
48784     uploadComplete : false,
48785     
48786     // uploadProgress indicator.
48787     uploadProgress : function()
48788     {
48789         if (!this.form.progressUrl) {
48790             return;
48791         }
48792         
48793         if (!this.haveProgress) {
48794             Roo.MessageBox.progress("Uploading", "Uploading");
48795         }
48796         if (this.uploadComplete) {
48797            Roo.MessageBox.hide();
48798            return;
48799         }
48800         
48801         this.haveProgress = true;
48802    
48803         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
48804         
48805         var c = new Roo.data.Connection();
48806         c.request({
48807             url : this.form.progressUrl,
48808             params: {
48809                 id : uid
48810             },
48811             method: 'GET',
48812             success : function(req){
48813                //console.log(data);
48814                 var rdata = false;
48815                 var edata;
48816                 try  {
48817                    rdata = Roo.decode(req.responseText)
48818                 } catch (e) {
48819                     Roo.log("Invalid data from server..");
48820                     Roo.log(edata);
48821                     return;
48822                 }
48823                 if (!rdata || !rdata.success) {
48824                     Roo.log(rdata);
48825                     Roo.MessageBox.alert(Roo.encode(rdata));
48826                     return;
48827                 }
48828                 var data = rdata.data;
48829                 
48830                 if (this.uploadComplete) {
48831                    Roo.MessageBox.hide();
48832                    return;
48833                 }
48834                    
48835                 if (data){
48836                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
48837                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
48838                     );
48839                 }
48840                 this.uploadProgress.defer(2000,this);
48841             },
48842        
48843             failure: function(data) {
48844                 Roo.log('progress url failed ');
48845                 Roo.log(data);
48846             },
48847             scope : this
48848         });
48849            
48850     },
48851     
48852     
48853     run : function()
48854     {
48855         // run get Values on the form, so it syncs any secondary forms.
48856         this.form.getValues();
48857         
48858         var o = this.options;
48859         var method = this.getMethod();
48860         var isPost = method == 'POST';
48861         if(o.clientValidation === false || this.form.isValid()){
48862             
48863             if (this.form.progressUrl) {
48864                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
48865                     (new Date() * 1) + '' + Math.random());
48866                     
48867             } 
48868             
48869             
48870             Roo.Ajax.request(Roo.apply(this.createCallback(), {
48871                 form:this.form.el.dom,
48872                 url:this.getUrl(!isPost),
48873                 method: method,
48874                 params:isPost ? this.getParams() : null,
48875                 isUpload: this.form.fileUpload,
48876                 formData : this.form.formData
48877             }));
48878             
48879             this.uploadProgress();
48880
48881         }else if (o.clientValidation !== false){ // client validation failed
48882             this.failureType = Roo.form.Action.CLIENT_INVALID;
48883             this.form.afterAction(this, false);
48884         }
48885     },
48886
48887     success : function(response)
48888     {
48889         this.uploadComplete= true;
48890         if (this.haveProgress) {
48891             Roo.MessageBox.hide();
48892         }
48893         
48894         
48895         var result = this.processResponse(response);
48896         if(result === true || result.success){
48897             this.form.afterAction(this, true);
48898             return;
48899         }
48900         if(result.errors){
48901             this.form.markInvalid(result.errors);
48902             this.failureType = Roo.form.Action.SERVER_INVALID;
48903         }
48904         this.form.afterAction(this, false);
48905     },
48906     failure : function(response)
48907     {
48908         this.uploadComplete= true;
48909         if (this.haveProgress) {
48910             Roo.MessageBox.hide();
48911         }
48912         
48913         this.response = response;
48914         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48915         this.form.afterAction(this, false);
48916     },
48917     
48918     handleResponse : function(response){
48919         if(this.form.errorReader){
48920             var rs = this.form.errorReader.read(response);
48921             var errors = [];
48922             if(rs.records){
48923                 for(var i = 0, len = rs.records.length; i < len; i++) {
48924                     var r = rs.records[i];
48925                     errors[i] = r.data;
48926                 }
48927             }
48928             if(errors.length < 1){
48929                 errors = null;
48930             }
48931             return {
48932                 success : rs.success,
48933                 errors : errors
48934             };
48935         }
48936         var ret = false;
48937         try {
48938             ret = Roo.decode(response.responseText);
48939         } catch (e) {
48940             ret = {
48941                 success: false,
48942                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
48943                 errors : []
48944             };
48945         }
48946         return ret;
48947         
48948     }
48949 });
48950
48951
48952 Roo.form.Action.Load = function(form, options){
48953     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
48954     this.reader = this.form.reader;
48955 };
48956
48957 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
48958     type : 'load',
48959
48960     run : function(){
48961         
48962         Roo.Ajax.request(Roo.apply(
48963                 this.createCallback(), {
48964                     method:this.getMethod(),
48965                     url:this.getUrl(false),
48966                     params:this.getParams()
48967         }));
48968     },
48969
48970     success : function(response){
48971         
48972         var result = this.processResponse(response);
48973         if(result === true || !result.success || !result.data){
48974             this.failureType = Roo.form.Action.LOAD_FAILURE;
48975             this.form.afterAction(this, false);
48976             return;
48977         }
48978         this.form.clearInvalid();
48979         this.form.setValues(result.data);
48980         this.form.afterAction(this, true);
48981     },
48982
48983     handleResponse : function(response){
48984         if(this.form.reader){
48985             var rs = this.form.reader.read(response);
48986             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
48987             return {
48988                 success : rs.success,
48989                 data : data
48990             };
48991         }
48992         return Roo.decode(response.responseText);
48993     }
48994 });
48995
48996 Roo.form.Action.ACTION_TYPES = {
48997     'load' : Roo.form.Action.Load,
48998     'submit' : Roo.form.Action.Submit
48999 };/*
49000  * Based on:
49001  * Ext JS Library 1.1.1
49002  * Copyright(c) 2006-2007, Ext JS, LLC.
49003  *
49004  * Originally Released Under LGPL - original licence link has changed is not relivant.
49005  *
49006  * Fork - LGPL
49007  * <script type="text/javascript">
49008  */
49009  
49010 /**
49011  * @class Roo.form.Layout
49012  * @extends Roo.Component
49013  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49014  * @constructor
49015  * @param {Object} config Configuration options
49016  */
49017 Roo.form.Layout = function(config){
49018     var xitems = [];
49019     if (config.items) {
49020         xitems = config.items;
49021         delete config.items;
49022     }
49023     Roo.form.Layout.superclass.constructor.call(this, config);
49024     this.stack = [];
49025     Roo.each(xitems, this.addxtype, this);
49026      
49027 };
49028
49029 Roo.extend(Roo.form.Layout, Roo.Component, {
49030     /**
49031      * @cfg {String/Object} autoCreate
49032      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49033      */
49034     /**
49035      * @cfg {String/Object/Function} style
49036      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49037      * a function which returns such a specification.
49038      */
49039     /**
49040      * @cfg {String} labelAlign
49041      * Valid values are "left," "top" and "right" (defaults to "left")
49042      */
49043     /**
49044      * @cfg {Number} labelWidth
49045      * Fixed width in pixels of all field labels (defaults to undefined)
49046      */
49047     /**
49048      * @cfg {Boolean} clear
49049      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49050      */
49051     clear : true,
49052     /**
49053      * @cfg {String} labelSeparator
49054      * The separator to use after field labels (defaults to ':')
49055      */
49056     labelSeparator : ':',
49057     /**
49058      * @cfg {Boolean} hideLabels
49059      * True to suppress the display of field labels in this layout (defaults to false)
49060      */
49061     hideLabels : false,
49062
49063     // private
49064     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49065     
49066     isLayout : true,
49067     
49068     // private
49069     onRender : function(ct, position){
49070         if(this.el){ // from markup
49071             this.el = Roo.get(this.el);
49072         }else {  // generate
49073             var cfg = this.getAutoCreate();
49074             this.el = ct.createChild(cfg, position);
49075         }
49076         if(this.style){
49077             this.el.applyStyles(this.style);
49078         }
49079         if(this.labelAlign){
49080             this.el.addClass('x-form-label-'+this.labelAlign);
49081         }
49082         if(this.hideLabels){
49083             this.labelStyle = "display:none";
49084             this.elementStyle = "padding-left:0;";
49085         }else{
49086             if(typeof this.labelWidth == 'number'){
49087                 this.labelStyle = "width:"+this.labelWidth+"px;";
49088                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49089             }
49090             if(this.labelAlign == 'top'){
49091                 this.labelStyle = "width:auto;";
49092                 this.elementStyle = "padding-left:0;";
49093             }
49094         }
49095         var stack = this.stack;
49096         var slen = stack.length;
49097         if(slen > 0){
49098             if(!this.fieldTpl){
49099                 var t = new Roo.Template(
49100                     '<div class="x-form-item {5}">',
49101                         '<label for="{0}" style="{2}">{1}{4}</label>',
49102                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49103                         '</div>',
49104                     '</div><div class="x-form-clear-left"></div>'
49105                 );
49106                 t.disableFormats = true;
49107                 t.compile();
49108                 Roo.form.Layout.prototype.fieldTpl = t;
49109             }
49110             for(var i = 0; i < slen; i++) {
49111                 if(stack[i].isFormField){
49112                     this.renderField(stack[i]);
49113                 }else{
49114                     this.renderComponent(stack[i]);
49115                 }
49116             }
49117         }
49118         if(this.clear){
49119             this.el.createChild({cls:'x-form-clear'});
49120         }
49121     },
49122
49123     // private
49124     renderField : function(f){
49125         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49126                f.id, //0
49127                f.fieldLabel, //1
49128                f.labelStyle||this.labelStyle||'', //2
49129                this.elementStyle||'', //3
49130                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49131                f.itemCls||this.itemCls||''  //5
49132        ], true).getPrevSibling());
49133     },
49134
49135     // private
49136     renderComponent : function(c){
49137         c.render(c.isLayout ? this.el : this.el.createChild());    
49138     },
49139     /**
49140      * Adds a object form elements (using the xtype property as the factory method.)
49141      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49142      * @param {Object} config 
49143      */
49144     addxtype : function(o)
49145     {
49146         // create the lement.
49147         o.form = this.form;
49148         var fe = Roo.factory(o, Roo.form);
49149         this.form.allItems.push(fe);
49150         this.stack.push(fe);
49151         
49152         if (fe.isFormField) {
49153             this.form.items.add(fe);
49154         }
49155          
49156         return fe;
49157     }
49158 });
49159
49160 /**
49161  * @class Roo.form.Column
49162  * @extends Roo.form.Layout
49163  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49164  * @constructor
49165  * @param {Object} config Configuration options
49166  */
49167 Roo.form.Column = function(config){
49168     Roo.form.Column.superclass.constructor.call(this, config);
49169 };
49170
49171 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49172     /**
49173      * @cfg {Number/String} width
49174      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49175      */
49176     /**
49177      * @cfg {String/Object} autoCreate
49178      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49179      */
49180
49181     // private
49182     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49183
49184     // private
49185     onRender : function(ct, position){
49186         Roo.form.Column.superclass.onRender.call(this, ct, position);
49187         if(this.width){
49188             this.el.setWidth(this.width);
49189         }
49190     }
49191 });
49192
49193
49194 /**
49195  * @class Roo.form.Row
49196  * @extends Roo.form.Layout
49197  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49198  * @constructor
49199  * @param {Object} config Configuration options
49200  */
49201
49202  
49203 Roo.form.Row = function(config){
49204     Roo.form.Row.superclass.constructor.call(this, config);
49205 };
49206  
49207 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49208       /**
49209      * @cfg {Number/String} width
49210      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49211      */
49212     /**
49213      * @cfg {Number/String} height
49214      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49215      */
49216     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49217     
49218     padWidth : 20,
49219     // private
49220     onRender : function(ct, position){
49221         //console.log('row render');
49222         if(!this.rowTpl){
49223             var t = new Roo.Template(
49224                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49225                     '<label for="{0}" style="{2}">{1}{4}</label>',
49226                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49227                     '</div>',
49228                 '</div>'
49229             );
49230             t.disableFormats = true;
49231             t.compile();
49232             Roo.form.Layout.prototype.rowTpl = t;
49233         }
49234         this.fieldTpl = this.rowTpl;
49235         
49236         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49237         var labelWidth = 100;
49238         
49239         if ((this.labelAlign != 'top')) {
49240             if (typeof this.labelWidth == 'number') {
49241                 labelWidth = this.labelWidth
49242             }
49243             this.padWidth =  20 + labelWidth;
49244             
49245         }
49246         
49247         Roo.form.Column.superclass.onRender.call(this, ct, position);
49248         if(this.width){
49249             this.el.setWidth(this.width);
49250         }
49251         if(this.height){
49252             this.el.setHeight(this.height);
49253         }
49254     },
49255     
49256     // private
49257     renderField : function(f){
49258         f.fieldEl = this.fieldTpl.append(this.el, [
49259                f.id, f.fieldLabel,
49260                f.labelStyle||this.labelStyle||'',
49261                this.elementStyle||'',
49262                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49263                f.itemCls||this.itemCls||'',
49264                f.width ? f.width + this.padWidth : 160 + this.padWidth
49265        ],true);
49266     }
49267 });
49268  
49269
49270 /**
49271  * @class Roo.form.FieldSet
49272  * @extends Roo.form.Layout
49273  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49274  * @constructor
49275  * @param {Object} config Configuration options
49276  */
49277 Roo.form.FieldSet = function(config){
49278     Roo.form.FieldSet.superclass.constructor.call(this, config);
49279 };
49280
49281 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49282     /**
49283      * @cfg {String} legend
49284      * The text to display as the legend for the FieldSet (defaults to '')
49285      */
49286     /**
49287      * @cfg {String/Object} autoCreate
49288      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49289      */
49290
49291     // private
49292     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49293
49294     // private
49295     onRender : function(ct, position){
49296         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49297         if(this.legend){
49298             this.setLegend(this.legend);
49299         }
49300     },
49301
49302     // private
49303     setLegend : function(text){
49304         if(this.rendered){
49305             this.el.child('legend').update(text);
49306         }
49307     }
49308 });/*
49309  * Based on:
49310  * Ext JS Library 1.1.1
49311  * Copyright(c) 2006-2007, Ext JS, LLC.
49312  *
49313  * Originally Released Under LGPL - original licence link has changed is not relivant.
49314  *
49315  * Fork - LGPL
49316  * <script type="text/javascript">
49317  */
49318 /**
49319  * @class Roo.form.VTypes
49320  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49321  * @singleton
49322  */
49323 Roo.form.VTypes = function(){
49324     // closure these in so they are only created once.
49325     var alpha = /^[a-zA-Z_]+$/;
49326     var alphanum = /^[a-zA-Z0-9_]+$/;
49327     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49328     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49329
49330     // All these messages and functions are configurable
49331     return {
49332         /**
49333          * The function used to validate email addresses
49334          * @param {String} value The email address
49335          */
49336         'email' : function(v){
49337             return email.test(v);
49338         },
49339         /**
49340          * The error text to display when the email validation function returns false
49341          * @type String
49342          */
49343         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49344         /**
49345          * The keystroke filter mask to be applied on email input
49346          * @type RegExp
49347          */
49348         'emailMask' : /[a-z0-9_\.\-@]/i,
49349
49350         /**
49351          * The function used to validate URLs
49352          * @param {String} value The URL
49353          */
49354         'url' : function(v){
49355             return url.test(v);
49356         },
49357         /**
49358          * The error text to display when the url validation function returns false
49359          * @type String
49360          */
49361         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49362         
49363         /**
49364          * The function used to validate alpha values
49365          * @param {String} value The value
49366          */
49367         'alpha' : function(v){
49368             return alpha.test(v);
49369         },
49370         /**
49371          * The error text to display when the alpha validation function returns false
49372          * @type String
49373          */
49374         'alphaText' : 'This field should only contain letters and _',
49375         /**
49376          * The keystroke filter mask to be applied on alpha input
49377          * @type RegExp
49378          */
49379         'alphaMask' : /[a-z_]/i,
49380
49381         /**
49382          * The function used to validate alphanumeric values
49383          * @param {String} value The value
49384          */
49385         'alphanum' : function(v){
49386             return alphanum.test(v);
49387         },
49388         /**
49389          * The error text to display when the alphanumeric validation function returns false
49390          * @type String
49391          */
49392         'alphanumText' : 'This field should only contain letters, numbers and _',
49393         /**
49394          * The keystroke filter mask to be applied on alphanumeric input
49395          * @type RegExp
49396          */
49397         'alphanumMask' : /[a-z0-9_]/i
49398     };
49399 }();//<script type="text/javascript">
49400
49401 /**
49402  * @class Roo.form.FCKeditor
49403  * @extends Roo.form.TextArea
49404  * Wrapper around the FCKEditor http://www.fckeditor.net
49405  * @constructor
49406  * Creates a new FCKeditor
49407  * @param {Object} config Configuration options
49408  */
49409 Roo.form.FCKeditor = function(config){
49410     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49411     this.addEvents({
49412          /**
49413          * @event editorinit
49414          * Fired when the editor is initialized - you can add extra handlers here..
49415          * @param {FCKeditor} this
49416          * @param {Object} the FCK object.
49417          */
49418         editorinit : true
49419     });
49420     
49421     
49422 };
49423 Roo.form.FCKeditor.editors = { };
49424 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49425 {
49426     //defaultAutoCreate : {
49427     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49428     //},
49429     // private
49430     /**
49431      * @cfg {Object} fck options - see fck manual for details.
49432      */
49433     fckconfig : false,
49434     
49435     /**
49436      * @cfg {Object} fck toolbar set (Basic or Default)
49437      */
49438     toolbarSet : 'Basic',
49439     /**
49440      * @cfg {Object} fck BasePath
49441      */ 
49442     basePath : '/fckeditor/',
49443     
49444     
49445     frame : false,
49446     
49447     value : '',
49448     
49449    
49450     onRender : function(ct, position)
49451     {
49452         if(!this.el){
49453             this.defaultAutoCreate = {
49454                 tag: "textarea",
49455                 style:"width:300px;height:60px;",
49456                 autocomplete: "new-password"
49457             };
49458         }
49459         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49460         /*
49461         if(this.grow){
49462             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49463             if(this.preventScrollbars){
49464                 this.el.setStyle("overflow", "hidden");
49465             }
49466             this.el.setHeight(this.growMin);
49467         }
49468         */
49469         //console.log('onrender' + this.getId() );
49470         Roo.form.FCKeditor.editors[this.getId()] = this;
49471          
49472
49473         this.replaceTextarea() ;
49474         
49475     },
49476     
49477     getEditor : function() {
49478         return this.fckEditor;
49479     },
49480     /**
49481      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49482      * @param {Mixed} value The value to set
49483      */
49484     
49485     
49486     setValue : function(value)
49487     {
49488         //console.log('setValue: ' + value);
49489         
49490         if(typeof(value) == 'undefined') { // not sure why this is happending...
49491             return;
49492         }
49493         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49494         
49495         //if(!this.el || !this.getEditor()) {
49496         //    this.value = value;
49497             //this.setValue.defer(100,this,[value]);    
49498         //    return;
49499         //} 
49500         
49501         if(!this.getEditor()) {
49502             return;
49503         }
49504         
49505         this.getEditor().SetData(value);
49506         
49507         //
49508
49509     },
49510
49511     /**
49512      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49513      * @return {Mixed} value The field value
49514      */
49515     getValue : function()
49516     {
49517         
49518         if (this.frame && this.frame.dom.style.display == 'none') {
49519             return Roo.form.FCKeditor.superclass.getValue.call(this);
49520         }
49521         
49522         if(!this.el || !this.getEditor()) {
49523            
49524            // this.getValue.defer(100,this); 
49525             return this.value;
49526         }
49527        
49528         
49529         var value=this.getEditor().GetData();
49530         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49531         return Roo.form.FCKeditor.superclass.getValue.call(this);
49532         
49533
49534     },
49535
49536     /**
49537      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49538      * @return {Mixed} value The field value
49539      */
49540     getRawValue : function()
49541     {
49542         if (this.frame && this.frame.dom.style.display == 'none') {
49543             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49544         }
49545         
49546         if(!this.el || !this.getEditor()) {
49547             //this.getRawValue.defer(100,this); 
49548             return this.value;
49549             return;
49550         }
49551         
49552         
49553         
49554         var value=this.getEditor().GetData();
49555         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49556         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49557          
49558     },
49559     
49560     setSize : function(w,h) {
49561         
49562         
49563         
49564         //if (this.frame && this.frame.dom.style.display == 'none') {
49565         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49566         //    return;
49567         //}
49568         //if(!this.el || !this.getEditor()) {
49569         //    this.setSize.defer(100,this, [w,h]); 
49570         //    return;
49571         //}
49572         
49573         
49574         
49575         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49576         
49577         this.frame.dom.setAttribute('width', w);
49578         this.frame.dom.setAttribute('height', h);
49579         this.frame.setSize(w,h);
49580         
49581     },
49582     
49583     toggleSourceEdit : function(value) {
49584         
49585       
49586          
49587         this.el.dom.style.display = value ? '' : 'none';
49588         this.frame.dom.style.display = value ?  'none' : '';
49589         
49590     },
49591     
49592     
49593     focus: function(tag)
49594     {
49595         if (this.frame.dom.style.display == 'none') {
49596             return Roo.form.FCKeditor.superclass.focus.call(this);
49597         }
49598         if(!this.el || !this.getEditor()) {
49599             this.focus.defer(100,this, [tag]); 
49600             return;
49601         }
49602         
49603         
49604         
49605         
49606         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49607         this.getEditor().Focus();
49608         if (tgs.length) {
49609             if (!this.getEditor().Selection.GetSelection()) {
49610                 this.focus.defer(100,this, [tag]); 
49611                 return;
49612             }
49613             
49614             
49615             var r = this.getEditor().EditorDocument.createRange();
49616             r.setStart(tgs[0],0);
49617             r.setEnd(tgs[0],0);
49618             this.getEditor().Selection.GetSelection().removeAllRanges();
49619             this.getEditor().Selection.GetSelection().addRange(r);
49620             this.getEditor().Focus();
49621         }
49622         
49623     },
49624     
49625     
49626     
49627     replaceTextarea : function()
49628     {
49629         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49630             return ;
49631         }
49632         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49633         //{
49634             // We must check the elements firstly using the Id and then the name.
49635         var oTextarea = document.getElementById( this.getId() );
49636         
49637         var colElementsByName = document.getElementsByName( this.getId() ) ;
49638          
49639         oTextarea.style.display = 'none' ;
49640
49641         if ( oTextarea.tabIndex ) {            
49642             this.TabIndex = oTextarea.tabIndex ;
49643         }
49644         
49645         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49646         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49647         this.frame = Roo.get(this.getId() + '___Frame')
49648     },
49649     
49650     _getConfigHtml : function()
49651     {
49652         var sConfig = '' ;
49653
49654         for ( var o in this.fckconfig ) {
49655             sConfig += sConfig.length > 0  ? '&amp;' : '';
49656             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49657         }
49658
49659         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49660     },
49661     
49662     
49663     _getIFrameHtml : function()
49664     {
49665         var sFile = 'fckeditor.html' ;
49666         /* no idea what this is about..
49667         try
49668         {
49669             if ( (/fcksource=true/i).test( window.top.location.search ) )
49670                 sFile = 'fckeditor.original.html' ;
49671         }
49672         catch (e) { 
49673         */
49674
49675         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49676         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49677         
49678         
49679         var html = '<iframe id="' + this.getId() +
49680             '___Frame" src="' + sLink +
49681             '" width="' + this.width +
49682             '" height="' + this.height + '"' +
49683             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49684             ' frameborder="0" scrolling="no"></iframe>' ;
49685
49686         return html ;
49687     },
49688     
49689     _insertHtmlBefore : function( html, element )
49690     {
49691         if ( element.insertAdjacentHTML )       {
49692             // IE
49693             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49694         } else { // Gecko
49695             var oRange = document.createRange() ;
49696             oRange.setStartBefore( element ) ;
49697             var oFragment = oRange.createContextualFragment( html );
49698             element.parentNode.insertBefore( oFragment, element ) ;
49699         }
49700     }
49701     
49702     
49703   
49704     
49705     
49706     
49707     
49708
49709 });
49710
49711 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49712
49713 function FCKeditor_OnComplete(editorInstance){
49714     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49715     f.fckEditor = editorInstance;
49716     //console.log("loaded");
49717     f.fireEvent('editorinit', f, editorInstance);
49718
49719   
49720
49721  
49722
49723
49724
49725
49726
49727
49728
49729
49730
49731
49732
49733
49734
49735
49736
49737 //<script type="text/javascript">
49738 /**
49739  * @class Roo.form.GridField
49740  * @extends Roo.form.Field
49741  * Embed a grid (or editable grid into a form)
49742  * STATUS ALPHA
49743  * 
49744  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49745  * it needs 
49746  * xgrid.store = Roo.data.Store
49747  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49748  * xgrid.store.reader = Roo.data.JsonReader 
49749  * 
49750  * 
49751  * @constructor
49752  * Creates a new GridField
49753  * @param {Object} config Configuration options
49754  */
49755 Roo.form.GridField = function(config){
49756     Roo.form.GridField.superclass.constructor.call(this, config);
49757      
49758 };
49759
49760 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49761     /**
49762      * @cfg {Number} width  - used to restrict width of grid..
49763      */
49764     width : 100,
49765     /**
49766      * @cfg {Number} height - used to restrict height of grid..
49767      */
49768     height : 50,
49769      /**
49770      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
49771          * 
49772          *}
49773      */
49774     xgrid : false, 
49775     /**
49776      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49777      * {tag: "input", type: "checkbox", autocomplete: "off"})
49778      */
49779    // defaultAutoCreate : { tag: 'div' },
49780     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
49781     /**
49782      * @cfg {String} addTitle Text to include for adding a title.
49783      */
49784     addTitle : false,
49785     //
49786     onResize : function(){
49787         Roo.form.Field.superclass.onResize.apply(this, arguments);
49788     },
49789
49790     initEvents : function(){
49791         // Roo.form.Checkbox.superclass.initEvents.call(this);
49792         // has no events...
49793        
49794     },
49795
49796
49797     getResizeEl : function(){
49798         return this.wrap;
49799     },
49800
49801     getPositionEl : function(){
49802         return this.wrap;
49803     },
49804
49805     // private
49806     onRender : function(ct, position){
49807         
49808         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
49809         var style = this.style;
49810         delete this.style;
49811         
49812         Roo.form.GridField.superclass.onRender.call(this, ct, position);
49813         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
49814         this.viewEl = this.wrap.createChild({ tag: 'div' });
49815         if (style) {
49816             this.viewEl.applyStyles(style);
49817         }
49818         if (this.width) {
49819             this.viewEl.setWidth(this.width);
49820         }
49821         if (this.height) {
49822             this.viewEl.setHeight(this.height);
49823         }
49824         //if(this.inputValue !== undefined){
49825         //this.setValue(this.value);
49826         
49827         
49828         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
49829         
49830         
49831         this.grid.render();
49832         this.grid.getDataSource().on('remove', this.refreshValue, this);
49833         this.grid.getDataSource().on('update', this.refreshValue, this);
49834         this.grid.on('afteredit', this.refreshValue, this);
49835  
49836     },
49837      
49838     
49839     /**
49840      * Sets the value of the item. 
49841      * @param {String} either an object  or a string..
49842      */
49843     setValue : function(v){
49844         //this.value = v;
49845         v = v || []; // empty set..
49846         // this does not seem smart - it really only affects memoryproxy grids..
49847         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
49848             var ds = this.grid.getDataSource();
49849             // assumes a json reader..
49850             var data = {}
49851             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
49852             ds.loadData( data);
49853         }
49854         // clear selection so it does not get stale.
49855         if (this.grid.sm) { 
49856             this.grid.sm.clearSelections();
49857         }
49858         
49859         Roo.form.GridField.superclass.setValue.call(this, v);
49860         this.refreshValue();
49861         // should load data in the grid really....
49862     },
49863     
49864     // private
49865     refreshValue: function() {
49866          var val = [];
49867         this.grid.getDataSource().each(function(r) {
49868             val.push(r.data);
49869         });
49870         this.el.dom.value = Roo.encode(val);
49871     }
49872     
49873      
49874     
49875     
49876 });/*
49877  * Based on:
49878  * Ext JS Library 1.1.1
49879  * Copyright(c) 2006-2007, Ext JS, LLC.
49880  *
49881  * Originally Released Under LGPL - original licence link has changed is not relivant.
49882  *
49883  * Fork - LGPL
49884  * <script type="text/javascript">
49885  */
49886 /**
49887  * @class Roo.form.DisplayField
49888  * @extends Roo.form.Field
49889  * A generic Field to display non-editable data.
49890  * @cfg {Boolean} closable (true|false) default false
49891  * @constructor
49892  * Creates a new Display Field item.
49893  * @param {Object} config Configuration options
49894  */
49895 Roo.form.DisplayField = function(config){
49896     Roo.form.DisplayField.superclass.constructor.call(this, config);
49897     
49898     this.addEvents({
49899         /**
49900          * @event close
49901          * Fires after the click the close btn
49902              * @param {Roo.form.DisplayField} this
49903              */
49904         close : true
49905     });
49906 };
49907
49908 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
49909     inputType:      'hidden',
49910     allowBlank:     true,
49911     readOnly:         true,
49912     
49913  
49914     /**
49915      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
49916      */
49917     focusClass : undefined,
49918     /**
49919      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
49920      */
49921     fieldClass: 'x-form-field',
49922     
49923      /**
49924      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
49925      */
49926     valueRenderer: undefined,
49927     
49928     width: 100,
49929     /**
49930      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49931      * {tag: "input", type: "checkbox", autocomplete: "off"})
49932      */
49933      
49934  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
49935  
49936     closable : false,
49937     
49938     onResize : function(){
49939         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
49940         
49941     },
49942
49943     initEvents : function(){
49944         // Roo.form.Checkbox.superclass.initEvents.call(this);
49945         // has no events...
49946         
49947         if(this.closable){
49948             this.closeEl.on('click', this.onClose, this);
49949         }
49950        
49951     },
49952
49953
49954     getResizeEl : function(){
49955         return this.wrap;
49956     },
49957
49958     getPositionEl : function(){
49959         return this.wrap;
49960     },
49961
49962     // private
49963     onRender : function(ct, position){
49964         
49965         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
49966         //if(this.inputValue !== undefined){
49967         this.wrap = this.el.wrap();
49968         
49969         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
49970         
49971         if(this.closable){
49972             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
49973         }
49974         
49975         if (this.bodyStyle) {
49976             this.viewEl.applyStyles(this.bodyStyle);
49977         }
49978         //this.viewEl.setStyle('padding', '2px');
49979         
49980         this.setValue(this.value);
49981         
49982     },
49983 /*
49984     // private
49985     initValue : Roo.emptyFn,
49986
49987   */
49988
49989         // private
49990     onClick : function(){
49991         
49992     },
49993
49994     /**
49995      * Sets the checked state of the checkbox.
49996      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
49997      */
49998     setValue : function(v){
49999         this.value = v;
50000         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50001         // this might be called before we have a dom element..
50002         if (!this.viewEl) {
50003             return;
50004         }
50005         this.viewEl.dom.innerHTML = html;
50006         Roo.form.DisplayField.superclass.setValue.call(this, v);
50007
50008     },
50009     
50010     onClose : function(e)
50011     {
50012         e.preventDefault();
50013         
50014         this.fireEvent('close', this);
50015     }
50016 });/*
50017  * 
50018  * Licence- LGPL
50019  * 
50020  */
50021
50022 /**
50023  * @class Roo.form.DayPicker
50024  * @extends Roo.form.Field
50025  * A Day picker show [M] [T] [W] ....
50026  * @constructor
50027  * Creates a new Day Picker
50028  * @param {Object} config Configuration options
50029  */
50030 Roo.form.DayPicker= function(config){
50031     Roo.form.DayPicker.superclass.constructor.call(this, config);
50032      
50033 };
50034
50035 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50036     /**
50037      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50038      */
50039     focusClass : undefined,
50040     /**
50041      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50042      */
50043     fieldClass: "x-form-field",
50044    
50045     /**
50046      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50047      * {tag: "input", type: "checkbox", autocomplete: "off"})
50048      */
50049     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50050     
50051    
50052     actionMode : 'viewEl', 
50053     //
50054     // private
50055  
50056     inputType : 'hidden',
50057     
50058      
50059     inputElement: false, // real input element?
50060     basedOn: false, // ????
50061     
50062     isFormField: true, // not sure where this is needed!!!!
50063
50064     onResize : function(){
50065         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50066         if(!this.boxLabel){
50067             this.el.alignTo(this.wrap, 'c-c');
50068         }
50069     },
50070
50071     initEvents : function(){
50072         Roo.form.Checkbox.superclass.initEvents.call(this);
50073         this.el.on("click", this.onClick,  this);
50074         this.el.on("change", this.onClick,  this);
50075     },
50076
50077
50078     getResizeEl : function(){
50079         return this.wrap;
50080     },
50081
50082     getPositionEl : function(){
50083         return this.wrap;
50084     },
50085
50086     
50087     // private
50088     onRender : function(ct, position){
50089         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50090        
50091         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50092         
50093         var r1 = '<table><tr>';
50094         var r2 = '<tr class="x-form-daypick-icons">';
50095         for (var i=0; i < 7; i++) {
50096             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50097             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50098         }
50099         
50100         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50101         viewEl.select('img').on('click', this.onClick, this);
50102         this.viewEl = viewEl;   
50103         
50104         
50105         // this will not work on Chrome!!!
50106         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50107         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50108         
50109         
50110           
50111
50112     },
50113
50114     // private
50115     initValue : Roo.emptyFn,
50116
50117     /**
50118      * Returns the checked state of the checkbox.
50119      * @return {Boolean} True if checked, else false
50120      */
50121     getValue : function(){
50122         return this.el.dom.value;
50123         
50124     },
50125
50126         // private
50127     onClick : function(e){ 
50128         //this.setChecked(!this.checked);
50129         Roo.get(e.target).toggleClass('x-menu-item-checked');
50130         this.refreshValue();
50131         //if(this.el.dom.checked != this.checked){
50132         //    this.setValue(this.el.dom.checked);
50133        // }
50134     },
50135     
50136     // private
50137     refreshValue : function()
50138     {
50139         var val = '';
50140         this.viewEl.select('img',true).each(function(e,i,n)  {
50141             val += e.is(".x-menu-item-checked") ? String(n) : '';
50142         });
50143         this.setValue(val, true);
50144     },
50145
50146     /**
50147      * Sets the checked state of the checkbox.
50148      * On is always based on a string comparison between inputValue and the param.
50149      * @param {Boolean/String} value - the value to set 
50150      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50151      */
50152     setValue : function(v,suppressEvent){
50153         if (!this.el.dom) {
50154             return;
50155         }
50156         var old = this.el.dom.value ;
50157         this.el.dom.value = v;
50158         if (suppressEvent) {
50159             return ;
50160         }
50161          
50162         // update display..
50163         this.viewEl.select('img',true).each(function(e,i,n)  {
50164             
50165             var on = e.is(".x-menu-item-checked");
50166             var newv = v.indexOf(String(n)) > -1;
50167             if (on != newv) {
50168                 e.toggleClass('x-menu-item-checked');
50169             }
50170             
50171         });
50172         
50173         
50174         this.fireEvent('change', this, v, old);
50175         
50176         
50177     },
50178    
50179     // handle setting of hidden value by some other method!!?!?
50180     setFromHidden: function()
50181     {
50182         if(!this.el){
50183             return;
50184         }
50185         //console.log("SET FROM HIDDEN");
50186         //alert('setFrom hidden');
50187         this.setValue(this.el.dom.value);
50188     },
50189     
50190     onDestroy : function()
50191     {
50192         if(this.viewEl){
50193             Roo.get(this.viewEl).remove();
50194         }
50195          
50196         Roo.form.DayPicker.superclass.onDestroy.call(this);
50197     }
50198
50199 });/*
50200  * RooJS Library 1.1.1
50201  * Copyright(c) 2008-2011  Alan Knowles
50202  *
50203  * License - LGPL
50204  */
50205  
50206
50207 /**
50208  * @class Roo.form.ComboCheck
50209  * @extends Roo.form.ComboBox
50210  * A combobox for multiple select items.
50211  *
50212  * FIXME - could do with a reset button..
50213  * 
50214  * @constructor
50215  * Create a new ComboCheck
50216  * @param {Object} config Configuration options
50217  */
50218 Roo.form.ComboCheck = function(config){
50219     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50220     // should verify some data...
50221     // like
50222     // hiddenName = required..
50223     // displayField = required
50224     // valudField == required
50225     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50226     var _t = this;
50227     Roo.each(req, function(e) {
50228         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50229             throw "Roo.form.ComboCheck : missing value for: " + e;
50230         }
50231     });
50232     
50233     
50234 };
50235
50236 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50237      
50238      
50239     editable : false,
50240      
50241     selectedClass: 'x-menu-item-checked', 
50242     
50243     // private
50244     onRender : function(ct, position){
50245         var _t = this;
50246         
50247         
50248         
50249         if(!this.tpl){
50250             var cls = 'x-combo-list';
50251
50252             
50253             this.tpl =  new Roo.Template({
50254                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50255                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50256                    '<span>{' + this.displayField + '}</span>' +
50257                     '</div>' 
50258                 
50259             });
50260         }
50261  
50262         
50263         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50264         this.view.singleSelect = false;
50265         this.view.multiSelect = true;
50266         this.view.toggleSelect = true;
50267         this.pageTb.add(new Roo.Toolbar.Fill(), {
50268             
50269             text: 'Done',
50270             handler: function()
50271             {
50272                 _t.collapse();
50273             }
50274         });
50275     },
50276     
50277     onViewOver : function(e, t){
50278         // do nothing...
50279         return;
50280         
50281     },
50282     
50283     onViewClick : function(doFocus,index){
50284         return;
50285         
50286     },
50287     select: function () {
50288         //Roo.log("SELECT CALLED");
50289     },
50290      
50291     selectByValue : function(xv, scrollIntoView){
50292         var ar = this.getValueArray();
50293         var sels = [];
50294         
50295         Roo.each(ar, function(v) {
50296             if(v === undefined || v === null){
50297                 return;
50298             }
50299             var r = this.findRecord(this.valueField, v);
50300             if(r){
50301                 sels.push(this.store.indexOf(r))
50302                 
50303             }
50304         },this);
50305         this.view.select(sels);
50306         return false;
50307     },
50308     
50309     
50310     
50311     onSelect : function(record, index){
50312        // Roo.log("onselect Called");
50313        // this is only called by the clear button now..
50314         this.view.clearSelections();
50315         this.setValue('[]');
50316         if (this.value != this.valueBefore) {
50317             this.fireEvent('change', this, this.value, this.valueBefore);
50318             this.valueBefore = this.value;
50319         }
50320     },
50321     getValueArray : function()
50322     {
50323         var ar = [] ;
50324         
50325         try {
50326             //Roo.log(this.value);
50327             if (typeof(this.value) == 'undefined') {
50328                 return [];
50329             }
50330             var ar = Roo.decode(this.value);
50331             return  ar instanceof Array ? ar : []; //?? valid?
50332             
50333         } catch(e) {
50334             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50335             return [];
50336         }
50337          
50338     },
50339     expand : function ()
50340     {
50341         
50342         Roo.form.ComboCheck.superclass.expand.call(this);
50343         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50344         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50345         
50346
50347     },
50348     
50349     collapse : function(){
50350         Roo.form.ComboCheck.superclass.collapse.call(this);
50351         var sl = this.view.getSelectedIndexes();
50352         var st = this.store;
50353         var nv = [];
50354         var tv = [];
50355         var r;
50356         Roo.each(sl, function(i) {
50357             r = st.getAt(i);
50358             nv.push(r.get(this.valueField));
50359         },this);
50360         this.setValue(Roo.encode(nv));
50361         if (this.value != this.valueBefore) {
50362
50363             this.fireEvent('change', this, this.value, this.valueBefore);
50364             this.valueBefore = this.value;
50365         }
50366         
50367     },
50368     
50369     setValue : function(v){
50370         // Roo.log(v);
50371         this.value = v;
50372         
50373         var vals = this.getValueArray();
50374         var tv = [];
50375         Roo.each(vals, function(k) {
50376             var r = this.findRecord(this.valueField, k);
50377             if(r){
50378                 tv.push(r.data[this.displayField]);
50379             }else if(this.valueNotFoundText !== undefined){
50380                 tv.push( this.valueNotFoundText );
50381             }
50382         },this);
50383        // Roo.log(tv);
50384         
50385         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50386         this.hiddenField.value = v;
50387         this.value = v;
50388     }
50389     
50390 });/*
50391  * Based on:
50392  * Ext JS Library 1.1.1
50393  * Copyright(c) 2006-2007, Ext JS, LLC.
50394  *
50395  * Originally Released Under LGPL - original licence link has changed is not relivant.
50396  *
50397  * Fork - LGPL
50398  * <script type="text/javascript">
50399  */
50400  
50401 /**
50402  * @class Roo.form.Signature
50403  * @extends Roo.form.Field
50404  * Signature field.  
50405  * @constructor
50406  * 
50407  * @param {Object} config Configuration options
50408  */
50409
50410 Roo.form.Signature = function(config){
50411     Roo.form.Signature.superclass.constructor.call(this, config);
50412     
50413     this.addEvents({// not in used??
50414          /**
50415          * @event confirm
50416          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50417              * @param {Roo.form.Signature} combo This combo box
50418              */
50419         'confirm' : true,
50420         /**
50421          * @event reset
50422          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50423              * @param {Roo.form.ComboBox} combo This combo box
50424              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50425              */
50426         'reset' : true
50427     });
50428 };
50429
50430 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50431     /**
50432      * @cfg {Object} labels Label to use when rendering a form.
50433      * defaults to 
50434      * labels : { 
50435      *      clear : "Clear",
50436      *      confirm : "Confirm"
50437      *  }
50438      */
50439     labels : { 
50440         clear : "Clear",
50441         confirm : "Confirm"
50442     },
50443     /**
50444      * @cfg {Number} width The signature panel width (defaults to 300)
50445      */
50446     width: 300,
50447     /**
50448      * @cfg {Number} height The signature panel height (defaults to 100)
50449      */
50450     height : 100,
50451     /**
50452      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50453      */
50454     allowBlank : false,
50455     
50456     //private
50457     // {Object} signPanel The signature SVG panel element (defaults to {})
50458     signPanel : {},
50459     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50460     isMouseDown : false,
50461     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50462     isConfirmed : false,
50463     // {String} signatureTmp SVG mapping string (defaults to empty string)
50464     signatureTmp : '',
50465     
50466     
50467     defaultAutoCreate : { // modified by initCompnoent..
50468         tag: "input",
50469         type:"hidden"
50470     },
50471
50472     // private
50473     onRender : function(ct, position){
50474         
50475         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50476         
50477         this.wrap = this.el.wrap({
50478             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50479         });
50480         
50481         this.createToolbar(this);
50482         this.signPanel = this.wrap.createChild({
50483                 tag: 'div',
50484                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50485             }, this.el
50486         );
50487             
50488         this.svgID = Roo.id();
50489         this.svgEl = this.signPanel.createChild({
50490               xmlns : 'http://www.w3.org/2000/svg',
50491               tag : 'svg',
50492               id : this.svgID + "-svg",
50493               width: this.width,
50494               height: this.height,
50495               viewBox: '0 0 '+this.width+' '+this.height,
50496               cn : [
50497                 {
50498                     tag: "rect",
50499                     id: this.svgID + "-svg-r",
50500                     width: this.width,
50501                     height: this.height,
50502                     fill: "#ffa"
50503                 },
50504                 {
50505                     tag: "line",
50506                     id: this.svgID + "-svg-l",
50507                     x1: "0", // start
50508                     y1: (this.height*0.8), // start set the line in 80% of height
50509                     x2: this.width, // end
50510                     y2: (this.height*0.8), // end set the line in 80% of height
50511                     'stroke': "#666",
50512                     'stroke-width': "1",
50513                     'stroke-dasharray': "3",
50514                     'shape-rendering': "crispEdges",
50515                     'pointer-events': "none"
50516                 },
50517                 {
50518                     tag: "path",
50519                     id: this.svgID + "-svg-p",
50520                     'stroke': "navy",
50521                     'stroke-width': "3",
50522                     'fill': "none",
50523                     'pointer-events': 'none'
50524                 }
50525               ]
50526         });
50527         this.createSVG();
50528         this.svgBox = this.svgEl.dom.getScreenCTM();
50529     },
50530     createSVG : function(){ 
50531         var svg = this.signPanel;
50532         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50533         var t = this;
50534
50535         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50536         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50537         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50538         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50539         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50540         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50541         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50542         
50543     },
50544     isTouchEvent : function(e){
50545         return e.type.match(/^touch/);
50546     },
50547     getCoords : function (e) {
50548         var pt    = this.svgEl.dom.createSVGPoint();
50549         pt.x = e.clientX; 
50550         pt.y = e.clientY;
50551         if (this.isTouchEvent(e)) {
50552             pt.x =  e.targetTouches[0].clientX;
50553             pt.y = e.targetTouches[0].clientY;
50554         }
50555         var a = this.svgEl.dom.getScreenCTM();
50556         var b = a.inverse();
50557         var mx = pt.matrixTransform(b);
50558         return mx.x + ',' + mx.y;
50559     },
50560     //mouse event headler 
50561     down : function (e) {
50562         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50563         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50564         
50565         this.isMouseDown = true;
50566         
50567         e.preventDefault();
50568     },
50569     move : function (e) {
50570         if (this.isMouseDown) {
50571             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50572             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50573         }
50574         
50575         e.preventDefault();
50576     },
50577     up : function (e) {
50578         this.isMouseDown = false;
50579         var sp = this.signatureTmp.split(' ');
50580         
50581         if(sp.length > 1){
50582             if(!sp[sp.length-2].match(/^L/)){
50583                 sp.pop();
50584                 sp.pop();
50585                 sp.push("");
50586                 this.signatureTmp = sp.join(" ");
50587             }
50588         }
50589         if(this.getValue() != this.signatureTmp){
50590             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50591             this.isConfirmed = false;
50592         }
50593         e.preventDefault();
50594     },
50595     
50596     /**
50597      * Protected method that will not generally be called directly. It
50598      * is called when the editor creates its toolbar. Override this method if you need to
50599      * add custom toolbar buttons.
50600      * @param {HtmlEditor} editor
50601      */
50602     createToolbar : function(editor){
50603          function btn(id, toggle, handler){
50604             var xid = fid + '-'+ id ;
50605             return {
50606                 id : xid,
50607                 cmd : id,
50608                 cls : 'x-btn-icon x-edit-'+id,
50609                 enableToggle:toggle !== false,
50610                 scope: editor, // was editor...
50611                 handler:handler||editor.relayBtnCmd,
50612                 clickEvent:'mousedown',
50613                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50614                 tabIndex:-1
50615             };
50616         }
50617         
50618         
50619         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50620         this.tb = tb;
50621         this.tb.add(
50622            {
50623                 cls : ' x-signature-btn x-signature-'+id,
50624                 scope: editor, // was editor...
50625                 handler: this.reset,
50626                 clickEvent:'mousedown',
50627                 text: this.labels.clear
50628             },
50629             {
50630                  xtype : 'Fill',
50631                  xns: Roo.Toolbar
50632             }, 
50633             {
50634                 cls : '  x-signature-btn x-signature-'+id,
50635                 scope: editor, // was editor...
50636                 handler: this.confirmHandler,
50637                 clickEvent:'mousedown',
50638                 text: this.labels.confirm
50639             }
50640         );
50641     
50642     },
50643     //public
50644     /**
50645      * when user is clicked confirm then show this image.....
50646      * 
50647      * @return {String} Image Data URI
50648      */
50649     getImageDataURI : function(){
50650         var svg = this.svgEl.dom.parentNode.innerHTML;
50651         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50652         return src; 
50653     },
50654     /**
50655      * 
50656      * @return {Boolean} this.isConfirmed
50657      */
50658     getConfirmed : function(){
50659         return this.isConfirmed;
50660     },
50661     /**
50662      * 
50663      * @return {Number} this.width
50664      */
50665     getWidth : function(){
50666         return this.width;
50667     },
50668     /**
50669      * 
50670      * @return {Number} this.height
50671      */
50672     getHeight : function(){
50673         return this.height;
50674     },
50675     // private
50676     getSignature : function(){
50677         return this.signatureTmp;
50678     },
50679     // private
50680     reset : function(){
50681         this.signatureTmp = '';
50682         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50683         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50684         this.isConfirmed = false;
50685         Roo.form.Signature.superclass.reset.call(this);
50686     },
50687     setSignature : function(s){
50688         this.signatureTmp = s;
50689         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50690         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50691         this.setValue(s);
50692         this.isConfirmed = false;
50693         Roo.form.Signature.superclass.reset.call(this);
50694     }, 
50695     test : function(){
50696 //        Roo.log(this.signPanel.dom.contentWindow.up())
50697     },
50698     //private
50699     setConfirmed : function(){
50700         
50701         
50702         
50703 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50704     },
50705     // private
50706     confirmHandler : function(){
50707         if(!this.getSignature()){
50708             return;
50709         }
50710         
50711         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50712         this.setValue(this.getSignature());
50713         this.isConfirmed = true;
50714         
50715         this.fireEvent('confirm', this);
50716     },
50717     // private
50718     // Subclasses should provide the validation implementation by overriding this
50719     validateValue : function(value){
50720         if(this.allowBlank){
50721             return true;
50722         }
50723         
50724         if(this.isConfirmed){
50725             return true;
50726         }
50727         return false;
50728     }
50729 });/*
50730  * Based on:
50731  * Ext JS Library 1.1.1
50732  * Copyright(c) 2006-2007, Ext JS, LLC.
50733  *
50734  * Originally Released Under LGPL - original licence link has changed is not relivant.
50735  *
50736  * Fork - LGPL
50737  * <script type="text/javascript">
50738  */
50739  
50740
50741 /**
50742  * @class Roo.form.ComboBox
50743  * @extends Roo.form.TriggerField
50744  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50745  * @constructor
50746  * Create a new ComboBox.
50747  * @param {Object} config Configuration options
50748  */
50749 Roo.form.Select = function(config){
50750     Roo.form.Select.superclass.constructor.call(this, config);
50751      
50752 };
50753
50754 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50755     /**
50756      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50757      */
50758     /**
50759      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50760      * rendering into an Roo.Editor, defaults to false)
50761      */
50762     /**
50763      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50764      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
50765      */
50766     /**
50767      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
50768      */
50769     /**
50770      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
50771      * the dropdown list (defaults to undefined, with no header element)
50772      */
50773
50774      /**
50775      * @cfg {String/Roo.Template} tpl The template to use to render the output
50776      */
50777      
50778     // private
50779     defaultAutoCreate : {tag: "select"  },
50780     /**
50781      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
50782      */
50783     listWidth: undefined,
50784     /**
50785      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
50786      * mode = 'remote' or 'text' if mode = 'local')
50787      */
50788     displayField: undefined,
50789     /**
50790      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
50791      * mode = 'remote' or 'value' if mode = 'local'). 
50792      * Note: use of a valueField requires the user make a selection
50793      * in order for a value to be mapped.
50794      */
50795     valueField: undefined,
50796     
50797     
50798     /**
50799      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
50800      * field's data value (defaults to the underlying DOM element's name)
50801      */
50802     hiddenName: undefined,
50803     /**
50804      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
50805      */
50806     listClass: '',
50807     /**
50808      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
50809      */
50810     selectedClass: 'x-combo-selected',
50811     /**
50812      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
50813      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
50814      * which displays a downward arrow icon).
50815      */
50816     triggerClass : 'x-form-arrow-trigger',
50817     /**
50818      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
50819      */
50820     shadow:'sides',
50821     /**
50822      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
50823      * anchor positions (defaults to 'tl-bl')
50824      */
50825     listAlign: 'tl-bl?',
50826     /**
50827      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
50828      */
50829     maxHeight: 300,
50830     /**
50831      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
50832      * query specified by the allQuery config option (defaults to 'query')
50833      */
50834     triggerAction: 'query',
50835     /**
50836      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
50837      * (defaults to 4, does not apply if editable = false)
50838      */
50839     minChars : 4,
50840     /**
50841      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
50842      * delay (typeAheadDelay) if it matches a known value (defaults to false)
50843      */
50844     typeAhead: false,
50845     /**
50846      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
50847      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
50848      */
50849     queryDelay: 500,
50850     /**
50851      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
50852      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
50853      */
50854     pageSize: 0,
50855     /**
50856      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
50857      * when editable = true (defaults to false)
50858      */
50859     selectOnFocus:false,
50860     /**
50861      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
50862      */
50863     queryParam: 'query',
50864     /**
50865      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
50866      * when mode = 'remote' (defaults to 'Loading...')
50867      */
50868     loadingText: 'Loading...',
50869     /**
50870      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
50871      */
50872     resizable: false,
50873     /**
50874      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
50875      */
50876     handleHeight : 8,
50877     /**
50878      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
50879      * traditional select (defaults to true)
50880      */
50881     editable: true,
50882     /**
50883      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
50884      */
50885     allQuery: '',
50886     /**
50887      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
50888      */
50889     mode: 'remote',
50890     /**
50891      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
50892      * listWidth has a higher value)
50893      */
50894     minListWidth : 70,
50895     /**
50896      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
50897      * allow the user to set arbitrary text into the field (defaults to false)
50898      */
50899     forceSelection:false,
50900     /**
50901      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
50902      * if typeAhead = true (defaults to 250)
50903      */
50904     typeAheadDelay : 250,
50905     /**
50906      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
50907      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
50908      */
50909     valueNotFoundText : undefined,
50910     
50911     /**
50912      * @cfg {String} defaultValue The value displayed after loading the store.
50913      */
50914     defaultValue: '',
50915     
50916     /**
50917      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
50918      */
50919     blockFocus : false,
50920     
50921     /**
50922      * @cfg {Boolean} disableClear Disable showing of clear button.
50923      */
50924     disableClear : false,
50925     /**
50926      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
50927      */
50928     alwaysQuery : false,
50929     
50930     //private
50931     addicon : false,
50932     editicon: false,
50933     
50934     // element that contains real text value.. (when hidden is used..)
50935      
50936     // private
50937     onRender : function(ct, position){
50938         Roo.form.Field.prototype.onRender.call(this, ct, position);
50939         
50940         if(this.store){
50941             this.store.on('beforeload', this.onBeforeLoad, this);
50942             this.store.on('load', this.onLoad, this);
50943             this.store.on('loadexception', this.onLoadException, this);
50944             this.store.load({});
50945         }
50946         
50947         
50948         
50949     },
50950
50951     // private
50952     initEvents : function(){
50953         //Roo.form.ComboBox.superclass.initEvents.call(this);
50954  
50955     },
50956
50957     onDestroy : function(){
50958        
50959         if(this.store){
50960             this.store.un('beforeload', this.onBeforeLoad, this);
50961             this.store.un('load', this.onLoad, this);
50962             this.store.un('loadexception', this.onLoadException, this);
50963         }
50964         //Roo.form.ComboBox.superclass.onDestroy.call(this);
50965     },
50966
50967     // private
50968     fireKey : function(e){
50969         if(e.isNavKeyPress() && !this.list.isVisible()){
50970             this.fireEvent("specialkey", this, e);
50971         }
50972     },
50973
50974     // private
50975     onResize: function(w, h){
50976         
50977         return; 
50978     
50979         
50980     },
50981
50982     /**
50983      * Allow or prevent the user from directly editing the field text.  If false is passed,
50984      * the user will only be able to select from the items defined in the dropdown list.  This method
50985      * is the runtime equivalent of setting the 'editable' config option at config time.
50986      * @param {Boolean} value True to allow the user to directly edit the field text
50987      */
50988     setEditable : function(value){
50989          
50990     },
50991
50992     // private
50993     onBeforeLoad : function(){
50994         
50995         Roo.log("Select before load");
50996         return;
50997     
50998         this.innerList.update(this.loadingText ?
50999                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51000         //this.restrictHeight();
51001         this.selectedIndex = -1;
51002     },
51003
51004     // private
51005     onLoad : function(){
51006
51007     
51008         var dom = this.el.dom;
51009         dom.innerHTML = '';
51010          var od = dom.ownerDocument;
51011          
51012         if (this.emptyText) {
51013             var op = od.createElement('option');
51014             op.setAttribute('value', '');
51015             op.innerHTML = String.format('{0}', this.emptyText);
51016             dom.appendChild(op);
51017         }
51018         if(this.store.getCount() > 0){
51019            
51020             var vf = this.valueField;
51021             var df = this.displayField;
51022             this.store.data.each(function(r) {
51023                 // which colmsn to use... testing - cdoe / title..
51024                 var op = od.createElement('option');
51025                 op.setAttribute('value', r.data[vf]);
51026                 op.innerHTML = String.format('{0}', r.data[df]);
51027                 dom.appendChild(op);
51028             });
51029             if (typeof(this.defaultValue != 'undefined')) {
51030                 this.setValue(this.defaultValue);
51031             }
51032             
51033              
51034         }else{
51035             //this.onEmptyResults();
51036         }
51037         //this.el.focus();
51038     },
51039     // private
51040     onLoadException : function()
51041     {
51042         dom.innerHTML = '';
51043             
51044         Roo.log("Select on load exception");
51045         return;
51046     
51047         this.collapse();
51048         Roo.log(this.store.reader.jsonData);
51049         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51050             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51051         }
51052         
51053         
51054     },
51055     // private
51056     onTypeAhead : function(){
51057          
51058     },
51059
51060     // private
51061     onSelect : function(record, index){
51062         Roo.log('on select?');
51063         return;
51064         if(this.fireEvent('beforeselect', this, record, index) !== false){
51065             this.setFromData(index > -1 ? record.data : false);
51066             this.collapse();
51067             this.fireEvent('select', this, record, index);
51068         }
51069     },
51070
51071     /**
51072      * Returns the currently selected field value or empty string if no value is set.
51073      * @return {String} value The selected value
51074      */
51075     getValue : function(){
51076         var dom = this.el.dom;
51077         this.value = dom.options[dom.selectedIndex].value;
51078         return this.value;
51079         
51080     },
51081
51082     /**
51083      * Clears any text/value currently set in the field
51084      */
51085     clearValue : function(){
51086         this.value = '';
51087         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51088         
51089     },
51090
51091     /**
51092      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51093      * will be displayed in the field.  If the value does not match the data value of an existing item,
51094      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51095      * Otherwise the field will be blank (although the value will still be set).
51096      * @param {String} value The value to match
51097      */
51098     setValue : function(v){
51099         var d = this.el.dom;
51100         for (var i =0; i < d.options.length;i++) {
51101             if (v == d.options[i].value) {
51102                 d.selectedIndex = i;
51103                 this.value = v;
51104                 return;
51105             }
51106         }
51107         this.clearValue();
51108     },
51109     /**
51110      * @property {Object} the last set data for the element
51111      */
51112     
51113     lastData : false,
51114     /**
51115      * Sets the value of the field based on a object which is related to the record format for the store.
51116      * @param {Object} value the value to set as. or false on reset?
51117      */
51118     setFromData : function(o){
51119         Roo.log('setfrom data?');
51120          
51121         
51122         
51123     },
51124     // private
51125     reset : function(){
51126         this.clearValue();
51127     },
51128     // private
51129     findRecord : function(prop, value){
51130         
51131         return false;
51132     
51133         var record;
51134         if(this.store.getCount() > 0){
51135             this.store.each(function(r){
51136                 if(r.data[prop] == value){
51137                     record = r;
51138                     return false;
51139                 }
51140                 return true;
51141             });
51142         }
51143         return record;
51144     },
51145     
51146     getName: function()
51147     {
51148         // returns hidden if it's set..
51149         if (!this.rendered) {return ''};
51150         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51151         
51152     },
51153      
51154
51155     
51156
51157     // private
51158     onEmptyResults : function(){
51159         Roo.log('empty results');
51160         //this.collapse();
51161     },
51162
51163     /**
51164      * Returns true if the dropdown list is expanded, else false.
51165      */
51166     isExpanded : function(){
51167         return false;
51168     },
51169
51170     /**
51171      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51172      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51173      * @param {String} value The data value of the item to select
51174      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51175      * selected item if it is not currently in view (defaults to true)
51176      * @return {Boolean} True if the value matched an item in the list, else false
51177      */
51178     selectByValue : function(v, scrollIntoView){
51179         Roo.log('select By Value');
51180         return false;
51181     
51182         if(v !== undefined && v !== null){
51183             var r = this.findRecord(this.valueField || this.displayField, v);
51184             if(r){
51185                 this.select(this.store.indexOf(r), scrollIntoView);
51186                 return true;
51187             }
51188         }
51189         return false;
51190     },
51191
51192     /**
51193      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51194      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51195      * @param {Number} index The zero-based index of the list item to select
51196      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51197      * selected item if it is not currently in view (defaults to true)
51198      */
51199     select : function(index, scrollIntoView){
51200         Roo.log('select ');
51201         return  ;
51202         
51203         this.selectedIndex = index;
51204         this.view.select(index);
51205         if(scrollIntoView !== false){
51206             var el = this.view.getNode(index);
51207             if(el){
51208                 this.innerList.scrollChildIntoView(el, false);
51209             }
51210         }
51211     },
51212
51213       
51214
51215     // private
51216     validateBlur : function(){
51217         
51218         return;
51219         
51220     },
51221
51222     // private
51223     initQuery : function(){
51224         this.doQuery(this.getRawValue());
51225     },
51226
51227     // private
51228     doForce : function(){
51229         if(this.el.dom.value.length > 0){
51230             this.el.dom.value =
51231                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51232              
51233         }
51234     },
51235
51236     /**
51237      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51238      * query allowing the query action to be canceled if needed.
51239      * @param {String} query The SQL query to execute
51240      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51241      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51242      * saved in the current store (defaults to false)
51243      */
51244     doQuery : function(q, forceAll){
51245         
51246         Roo.log('doQuery?');
51247         if(q === undefined || q === null){
51248             q = '';
51249         }
51250         var qe = {
51251             query: q,
51252             forceAll: forceAll,
51253             combo: this,
51254             cancel:false
51255         };
51256         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51257             return false;
51258         }
51259         q = qe.query;
51260         forceAll = qe.forceAll;
51261         if(forceAll === true || (q.length >= this.minChars)){
51262             if(this.lastQuery != q || this.alwaysQuery){
51263                 this.lastQuery = q;
51264                 if(this.mode == 'local'){
51265                     this.selectedIndex = -1;
51266                     if(forceAll){
51267                         this.store.clearFilter();
51268                     }else{
51269                         this.store.filter(this.displayField, q);
51270                     }
51271                     this.onLoad();
51272                 }else{
51273                     this.store.baseParams[this.queryParam] = q;
51274                     this.store.load({
51275                         params: this.getParams(q)
51276                     });
51277                     this.expand();
51278                 }
51279             }else{
51280                 this.selectedIndex = -1;
51281                 this.onLoad();   
51282             }
51283         }
51284     },
51285
51286     // private
51287     getParams : function(q){
51288         var p = {};
51289         //p[this.queryParam] = q;
51290         if(this.pageSize){
51291             p.start = 0;
51292             p.limit = this.pageSize;
51293         }
51294         return p;
51295     },
51296
51297     /**
51298      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51299      */
51300     collapse : function(){
51301         
51302     },
51303
51304     // private
51305     collapseIf : function(e){
51306         
51307     },
51308
51309     /**
51310      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51311      */
51312     expand : function(){
51313         
51314     } ,
51315
51316     // private
51317      
51318
51319     /** 
51320     * @cfg {Boolean} grow 
51321     * @hide 
51322     */
51323     /** 
51324     * @cfg {Number} growMin 
51325     * @hide 
51326     */
51327     /** 
51328     * @cfg {Number} growMax 
51329     * @hide 
51330     */
51331     /**
51332      * @hide
51333      * @method autoSize
51334      */
51335     
51336     setWidth : function()
51337     {
51338         
51339     },
51340     getResizeEl : function(){
51341         return this.el;
51342     }
51343 });//<script type="text/javasscript">
51344  
51345
51346 /**
51347  * @class Roo.DDView
51348  * A DnD enabled version of Roo.View.
51349  * @param {Element/String} container The Element in which to create the View.
51350  * @param {String} tpl The template string used to create the markup for each element of the View
51351  * @param {Object} config The configuration properties. These include all the config options of
51352  * {@link Roo.View} plus some specific to this class.<br>
51353  * <p>
51354  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51355  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51356  * <p>
51357  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51358 .x-view-drag-insert-above {
51359         border-top:1px dotted #3366cc;
51360 }
51361 .x-view-drag-insert-below {
51362         border-bottom:1px dotted #3366cc;
51363 }
51364 </code></pre>
51365  * 
51366  */
51367  
51368 Roo.DDView = function(container, tpl, config) {
51369     Roo.DDView.superclass.constructor.apply(this, arguments);
51370     this.getEl().setStyle("outline", "0px none");
51371     this.getEl().unselectable();
51372     if (this.dragGroup) {
51373                 this.setDraggable(this.dragGroup.split(","));
51374     }
51375     if (this.dropGroup) {
51376                 this.setDroppable(this.dropGroup.split(","));
51377     }
51378     if (this.deletable) {
51379         this.setDeletable();
51380     }
51381     this.isDirtyFlag = false;
51382         this.addEvents({
51383                 "drop" : true
51384         });
51385 };
51386
51387 Roo.extend(Roo.DDView, Roo.View, {
51388 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51389 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51390 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51391 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51392
51393         isFormField: true,
51394
51395         reset: Roo.emptyFn,
51396         
51397         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51398
51399         validate: function() {
51400                 return true;
51401         },
51402         
51403         destroy: function() {
51404                 this.purgeListeners();
51405                 this.getEl.removeAllListeners();
51406                 this.getEl().remove();
51407                 if (this.dragZone) {
51408                         if (this.dragZone.destroy) {
51409                                 this.dragZone.destroy();
51410                         }
51411                 }
51412                 if (this.dropZone) {
51413                         if (this.dropZone.destroy) {
51414                                 this.dropZone.destroy();
51415                         }
51416                 }
51417         },
51418
51419 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51420         getName: function() {
51421                 return this.name;
51422         },
51423
51424 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51425         setValue: function(v) {
51426                 if (!this.store) {
51427                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51428                 }
51429                 var data = {};
51430                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51431                 this.store.proxy = new Roo.data.MemoryProxy(data);
51432                 this.store.load();
51433         },
51434
51435 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51436         getValue: function() {
51437                 var result = '(';
51438                 this.store.each(function(rec) {
51439                         result += rec.id + ',';
51440                 });
51441                 return result.substr(0, result.length - 1) + ')';
51442         },
51443         
51444         getIds: function() {
51445                 var i = 0, result = new Array(this.store.getCount());
51446                 this.store.each(function(rec) {
51447                         result[i++] = rec.id;
51448                 });
51449                 return result;
51450         },
51451         
51452         isDirty: function() {
51453                 return this.isDirtyFlag;
51454         },
51455
51456 /**
51457  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51458  *      whole Element becomes the target, and this causes the drop gesture to append.
51459  */
51460     getTargetFromEvent : function(e) {
51461                 var target = e.getTarget();
51462                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51463                 target = target.parentNode;
51464                 }
51465                 if (!target) {
51466                         target = this.el.dom.lastChild || this.el.dom;
51467                 }
51468                 return target;
51469     },
51470
51471 /**
51472  *      Create the drag data which consists of an object which has the property "ddel" as
51473  *      the drag proxy element. 
51474  */
51475     getDragData : function(e) {
51476         var target = this.findItemFromChild(e.getTarget());
51477                 if(target) {
51478                         this.handleSelection(e);
51479                         var selNodes = this.getSelectedNodes();
51480             var dragData = {
51481                 source: this,
51482                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51483                 nodes: selNodes,
51484                 records: []
51485                         };
51486                         var selectedIndices = this.getSelectedIndexes();
51487                         for (var i = 0; i < selectedIndices.length; i++) {
51488                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51489                         }
51490                         if (selNodes.length == 1) {
51491                                 dragData.ddel = target.cloneNode(true); // the div element
51492                         } else {
51493                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51494                                 div.className = 'multi-proxy';
51495                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51496                                         div.appendChild(selNodes[i].cloneNode(true));
51497                                 }
51498                                 dragData.ddel = div;
51499                         }
51500             //console.log(dragData)
51501             //console.log(dragData.ddel.innerHTML)
51502                         return dragData;
51503                 }
51504         //console.log('nodragData')
51505                 return false;
51506     },
51507     
51508 /**     Specify to which ddGroup items in this DDView may be dragged. */
51509     setDraggable: function(ddGroup) {
51510         if (ddGroup instanceof Array) {
51511                 Roo.each(ddGroup, this.setDraggable, this);
51512                 return;
51513         }
51514         if (this.dragZone) {
51515                 this.dragZone.addToGroup(ddGroup);
51516         } else {
51517                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51518                                 containerScroll: true,
51519                                 ddGroup: ddGroup 
51520
51521                         });
51522 //                      Draggability implies selection. DragZone's mousedown selects the element.
51523                         if (!this.multiSelect) { this.singleSelect = true; }
51524
51525 //                      Wire the DragZone's handlers up to methods in *this*
51526                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51527                 }
51528     },
51529
51530 /**     Specify from which ddGroup this DDView accepts drops. */
51531     setDroppable: function(ddGroup) {
51532         if (ddGroup instanceof Array) {
51533                 Roo.each(ddGroup, this.setDroppable, this);
51534                 return;
51535         }
51536         if (this.dropZone) {
51537                 this.dropZone.addToGroup(ddGroup);
51538         } else {
51539                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51540                                 containerScroll: true,
51541                                 ddGroup: ddGroup
51542                         });
51543
51544 //                      Wire the DropZone's handlers up to methods in *this*
51545                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51546                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51547                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51548                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51549                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51550                 }
51551     },
51552
51553 /**     Decide whether to drop above or below a View node. */
51554     getDropPoint : function(e, n, dd){
51555         if (n == this.el.dom) { return "above"; }
51556                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51557                 var c = t + (b - t) / 2;
51558                 var y = Roo.lib.Event.getPageY(e);
51559                 if(y <= c) {
51560                         return "above";
51561                 }else{
51562                         return "below";
51563                 }
51564     },
51565
51566     onNodeEnter : function(n, dd, e, data){
51567                 return false;
51568     },
51569     
51570     onNodeOver : function(n, dd, e, data){
51571                 var pt = this.getDropPoint(e, n, dd);
51572                 // set the insert point style on the target node
51573                 var dragElClass = this.dropNotAllowed;
51574                 if (pt) {
51575                         var targetElClass;
51576                         if (pt == "above"){
51577                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51578                                 targetElClass = "x-view-drag-insert-above";
51579                         } else {
51580                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51581                                 targetElClass = "x-view-drag-insert-below";
51582                         }
51583                         if (this.lastInsertClass != targetElClass){
51584                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51585                                 this.lastInsertClass = targetElClass;
51586                         }
51587                 }
51588                 return dragElClass;
51589         },
51590
51591     onNodeOut : function(n, dd, e, data){
51592                 this.removeDropIndicators(n);
51593     },
51594
51595     onNodeDrop : function(n, dd, e, data){
51596         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51597                 return false;
51598         }
51599         var pt = this.getDropPoint(e, n, dd);
51600                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51601                 if (pt == "below") { insertAt++; }
51602                 for (var i = 0; i < data.records.length; i++) {
51603                         var r = data.records[i];
51604                         var dup = this.store.getById(r.id);
51605                         if (dup && (dd != this.dragZone)) {
51606                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51607                         } else {
51608                                 if (data.copy) {
51609                                         this.store.insert(insertAt++, r.copy());
51610                                 } else {
51611                                         data.source.isDirtyFlag = true;
51612                                         r.store.remove(r);
51613                                         this.store.insert(insertAt++, r);
51614                                 }
51615                                 this.isDirtyFlag = true;
51616                         }
51617                 }
51618                 this.dragZone.cachedTarget = null;
51619                 return true;
51620     },
51621
51622     removeDropIndicators : function(n){
51623                 if(n){
51624                         Roo.fly(n).removeClass([
51625                                 "x-view-drag-insert-above",
51626                                 "x-view-drag-insert-below"]);
51627                         this.lastInsertClass = "_noclass";
51628                 }
51629     },
51630
51631 /**
51632  *      Utility method. Add a delete option to the DDView's context menu.
51633  *      @param {String} imageUrl The URL of the "delete" icon image.
51634  */
51635         setDeletable: function(imageUrl) {
51636                 if (!this.singleSelect && !this.multiSelect) {
51637                         this.singleSelect = true;
51638                 }
51639                 var c = this.getContextMenu();
51640                 this.contextMenu.on("itemclick", function(item) {
51641                         switch (item.id) {
51642                                 case "delete":
51643                                         this.remove(this.getSelectedIndexes());
51644                                         break;
51645                         }
51646                 }, this);
51647                 this.contextMenu.add({
51648                         icon: imageUrl,
51649                         id: "delete",
51650                         text: 'Delete'
51651                 });
51652         },
51653         
51654 /**     Return the context menu for this DDView. */
51655         getContextMenu: function() {
51656                 if (!this.contextMenu) {
51657 //                      Create the View's context menu
51658                         this.contextMenu = new Roo.menu.Menu({
51659                                 id: this.id + "-contextmenu"
51660                         });
51661                         this.el.on("contextmenu", this.showContextMenu, this);
51662                 }
51663                 return this.contextMenu;
51664         },
51665         
51666         disableContextMenu: function() {
51667                 if (this.contextMenu) {
51668                         this.el.un("contextmenu", this.showContextMenu, this);
51669                 }
51670         },
51671
51672         showContextMenu: function(e, item) {
51673         item = this.findItemFromChild(e.getTarget());
51674                 if (item) {
51675                         e.stopEvent();
51676                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51677                         this.contextMenu.showAt(e.getXY());
51678             }
51679     },
51680
51681 /**
51682  *      Remove {@link Roo.data.Record}s at the specified indices.
51683  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51684  */
51685     remove: function(selectedIndices) {
51686                 selectedIndices = [].concat(selectedIndices);
51687                 for (var i = 0; i < selectedIndices.length; i++) {
51688                         var rec = this.store.getAt(selectedIndices[i]);
51689                         this.store.remove(rec);
51690                 }
51691     },
51692
51693 /**
51694  *      Double click fires the event, but also, if this is draggable, and there is only one other
51695  *      related DropZone, it transfers the selected node.
51696  */
51697     onDblClick : function(e){
51698         var item = this.findItemFromChild(e.getTarget());
51699         if(item){
51700             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51701                 return false;
51702             }
51703             if (this.dragGroup) {
51704                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51705                     while (targets.indexOf(this.dropZone) > -1) {
51706                             targets.remove(this.dropZone);
51707                                 }
51708                     if (targets.length == 1) {
51709                                         this.dragZone.cachedTarget = null;
51710                         var el = Roo.get(targets[0].getEl());
51711                         var box = el.getBox(true);
51712                         targets[0].onNodeDrop(el.dom, {
51713                                 target: el.dom,
51714                                 xy: [box.x, box.y + box.height - 1]
51715                         }, null, this.getDragData(e));
51716                     }
51717                 }
51718         }
51719     },
51720     
51721     handleSelection: function(e) {
51722                 this.dragZone.cachedTarget = null;
51723         var item = this.findItemFromChild(e.getTarget());
51724         if (!item) {
51725                 this.clearSelections(true);
51726                 return;
51727         }
51728                 if (item && (this.multiSelect || this.singleSelect)){
51729                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51730                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51731                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51732                                 this.unselect(item);
51733                         } else {
51734                                 this.select(item, this.multiSelect && e.ctrlKey);
51735                                 this.lastSelection = item;
51736                         }
51737                 }
51738     },
51739
51740     onItemClick : function(item, index, e){
51741                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51742                         return false;
51743                 }
51744                 return true;
51745     },
51746
51747     unselect : function(nodeInfo, suppressEvent){
51748                 var node = this.getNode(nodeInfo);
51749                 if(node && this.isSelected(node)){
51750                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51751                                 Roo.fly(node).removeClass(this.selectedClass);
51752                                 this.selections.remove(node);
51753                                 if(!suppressEvent){
51754                                         this.fireEvent("selectionchange", this, this.selections);
51755                                 }
51756                         }
51757                 }
51758     }
51759 });
51760 /*
51761  * Based on:
51762  * Ext JS Library 1.1.1
51763  * Copyright(c) 2006-2007, Ext JS, LLC.
51764  *
51765  * Originally Released Under LGPL - original licence link has changed is not relivant.
51766  *
51767  * Fork - LGPL
51768  * <script type="text/javascript">
51769  */
51770  
51771 /**
51772  * @class Roo.LayoutManager
51773  * @extends Roo.util.Observable
51774  * Base class for layout managers.
51775  */
51776 Roo.LayoutManager = function(container, config){
51777     Roo.LayoutManager.superclass.constructor.call(this);
51778     this.el = Roo.get(container);
51779     // ie scrollbar fix
51780     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
51781         document.body.scroll = "no";
51782     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
51783         this.el.position('relative');
51784     }
51785     this.id = this.el.id;
51786     this.el.addClass("x-layout-container");
51787     /** false to disable window resize monitoring @type Boolean */
51788     this.monitorWindowResize = true;
51789     this.regions = {};
51790     this.addEvents({
51791         /**
51792          * @event layout
51793          * Fires when a layout is performed. 
51794          * @param {Roo.LayoutManager} this
51795          */
51796         "layout" : true,
51797         /**
51798          * @event regionresized
51799          * Fires when the user resizes a region. 
51800          * @param {Roo.LayoutRegion} region The resized region
51801          * @param {Number} newSize The new size (width for east/west, height for north/south)
51802          */
51803         "regionresized" : true,
51804         /**
51805          * @event regioncollapsed
51806          * Fires when a region is collapsed. 
51807          * @param {Roo.LayoutRegion} region The collapsed region
51808          */
51809         "regioncollapsed" : true,
51810         /**
51811          * @event regionexpanded
51812          * Fires when a region is expanded.  
51813          * @param {Roo.LayoutRegion} region The expanded region
51814          */
51815         "regionexpanded" : true
51816     });
51817     this.updating = false;
51818     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
51819 };
51820
51821 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
51822     /**
51823      * Returns true if this layout is currently being updated
51824      * @return {Boolean}
51825      */
51826     isUpdating : function(){
51827         return this.updating; 
51828     },
51829     
51830     /**
51831      * Suspend the LayoutManager from doing auto-layouts while
51832      * making multiple add or remove calls
51833      */
51834     beginUpdate : function(){
51835         this.updating = true;    
51836     },
51837     
51838     /**
51839      * Restore auto-layouts and optionally disable the manager from performing a layout
51840      * @param {Boolean} noLayout true to disable a layout update 
51841      */
51842     endUpdate : function(noLayout){
51843         this.updating = false;
51844         if(!noLayout){
51845             this.layout();
51846         }    
51847     },
51848     
51849     layout: function(){
51850         
51851     },
51852     
51853     onRegionResized : function(region, newSize){
51854         this.fireEvent("regionresized", region, newSize);
51855         this.layout();
51856     },
51857     
51858     onRegionCollapsed : function(region){
51859         this.fireEvent("regioncollapsed", region);
51860     },
51861     
51862     onRegionExpanded : function(region){
51863         this.fireEvent("regionexpanded", region);
51864     },
51865         
51866     /**
51867      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
51868      * performs box-model adjustments.
51869      * @return {Object} The size as an object {width: (the width), height: (the height)}
51870      */
51871     getViewSize : function(){
51872         var size;
51873         if(this.el.dom != document.body){
51874             size = this.el.getSize();
51875         }else{
51876             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
51877         }
51878         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
51879         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
51880         return size;
51881     },
51882     
51883     /**
51884      * Returns the Element this layout is bound to.
51885      * @return {Roo.Element}
51886      */
51887     getEl : function(){
51888         return this.el;
51889     },
51890     
51891     /**
51892      * Returns the specified region.
51893      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
51894      * @return {Roo.LayoutRegion}
51895      */
51896     getRegion : function(target){
51897         return this.regions[target.toLowerCase()];
51898     },
51899     
51900     onWindowResize : function(){
51901         if(this.monitorWindowResize){
51902             this.layout();
51903         }
51904     }
51905 });/*
51906  * Based on:
51907  * Ext JS Library 1.1.1
51908  * Copyright(c) 2006-2007, Ext JS, LLC.
51909  *
51910  * Originally Released Under LGPL - original licence link has changed is not relivant.
51911  *
51912  * Fork - LGPL
51913  * <script type="text/javascript">
51914  */
51915 /**
51916  * @class Roo.BorderLayout
51917  * @extends Roo.LayoutManager
51918  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
51919  * please see: <br><br>
51920  * <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>
51921  * <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>
51922  * Example:
51923  <pre><code>
51924  var layout = new Roo.BorderLayout(document.body, {
51925     north: {
51926         initialSize: 25,
51927         titlebar: false
51928     },
51929     west: {
51930         split:true,
51931         initialSize: 200,
51932         minSize: 175,
51933         maxSize: 400,
51934         titlebar: true,
51935         collapsible: true
51936     },
51937     east: {
51938         split:true,
51939         initialSize: 202,
51940         minSize: 175,
51941         maxSize: 400,
51942         titlebar: true,
51943         collapsible: true
51944     },
51945     south: {
51946         split:true,
51947         initialSize: 100,
51948         minSize: 100,
51949         maxSize: 200,
51950         titlebar: true,
51951         collapsible: true
51952     },
51953     center: {
51954         titlebar: true,
51955         autoScroll:true,
51956         resizeTabs: true,
51957         minTabWidth: 50,
51958         preferredTabWidth: 150
51959     }
51960 });
51961
51962 // shorthand
51963 var CP = Roo.ContentPanel;
51964
51965 layout.beginUpdate();
51966 layout.add("north", new CP("north", "North"));
51967 layout.add("south", new CP("south", {title: "South", closable: true}));
51968 layout.add("west", new CP("west", {title: "West"}));
51969 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
51970 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
51971 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
51972 layout.getRegion("center").showPanel("center1");
51973 layout.endUpdate();
51974 </code></pre>
51975
51976 <b>The container the layout is rendered into can be either the body element or any other element.
51977 If it is not the body element, the container needs to either be an absolute positioned element,
51978 or you will need to add "position:relative" to the css of the container.  You will also need to specify
51979 the container size if it is not the body element.</b>
51980
51981 * @constructor
51982 * Create a new BorderLayout
51983 * @param {String/HTMLElement/Element} container The container this layout is bound to
51984 * @param {Object} config Configuration options
51985  */
51986 Roo.BorderLayout = function(container, config){
51987     config = config || {};
51988     Roo.BorderLayout.superclass.constructor.call(this, container, config);
51989     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
51990     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
51991         var target = this.factory.validRegions[i];
51992         if(config[target]){
51993             this.addRegion(target, config[target]);
51994         }
51995     }
51996 };
51997
51998 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
51999     /**
52000      * Creates and adds a new region if it doesn't already exist.
52001      * @param {String} target The target region key (north, south, east, west or center).
52002      * @param {Object} config The regions config object
52003      * @return {BorderLayoutRegion} The new region
52004      */
52005     addRegion : function(target, config){
52006         if(!this.regions[target]){
52007             var r = this.factory.create(target, this, config);
52008             this.bindRegion(target, r);
52009         }
52010         return this.regions[target];
52011     },
52012
52013     // private (kinda)
52014     bindRegion : function(name, r){
52015         this.regions[name] = r;
52016         r.on("visibilitychange", this.layout, this);
52017         r.on("paneladded", this.layout, this);
52018         r.on("panelremoved", this.layout, this);
52019         r.on("invalidated", this.layout, this);
52020         r.on("resized", this.onRegionResized, this);
52021         r.on("collapsed", this.onRegionCollapsed, this);
52022         r.on("expanded", this.onRegionExpanded, this);
52023     },
52024
52025     /**
52026      * Performs a layout update.
52027      */
52028     layout : function(){
52029         if(this.updating) {
52030             return;
52031         }
52032         var size = this.getViewSize();
52033         var w = size.width;
52034         var h = size.height;
52035         var centerW = w;
52036         var centerH = h;
52037         var centerY = 0;
52038         var centerX = 0;
52039         //var x = 0, y = 0;
52040
52041         var rs = this.regions;
52042         var north = rs["north"];
52043         var south = rs["south"]; 
52044         var west = rs["west"];
52045         var east = rs["east"];
52046         var center = rs["center"];
52047         //if(this.hideOnLayout){ // not supported anymore
52048             //c.el.setStyle("display", "none");
52049         //}
52050         if(north && north.isVisible()){
52051             var b = north.getBox();
52052             var m = north.getMargins();
52053             b.width = w - (m.left+m.right);
52054             b.x = m.left;
52055             b.y = m.top;
52056             centerY = b.height + b.y + m.bottom;
52057             centerH -= centerY;
52058             north.updateBox(this.safeBox(b));
52059         }
52060         if(south && south.isVisible()){
52061             var b = south.getBox();
52062             var m = south.getMargins();
52063             b.width = w - (m.left+m.right);
52064             b.x = m.left;
52065             var totalHeight = (b.height + m.top + m.bottom);
52066             b.y = h - totalHeight + m.top;
52067             centerH -= totalHeight;
52068             south.updateBox(this.safeBox(b));
52069         }
52070         if(west && west.isVisible()){
52071             var b = west.getBox();
52072             var m = west.getMargins();
52073             b.height = centerH - (m.top+m.bottom);
52074             b.x = m.left;
52075             b.y = centerY + m.top;
52076             var totalWidth = (b.width + m.left + m.right);
52077             centerX += totalWidth;
52078             centerW -= totalWidth;
52079             west.updateBox(this.safeBox(b));
52080         }
52081         if(east && east.isVisible()){
52082             var b = east.getBox();
52083             var m = east.getMargins();
52084             b.height = centerH - (m.top+m.bottom);
52085             var totalWidth = (b.width + m.left + m.right);
52086             b.x = w - totalWidth + m.left;
52087             b.y = centerY + m.top;
52088             centerW -= totalWidth;
52089             east.updateBox(this.safeBox(b));
52090         }
52091         if(center){
52092             var m = center.getMargins();
52093             var centerBox = {
52094                 x: centerX + m.left,
52095                 y: centerY + m.top,
52096                 width: centerW - (m.left+m.right),
52097                 height: centerH - (m.top+m.bottom)
52098             };
52099             //if(this.hideOnLayout){
52100                 //center.el.setStyle("display", "block");
52101             //}
52102             center.updateBox(this.safeBox(centerBox));
52103         }
52104         this.el.repaint();
52105         this.fireEvent("layout", this);
52106     },
52107
52108     // private
52109     safeBox : function(box){
52110         box.width = Math.max(0, box.width);
52111         box.height = Math.max(0, box.height);
52112         return box;
52113     },
52114
52115     /**
52116      * Adds a ContentPanel (or subclass) to this layout.
52117      * @param {String} target The target region key (north, south, east, west or center).
52118      * @param {Roo.ContentPanel} panel The panel to add
52119      * @return {Roo.ContentPanel} The added panel
52120      */
52121     add : function(target, panel){
52122          
52123         target = target.toLowerCase();
52124         return this.regions[target].add(panel);
52125     },
52126
52127     /**
52128      * Remove a ContentPanel (or subclass) to this layout.
52129      * @param {String} target The target region key (north, south, east, west or center).
52130      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52131      * @return {Roo.ContentPanel} The removed panel
52132      */
52133     remove : function(target, panel){
52134         target = target.toLowerCase();
52135         return this.regions[target].remove(panel);
52136     },
52137
52138     /**
52139      * Searches all regions for a panel with the specified id
52140      * @param {String} panelId
52141      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52142      */
52143     findPanel : function(panelId){
52144         var rs = this.regions;
52145         for(var target in rs){
52146             if(typeof rs[target] != "function"){
52147                 var p = rs[target].getPanel(panelId);
52148                 if(p){
52149                     return p;
52150                 }
52151             }
52152         }
52153         return null;
52154     },
52155
52156     /**
52157      * Searches all regions for a panel with the specified id and activates (shows) it.
52158      * @param {String/ContentPanel} panelId The panels id or the panel itself
52159      * @return {Roo.ContentPanel} The shown panel or null
52160      */
52161     showPanel : function(panelId) {
52162       var rs = this.regions;
52163       for(var target in rs){
52164          var r = rs[target];
52165          if(typeof r != "function"){
52166             if(r.hasPanel(panelId)){
52167                return r.showPanel(panelId);
52168             }
52169          }
52170       }
52171       return null;
52172    },
52173
52174    /**
52175      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52176      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52177      */
52178     restoreState : function(provider){
52179         if(!provider){
52180             provider = Roo.state.Manager;
52181         }
52182         var sm = new Roo.LayoutStateManager();
52183         sm.init(this, provider);
52184     },
52185
52186     /**
52187      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52188      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52189      * a valid ContentPanel config object.  Example:
52190      * <pre><code>
52191 // Create the main layout
52192 var layout = new Roo.BorderLayout('main-ct', {
52193     west: {
52194         split:true,
52195         minSize: 175,
52196         titlebar: true
52197     },
52198     center: {
52199         title:'Components'
52200     }
52201 }, 'main-ct');
52202
52203 // Create and add multiple ContentPanels at once via configs
52204 layout.batchAdd({
52205    west: {
52206        id: 'source-files',
52207        autoCreate:true,
52208        title:'Ext Source Files',
52209        autoScroll:true,
52210        fitToFrame:true
52211    },
52212    center : {
52213        el: cview,
52214        autoScroll:true,
52215        fitToFrame:true,
52216        toolbar: tb,
52217        resizeEl:'cbody'
52218    }
52219 });
52220 </code></pre>
52221      * @param {Object} regions An object containing ContentPanel configs by region name
52222      */
52223     batchAdd : function(regions){
52224         this.beginUpdate();
52225         for(var rname in regions){
52226             var lr = this.regions[rname];
52227             if(lr){
52228                 this.addTypedPanels(lr, regions[rname]);
52229             }
52230         }
52231         this.endUpdate();
52232     },
52233
52234     // private
52235     addTypedPanels : function(lr, ps){
52236         if(typeof ps == 'string'){
52237             lr.add(new Roo.ContentPanel(ps));
52238         }
52239         else if(ps instanceof Array){
52240             for(var i =0, len = ps.length; i < len; i++){
52241                 this.addTypedPanels(lr, ps[i]);
52242             }
52243         }
52244         else if(!ps.events){ // raw config?
52245             var el = ps.el;
52246             delete ps.el; // prevent conflict
52247             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52248         }
52249         else {  // panel object assumed!
52250             lr.add(ps);
52251         }
52252     },
52253     /**
52254      * Adds a xtype elements to the layout.
52255      * <pre><code>
52256
52257 layout.addxtype({
52258        xtype : 'ContentPanel',
52259        region: 'west',
52260        items: [ .... ]
52261    }
52262 );
52263
52264 layout.addxtype({
52265         xtype : 'NestedLayoutPanel',
52266         region: 'west',
52267         layout: {
52268            center: { },
52269            west: { }   
52270         },
52271         items : [ ... list of content panels or nested layout panels.. ]
52272    }
52273 );
52274 </code></pre>
52275      * @param {Object} cfg Xtype definition of item to add.
52276      */
52277     addxtype : function(cfg)
52278     {
52279         // basically accepts a pannel...
52280         // can accept a layout region..!?!?
52281         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52282         
52283         if (!cfg.xtype.match(/Panel$/)) {
52284             return false;
52285         }
52286         var ret = false;
52287         
52288         if (typeof(cfg.region) == 'undefined') {
52289             Roo.log("Failed to add Panel, region was not set");
52290             Roo.log(cfg);
52291             return false;
52292         }
52293         var region = cfg.region;
52294         delete cfg.region;
52295         
52296           
52297         var xitems = [];
52298         if (cfg.items) {
52299             xitems = cfg.items;
52300             delete cfg.items;
52301         }
52302         var nb = false;
52303         
52304         switch(cfg.xtype) 
52305         {
52306             case 'ContentPanel':  // ContentPanel (el, cfg)
52307             case 'ScrollPanel':  // ContentPanel (el, cfg)
52308             case 'ViewPanel': 
52309                 if(cfg.autoCreate) {
52310                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52311                 } else {
52312                     var el = this.el.createChild();
52313                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52314                 }
52315                 
52316                 this.add(region, ret);
52317                 break;
52318             
52319             
52320             case 'TreePanel': // our new panel!
52321                 cfg.el = this.el.createChild();
52322                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52323                 this.add(region, ret);
52324                 break;
52325             
52326             case 'NestedLayoutPanel': 
52327                 // create a new Layout (which is  a Border Layout...
52328                 var el = this.el.createChild();
52329                 var clayout = cfg.layout;
52330                 delete cfg.layout;
52331                 clayout.items   = clayout.items  || [];
52332                 // replace this exitems with the clayout ones..
52333                 xitems = clayout.items;
52334                  
52335                 
52336                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52337                     cfg.background = false;
52338                 }
52339                 var layout = new Roo.BorderLayout(el, clayout);
52340                 
52341                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52342                 //console.log('adding nested layout panel '  + cfg.toSource());
52343                 this.add(region, ret);
52344                 nb = {}; /// find first...
52345                 break;
52346                 
52347             case 'GridPanel': 
52348             
52349                 // needs grid and region
52350                 
52351                 //var el = this.getRegion(region).el.createChild();
52352                 var el = this.el.createChild();
52353                 // create the grid first...
52354                 
52355                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52356                 delete cfg.grid;
52357                 if (region == 'center' && this.active ) {
52358                     cfg.background = false;
52359                 }
52360                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52361                 
52362                 this.add(region, ret);
52363                 if (cfg.background) {
52364                     ret.on('activate', function(gp) {
52365                         if (!gp.grid.rendered) {
52366                             gp.grid.render();
52367                         }
52368                     });
52369                 } else {
52370                     grid.render();
52371                 }
52372                 break;
52373            
52374            
52375            
52376                 
52377                 
52378                 
52379             default:
52380                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52381                     
52382                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52383                     this.add(region, ret);
52384                 } else {
52385                 
52386                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52387                     return null;
52388                 }
52389                 
52390              // GridPanel (grid, cfg)
52391             
52392         }
52393         this.beginUpdate();
52394         // add children..
52395         var region = '';
52396         var abn = {};
52397         Roo.each(xitems, function(i)  {
52398             region = nb && i.region ? i.region : false;
52399             
52400             var add = ret.addxtype(i);
52401            
52402             if (region) {
52403                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52404                 if (!i.background) {
52405                     abn[region] = nb[region] ;
52406                 }
52407             }
52408             
52409         });
52410         this.endUpdate();
52411
52412         // make the last non-background panel active..
52413         //if (nb) { Roo.log(abn); }
52414         if (nb) {
52415             
52416             for(var r in abn) {
52417                 region = this.getRegion(r);
52418                 if (region) {
52419                     // tried using nb[r], but it does not work..
52420                      
52421                     region.showPanel(abn[r]);
52422                    
52423                 }
52424             }
52425         }
52426         return ret;
52427         
52428     }
52429 });
52430
52431 /**
52432  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52433  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52434  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52435  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52436  * <pre><code>
52437 // shorthand
52438 var CP = Roo.ContentPanel;
52439
52440 var layout = Roo.BorderLayout.create({
52441     north: {
52442         initialSize: 25,
52443         titlebar: false,
52444         panels: [new CP("north", "North")]
52445     },
52446     west: {
52447         split:true,
52448         initialSize: 200,
52449         minSize: 175,
52450         maxSize: 400,
52451         titlebar: true,
52452         collapsible: true,
52453         panels: [new CP("west", {title: "West"})]
52454     },
52455     east: {
52456         split:true,
52457         initialSize: 202,
52458         minSize: 175,
52459         maxSize: 400,
52460         titlebar: true,
52461         collapsible: true,
52462         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52463     },
52464     south: {
52465         split:true,
52466         initialSize: 100,
52467         minSize: 100,
52468         maxSize: 200,
52469         titlebar: true,
52470         collapsible: true,
52471         panels: [new CP("south", {title: "South", closable: true})]
52472     },
52473     center: {
52474         titlebar: true,
52475         autoScroll:true,
52476         resizeTabs: true,
52477         minTabWidth: 50,
52478         preferredTabWidth: 150,
52479         panels: [
52480             new CP("center1", {title: "Close Me", closable: true}),
52481             new CP("center2", {title: "Center Panel", closable: false})
52482         ]
52483     }
52484 }, document.body);
52485
52486 layout.getRegion("center").showPanel("center1");
52487 </code></pre>
52488  * @param config
52489  * @param targetEl
52490  */
52491 Roo.BorderLayout.create = function(config, targetEl){
52492     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52493     layout.beginUpdate();
52494     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52495     for(var j = 0, jlen = regions.length; j < jlen; j++){
52496         var lr = regions[j];
52497         if(layout.regions[lr] && config[lr].panels){
52498             var r = layout.regions[lr];
52499             var ps = config[lr].panels;
52500             layout.addTypedPanels(r, ps);
52501         }
52502     }
52503     layout.endUpdate();
52504     return layout;
52505 };
52506
52507 // private
52508 Roo.BorderLayout.RegionFactory = {
52509     // private
52510     validRegions : ["north","south","east","west","center"],
52511
52512     // private
52513     create : function(target, mgr, config){
52514         target = target.toLowerCase();
52515         if(config.lightweight || config.basic){
52516             return new Roo.BasicLayoutRegion(mgr, config, target);
52517         }
52518         switch(target){
52519             case "north":
52520                 return new Roo.NorthLayoutRegion(mgr, config);
52521             case "south":
52522                 return new Roo.SouthLayoutRegion(mgr, config);
52523             case "east":
52524                 return new Roo.EastLayoutRegion(mgr, config);
52525             case "west":
52526                 return new Roo.WestLayoutRegion(mgr, config);
52527             case "center":
52528                 return new Roo.CenterLayoutRegion(mgr, config);
52529         }
52530         throw 'Layout region "'+target+'" not supported.';
52531     }
52532 };/*
52533  * Based on:
52534  * Ext JS Library 1.1.1
52535  * Copyright(c) 2006-2007, Ext JS, LLC.
52536  *
52537  * Originally Released Under LGPL - original licence link has changed is not relivant.
52538  *
52539  * Fork - LGPL
52540  * <script type="text/javascript">
52541  */
52542  
52543 /**
52544  * @class Roo.BasicLayoutRegion
52545  * @extends Roo.util.Observable
52546  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52547  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52548  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52549  */
52550 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52551     this.mgr = mgr;
52552     this.position  = pos;
52553     this.events = {
52554         /**
52555          * @scope Roo.BasicLayoutRegion
52556          */
52557         
52558         /**
52559          * @event beforeremove
52560          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52561          * @param {Roo.LayoutRegion} this
52562          * @param {Roo.ContentPanel} panel The panel
52563          * @param {Object} e The cancel event object
52564          */
52565         "beforeremove" : true,
52566         /**
52567          * @event invalidated
52568          * Fires when the layout for this region is changed.
52569          * @param {Roo.LayoutRegion} this
52570          */
52571         "invalidated" : true,
52572         /**
52573          * @event visibilitychange
52574          * Fires when this region is shown or hidden 
52575          * @param {Roo.LayoutRegion} this
52576          * @param {Boolean} visibility true or false
52577          */
52578         "visibilitychange" : true,
52579         /**
52580          * @event paneladded
52581          * Fires when a panel is added. 
52582          * @param {Roo.LayoutRegion} this
52583          * @param {Roo.ContentPanel} panel The panel
52584          */
52585         "paneladded" : true,
52586         /**
52587          * @event panelremoved
52588          * Fires when a panel is removed. 
52589          * @param {Roo.LayoutRegion} this
52590          * @param {Roo.ContentPanel} panel The panel
52591          */
52592         "panelremoved" : true,
52593         /**
52594          * @event beforecollapse
52595          * Fires when this region before collapse.
52596          * @param {Roo.LayoutRegion} this
52597          */
52598         "beforecollapse" : true,
52599         /**
52600          * @event collapsed
52601          * Fires when this region is collapsed.
52602          * @param {Roo.LayoutRegion} this
52603          */
52604         "collapsed" : true,
52605         /**
52606          * @event expanded
52607          * Fires when this region is expanded.
52608          * @param {Roo.LayoutRegion} this
52609          */
52610         "expanded" : true,
52611         /**
52612          * @event slideshow
52613          * Fires when this region is slid into view.
52614          * @param {Roo.LayoutRegion} this
52615          */
52616         "slideshow" : true,
52617         /**
52618          * @event slidehide
52619          * Fires when this region slides out of view. 
52620          * @param {Roo.LayoutRegion} this
52621          */
52622         "slidehide" : true,
52623         /**
52624          * @event panelactivated
52625          * Fires when a panel is activated. 
52626          * @param {Roo.LayoutRegion} this
52627          * @param {Roo.ContentPanel} panel The activated panel
52628          */
52629         "panelactivated" : true,
52630         /**
52631          * @event resized
52632          * Fires when the user resizes this region. 
52633          * @param {Roo.LayoutRegion} this
52634          * @param {Number} newSize The new size (width for east/west, height for north/south)
52635          */
52636         "resized" : true
52637     };
52638     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52639     this.panels = new Roo.util.MixedCollection();
52640     this.panels.getKey = this.getPanelId.createDelegate(this);
52641     this.box = null;
52642     this.activePanel = null;
52643     // ensure listeners are added...
52644     
52645     if (config.listeners || config.events) {
52646         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52647             listeners : config.listeners || {},
52648             events : config.events || {}
52649         });
52650     }
52651     
52652     if(skipConfig !== true){
52653         this.applyConfig(config);
52654     }
52655 };
52656
52657 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52658     getPanelId : function(p){
52659         return p.getId();
52660     },
52661     
52662     applyConfig : function(config){
52663         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52664         this.config = config;
52665         
52666     },
52667     
52668     /**
52669      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52670      * the width, for horizontal (north, south) the height.
52671      * @param {Number} newSize The new width or height
52672      */
52673     resizeTo : function(newSize){
52674         var el = this.el ? this.el :
52675                  (this.activePanel ? this.activePanel.getEl() : null);
52676         if(el){
52677             switch(this.position){
52678                 case "east":
52679                 case "west":
52680                     el.setWidth(newSize);
52681                     this.fireEvent("resized", this, newSize);
52682                 break;
52683                 case "north":
52684                 case "south":
52685                     el.setHeight(newSize);
52686                     this.fireEvent("resized", this, newSize);
52687                 break;                
52688             }
52689         }
52690     },
52691     
52692     getBox : function(){
52693         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52694     },
52695     
52696     getMargins : function(){
52697         return this.margins;
52698     },
52699     
52700     updateBox : function(box){
52701         this.box = box;
52702         var el = this.activePanel.getEl();
52703         el.dom.style.left = box.x + "px";
52704         el.dom.style.top = box.y + "px";
52705         this.activePanel.setSize(box.width, box.height);
52706     },
52707     
52708     /**
52709      * Returns the container element for this region.
52710      * @return {Roo.Element}
52711      */
52712     getEl : function(){
52713         return this.activePanel;
52714     },
52715     
52716     /**
52717      * Returns true if this region is currently visible.
52718      * @return {Boolean}
52719      */
52720     isVisible : function(){
52721         return this.activePanel ? true : false;
52722     },
52723     
52724     setActivePanel : function(panel){
52725         panel = this.getPanel(panel);
52726         if(this.activePanel && this.activePanel != panel){
52727             this.activePanel.setActiveState(false);
52728             this.activePanel.getEl().setLeftTop(-10000,-10000);
52729         }
52730         this.activePanel = panel;
52731         panel.setActiveState(true);
52732         if(this.box){
52733             panel.setSize(this.box.width, this.box.height);
52734         }
52735         this.fireEvent("panelactivated", this, panel);
52736         this.fireEvent("invalidated");
52737     },
52738     
52739     /**
52740      * Show the specified panel.
52741      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52742      * @return {Roo.ContentPanel} The shown panel or null
52743      */
52744     showPanel : function(panel){
52745         if(panel = this.getPanel(panel)){
52746             this.setActivePanel(panel);
52747         }
52748         return panel;
52749     },
52750     
52751     /**
52752      * Get the active panel for this region.
52753      * @return {Roo.ContentPanel} The active panel or null
52754      */
52755     getActivePanel : function(){
52756         return this.activePanel;
52757     },
52758     
52759     /**
52760      * Add the passed ContentPanel(s)
52761      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52762      * @return {Roo.ContentPanel} The panel added (if only one was added)
52763      */
52764     add : function(panel){
52765         if(arguments.length > 1){
52766             for(var i = 0, len = arguments.length; i < len; i++) {
52767                 this.add(arguments[i]);
52768             }
52769             return null;
52770         }
52771         if(this.hasPanel(panel)){
52772             this.showPanel(panel);
52773             return panel;
52774         }
52775         var el = panel.getEl();
52776         if(el.dom.parentNode != this.mgr.el.dom){
52777             this.mgr.el.dom.appendChild(el.dom);
52778         }
52779         if(panel.setRegion){
52780             panel.setRegion(this);
52781         }
52782         this.panels.add(panel);
52783         el.setStyle("position", "absolute");
52784         if(!panel.background){
52785             this.setActivePanel(panel);
52786             if(this.config.initialSize && this.panels.getCount()==1){
52787                 this.resizeTo(this.config.initialSize);
52788             }
52789         }
52790         this.fireEvent("paneladded", this, panel);
52791         return panel;
52792     },
52793     
52794     /**
52795      * Returns true if the panel is in this region.
52796      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52797      * @return {Boolean}
52798      */
52799     hasPanel : function(panel){
52800         if(typeof panel == "object"){ // must be panel obj
52801             panel = panel.getId();
52802         }
52803         return this.getPanel(panel) ? true : false;
52804     },
52805     
52806     /**
52807      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52808      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52809      * @param {Boolean} preservePanel Overrides the config preservePanel option
52810      * @return {Roo.ContentPanel} The panel that was removed
52811      */
52812     remove : function(panel, preservePanel){
52813         panel = this.getPanel(panel);
52814         if(!panel){
52815             return null;
52816         }
52817         var e = {};
52818         this.fireEvent("beforeremove", this, panel, e);
52819         if(e.cancel === true){
52820             return null;
52821         }
52822         var panelId = panel.getId();
52823         this.panels.removeKey(panelId);
52824         return panel;
52825     },
52826     
52827     /**
52828      * Returns the panel specified or null if it's not in this region.
52829      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52830      * @return {Roo.ContentPanel}
52831      */
52832     getPanel : function(id){
52833         if(typeof id == "object"){ // must be panel obj
52834             return id;
52835         }
52836         return this.panels.get(id);
52837     },
52838     
52839     /**
52840      * Returns this regions position (north/south/east/west/center).
52841      * @return {String} 
52842      */
52843     getPosition: function(){
52844         return this.position;    
52845     }
52846 });/*
52847  * Based on:
52848  * Ext JS Library 1.1.1
52849  * Copyright(c) 2006-2007, Ext JS, LLC.
52850  *
52851  * Originally Released Under LGPL - original licence link has changed is not relivant.
52852  *
52853  * Fork - LGPL
52854  * <script type="text/javascript">
52855  */
52856  
52857 /**
52858  * @class Roo.LayoutRegion
52859  * @extends Roo.BasicLayoutRegion
52860  * This class represents a region in a layout manager.
52861  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
52862  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
52863  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
52864  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
52865  * @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})
52866  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
52867  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
52868  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
52869  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
52870  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
52871  * @cfg {String}    title           The title for the region (overrides panel titles)
52872  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
52873  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
52874  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
52875  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
52876  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
52877  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
52878  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
52879  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
52880  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
52881  * @cfg {Boolean}   showPin         True to show a pin button
52882  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
52883  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
52884  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
52885  * @cfg {Number}    width           For East/West panels
52886  * @cfg {Number}    height          For North/South panels
52887  * @cfg {Boolean}   split           To show the splitter
52888  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
52889  */
52890 Roo.LayoutRegion = function(mgr, config, pos){
52891     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
52892     var dh = Roo.DomHelper;
52893     /** This region's container element 
52894     * @type Roo.Element */
52895     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
52896     /** This region's title element 
52897     * @type Roo.Element */
52898
52899     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
52900         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
52901         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
52902     ]}, true);
52903     this.titleEl.enableDisplayMode();
52904     /** This region's title text element 
52905     * @type HTMLElement */
52906     this.titleTextEl = this.titleEl.dom.firstChild;
52907     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
52908     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
52909     this.closeBtn.enableDisplayMode();
52910     this.closeBtn.on("click", this.closeClicked, this);
52911     this.closeBtn.hide();
52912
52913     this.createBody(config);
52914     this.visible = true;
52915     this.collapsed = false;
52916
52917     if(config.hideWhenEmpty){
52918         this.hide();
52919         this.on("paneladded", this.validateVisibility, this);
52920         this.on("panelremoved", this.validateVisibility, this);
52921     }
52922     this.applyConfig(config);
52923 };
52924
52925 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
52926
52927     createBody : function(){
52928         /** This region's body element 
52929         * @type Roo.Element */
52930         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
52931     },
52932
52933     applyConfig : function(c){
52934         if(c.collapsible && this.position != "center" && !this.collapsedEl){
52935             var dh = Roo.DomHelper;
52936             if(c.titlebar !== false){
52937                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
52938                 this.collapseBtn.on("click", this.collapse, this);
52939                 this.collapseBtn.enableDisplayMode();
52940
52941                 if(c.showPin === true || this.showPin){
52942                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
52943                     this.stickBtn.enableDisplayMode();
52944                     this.stickBtn.on("click", this.expand, this);
52945                     this.stickBtn.hide();
52946                 }
52947             }
52948             /** This region's collapsed element
52949             * @type Roo.Element */
52950             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
52951                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
52952             ]}, true);
52953             if(c.floatable !== false){
52954                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
52955                this.collapsedEl.on("click", this.collapseClick, this);
52956             }
52957
52958             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
52959                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
52960                    id: "message", unselectable: "on", style:{"float":"left"}});
52961                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
52962              }
52963             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
52964             this.expandBtn.on("click", this.expand, this);
52965         }
52966         if(this.collapseBtn){
52967             this.collapseBtn.setVisible(c.collapsible == true);
52968         }
52969         this.cmargins = c.cmargins || this.cmargins ||
52970                          (this.position == "west" || this.position == "east" ?
52971                              {top: 0, left: 2, right:2, bottom: 0} :
52972                              {top: 2, left: 0, right:0, bottom: 2});
52973         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52974         this.bottomTabs = c.tabPosition != "top";
52975         this.autoScroll = c.autoScroll || false;
52976         if(this.autoScroll){
52977             this.bodyEl.setStyle("overflow", "auto");
52978         }else{
52979             this.bodyEl.setStyle("overflow", "hidden");
52980         }
52981         //if(c.titlebar !== false){
52982             if((!c.titlebar && !c.title) || c.titlebar === false){
52983                 this.titleEl.hide();
52984             }else{
52985                 this.titleEl.show();
52986                 if(c.title){
52987                     this.titleTextEl.innerHTML = c.title;
52988                 }
52989             }
52990         //}
52991         this.duration = c.duration || .30;
52992         this.slideDuration = c.slideDuration || .45;
52993         this.config = c;
52994         if(c.collapsed){
52995             this.collapse(true);
52996         }
52997         if(c.hidden){
52998             this.hide();
52999         }
53000     },
53001     /**
53002      * Returns true if this region is currently visible.
53003      * @return {Boolean}
53004      */
53005     isVisible : function(){
53006         return this.visible;
53007     },
53008
53009     /**
53010      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53011      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53012      */
53013     setCollapsedTitle : function(title){
53014         title = title || "&#160;";
53015         if(this.collapsedTitleTextEl){
53016             this.collapsedTitleTextEl.innerHTML = title;
53017         }
53018     },
53019
53020     getBox : function(){
53021         var b;
53022         if(!this.collapsed){
53023             b = this.el.getBox(false, true);
53024         }else{
53025             b = this.collapsedEl.getBox(false, true);
53026         }
53027         return b;
53028     },
53029
53030     getMargins : function(){
53031         return this.collapsed ? this.cmargins : this.margins;
53032     },
53033
53034     highlight : function(){
53035         this.el.addClass("x-layout-panel-dragover");
53036     },
53037
53038     unhighlight : function(){
53039         this.el.removeClass("x-layout-panel-dragover");
53040     },
53041
53042     updateBox : function(box){
53043         this.box = box;
53044         if(!this.collapsed){
53045             this.el.dom.style.left = box.x + "px";
53046             this.el.dom.style.top = box.y + "px";
53047             this.updateBody(box.width, box.height);
53048         }else{
53049             this.collapsedEl.dom.style.left = box.x + "px";
53050             this.collapsedEl.dom.style.top = box.y + "px";
53051             this.collapsedEl.setSize(box.width, box.height);
53052         }
53053         if(this.tabs){
53054             this.tabs.autoSizeTabs();
53055         }
53056     },
53057
53058     updateBody : function(w, h){
53059         if(w !== null){
53060             this.el.setWidth(w);
53061             w -= this.el.getBorderWidth("rl");
53062             if(this.config.adjustments){
53063                 w += this.config.adjustments[0];
53064             }
53065         }
53066         if(h !== null){
53067             this.el.setHeight(h);
53068             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53069             h -= this.el.getBorderWidth("tb");
53070             if(this.config.adjustments){
53071                 h += this.config.adjustments[1];
53072             }
53073             this.bodyEl.setHeight(h);
53074             if(this.tabs){
53075                 h = this.tabs.syncHeight(h);
53076             }
53077         }
53078         if(this.panelSize){
53079             w = w !== null ? w : this.panelSize.width;
53080             h = h !== null ? h : this.panelSize.height;
53081         }
53082         if(this.activePanel){
53083             var el = this.activePanel.getEl();
53084             w = w !== null ? w : el.getWidth();
53085             h = h !== null ? h : el.getHeight();
53086             this.panelSize = {width: w, height: h};
53087             this.activePanel.setSize(w, h);
53088         }
53089         if(Roo.isIE && this.tabs){
53090             this.tabs.el.repaint();
53091         }
53092     },
53093
53094     /**
53095      * Returns the container element for this region.
53096      * @return {Roo.Element}
53097      */
53098     getEl : function(){
53099         return this.el;
53100     },
53101
53102     /**
53103      * Hides this region.
53104      */
53105     hide : function(){
53106         if(!this.collapsed){
53107             this.el.dom.style.left = "-2000px";
53108             this.el.hide();
53109         }else{
53110             this.collapsedEl.dom.style.left = "-2000px";
53111             this.collapsedEl.hide();
53112         }
53113         this.visible = false;
53114         this.fireEvent("visibilitychange", this, false);
53115     },
53116
53117     /**
53118      * Shows this region if it was previously hidden.
53119      */
53120     show : function(){
53121         if(!this.collapsed){
53122             this.el.show();
53123         }else{
53124             this.collapsedEl.show();
53125         }
53126         this.visible = true;
53127         this.fireEvent("visibilitychange", this, true);
53128     },
53129
53130     closeClicked : function(){
53131         if(this.activePanel){
53132             this.remove(this.activePanel);
53133         }
53134     },
53135
53136     collapseClick : function(e){
53137         if(this.isSlid){
53138            e.stopPropagation();
53139            this.slideIn();
53140         }else{
53141            e.stopPropagation();
53142            this.slideOut();
53143         }
53144     },
53145
53146     /**
53147      * Collapses this region.
53148      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53149      */
53150     collapse : function(skipAnim, skipCheck){
53151         if(this.collapsed) {
53152             return;
53153         }
53154         
53155         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53156             
53157             this.collapsed = true;
53158             if(this.split){
53159                 this.split.el.hide();
53160             }
53161             if(this.config.animate && skipAnim !== true){
53162                 this.fireEvent("invalidated", this);
53163                 this.animateCollapse();
53164             }else{
53165                 this.el.setLocation(-20000,-20000);
53166                 this.el.hide();
53167                 this.collapsedEl.show();
53168                 this.fireEvent("collapsed", this);
53169                 this.fireEvent("invalidated", this);
53170             }
53171         }
53172         
53173     },
53174
53175     animateCollapse : function(){
53176         // overridden
53177     },
53178
53179     /**
53180      * Expands this region if it was previously collapsed.
53181      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53182      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53183      */
53184     expand : function(e, skipAnim){
53185         if(e) {
53186             e.stopPropagation();
53187         }
53188         if(!this.collapsed || this.el.hasActiveFx()) {
53189             return;
53190         }
53191         if(this.isSlid){
53192             this.afterSlideIn();
53193             skipAnim = true;
53194         }
53195         this.collapsed = false;
53196         if(this.config.animate && skipAnim !== true){
53197             this.animateExpand();
53198         }else{
53199             this.el.show();
53200             if(this.split){
53201                 this.split.el.show();
53202             }
53203             this.collapsedEl.setLocation(-2000,-2000);
53204             this.collapsedEl.hide();
53205             this.fireEvent("invalidated", this);
53206             this.fireEvent("expanded", this);
53207         }
53208     },
53209
53210     animateExpand : function(){
53211         // overridden
53212     },
53213
53214     initTabs : function()
53215     {
53216         this.bodyEl.setStyle("overflow", "hidden");
53217         var ts = new Roo.TabPanel(
53218                 this.bodyEl.dom,
53219                 {
53220                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53221                     disableTooltips: this.config.disableTabTips,
53222                     toolbar : this.config.toolbar
53223                 }
53224         );
53225         if(this.config.hideTabs){
53226             ts.stripWrap.setDisplayed(false);
53227         }
53228         this.tabs = ts;
53229         ts.resizeTabs = this.config.resizeTabs === true;
53230         ts.minTabWidth = this.config.minTabWidth || 40;
53231         ts.maxTabWidth = this.config.maxTabWidth || 250;
53232         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53233         ts.monitorResize = false;
53234         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53235         ts.bodyEl.addClass('x-layout-tabs-body');
53236         this.panels.each(this.initPanelAsTab, this);
53237     },
53238
53239     initPanelAsTab : function(panel){
53240         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53241                     this.config.closeOnTab && panel.isClosable());
53242         if(panel.tabTip !== undefined){
53243             ti.setTooltip(panel.tabTip);
53244         }
53245         ti.on("activate", function(){
53246               this.setActivePanel(panel);
53247         }, this);
53248         if(this.config.closeOnTab){
53249             ti.on("beforeclose", function(t, e){
53250                 e.cancel = true;
53251                 this.remove(panel);
53252             }, this);
53253         }
53254         return ti;
53255     },
53256
53257     updatePanelTitle : function(panel, title){
53258         if(this.activePanel == panel){
53259             this.updateTitle(title);
53260         }
53261         if(this.tabs){
53262             var ti = this.tabs.getTab(panel.getEl().id);
53263             ti.setText(title);
53264             if(panel.tabTip !== undefined){
53265                 ti.setTooltip(panel.tabTip);
53266             }
53267         }
53268     },
53269
53270     updateTitle : function(title){
53271         if(this.titleTextEl && !this.config.title){
53272             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53273         }
53274     },
53275
53276     setActivePanel : function(panel){
53277         panel = this.getPanel(panel);
53278         if(this.activePanel && this.activePanel != panel){
53279             this.activePanel.setActiveState(false);
53280         }
53281         this.activePanel = panel;
53282         panel.setActiveState(true);
53283         if(this.panelSize){
53284             panel.setSize(this.panelSize.width, this.panelSize.height);
53285         }
53286         if(this.closeBtn){
53287             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53288         }
53289         this.updateTitle(panel.getTitle());
53290         if(this.tabs){
53291             this.fireEvent("invalidated", this);
53292         }
53293         this.fireEvent("panelactivated", this, panel);
53294     },
53295
53296     /**
53297      * Shows the specified panel.
53298      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53299      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53300      */
53301     showPanel : function(panel)
53302     {
53303         panel = this.getPanel(panel);
53304         if(panel){
53305             if(this.tabs){
53306                 var tab = this.tabs.getTab(panel.getEl().id);
53307                 if(tab.isHidden()){
53308                     this.tabs.unhideTab(tab.id);
53309                 }
53310                 tab.activate();
53311             }else{
53312                 this.setActivePanel(panel);
53313             }
53314         }
53315         return panel;
53316     },
53317
53318     /**
53319      * Get the active panel for this region.
53320      * @return {Roo.ContentPanel} The active panel or null
53321      */
53322     getActivePanel : function(){
53323         return this.activePanel;
53324     },
53325
53326     validateVisibility : function(){
53327         if(this.panels.getCount() < 1){
53328             this.updateTitle("&#160;");
53329             this.closeBtn.hide();
53330             this.hide();
53331         }else{
53332             if(!this.isVisible()){
53333                 this.show();
53334             }
53335         }
53336     },
53337
53338     /**
53339      * Adds the passed ContentPanel(s) to this region.
53340      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53341      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53342      */
53343     add : function(panel){
53344         if(arguments.length > 1){
53345             for(var i = 0, len = arguments.length; i < len; i++) {
53346                 this.add(arguments[i]);
53347             }
53348             return null;
53349         }
53350         if(this.hasPanel(panel)){
53351             this.showPanel(panel);
53352             return panel;
53353         }
53354         panel.setRegion(this);
53355         this.panels.add(panel);
53356         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53357             this.bodyEl.dom.appendChild(panel.getEl().dom);
53358             if(panel.background !== true){
53359                 this.setActivePanel(panel);
53360             }
53361             this.fireEvent("paneladded", this, panel);
53362             return panel;
53363         }
53364         if(!this.tabs){
53365             this.initTabs();
53366         }else{
53367             this.initPanelAsTab(panel);
53368         }
53369         if(panel.background !== true){
53370             this.tabs.activate(panel.getEl().id);
53371         }
53372         this.fireEvent("paneladded", this, panel);
53373         return panel;
53374     },
53375
53376     /**
53377      * Hides the tab for the specified panel.
53378      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53379      */
53380     hidePanel : function(panel){
53381         if(this.tabs && (panel = this.getPanel(panel))){
53382             this.tabs.hideTab(panel.getEl().id);
53383         }
53384     },
53385
53386     /**
53387      * Unhides the tab for a previously hidden panel.
53388      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53389      */
53390     unhidePanel : function(panel){
53391         if(this.tabs && (panel = this.getPanel(panel))){
53392             this.tabs.unhideTab(panel.getEl().id);
53393         }
53394     },
53395
53396     clearPanels : function(){
53397         while(this.panels.getCount() > 0){
53398              this.remove(this.panels.first());
53399         }
53400     },
53401
53402     /**
53403      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53404      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53405      * @param {Boolean} preservePanel Overrides the config preservePanel option
53406      * @return {Roo.ContentPanel} The panel that was removed
53407      */
53408     remove : function(panel, preservePanel){
53409         panel = this.getPanel(panel);
53410         if(!panel){
53411             return null;
53412         }
53413         var e = {};
53414         this.fireEvent("beforeremove", this, panel, e);
53415         if(e.cancel === true){
53416             return null;
53417         }
53418         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53419         var panelId = panel.getId();
53420         this.panels.removeKey(panelId);
53421         if(preservePanel){
53422             document.body.appendChild(panel.getEl().dom);
53423         }
53424         if(this.tabs){
53425             this.tabs.removeTab(panel.getEl().id);
53426         }else if (!preservePanel){
53427             this.bodyEl.dom.removeChild(panel.getEl().dom);
53428         }
53429         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53430             var p = this.panels.first();
53431             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53432             tempEl.appendChild(p.getEl().dom);
53433             this.bodyEl.update("");
53434             this.bodyEl.dom.appendChild(p.getEl().dom);
53435             tempEl = null;
53436             this.updateTitle(p.getTitle());
53437             this.tabs = null;
53438             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53439             this.setActivePanel(p);
53440         }
53441         panel.setRegion(null);
53442         if(this.activePanel == panel){
53443             this.activePanel = null;
53444         }
53445         if(this.config.autoDestroy !== false && preservePanel !== true){
53446             try{panel.destroy();}catch(e){}
53447         }
53448         this.fireEvent("panelremoved", this, panel);
53449         return panel;
53450     },
53451
53452     /**
53453      * Returns the TabPanel component used by this region
53454      * @return {Roo.TabPanel}
53455      */
53456     getTabs : function(){
53457         return this.tabs;
53458     },
53459
53460     createTool : function(parentEl, className){
53461         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53462             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53463         btn.addClassOnOver("x-layout-tools-button-over");
53464         return btn;
53465     }
53466 });/*
53467  * Based on:
53468  * Ext JS Library 1.1.1
53469  * Copyright(c) 2006-2007, Ext JS, LLC.
53470  *
53471  * Originally Released Under LGPL - original licence link has changed is not relivant.
53472  *
53473  * Fork - LGPL
53474  * <script type="text/javascript">
53475  */
53476  
53477
53478
53479 /**
53480  * @class Roo.SplitLayoutRegion
53481  * @extends Roo.LayoutRegion
53482  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53483  */
53484 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53485     this.cursor = cursor;
53486     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53487 };
53488
53489 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53490     splitTip : "Drag to resize.",
53491     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53492     useSplitTips : false,
53493
53494     applyConfig : function(config){
53495         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53496         if(config.split){
53497             if(!this.split){
53498                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53499                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53500                 /** The SplitBar for this region 
53501                 * @type Roo.SplitBar */
53502                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53503                 this.split.on("moved", this.onSplitMove, this);
53504                 this.split.useShim = config.useShim === true;
53505                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53506                 if(this.useSplitTips){
53507                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53508                 }
53509                 if(config.collapsible){
53510                     this.split.el.on("dblclick", this.collapse,  this);
53511                 }
53512             }
53513             if(typeof config.minSize != "undefined"){
53514                 this.split.minSize = config.minSize;
53515             }
53516             if(typeof config.maxSize != "undefined"){
53517                 this.split.maxSize = config.maxSize;
53518             }
53519             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53520                 this.hideSplitter();
53521             }
53522         }
53523     },
53524
53525     getHMaxSize : function(){
53526          var cmax = this.config.maxSize || 10000;
53527          var center = this.mgr.getRegion("center");
53528          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53529     },
53530
53531     getVMaxSize : function(){
53532          var cmax = this.config.maxSize || 10000;
53533          var center = this.mgr.getRegion("center");
53534          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53535     },
53536
53537     onSplitMove : function(split, newSize){
53538         this.fireEvent("resized", this, newSize);
53539     },
53540     
53541     /** 
53542      * Returns the {@link Roo.SplitBar} for this region.
53543      * @return {Roo.SplitBar}
53544      */
53545     getSplitBar : function(){
53546         return this.split;
53547     },
53548     
53549     hide : function(){
53550         this.hideSplitter();
53551         Roo.SplitLayoutRegion.superclass.hide.call(this);
53552     },
53553
53554     hideSplitter : function(){
53555         if(this.split){
53556             this.split.el.setLocation(-2000,-2000);
53557             this.split.el.hide();
53558         }
53559     },
53560
53561     show : function(){
53562         if(this.split){
53563             this.split.el.show();
53564         }
53565         Roo.SplitLayoutRegion.superclass.show.call(this);
53566     },
53567     
53568     beforeSlide: function(){
53569         if(Roo.isGecko){// firefox overflow auto bug workaround
53570             this.bodyEl.clip();
53571             if(this.tabs) {
53572                 this.tabs.bodyEl.clip();
53573             }
53574             if(this.activePanel){
53575                 this.activePanel.getEl().clip();
53576                 
53577                 if(this.activePanel.beforeSlide){
53578                     this.activePanel.beforeSlide();
53579                 }
53580             }
53581         }
53582     },
53583     
53584     afterSlide : function(){
53585         if(Roo.isGecko){// firefox overflow auto bug workaround
53586             this.bodyEl.unclip();
53587             if(this.tabs) {
53588                 this.tabs.bodyEl.unclip();
53589             }
53590             if(this.activePanel){
53591                 this.activePanel.getEl().unclip();
53592                 if(this.activePanel.afterSlide){
53593                     this.activePanel.afterSlide();
53594                 }
53595             }
53596         }
53597     },
53598
53599     initAutoHide : function(){
53600         if(this.autoHide !== false){
53601             if(!this.autoHideHd){
53602                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53603                 this.autoHideHd = {
53604                     "mouseout": function(e){
53605                         if(!e.within(this.el, true)){
53606                             st.delay(500);
53607                         }
53608                     },
53609                     "mouseover" : function(e){
53610                         st.cancel();
53611                     },
53612                     scope : this
53613                 };
53614             }
53615             this.el.on(this.autoHideHd);
53616         }
53617     },
53618
53619     clearAutoHide : function(){
53620         if(this.autoHide !== false){
53621             this.el.un("mouseout", this.autoHideHd.mouseout);
53622             this.el.un("mouseover", this.autoHideHd.mouseover);
53623         }
53624     },
53625
53626     clearMonitor : function(){
53627         Roo.get(document).un("click", this.slideInIf, this);
53628     },
53629
53630     // these names are backwards but not changed for compat
53631     slideOut : function(){
53632         if(this.isSlid || this.el.hasActiveFx()){
53633             return;
53634         }
53635         this.isSlid = true;
53636         if(this.collapseBtn){
53637             this.collapseBtn.hide();
53638         }
53639         this.closeBtnState = this.closeBtn.getStyle('display');
53640         this.closeBtn.hide();
53641         if(this.stickBtn){
53642             this.stickBtn.show();
53643         }
53644         this.el.show();
53645         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53646         this.beforeSlide();
53647         this.el.setStyle("z-index", 10001);
53648         this.el.slideIn(this.getSlideAnchor(), {
53649             callback: function(){
53650                 this.afterSlide();
53651                 this.initAutoHide();
53652                 Roo.get(document).on("click", this.slideInIf, this);
53653                 this.fireEvent("slideshow", this);
53654             },
53655             scope: this,
53656             block: true
53657         });
53658     },
53659
53660     afterSlideIn : function(){
53661         this.clearAutoHide();
53662         this.isSlid = false;
53663         this.clearMonitor();
53664         this.el.setStyle("z-index", "");
53665         if(this.collapseBtn){
53666             this.collapseBtn.show();
53667         }
53668         this.closeBtn.setStyle('display', this.closeBtnState);
53669         if(this.stickBtn){
53670             this.stickBtn.hide();
53671         }
53672         this.fireEvent("slidehide", this);
53673     },
53674
53675     slideIn : function(cb){
53676         if(!this.isSlid || this.el.hasActiveFx()){
53677             Roo.callback(cb);
53678             return;
53679         }
53680         this.isSlid = false;
53681         this.beforeSlide();
53682         this.el.slideOut(this.getSlideAnchor(), {
53683             callback: function(){
53684                 this.el.setLeftTop(-10000, -10000);
53685                 this.afterSlide();
53686                 this.afterSlideIn();
53687                 Roo.callback(cb);
53688             },
53689             scope: this,
53690             block: true
53691         });
53692     },
53693     
53694     slideInIf : function(e){
53695         if(!e.within(this.el)){
53696             this.slideIn();
53697         }
53698     },
53699
53700     animateCollapse : function(){
53701         this.beforeSlide();
53702         this.el.setStyle("z-index", 20000);
53703         var anchor = this.getSlideAnchor();
53704         this.el.slideOut(anchor, {
53705             callback : function(){
53706                 this.el.setStyle("z-index", "");
53707                 this.collapsedEl.slideIn(anchor, {duration:.3});
53708                 this.afterSlide();
53709                 this.el.setLocation(-10000,-10000);
53710                 this.el.hide();
53711                 this.fireEvent("collapsed", this);
53712             },
53713             scope: this,
53714             block: true
53715         });
53716     },
53717
53718     animateExpand : function(){
53719         this.beforeSlide();
53720         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53721         this.el.setStyle("z-index", 20000);
53722         this.collapsedEl.hide({
53723             duration:.1
53724         });
53725         this.el.slideIn(this.getSlideAnchor(), {
53726             callback : function(){
53727                 this.el.setStyle("z-index", "");
53728                 this.afterSlide();
53729                 if(this.split){
53730                     this.split.el.show();
53731                 }
53732                 this.fireEvent("invalidated", this);
53733                 this.fireEvent("expanded", this);
53734             },
53735             scope: this,
53736             block: true
53737         });
53738     },
53739
53740     anchors : {
53741         "west" : "left",
53742         "east" : "right",
53743         "north" : "top",
53744         "south" : "bottom"
53745     },
53746
53747     sanchors : {
53748         "west" : "l",
53749         "east" : "r",
53750         "north" : "t",
53751         "south" : "b"
53752     },
53753
53754     canchors : {
53755         "west" : "tl-tr",
53756         "east" : "tr-tl",
53757         "north" : "tl-bl",
53758         "south" : "bl-tl"
53759     },
53760
53761     getAnchor : function(){
53762         return this.anchors[this.position];
53763     },
53764
53765     getCollapseAnchor : function(){
53766         return this.canchors[this.position];
53767     },
53768
53769     getSlideAnchor : function(){
53770         return this.sanchors[this.position];
53771     },
53772
53773     getAlignAdj : function(){
53774         var cm = this.cmargins;
53775         switch(this.position){
53776             case "west":
53777                 return [0, 0];
53778             break;
53779             case "east":
53780                 return [0, 0];
53781             break;
53782             case "north":
53783                 return [0, 0];
53784             break;
53785             case "south":
53786                 return [0, 0];
53787             break;
53788         }
53789     },
53790
53791     getExpandAdj : function(){
53792         var c = this.collapsedEl, cm = this.cmargins;
53793         switch(this.position){
53794             case "west":
53795                 return [-(cm.right+c.getWidth()+cm.left), 0];
53796             break;
53797             case "east":
53798                 return [cm.right+c.getWidth()+cm.left, 0];
53799             break;
53800             case "north":
53801                 return [0, -(cm.top+cm.bottom+c.getHeight())];
53802             break;
53803             case "south":
53804                 return [0, cm.top+cm.bottom+c.getHeight()];
53805             break;
53806         }
53807     }
53808 });/*
53809  * Based on:
53810  * Ext JS Library 1.1.1
53811  * Copyright(c) 2006-2007, Ext JS, LLC.
53812  *
53813  * Originally Released Under LGPL - original licence link has changed is not relivant.
53814  *
53815  * Fork - LGPL
53816  * <script type="text/javascript">
53817  */
53818 /*
53819  * These classes are private internal classes
53820  */
53821 Roo.CenterLayoutRegion = function(mgr, config){
53822     Roo.LayoutRegion.call(this, mgr, config, "center");
53823     this.visible = true;
53824     this.minWidth = config.minWidth || 20;
53825     this.minHeight = config.minHeight || 20;
53826 };
53827
53828 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
53829     hide : function(){
53830         // center panel can't be hidden
53831     },
53832     
53833     show : function(){
53834         // center panel can't be hidden
53835     },
53836     
53837     getMinWidth: function(){
53838         return this.minWidth;
53839     },
53840     
53841     getMinHeight: function(){
53842         return this.minHeight;
53843     }
53844 });
53845
53846
53847 Roo.NorthLayoutRegion = function(mgr, config){
53848     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
53849     if(this.split){
53850         this.split.placement = Roo.SplitBar.TOP;
53851         this.split.orientation = Roo.SplitBar.VERTICAL;
53852         this.split.el.addClass("x-layout-split-v");
53853     }
53854     var size = config.initialSize || config.height;
53855     if(typeof size != "undefined"){
53856         this.el.setHeight(size);
53857     }
53858 };
53859 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
53860     orientation: Roo.SplitBar.VERTICAL,
53861     getBox : function(){
53862         if(this.collapsed){
53863             return this.collapsedEl.getBox();
53864         }
53865         var box = this.el.getBox();
53866         if(this.split){
53867             box.height += this.split.el.getHeight();
53868         }
53869         return box;
53870     },
53871     
53872     updateBox : function(box){
53873         if(this.split && !this.collapsed){
53874             box.height -= this.split.el.getHeight();
53875             this.split.el.setLeft(box.x);
53876             this.split.el.setTop(box.y+box.height);
53877             this.split.el.setWidth(box.width);
53878         }
53879         if(this.collapsed){
53880             this.updateBody(box.width, null);
53881         }
53882         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53883     }
53884 });
53885
53886 Roo.SouthLayoutRegion = function(mgr, config){
53887     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
53888     if(this.split){
53889         this.split.placement = Roo.SplitBar.BOTTOM;
53890         this.split.orientation = Roo.SplitBar.VERTICAL;
53891         this.split.el.addClass("x-layout-split-v");
53892     }
53893     var size = config.initialSize || config.height;
53894     if(typeof size != "undefined"){
53895         this.el.setHeight(size);
53896     }
53897 };
53898 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
53899     orientation: Roo.SplitBar.VERTICAL,
53900     getBox : function(){
53901         if(this.collapsed){
53902             return this.collapsedEl.getBox();
53903         }
53904         var box = this.el.getBox();
53905         if(this.split){
53906             var sh = this.split.el.getHeight();
53907             box.height += sh;
53908             box.y -= sh;
53909         }
53910         return box;
53911     },
53912     
53913     updateBox : function(box){
53914         if(this.split && !this.collapsed){
53915             var sh = this.split.el.getHeight();
53916             box.height -= sh;
53917             box.y += sh;
53918             this.split.el.setLeft(box.x);
53919             this.split.el.setTop(box.y-sh);
53920             this.split.el.setWidth(box.width);
53921         }
53922         if(this.collapsed){
53923             this.updateBody(box.width, null);
53924         }
53925         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53926     }
53927 });
53928
53929 Roo.EastLayoutRegion = function(mgr, config){
53930     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
53931     if(this.split){
53932         this.split.placement = Roo.SplitBar.RIGHT;
53933         this.split.orientation = Roo.SplitBar.HORIZONTAL;
53934         this.split.el.addClass("x-layout-split-h");
53935     }
53936     var size = config.initialSize || config.width;
53937     if(typeof size != "undefined"){
53938         this.el.setWidth(size);
53939     }
53940 };
53941 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
53942     orientation: Roo.SplitBar.HORIZONTAL,
53943     getBox : function(){
53944         if(this.collapsed){
53945             return this.collapsedEl.getBox();
53946         }
53947         var box = this.el.getBox();
53948         if(this.split){
53949             var sw = this.split.el.getWidth();
53950             box.width += sw;
53951             box.x -= sw;
53952         }
53953         return box;
53954     },
53955
53956     updateBox : function(box){
53957         if(this.split && !this.collapsed){
53958             var sw = this.split.el.getWidth();
53959             box.width -= sw;
53960             this.split.el.setLeft(box.x);
53961             this.split.el.setTop(box.y);
53962             this.split.el.setHeight(box.height);
53963             box.x += sw;
53964         }
53965         if(this.collapsed){
53966             this.updateBody(null, box.height);
53967         }
53968         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53969     }
53970 });
53971
53972 Roo.WestLayoutRegion = function(mgr, config){
53973     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
53974     if(this.split){
53975         this.split.placement = Roo.SplitBar.LEFT;
53976         this.split.orientation = Roo.SplitBar.HORIZONTAL;
53977         this.split.el.addClass("x-layout-split-h");
53978     }
53979     var size = config.initialSize || config.width;
53980     if(typeof size != "undefined"){
53981         this.el.setWidth(size);
53982     }
53983 };
53984 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
53985     orientation: Roo.SplitBar.HORIZONTAL,
53986     getBox : function(){
53987         if(this.collapsed){
53988             return this.collapsedEl.getBox();
53989         }
53990         var box = this.el.getBox();
53991         if(this.split){
53992             box.width += this.split.el.getWidth();
53993         }
53994         return box;
53995     },
53996     
53997     updateBox : function(box){
53998         if(this.split && !this.collapsed){
53999             var sw = this.split.el.getWidth();
54000             box.width -= sw;
54001             this.split.el.setLeft(box.x+box.width);
54002             this.split.el.setTop(box.y);
54003             this.split.el.setHeight(box.height);
54004         }
54005         if(this.collapsed){
54006             this.updateBody(null, box.height);
54007         }
54008         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54009     }
54010 });
54011 /*
54012  * Based on:
54013  * Ext JS Library 1.1.1
54014  * Copyright(c) 2006-2007, Ext JS, LLC.
54015  *
54016  * Originally Released Under LGPL - original licence link has changed is not relivant.
54017  *
54018  * Fork - LGPL
54019  * <script type="text/javascript">
54020  */
54021  
54022  
54023 /*
54024  * Private internal class for reading and applying state
54025  */
54026 Roo.LayoutStateManager = function(layout){
54027      // default empty state
54028      this.state = {
54029         north: {},
54030         south: {},
54031         east: {},
54032         west: {}       
54033     };
54034 };
54035
54036 Roo.LayoutStateManager.prototype = {
54037     init : function(layout, provider){
54038         this.provider = provider;
54039         var state = provider.get(layout.id+"-layout-state");
54040         if(state){
54041             var wasUpdating = layout.isUpdating();
54042             if(!wasUpdating){
54043                 layout.beginUpdate();
54044             }
54045             for(var key in state){
54046                 if(typeof state[key] != "function"){
54047                     var rstate = state[key];
54048                     var r = layout.getRegion(key);
54049                     if(r && rstate){
54050                         if(rstate.size){
54051                             r.resizeTo(rstate.size);
54052                         }
54053                         if(rstate.collapsed == true){
54054                             r.collapse(true);
54055                         }else{
54056                             r.expand(null, true);
54057                         }
54058                     }
54059                 }
54060             }
54061             if(!wasUpdating){
54062                 layout.endUpdate();
54063             }
54064             this.state = state; 
54065         }
54066         this.layout = layout;
54067         layout.on("regionresized", this.onRegionResized, this);
54068         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54069         layout.on("regionexpanded", this.onRegionExpanded, this);
54070     },
54071     
54072     storeState : function(){
54073         this.provider.set(this.layout.id+"-layout-state", this.state);
54074     },
54075     
54076     onRegionResized : function(region, newSize){
54077         this.state[region.getPosition()].size = newSize;
54078         this.storeState();
54079     },
54080     
54081     onRegionCollapsed : function(region){
54082         this.state[region.getPosition()].collapsed = true;
54083         this.storeState();
54084     },
54085     
54086     onRegionExpanded : function(region){
54087         this.state[region.getPosition()].collapsed = false;
54088         this.storeState();
54089     }
54090 };/*
54091  * Based on:
54092  * Ext JS Library 1.1.1
54093  * Copyright(c) 2006-2007, Ext JS, LLC.
54094  *
54095  * Originally Released Under LGPL - original licence link has changed is not relivant.
54096  *
54097  * Fork - LGPL
54098  * <script type="text/javascript">
54099  */
54100 /**
54101  * @class Roo.ContentPanel
54102  * @extends Roo.util.Observable
54103  * A basic ContentPanel element.
54104  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54105  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54106  * @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
54107  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54108  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54109  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54110  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54111  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54112  * @cfg {String} title          The title for this panel
54113  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54114  * @cfg {String} url            Calls {@link #setUrl} with this value
54115  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54116  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54117  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54118  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54119
54120  * @constructor
54121  * Create a new ContentPanel.
54122  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54123  * @param {String/Object} config A string to set only the title or a config object
54124  * @param {String} content (optional) Set the HTML content for this panel
54125  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54126  */
54127 Roo.ContentPanel = function(el, config, content){
54128     
54129      
54130     /*
54131     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54132         config = el;
54133         el = Roo.id();
54134     }
54135     if (config && config.parentLayout) { 
54136         el = config.parentLayout.el.createChild(); 
54137     }
54138     */
54139     if(el.autoCreate){ // xtype is available if this is called from factory
54140         config = el;
54141         el = Roo.id();
54142     }
54143     this.el = Roo.get(el);
54144     if(!this.el && config && config.autoCreate){
54145         if(typeof config.autoCreate == "object"){
54146             if(!config.autoCreate.id){
54147                 config.autoCreate.id = config.id||el;
54148             }
54149             this.el = Roo.DomHelper.append(document.body,
54150                         config.autoCreate, true);
54151         }else{
54152             this.el = Roo.DomHelper.append(document.body,
54153                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54154         }
54155     }
54156     this.closable = false;
54157     this.loaded = false;
54158     this.active = false;
54159     if(typeof config == "string"){
54160         this.title = config;
54161     }else{
54162         Roo.apply(this, config);
54163     }
54164     
54165     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54166         this.wrapEl = this.el.wrap();
54167         this.toolbar.container = this.el.insertSibling(false, 'before');
54168         this.toolbar = new Roo.Toolbar(this.toolbar);
54169     }
54170     
54171     // xtype created footer. - not sure if will work as we normally have to render first..
54172     if (this.footer && !this.footer.el && this.footer.xtype) {
54173         if (!this.wrapEl) {
54174             this.wrapEl = this.el.wrap();
54175         }
54176     
54177         this.footer.container = this.wrapEl.createChild();
54178          
54179         this.footer = Roo.factory(this.footer, Roo);
54180         
54181     }
54182     
54183     if(this.resizeEl){
54184         this.resizeEl = Roo.get(this.resizeEl, true);
54185     }else{
54186         this.resizeEl = this.el;
54187     }
54188     // handle view.xtype
54189     
54190  
54191     
54192     
54193     this.addEvents({
54194         /**
54195          * @event activate
54196          * Fires when this panel is activated. 
54197          * @param {Roo.ContentPanel} this
54198          */
54199         "activate" : true,
54200         /**
54201          * @event deactivate
54202          * Fires when this panel is activated. 
54203          * @param {Roo.ContentPanel} this
54204          */
54205         "deactivate" : true,
54206
54207         /**
54208          * @event resize
54209          * Fires when this panel is resized if fitToFrame is true.
54210          * @param {Roo.ContentPanel} this
54211          * @param {Number} width The width after any component adjustments
54212          * @param {Number} height The height after any component adjustments
54213          */
54214         "resize" : true,
54215         
54216          /**
54217          * @event render
54218          * Fires when this tab is created
54219          * @param {Roo.ContentPanel} this
54220          */
54221         "render" : true
54222          
54223         
54224     });
54225     
54226
54227     
54228     
54229     if(this.autoScroll){
54230         this.resizeEl.setStyle("overflow", "auto");
54231     } else {
54232         // fix randome scrolling
54233         this.el.on('scroll', function() {
54234             Roo.log('fix random scolling');
54235             this.scrollTo('top',0); 
54236         });
54237     }
54238     content = content || this.content;
54239     if(content){
54240         this.setContent(content);
54241     }
54242     if(config && config.url){
54243         this.setUrl(this.url, this.params, this.loadOnce);
54244     }
54245     
54246     
54247     
54248     Roo.ContentPanel.superclass.constructor.call(this);
54249     
54250     if (this.view && typeof(this.view.xtype) != 'undefined') {
54251         this.view.el = this.el.appendChild(document.createElement("div"));
54252         this.view = Roo.factory(this.view); 
54253         this.view.render  &&  this.view.render(false, '');  
54254     }
54255     
54256     
54257     this.fireEvent('render', this);
54258 };
54259
54260 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54261     tabTip:'',
54262     setRegion : function(region){
54263         this.region = region;
54264         if(region){
54265            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54266         }else{
54267            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54268         } 
54269     },
54270     
54271     /**
54272      * Returns the toolbar for this Panel if one was configured. 
54273      * @return {Roo.Toolbar} 
54274      */
54275     getToolbar : function(){
54276         return this.toolbar;
54277     },
54278     
54279     setActiveState : function(active){
54280         this.active = active;
54281         if(!active){
54282             this.fireEvent("deactivate", this);
54283         }else{
54284             this.fireEvent("activate", this);
54285         }
54286     },
54287     /**
54288      * Updates this panel's element
54289      * @param {String} content The new content
54290      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54291     */
54292     setContent : function(content, loadScripts){
54293         this.el.update(content, loadScripts);
54294     },
54295
54296     ignoreResize : function(w, h){
54297         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54298             return true;
54299         }else{
54300             this.lastSize = {width: w, height: h};
54301             return false;
54302         }
54303     },
54304     /**
54305      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54306      * @return {Roo.UpdateManager} The UpdateManager
54307      */
54308     getUpdateManager : function(){
54309         return this.el.getUpdateManager();
54310     },
54311      /**
54312      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54313      * @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:
54314 <pre><code>
54315 panel.load({
54316     url: "your-url.php",
54317     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54318     callback: yourFunction,
54319     scope: yourObject, //(optional scope)
54320     discardUrl: false,
54321     nocache: false,
54322     text: "Loading...",
54323     timeout: 30,
54324     scripts: false
54325 });
54326 </code></pre>
54327      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54328      * 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.
54329      * @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}
54330      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54331      * @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.
54332      * @return {Roo.ContentPanel} this
54333      */
54334     load : function(){
54335         var um = this.el.getUpdateManager();
54336         um.update.apply(um, arguments);
54337         return this;
54338     },
54339
54340
54341     /**
54342      * 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.
54343      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54344      * @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)
54345      * @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)
54346      * @return {Roo.UpdateManager} The UpdateManager
54347      */
54348     setUrl : function(url, params, loadOnce){
54349         if(this.refreshDelegate){
54350             this.removeListener("activate", this.refreshDelegate);
54351         }
54352         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54353         this.on("activate", this.refreshDelegate);
54354         return this.el.getUpdateManager();
54355     },
54356     
54357     _handleRefresh : function(url, params, loadOnce){
54358         if(!loadOnce || !this.loaded){
54359             var updater = this.el.getUpdateManager();
54360             updater.update(url, params, this._setLoaded.createDelegate(this));
54361         }
54362     },
54363     
54364     _setLoaded : function(){
54365         this.loaded = true;
54366     }, 
54367     
54368     /**
54369      * Returns this panel's id
54370      * @return {String} 
54371      */
54372     getId : function(){
54373         return this.el.id;
54374     },
54375     
54376     /** 
54377      * Returns this panel's element - used by regiosn to add.
54378      * @return {Roo.Element} 
54379      */
54380     getEl : function(){
54381         return this.wrapEl || this.el;
54382     },
54383     
54384     adjustForComponents : function(width, height)
54385     {
54386         //Roo.log('adjustForComponents ');
54387         if(this.resizeEl != this.el){
54388             width -= this.el.getFrameWidth('lr');
54389             height -= this.el.getFrameWidth('tb');
54390         }
54391         if(this.toolbar){
54392             var te = this.toolbar.getEl();
54393             height -= te.getHeight();
54394             te.setWidth(width);
54395         }
54396         if(this.footer){
54397             var te = this.footer.getEl();
54398             //Roo.log("footer:" + te.getHeight());
54399             
54400             height -= te.getHeight();
54401             te.setWidth(width);
54402         }
54403         
54404         
54405         if(this.adjustments){
54406             width += this.adjustments[0];
54407             height += this.adjustments[1];
54408         }
54409         return {"width": width, "height": height};
54410     },
54411     
54412     setSize : function(width, height){
54413         if(this.fitToFrame && !this.ignoreResize(width, height)){
54414             if(this.fitContainer && this.resizeEl != this.el){
54415                 this.el.setSize(width, height);
54416             }
54417             var size = this.adjustForComponents(width, height);
54418             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54419             this.fireEvent('resize', this, size.width, size.height);
54420         }
54421     },
54422     
54423     /**
54424      * Returns this panel's title
54425      * @return {String} 
54426      */
54427     getTitle : function(){
54428         return this.title;
54429     },
54430     
54431     /**
54432      * Set this panel's title
54433      * @param {String} title
54434      */
54435     setTitle : function(title){
54436         this.title = title;
54437         if(this.region){
54438             this.region.updatePanelTitle(this, title);
54439         }
54440     },
54441     
54442     /**
54443      * Returns true is this panel was configured to be closable
54444      * @return {Boolean} 
54445      */
54446     isClosable : function(){
54447         return this.closable;
54448     },
54449     
54450     beforeSlide : function(){
54451         this.el.clip();
54452         this.resizeEl.clip();
54453     },
54454     
54455     afterSlide : function(){
54456         this.el.unclip();
54457         this.resizeEl.unclip();
54458     },
54459     
54460     /**
54461      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54462      *   Will fail silently if the {@link #setUrl} method has not been called.
54463      *   This does not activate the panel, just updates its content.
54464      */
54465     refresh : function(){
54466         if(this.refreshDelegate){
54467            this.loaded = false;
54468            this.refreshDelegate();
54469         }
54470     },
54471     
54472     /**
54473      * Destroys this panel
54474      */
54475     destroy : function(){
54476         this.el.removeAllListeners();
54477         var tempEl = document.createElement("span");
54478         tempEl.appendChild(this.el.dom);
54479         tempEl.innerHTML = "";
54480         this.el.remove();
54481         this.el = null;
54482     },
54483     
54484     /**
54485      * form - if the content panel contains a form - this is a reference to it.
54486      * @type {Roo.form.Form}
54487      */
54488     form : false,
54489     /**
54490      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54491      *    This contains a reference to it.
54492      * @type {Roo.View}
54493      */
54494     view : false,
54495     
54496       /**
54497      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54498      * <pre><code>
54499
54500 layout.addxtype({
54501        xtype : 'Form',
54502        items: [ .... ]
54503    }
54504 );
54505
54506 </code></pre>
54507      * @param {Object} cfg Xtype definition of item to add.
54508      */
54509     
54510     addxtype : function(cfg) {
54511         // add form..
54512         if (cfg.xtype.match(/^Form$/)) {
54513             
54514             var el;
54515             //if (this.footer) {
54516             //    el = this.footer.container.insertSibling(false, 'before');
54517             //} else {
54518                 el = this.el.createChild();
54519             //}
54520
54521             this.form = new  Roo.form.Form(cfg);
54522             
54523             
54524             if ( this.form.allItems.length) {
54525                 this.form.render(el.dom);
54526             }
54527             return this.form;
54528         }
54529         // should only have one of theses..
54530         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54531             // views.. should not be just added - used named prop 'view''
54532             
54533             cfg.el = this.el.appendChild(document.createElement("div"));
54534             // factory?
54535             
54536             var ret = new Roo.factory(cfg);
54537              
54538              ret.render && ret.render(false, ''); // render blank..
54539             this.view = ret;
54540             return ret;
54541         }
54542         return false;
54543     }
54544 });
54545
54546 /**
54547  * @class Roo.GridPanel
54548  * @extends Roo.ContentPanel
54549  * @constructor
54550  * Create a new GridPanel.
54551  * @param {Roo.grid.Grid} grid The grid for this panel
54552  * @param {String/Object} config A string to set only the panel's title, or a config object
54553  */
54554 Roo.GridPanel = function(grid, config){
54555     
54556   
54557     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54558         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54559         
54560     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54561     
54562     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54563     
54564     if(this.toolbar){
54565         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54566     }
54567     // xtype created footer. - not sure if will work as we normally have to render first..
54568     if (this.footer && !this.footer.el && this.footer.xtype) {
54569         
54570         this.footer.container = this.grid.getView().getFooterPanel(true);
54571         this.footer.dataSource = this.grid.dataSource;
54572         this.footer = Roo.factory(this.footer, Roo);
54573         
54574     }
54575     
54576     grid.monitorWindowResize = false; // turn off autosizing
54577     grid.autoHeight = false;
54578     grid.autoWidth = false;
54579     this.grid = grid;
54580     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54581 };
54582
54583 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54584     getId : function(){
54585         return this.grid.id;
54586     },
54587     
54588     /**
54589      * Returns the grid for this panel
54590      * @return {Roo.grid.Grid} 
54591      */
54592     getGrid : function(){
54593         return this.grid;    
54594     },
54595     
54596     setSize : function(width, height){
54597         if(!this.ignoreResize(width, height)){
54598             var grid = this.grid;
54599             var size = this.adjustForComponents(width, height);
54600             grid.getGridEl().setSize(size.width, size.height);
54601             grid.autoSize();
54602         }
54603     },
54604     
54605     beforeSlide : function(){
54606         this.grid.getView().scroller.clip();
54607     },
54608     
54609     afterSlide : function(){
54610         this.grid.getView().scroller.unclip();
54611     },
54612     
54613     destroy : function(){
54614         this.grid.destroy();
54615         delete this.grid;
54616         Roo.GridPanel.superclass.destroy.call(this); 
54617     }
54618 });
54619
54620
54621 /**
54622  * @class Roo.NestedLayoutPanel
54623  * @extends Roo.ContentPanel
54624  * @constructor
54625  * Create a new NestedLayoutPanel.
54626  * 
54627  * 
54628  * @param {Roo.BorderLayout} layout The layout for this panel
54629  * @param {String/Object} config A string to set only the title or a config object
54630  */
54631 Roo.NestedLayoutPanel = function(layout, config)
54632 {
54633     // construct with only one argument..
54634     /* FIXME - implement nicer consturctors
54635     if (layout.layout) {
54636         config = layout;
54637         layout = config.layout;
54638         delete config.layout;
54639     }
54640     if (layout.xtype && !layout.getEl) {
54641         // then layout needs constructing..
54642         layout = Roo.factory(layout, Roo);
54643     }
54644     */
54645     
54646     
54647     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54648     
54649     layout.monitorWindowResize = false; // turn off autosizing
54650     this.layout = layout;
54651     this.layout.getEl().addClass("x-layout-nested-layout");
54652     
54653     
54654     
54655     
54656 };
54657
54658 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54659
54660     setSize : function(width, height){
54661         if(!this.ignoreResize(width, height)){
54662             var size = this.adjustForComponents(width, height);
54663             var el = this.layout.getEl();
54664             el.setSize(size.width, size.height);
54665             var touch = el.dom.offsetWidth;
54666             this.layout.layout();
54667             // ie requires a double layout on the first pass
54668             if(Roo.isIE && !this.initialized){
54669                 this.initialized = true;
54670                 this.layout.layout();
54671             }
54672         }
54673     },
54674     
54675     // activate all subpanels if not currently active..
54676     
54677     setActiveState : function(active){
54678         this.active = active;
54679         if(!active){
54680             this.fireEvent("deactivate", this);
54681             return;
54682         }
54683         
54684         this.fireEvent("activate", this);
54685         // not sure if this should happen before or after..
54686         if (!this.layout) {
54687             return; // should not happen..
54688         }
54689         var reg = false;
54690         for (var r in this.layout.regions) {
54691             reg = this.layout.getRegion(r);
54692             if (reg.getActivePanel()) {
54693                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54694                 reg.setActivePanel(reg.getActivePanel());
54695                 continue;
54696             }
54697             if (!reg.panels.length) {
54698                 continue;
54699             }
54700             reg.showPanel(reg.getPanel(0));
54701         }
54702         
54703         
54704         
54705         
54706     },
54707     
54708     /**
54709      * Returns the nested BorderLayout for this panel
54710      * @return {Roo.BorderLayout} 
54711      */
54712     getLayout : function(){
54713         return this.layout;
54714     },
54715     
54716      /**
54717      * Adds a xtype elements to the layout of the nested panel
54718      * <pre><code>
54719
54720 panel.addxtype({
54721        xtype : 'ContentPanel',
54722        region: 'west',
54723        items: [ .... ]
54724    }
54725 );
54726
54727 panel.addxtype({
54728         xtype : 'NestedLayoutPanel',
54729         region: 'west',
54730         layout: {
54731            center: { },
54732            west: { }   
54733         },
54734         items : [ ... list of content panels or nested layout panels.. ]
54735    }
54736 );
54737 </code></pre>
54738      * @param {Object} cfg Xtype definition of item to add.
54739      */
54740     addxtype : function(cfg) {
54741         return this.layout.addxtype(cfg);
54742     
54743     }
54744 });
54745
54746 Roo.ScrollPanel = function(el, config, content){
54747     config = config || {};
54748     config.fitToFrame = true;
54749     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54750     
54751     this.el.dom.style.overflow = "hidden";
54752     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54753     this.el.removeClass("x-layout-inactive-content");
54754     this.el.on("mousewheel", this.onWheel, this);
54755
54756     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54757     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54758     up.unselectable(); down.unselectable();
54759     up.on("click", this.scrollUp, this);
54760     down.on("click", this.scrollDown, this);
54761     up.addClassOnOver("x-scroller-btn-over");
54762     down.addClassOnOver("x-scroller-btn-over");
54763     up.addClassOnClick("x-scroller-btn-click");
54764     down.addClassOnClick("x-scroller-btn-click");
54765     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
54766
54767     this.resizeEl = this.el;
54768     this.el = wrap; this.up = up; this.down = down;
54769 };
54770
54771 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
54772     increment : 100,
54773     wheelIncrement : 5,
54774     scrollUp : function(){
54775         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
54776     },
54777
54778     scrollDown : function(){
54779         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
54780     },
54781
54782     afterScroll : function(){
54783         var el = this.resizeEl;
54784         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
54785         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54786         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54787     },
54788
54789     setSize : function(){
54790         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
54791         this.afterScroll();
54792     },
54793
54794     onWheel : function(e){
54795         var d = e.getWheelDelta();
54796         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
54797         this.afterScroll();
54798         e.stopEvent();
54799     },
54800
54801     setContent : function(content, loadScripts){
54802         this.resizeEl.update(content, loadScripts);
54803     }
54804
54805 });
54806
54807
54808
54809
54810
54811
54812
54813
54814
54815 /**
54816  * @class Roo.TreePanel
54817  * @extends Roo.ContentPanel
54818  * @constructor
54819  * Create a new TreePanel. - defaults to fit/scoll contents.
54820  * @param {String/Object} config A string to set only the panel's title, or a config object
54821  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
54822  */
54823 Roo.TreePanel = function(config){
54824     var el = config.el;
54825     var tree = config.tree;
54826     delete config.tree; 
54827     delete config.el; // hopefull!
54828     
54829     // wrapper for IE7 strict & safari scroll issue
54830     
54831     var treeEl = el.createChild();
54832     config.resizeEl = treeEl;
54833     
54834     
54835     
54836     Roo.TreePanel.superclass.constructor.call(this, el, config);
54837  
54838  
54839     this.tree = new Roo.tree.TreePanel(treeEl , tree);
54840     //console.log(tree);
54841     this.on('activate', function()
54842     {
54843         if (this.tree.rendered) {
54844             return;
54845         }
54846         //console.log('render tree');
54847         this.tree.render();
54848     });
54849     // this should not be needed.. - it's actually the 'el' that resizes?
54850     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
54851     
54852     //this.on('resize',  function (cp, w, h) {
54853     //        this.tree.innerCt.setWidth(w);
54854     //        this.tree.innerCt.setHeight(h);
54855     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
54856     //});
54857
54858         
54859     
54860 };
54861
54862 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
54863     fitToFrame : true,
54864     autoScroll : true
54865 });
54866
54867
54868
54869
54870
54871
54872
54873
54874
54875
54876
54877 /*
54878  * Based on:
54879  * Ext JS Library 1.1.1
54880  * Copyright(c) 2006-2007, Ext JS, LLC.
54881  *
54882  * Originally Released Under LGPL - original licence link has changed is not relivant.
54883  *
54884  * Fork - LGPL
54885  * <script type="text/javascript">
54886  */
54887  
54888
54889 /**
54890  * @class Roo.ReaderLayout
54891  * @extends Roo.BorderLayout
54892  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
54893  * center region containing two nested regions (a top one for a list view and one for item preview below),
54894  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
54895  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
54896  * expedites the setup of the overall layout and regions for this common application style.
54897  * Example:
54898  <pre><code>
54899 var reader = new Roo.ReaderLayout();
54900 var CP = Roo.ContentPanel;  // shortcut for adding
54901
54902 reader.beginUpdate();
54903 reader.add("north", new CP("north", "North"));
54904 reader.add("west", new CP("west", {title: "West"}));
54905 reader.add("east", new CP("east", {title: "East"}));
54906
54907 reader.regions.listView.add(new CP("listView", "List"));
54908 reader.regions.preview.add(new CP("preview", "Preview"));
54909 reader.endUpdate();
54910 </code></pre>
54911 * @constructor
54912 * Create a new ReaderLayout
54913 * @param {Object} config Configuration options
54914 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
54915 * document.body if omitted)
54916 */
54917 Roo.ReaderLayout = function(config, renderTo){
54918     var c = config || {size:{}};
54919     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
54920         north: c.north !== false ? Roo.apply({
54921             split:false,
54922             initialSize: 32,
54923             titlebar: false
54924         }, c.north) : false,
54925         west: c.west !== false ? Roo.apply({
54926             split:true,
54927             initialSize: 200,
54928             minSize: 175,
54929             maxSize: 400,
54930             titlebar: true,
54931             collapsible: true,
54932             animate: true,
54933             margins:{left:5,right:0,bottom:5,top:5},
54934             cmargins:{left:5,right:5,bottom:5,top:5}
54935         }, c.west) : false,
54936         east: c.east !== false ? Roo.apply({
54937             split:true,
54938             initialSize: 200,
54939             minSize: 175,
54940             maxSize: 400,
54941             titlebar: true,
54942             collapsible: true,
54943             animate: true,
54944             margins:{left:0,right:5,bottom:5,top:5},
54945             cmargins:{left:5,right:5,bottom:5,top:5}
54946         }, c.east) : false,
54947         center: Roo.apply({
54948             tabPosition: 'top',
54949             autoScroll:false,
54950             closeOnTab: true,
54951             titlebar:false,
54952             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
54953         }, c.center)
54954     });
54955
54956     this.el.addClass('x-reader');
54957
54958     this.beginUpdate();
54959
54960     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
54961         south: c.preview !== false ? Roo.apply({
54962             split:true,
54963             initialSize: 200,
54964             minSize: 100,
54965             autoScroll:true,
54966             collapsible:true,
54967             titlebar: true,
54968             cmargins:{top:5,left:0, right:0, bottom:0}
54969         }, c.preview) : false,
54970         center: Roo.apply({
54971             autoScroll:false,
54972             titlebar:false,
54973             minHeight:200
54974         }, c.listView)
54975     });
54976     this.add('center', new Roo.NestedLayoutPanel(inner,
54977             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
54978
54979     this.endUpdate();
54980
54981     this.regions.preview = inner.getRegion('south');
54982     this.regions.listView = inner.getRegion('center');
54983 };
54984
54985 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
54986  * Based on:
54987  * Ext JS Library 1.1.1
54988  * Copyright(c) 2006-2007, Ext JS, LLC.
54989  *
54990  * Originally Released Under LGPL - original licence link has changed is not relivant.
54991  *
54992  * Fork - LGPL
54993  * <script type="text/javascript">
54994  */
54995  
54996 /**
54997  * @class Roo.grid.Grid
54998  * @extends Roo.util.Observable
54999  * This class represents the primary interface of a component based grid control.
55000  * <br><br>Usage:<pre><code>
55001  var grid = new Roo.grid.Grid("my-container-id", {
55002      ds: myDataStore,
55003      cm: myColModel,
55004      selModel: mySelectionModel,
55005      autoSizeColumns: true,
55006      monitorWindowResize: false,
55007      trackMouseOver: true
55008  });
55009  // set any options
55010  grid.render();
55011  * </code></pre>
55012  * <b>Common Problems:</b><br/>
55013  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55014  * element will correct this<br/>
55015  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55016  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55017  * are unpredictable.<br/>
55018  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55019  * grid to calculate dimensions/offsets.<br/>
55020   * @constructor
55021  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55022  * The container MUST have some type of size defined for the grid to fill. The container will be
55023  * automatically set to position relative if it isn't already.
55024  * @param {Object} config A config object that sets properties on this grid.
55025  */
55026 Roo.grid.Grid = function(container, config){
55027         // initialize the container
55028         this.container = Roo.get(container);
55029         this.container.update("");
55030         this.container.setStyle("overflow", "hidden");
55031     this.container.addClass('x-grid-container');
55032
55033     this.id = this.container.id;
55034
55035     Roo.apply(this, config);
55036     // check and correct shorthanded configs
55037     if(this.ds){
55038         this.dataSource = this.ds;
55039         delete this.ds;
55040     }
55041     if(this.cm){
55042         this.colModel = this.cm;
55043         delete this.cm;
55044     }
55045     if(this.sm){
55046         this.selModel = this.sm;
55047         delete this.sm;
55048     }
55049
55050     if (this.selModel) {
55051         this.selModel = Roo.factory(this.selModel, Roo.grid);
55052         this.sm = this.selModel;
55053         this.sm.xmodule = this.xmodule || false;
55054     }
55055     if (typeof(this.colModel.config) == 'undefined') {
55056         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55057         this.cm = this.colModel;
55058         this.cm.xmodule = this.xmodule || false;
55059     }
55060     if (this.dataSource) {
55061         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55062         this.ds = this.dataSource;
55063         this.ds.xmodule = this.xmodule || false;
55064          
55065     }
55066     
55067     
55068     
55069     if(this.width){
55070         this.container.setWidth(this.width);
55071     }
55072
55073     if(this.height){
55074         this.container.setHeight(this.height);
55075     }
55076     /** @private */
55077         this.addEvents({
55078         // raw events
55079         /**
55080          * @event click
55081          * The raw click event for the entire grid.
55082          * @param {Roo.EventObject} e
55083          */
55084         "click" : true,
55085         /**
55086          * @event dblclick
55087          * The raw dblclick event for the entire grid.
55088          * @param {Roo.EventObject} e
55089          */
55090         "dblclick" : true,
55091         /**
55092          * @event contextmenu
55093          * The raw contextmenu event for the entire grid.
55094          * @param {Roo.EventObject} e
55095          */
55096         "contextmenu" : true,
55097         /**
55098          * @event mousedown
55099          * The raw mousedown event for the entire grid.
55100          * @param {Roo.EventObject} e
55101          */
55102         "mousedown" : true,
55103         /**
55104          * @event mouseup
55105          * The raw mouseup event for the entire grid.
55106          * @param {Roo.EventObject} e
55107          */
55108         "mouseup" : true,
55109         /**
55110          * @event mouseover
55111          * The raw mouseover event for the entire grid.
55112          * @param {Roo.EventObject} e
55113          */
55114         "mouseover" : true,
55115         /**
55116          * @event mouseout
55117          * The raw mouseout event for the entire grid.
55118          * @param {Roo.EventObject} e
55119          */
55120         "mouseout" : true,
55121         /**
55122          * @event keypress
55123          * The raw keypress event for the entire grid.
55124          * @param {Roo.EventObject} e
55125          */
55126         "keypress" : true,
55127         /**
55128          * @event keydown
55129          * The raw keydown event for the entire grid.
55130          * @param {Roo.EventObject} e
55131          */
55132         "keydown" : true,
55133
55134         // custom events
55135
55136         /**
55137          * @event cellclick
55138          * Fires when a cell is clicked
55139          * @param {Grid} this
55140          * @param {Number} rowIndex
55141          * @param {Number} columnIndex
55142          * @param {Roo.EventObject} e
55143          */
55144         "cellclick" : true,
55145         /**
55146          * @event celldblclick
55147          * Fires when a cell is double clicked
55148          * @param {Grid} this
55149          * @param {Number} rowIndex
55150          * @param {Number} columnIndex
55151          * @param {Roo.EventObject} e
55152          */
55153         "celldblclick" : true,
55154         /**
55155          * @event rowclick
55156          * Fires when a row is clicked
55157          * @param {Grid} this
55158          * @param {Number} rowIndex
55159          * @param {Roo.EventObject} e
55160          */
55161         "rowclick" : true,
55162         /**
55163          * @event rowdblclick
55164          * Fires when a row is double clicked
55165          * @param {Grid} this
55166          * @param {Number} rowIndex
55167          * @param {Roo.EventObject} e
55168          */
55169         "rowdblclick" : true,
55170         /**
55171          * @event headerclick
55172          * Fires when a header is clicked
55173          * @param {Grid} this
55174          * @param {Number} columnIndex
55175          * @param {Roo.EventObject} e
55176          */
55177         "headerclick" : true,
55178         /**
55179          * @event headerdblclick
55180          * Fires when a header cell is double clicked
55181          * @param {Grid} this
55182          * @param {Number} columnIndex
55183          * @param {Roo.EventObject} e
55184          */
55185         "headerdblclick" : true,
55186         /**
55187          * @event rowcontextmenu
55188          * Fires when a row is right clicked
55189          * @param {Grid} this
55190          * @param {Number} rowIndex
55191          * @param {Roo.EventObject} e
55192          */
55193         "rowcontextmenu" : true,
55194         /**
55195          * @event cellcontextmenu
55196          * Fires when a cell is right clicked
55197          * @param {Grid} this
55198          * @param {Number} rowIndex
55199          * @param {Number} cellIndex
55200          * @param {Roo.EventObject} e
55201          */
55202          "cellcontextmenu" : true,
55203         /**
55204          * @event headercontextmenu
55205          * Fires when a header is right clicked
55206          * @param {Grid} this
55207          * @param {Number} columnIndex
55208          * @param {Roo.EventObject} e
55209          */
55210         "headercontextmenu" : true,
55211         /**
55212          * @event bodyscroll
55213          * Fires when the body element is scrolled
55214          * @param {Number} scrollLeft
55215          * @param {Number} scrollTop
55216          */
55217         "bodyscroll" : true,
55218         /**
55219          * @event columnresize
55220          * Fires when the user resizes a column
55221          * @param {Number} columnIndex
55222          * @param {Number} newSize
55223          */
55224         "columnresize" : true,
55225         /**
55226          * @event columnmove
55227          * Fires when the user moves a column
55228          * @param {Number} oldIndex
55229          * @param {Number} newIndex
55230          */
55231         "columnmove" : true,
55232         /**
55233          * @event startdrag
55234          * Fires when row(s) start being dragged
55235          * @param {Grid} this
55236          * @param {Roo.GridDD} dd The drag drop object
55237          * @param {event} e The raw browser event
55238          */
55239         "startdrag" : true,
55240         /**
55241          * @event enddrag
55242          * Fires when a drag operation is complete
55243          * @param {Grid} this
55244          * @param {Roo.GridDD} dd The drag drop object
55245          * @param {event} e The raw browser event
55246          */
55247         "enddrag" : true,
55248         /**
55249          * @event dragdrop
55250          * Fires when dragged row(s) are dropped on a valid DD target
55251          * @param {Grid} this
55252          * @param {Roo.GridDD} dd The drag drop object
55253          * @param {String} targetId The target drag drop object
55254          * @param {event} e The raw browser event
55255          */
55256         "dragdrop" : true,
55257         /**
55258          * @event dragover
55259          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55260          * @param {Grid} this
55261          * @param {Roo.GridDD} dd The drag drop object
55262          * @param {String} targetId The target drag drop object
55263          * @param {event} e The raw browser event
55264          */
55265         "dragover" : true,
55266         /**
55267          * @event dragenter
55268          *  Fires when the dragged row(s) first cross another DD target while being dragged
55269          * @param {Grid} this
55270          * @param {Roo.GridDD} dd The drag drop object
55271          * @param {String} targetId The target drag drop object
55272          * @param {event} e The raw browser event
55273          */
55274         "dragenter" : true,
55275         /**
55276          * @event dragout
55277          * Fires when the dragged row(s) leave another DD target while being dragged
55278          * @param {Grid} this
55279          * @param {Roo.GridDD} dd The drag drop object
55280          * @param {String} targetId The target drag drop object
55281          * @param {event} e The raw browser event
55282          */
55283         "dragout" : true,
55284         /**
55285          * @event rowclass
55286          * Fires when a row is rendered, so you can change add a style to it.
55287          * @param {GridView} gridview   The grid view
55288          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55289          */
55290         'rowclass' : true,
55291
55292         /**
55293          * @event render
55294          * Fires when the grid is rendered
55295          * @param {Grid} grid
55296          */
55297         'render' : true
55298     });
55299
55300     Roo.grid.Grid.superclass.constructor.call(this);
55301 };
55302 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55303     
55304     /**
55305      * @cfg {String} ddGroup - drag drop group.
55306      */
55307
55308     /**
55309      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55310      */
55311     minColumnWidth : 25,
55312
55313     /**
55314      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55315      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55316      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55317      */
55318     autoSizeColumns : false,
55319
55320     /**
55321      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55322      */
55323     autoSizeHeaders : true,
55324
55325     /**
55326      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55327      */
55328     monitorWindowResize : true,
55329
55330     /**
55331      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55332      * rows measured to get a columns size. Default is 0 (all rows).
55333      */
55334     maxRowsToMeasure : 0,
55335
55336     /**
55337      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55338      */
55339     trackMouseOver : true,
55340
55341     /**
55342     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55343     */
55344     
55345     /**
55346     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55347     */
55348     enableDragDrop : false,
55349     
55350     /**
55351     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55352     */
55353     enableColumnMove : true,
55354     
55355     /**
55356     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55357     */
55358     enableColumnHide : true,
55359     
55360     /**
55361     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55362     */
55363     enableRowHeightSync : false,
55364     
55365     /**
55366     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55367     */
55368     stripeRows : true,
55369     
55370     /**
55371     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55372     */
55373     autoHeight : false,
55374
55375     /**
55376      * @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.
55377      */
55378     autoExpandColumn : false,
55379
55380     /**
55381     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55382     * Default is 50.
55383     */
55384     autoExpandMin : 50,
55385
55386     /**
55387     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55388     */
55389     autoExpandMax : 1000,
55390
55391     /**
55392     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55393     */
55394     view : null,
55395
55396     /**
55397     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55398     */
55399     loadMask : false,
55400     /**
55401     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55402     */
55403     dropTarget: false,
55404     
55405    
55406     
55407     // private
55408     rendered : false,
55409
55410     /**
55411     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55412     * of a fixed width. Default is false.
55413     */
55414     /**
55415     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55416     */
55417     /**
55418      * Called once after all setup has been completed and the grid is ready to be rendered.
55419      * @return {Roo.grid.Grid} this
55420      */
55421     render : function()
55422     {
55423         var c = this.container;
55424         // try to detect autoHeight/width mode
55425         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55426             this.autoHeight = true;
55427         }
55428         var view = this.getView();
55429         view.init(this);
55430
55431         c.on("click", this.onClick, this);
55432         c.on("dblclick", this.onDblClick, this);
55433         c.on("contextmenu", this.onContextMenu, this);
55434         c.on("keydown", this.onKeyDown, this);
55435         if (Roo.isTouch) {
55436             c.on("touchstart", this.onTouchStart, this);
55437         }
55438
55439         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55440
55441         this.getSelectionModel().init(this);
55442
55443         view.render();
55444
55445         if(this.loadMask){
55446             this.loadMask = new Roo.LoadMask(this.container,
55447                     Roo.apply({store:this.dataSource}, this.loadMask));
55448         }
55449         
55450         
55451         if (this.toolbar && this.toolbar.xtype) {
55452             this.toolbar.container = this.getView().getHeaderPanel(true);
55453             this.toolbar = new Roo.Toolbar(this.toolbar);
55454         }
55455         if (this.footer && this.footer.xtype) {
55456             this.footer.dataSource = this.getDataSource();
55457             this.footer.container = this.getView().getFooterPanel(true);
55458             this.footer = Roo.factory(this.footer, Roo);
55459         }
55460         if (this.dropTarget && this.dropTarget.xtype) {
55461             delete this.dropTarget.xtype;
55462             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55463         }
55464         
55465         
55466         this.rendered = true;
55467         this.fireEvent('render', this);
55468         return this;
55469     },
55470
55471         /**
55472          * Reconfigures the grid to use a different Store and Column Model.
55473          * The View will be bound to the new objects and refreshed.
55474          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55475          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55476          */
55477     reconfigure : function(dataSource, colModel){
55478         if(this.loadMask){
55479             this.loadMask.destroy();
55480             this.loadMask = new Roo.LoadMask(this.container,
55481                     Roo.apply({store:dataSource}, this.loadMask));
55482         }
55483         this.view.bind(dataSource, colModel);
55484         this.dataSource = dataSource;
55485         this.colModel = colModel;
55486         this.view.refresh(true);
55487     },
55488
55489     // private
55490     onKeyDown : function(e){
55491         this.fireEvent("keydown", e);
55492     },
55493
55494     /**
55495      * Destroy this grid.
55496      * @param {Boolean} removeEl True to remove the element
55497      */
55498     destroy : function(removeEl, keepListeners){
55499         if(this.loadMask){
55500             this.loadMask.destroy();
55501         }
55502         var c = this.container;
55503         c.removeAllListeners();
55504         this.view.destroy();
55505         this.colModel.purgeListeners();
55506         if(!keepListeners){
55507             this.purgeListeners();
55508         }
55509         c.update("");
55510         if(removeEl === true){
55511             c.remove();
55512         }
55513     },
55514
55515     // private
55516     processEvent : function(name, e){
55517         // does this fire select???
55518         //Roo.log('grid:processEvent '  + name);
55519         
55520         if (name != 'touchstart' ) {
55521             this.fireEvent(name, e);    
55522         }
55523         
55524         var t = e.getTarget();
55525         var v = this.view;
55526         var header = v.findHeaderIndex(t);
55527         if(header !== false){
55528             var ename = name == 'touchstart' ? 'click' : name;
55529              
55530             this.fireEvent("header" + ename, this, header, e);
55531         }else{
55532             var row = v.findRowIndex(t);
55533             var cell = v.findCellIndex(t);
55534             if (name == 'touchstart') {
55535                 // first touch is always a click.
55536                 // hopefull this happens after selection is updated.?
55537                 name = false;
55538                 
55539                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55540                     var cs = this.selModel.getSelectedCell();
55541                     if (row == cs[0] && cell == cs[1]){
55542                         name = 'dblclick';
55543                     }
55544                 }
55545                 if (typeof(this.selModel.getSelections) != 'undefined') {
55546                     var cs = this.selModel.getSelections();
55547                     var ds = this.dataSource;
55548                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55549                         name = 'dblclick';
55550                     }
55551                 }
55552                 if (!name) {
55553                     return;
55554                 }
55555             }
55556             
55557             
55558             if(row !== false){
55559                 this.fireEvent("row" + name, this, row, e);
55560                 if(cell !== false){
55561                     this.fireEvent("cell" + name, this, row, cell, e);
55562                 }
55563             }
55564         }
55565     },
55566
55567     // private
55568     onClick : function(e){
55569         this.processEvent("click", e);
55570     },
55571    // private
55572     onTouchStart : function(e){
55573         this.processEvent("touchstart", e);
55574     },
55575
55576     // private
55577     onContextMenu : function(e, t){
55578         this.processEvent("contextmenu", e);
55579     },
55580
55581     // private
55582     onDblClick : function(e){
55583         this.processEvent("dblclick", e);
55584     },
55585
55586     // private
55587     walkCells : function(row, col, step, fn, scope){
55588         var cm = this.colModel, clen = cm.getColumnCount();
55589         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55590         if(step < 0){
55591             if(col < 0){
55592                 row--;
55593                 first = false;
55594             }
55595             while(row >= 0){
55596                 if(!first){
55597                     col = clen-1;
55598                 }
55599                 first = false;
55600                 while(col >= 0){
55601                     if(fn.call(scope || this, row, col, cm) === true){
55602                         return [row, col];
55603                     }
55604                     col--;
55605                 }
55606                 row--;
55607             }
55608         } else {
55609             if(col >= clen){
55610                 row++;
55611                 first = false;
55612             }
55613             while(row < rlen){
55614                 if(!first){
55615                     col = 0;
55616                 }
55617                 first = false;
55618                 while(col < clen){
55619                     if(fn.call(scope || this, row, col, cm) === true){
55620                         return [row, col];
55621                     }
55622                     col++;
55623                 }
55624                 row++;
55625             }
55626         }
55627         return null;
55628     },
55629
55630     // private
55631     getSelections : function(){
55632         return this.selModel.getSelections();
55633     },
55634
55635     /**
55636      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55637      * but if manual update is required this method will initiate it.
55638      */
55639     autoSize : function(){
55640         if(this.rendered){
55641             this.view.layout();
55642             if(this.view.adjustForScroll){
55643                 this.view.adjustForScroll();
55644             }
55645         }
55646     },
55647
55648     /**
55649      * Returns the grid's underlying element.
55650      * @return {Element} The element
55651      */
55652     getGridEl : function(){
55653         return this.container;
55654     },
55655
55656     // private for compatibility, overridden by editor grid
55657     stopEditing : function(){},
55658
55659     /**
55660      * Returns the grid's SelectionModel.
55661      * @return {SelectionModel}
55662      */
55663     getSelectionModel : function(){
55664         if(!this.selModel){
55665             this.selModel = new Roo.grid.RowSelectionModel();
55666         }
55667         return this.selModel;
55668     },
55669
55670     /**
55671      * Returns the grid's DataSource.
55672      * @return {DataSource}
55673      */
55674     getDataSource : function(){
55675         return this.dataSource;
55676     },
55677
55678     /**
55679      * Returns the grid's ColumnModel.
55680      * @return {ColumnModel}
55681      */
55682     getColumnModel : function(){
55683         return this.colModel;
55684     },
55685
55686     /**
55687      * Returns the grid's GridView object.
55688      * @return {GridView}
55689      */
55690     getView : function(){
55691         if(!this.view){
55692             this.view = new Roo.grid.GridView(this.viewConfig);
55693         }
55694         return this.view;
55695     },
55696     /**
55697      * Called to get grid's drag proxy text, by default returns this.ddText.
55698      * @return {String}
55699      */
55700     getDragDropText : function(){
55701         var count = this.selModel.getCount();
55702         return String.format(this.ddText, count, count == 1 ? '' : 's');
55703     }
55704 });
55705 /**
55706  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55707  * %0 is replaced with the number of selected rows.
55708  * @type String
55709  */
55710 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
55711  * Based on:
55712  * Ext JS Library 1.1.1
55713  * Copyright(c) 2006-2007, Ext JS, LLC.
55714  *
55715  * Originally Released Under LGPL - original licence link has changed is not relivant.
55716  *
55717  * Fork - LGPL
55718  * <script type="text/javascript">
55719  */
55720  
55721 Roo.grid.AbstractGridView = function(){
55722         this.grid = null;
55723         
55724         this.events = {
55725             "beforerowremoved" : true,
55726             "beforerowsinserted" : true,
55727             "beforerefresh" : true,
55728             "rowremoved" : true,
55729             "rowsinserted" : true,
55730             "rowupdated" : true,
55731             "refresh" : true
55732         };
55733     Roo.grid.AbstractGridView.superclass.constructor.call(this);
55734 };
55735
55736 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
55737     rowClass : "x-grid-row",
55738     cellClass : "x-grid-cell",
55739     tdClass : "x-grid-td",
55740     hdClass : "x-grid-hd",
55741     splitClass : "x-grid-hd-split",
55742     
55743     init: function(grid){
55744         this.grid = grid;
55745                 var cid = this.grid.getGridEl().id;
55746         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
55747         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
55748         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
55749         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
55750         },
55751         
55752     getColumnRenderers : function(){
55753         var renderers = [];
55754         var cm = this.grid.colModel;
55755         var colCount = cm.getColumnCount();
55756         for(var i = 0; i < colCount; i++){
55757             renderers[i] = cm.getRenderer(i);
55758         }
55759         return renderers;
55760     },
55761     
55762     getColumnIds : function(){
55763         var ids = [];
55764         var cm = this.grid.colModel;
55765         var colCount = cm.getColumnCount();
55766         for(var i = 0; i < colCount; i++){
55767             ids[i] = cm.getColumnId(i);
55768         }
55769         return ids;
55770     },
55771     
55772     getDataIndexes : function(){
55773         if(!this.indexMap){
55774             this.indexMap = this.buildIndexMap();
55775         }
55776         return this.indexMap.colToData;
55777     },
55778     
55779     getColumnIndexByDataIndex : function(dataIndex){
55780         if(!this.indexMap){
55781             this.indexMap = this.buildIndexMap();
55782         }
55783         return this.indexMap.dataToCol[dataIndex];
55784     },
55785     
55786     /**
55787      * Set a css style for a column dynamically. 
55788      * @param {Number} colIndex The index of the column
55789      * @param {String} name The css property name
55790      * @param {String} value The css value
55791      */
55792     setCSSStyle : function(colIndex, name, value){
55793         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
55794         Roo.util.CSS.updateRule(selector, name, value);
55795     },
55796     
55797     generateRules : function(cm){
55798         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
55799         Roo.util.CSS.removeStyleSheet(rulesId);
55800         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55801             var cid = cm.getColumnId(i);
55802             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
55803                          this.tdSelector, cid, " {\n}\n",
55804                          this.hdSelector, cid, " {\n}\n",
55805                          this.splitSelector, cid, " {\n}\n");
55806         }
55807         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
55808     }
55809 });/*
55810  * Based on:
55811  * Ext JS Library 1.1.1
55812  * Copyright(c) 2006-2007, Ext JS, LLC.
55813  *
55814  * Originally Released Under LGPL - original licence link has changed is not relivant.
55815  *
55816  * Fork - LGPL
55817  * <script type="text/javascript">
55818  */
55819
55820 // private
55821 // This is a support class used internally by the Grid components
55822 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
55823     this.grid = grid;
55824     this.view = grid.getView();
55825     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
55826     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
55827     if(hd2){
55828         this.setHandleElId(Roo.id(hd));
55829         this.setOuterHandleElId(Roo.id(hd2));
55830     }
55831     this.scroll = false;
55832 };
55833 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
55834     maxDragWidth: 120,
55835     getDragData : function(e){
55836         var t = Roo.lib.Event.getTarget(e);
55837         var h = this.view.findHeaderCell(t);
55838         if(h){
55839             return {ddel: h.firstChild, header:h};
55840         }
55841         return false;
55842     },
55843
55844     onInitDrag : function(e){
55845         this.view.headersDisabled = true;
55846         var clone = this.dragData.ddel.cloneNode(true);
55847         clone.id = Roo.id();
55848         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
55849         this.proxy.update(clone);
55850         return true;
55851     },
55852
55853     afterValidDrop : function(){
55854         var v = this.view;
55855         setTimeout(function(){
55856             v.headersDisabled = false;
55857         }, 50);
55858     },
55859
55860     afterInvalidDrop : function(){
55861         var v = this.view;
55862         setTimeout(function(){
55863             v.headersDisabled = false;
55864         }, 50);
55865     }
55866 });
55867 /*
55868  * Based on:
55869  * Ext JS Library 1.1.1
55870  * Copyright(c) 2006-2007, Ext JS, LLC.
55871  *
55872  * Originally Released Under LGPL - original licence link has changed is not relivant.
55873  *
55874  * Fork - LGPL
55875  * <script type="text/javascript">
55876  */
55877 // private
55878 // This is a support class used internally by the Grid components
55879 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
55880     this.grid = grid;
55881     this.view = grid.getView();
55882     // split the proxies so they don't interfere with mouse events
55883     this.proxyTop = Roo.DomHelper.append(document.body, {
55884         cls:"col-move-top", html:"&#160;"
55885     }, true);
55886     this.proxyBottom = Roo.DomHelper.append(document.body, {
55887         cls:"col-move-bottom", html:"&#160;"
55888     }, true);
55889     this.proxyTop.hide = this.proxyBottom.hide = function(){
55890         this.setLeftTop(-100,-100);
55891         this.setStyle("visibility", "hidden");
55892     };
55893     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
55894     // temporarily disabled
55895     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
55896     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
55897 };
55898 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
55899     proxyOffsets : [-4, -9],
55900     fly: Roo.Element.fly,
55901
55902     getTargetFromEvent : function(e){
55903         var t = Roo.lib.Event.getTarget(e);
55904         var cindex = this.view.findCellIndex(t);
55905         if(cindex !== false){
55906             return this.view.getHeaderCell(cindex);
55907         }
55908         return null;
55909     },
55910
55911     nextVisible : function(h){
55912         var v = this.view, cm = this.grid.colModel;
55913         h = h.nextSibling;
55914         while(h){
55915             if(!cm.isHidden(v.getCellIndex(h))){
55916                 return h;
55917             }
55918             h = h.nextSibling;
55919         }
55920         return null;
55921     },
55922
55923     prevVisible : function(h){
55924         var v = this.view, cm = this.grid.colModel;
55925         h = h.prevSibling;
55926         while(h){
55927             if(!cm.isHidden(v.getCellIndex(h))){
55928                 return h;
55929             }
55930             h = h.prevSibling;
55931         }
55932         return null;
55933     },
55934
55935     positionIndicator : function(h, n, e){
55936         var x = Roo.lib.Event.getPageX(e);
55937         var r = Roo.lib.Dom.getRegion(n.firstChild);
55938         var px, pt, py = r.top + this.proxyOffsets[1];
55939         if((r.right - x) <= (r.right-r.left)/2){
55940             px = r.right+this.view.borderWidth;
55941             pt = "after";
55942         }else{
55943             px = r.left;
55944             pt = "before";
55945         }
55946         var oldIndex = this.view.getCellIndex(h);
55947         var newIndex = this.view.getCellIndex(n);
55948
55949         if(this.grid.colModel.isFixed(newIndex)){
55950             return false;
55951         }
55952
55953         var locked = this.grid.colModel.isLocked(newIndex);
55954
55955         if(pt == "after"){
55956             newIndex++;
55957         }
55958         if(oldIndex < newIndex){
55959             newIndex--;
55960         }
55961         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
55962             return false;
55963         }
55964         px +=  this.proxyOffsets[0];
55965         this.proxyTop.setLeftTop(px, py);
55966         this.proxyTop.show();
55967         if(!this.bottomOffset){
55968             this.bottomOffset = this.view.mainHd.getHeight();
55969         }
55970         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
55971         this.proxyBottom.show();
55972         return pt;
55973     },
55974
55975     onNodeEnter : function(n, dd, e, data){
55976         if(data.header != n){
55977             this.positionIndicator(data.header, n, e);
55978         }
55979     },
55980
55981     onNodeOver : function(n, dd, e, data){
55982         var result = false;
55983         if(data.header != n){
55984             result = this.positionIndicator(data.header, n, e);
55985         }
55986         if(!result){
55987             this.proxyTop.hide();
55988             this.proxyBottom.hide();
55989         }
55990         return result ? this.dropAllowed : this.dropNotAllowed;
55991     },
55992
55993     onNodeOut : function(n, dd, e, data){
55994         this.proxyTop.hide();
55995         this.proxyBottom.hide();
55996     },
55997
55998     onNodeDrop : function(n, dd, e, data){
55999         var h = data.header;
56000         if(h != n){
56001             var cm = this.grid.colModel;
56002             var x = Roo.lib.Event.getPageX(e);
56003             var r = Roo.lib.Dom.getRegion(n.firstChild);
56004             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56005             var oldIndex = this.view.getCellIndex(h);
56006             var newIndex = this.view.getCellIndex(n);
56007             var locked = cm.isLocked(newIndex);
56008             if(pt == "after"){
56009                 newIndex++;
56010             }
56011             if(oldIndex < newIndex){
56012                 newIndex--;
56013             }
56014             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56015                 return false;
56016             }
56017             cm.setLocked(oldIndex, locked, true);
56018             cm.moveColumn(oldIndex, newIndex);
56019             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56020             return true;
56021         }
56022         return false;
56023     }
56024 });
56025 /*
56026  * Based on:
56027  * Ext JS Library 1.1.1
56028  * Copyright(c) 2006-2007, Ext JS, LLC.
56029  *
56030  * Originally Released Under LGPL - original licence link has changed is not relivant.
56031  *
56032  * Fork - LGPL
56033  * <script type="text/javascript">
56034  */
56035   
56036 /**
56037  * @class Roo.grid.GridView
56038  * @extends Roo.util.Observable
56039  *
56040  * @constructor
56041  * @param {Object} config
56042  */
56043 Roo.grid.GridView = function(config){
56044     Roo.grid.GridView.superclass.constructor.call(this);
56045     this.el = null;
56046
56047     Roo.apply(this, config);
56048 };
56049
56050 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56051
56052     unselectable :  'unselectable="on"',
56053     unselectableCls :  'x-unselectable',
56054     
56055     
56056     rowClass : "x-grid-row",
56057
56058     cellClass : "x-grid-col",
56059
56060     tdClass : "x-grid-td",
56061
56062     hdClass : "x-grid-hd",
56063
56064     splitClass : "x-grid-split",
56065
56066     sortClasses : ["sort-asc", "sort-desc"],
56067
56068     enableMoveAnim : false,
56069
56070     hlColor: "C3DAF9",
56071
56072     dh : Roo.DomHelper,
56073
56074     fly : Roo.Element.fly,
56075
56076     css : Roo.util.CSS,
56077
56078     borderWidth: 1,
56079
56080     splitOffset: 3,
56081
56082     scrollIncrement : 22,
56083
56084     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56085
56086     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56087
56088     bind : function(ds, cm){
56089         if(this.ds){
56090             this.ds.un("load", this.onLoad, this);
56091             this.ds.un("datachanged", this.onDataChange, this);
56092             this.ds.un("add", this.onAdd, this);
56093             this.ds.un("remove", this.onRemove, this);
56094             this.ds.un("update", this.onUpdate, this);
56095             this.ds.un("clear", this.onClear, this);
56096         }
56097         if(ds){
56098             ds.on("load", this.onLoad, this);
56099             ds.on("datachanged", this.onDataChange, this);
56100             ds.on("add", this.onAdd, this);
56101             ds.on("remove", this.onRemove, this);
56102             ds.on("update", this.onUpdate, this);
56103             ds.on("clear", this.onClear, this);
56104         }
56105         this.ds = ds;
56106
56107         if(this.cm){
56108             this.cm.un("widthchange", this.onColWidthChange, this);
56109             this.cm.un("headerchange", this.onHeaderChange, this);
56110             this.cm.un("hiddenchange", this.onHiddenChange, this);
56111             this.cm.un("columnmoved", this.onColumnMove, this);
56112             this.cm.un("columnlockchange", this.onColumnLock, this);
56113         }
56114         if(cm){
56115             this.generateRules(cm);
56116             cm.on("widthchange", this.onColWidthChange, this);
56117             cm.on("headerchange", this.onHeaderChange, this);
56118             cm.on("hiddenchange", this.onHiddenChange, this);
56119             cm.on("columnmoved", this.onColumnMove, this);
56120             cm.on("columnlockchange", this.onColumnLock, this);
56121         }
56122         this.cm = cm;
56123     },
56124
56125     init: function(grid){
56126         Roo.grid.GridView.superclass.init.call(this, grid);
56127
56128         this.bind(grid.dataSource, grid.colModel);
56129
56130         grid.on("headerclick", this.handleHeaderClick, this);
56131
56132         if(grid.trackMouseOver){
56133             grid.on("mouseover", this.onRowOver, this);
56134             grid.on("mouseout", this.onRowOut, this);
56135         }
56136         grid.cancelTextSelection = function(){};
56137         this.gridId = grid.id;
56138
56139         var tpls = this.templates || {};
56140
56141         if(!tpls.master){
56142             tpls.master = new Roo.Template(
56143                '<div class="x-grid" hidefocus="true">',
56144                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56145                   '<div class="x-grid-topbar"></div>',
56146                   '<div class="x-grid-scroller"><div></div></div>',
56147                   '<div class="x-grid-locked">',
56148                       '<div class="x-grid-header">{lockedHeader}</div>',
56149                       '<div class="x-grid-body">{lockedBody}</div>',
56150                   "</div>",
56151                   '<div class="x-grid-viewport">',
56152                       '<div class="x-grid-header">{header}</div>',
56153                       '<div class="x-grid-body">{body}</div>',
56154                   "</div>",
56155                   '<div class="x-grid-bottombar"></div>',
56156                  
56157                   '<div class="x-grid-resize-proxy">&#160;</div>',
56158                "</div>"
56159             );
56160             tpls.master.disableformats = true;
56161         }
56162
56163         if(!tpls.header){
56164             tpls.header = new Roo.Template(
56165                '<table border="0" cellspacing="0" cellpadding="0">',
56166                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56167                "</table>{splits}"
56168             );
56169             tpls.header.disableformats = true;
56170         }
56171         tpls.header.compile();
56172
56173         if(!tpls.hcell){
56174             tpls.hcell = new Roo.Template(
56175                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56176                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56177                 "</div></td>"
56178              );
56179              tpls.hcell.disableFormats = true;
56180         }
56181         tpls.hcell.compile();
56182
56183         if(!tpls.hsplit){
56184             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56185                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56186             tpls.hsplit.disableFormats = true;
56187         }
56188         tpls.hsplit.compile();
56189
56190         if(!tpls.body){
56191             tpls.body = new Roo.Template(
56192                '<table border="0" cellspacing="0" cellpadding="0">',
56193                "<tbody>{rows}</tbody>",
56194                "</table>"
56195             );
56196             tpls.body.disableFormats = true;
56197         }
56198         tpls.body.compile();
56199
56200         if(!tpls.row){
56201             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56202             tpls.row.disableFormats = true;
56203         }
56204         tpls.row.compile();
56205
56206         if(!tpls.cell){
56207             tpls.cell = new Roo.Template(
56208                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56209                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56210                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56211                 "</td>"
56212             );
56213             tpls.cell.disableFormats = true;
56214         }
56215         tpls.cell.compile();
56216
56217         this.templates = tpls;
56218     },
56219
56220     // remap these for backwards compat
56221     onColWidthChange : function(){
56222         this.updateColumns.apply(this, arguments);
56223     },
56224     onHeaderChange : function(){
56225         this.updateHeaders.apply(this, arguments);
56226     }, 
56227     onHiddenChange : function(){
56228         this.handleHiddenChange.apply(this, arguments);
56229     },
56230     onColumnMove : function(){
56231         this.handleColumnMove.apply(this, arguments);
56232     },
56233     onColumnLock : function(){
56234         this.handleLockChange.apply(this, arguments);
56235     },
56236
56237     onDataChange : function(){
56238         this.refresh();
56239         this.updateHeaderSortState();
56240     },
56241
56242     onClear : function(){
56243         this.refresh();
56244     },
56245
56246     onUpdate : function(ds, record){
56247         this.refreshRow(record);
56248     },
56249
56250     refreshRow : function(record){
56251         var ds = this.ds, index;
56252         if(typeof record == 'number'){
56253             index = record;
56254             record = ds.getAt(index);
56255         }else{
56256             index = ds.indexOf(record);
56257         }
56258         this.insertRows(ds, index, index, true);
56259         this.onRemove(ds, record, index+1, true);
56260         this.syncRowHeights(index, index);
56261         this.layout();
56262         this.fireEvent("rowupdated", this, index, record);
56263     },
56264
56265     onAdd : function(ds, records, index){
56266         this.insertRows(ds, index, index + (records.length-1));
56267     },
56268
56269     onRemove : function(ds, record, index, isUpdate){
56270         if(isUpdate !== true){
56271             this.fireEvent("beforerowremoved", this, index, record);
56272         }
56273         var bt = this.getBodyTable(), lt = this.getLockedTable();
56274         if(bt.rows[index]){
56275             bt.firstChild.removeChild(bt.rows[index]);
56276         }
56277         if(lt.rows[index]){
56278             lt.firstChild.removeChild(lt.rows[index]);
56279         }
56280         if(isUpdate !== true){
56281             this.stripeRows(index);
56282             this.syncRowHeights(index, index);
56283             this.layout();
56284             this.fireEvent("rowremoved", this, index, record);
56285         }
56286     },
56287
56288     onLoad : function(){
56289         this.scrollToTop();
56290     },
56291
56292     /**
56293      * Scrolls the grid to the top
56294      */
56295     scrollToTop : function(){
56296         if(this.scroller){
56297             this.scroller.dom.scrollTop = 0;
56298             this.syncScroll();
56299         }
56300     },
56301
56302     /**
56303      * Gets a panel in the header of the grid that can be used for toolbars etc.
56304      * After modifying the contents of this panel a call to grid.autoSize() may be
56305      * required to register any changes in size.
56306      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56307      * @return Roo.Element
56308      */
56309     getHeaderPanel : function(doShow){
56310         if(doShow){
56311             this.headerPanel.show();
56312         }
56313         return this.headerPanel;
56314     },
56315
56316     /**
56317      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56318      * After modifying the contents of this panel a call to grid.autoSize() may be
56319      * required to register any changes in size.
56320      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56321      * @return Roo.Element
56322      */
56323     getFooterPanel : function(doShow){
56324         if(doShow){
56325             this.footerPanel.show();
56326         }
56327         return this.footerPanel;
56328     },
56329
56330     initElements : function(){
56331         var E = Roo.Element;
56332         var el = this.grid.getGridEl().dom.firstChild;
56333         var cs = el.childNodes;
56334
56335         this.el = new E(el);
56336         
56337          this.focusEl = new E(el.firstChild);
56338         this.focusEl.swallowEvent("click", true);
56339         
56340         this.headerPanel = new E(cs[1]);
56341         this.headerPanel.enableDisplayMode("block");
56342
56343         this.scroller = new E(cs[2]);
56344         this.scrollSizer = new E(this.scroller.dom.firstChild);
56345
56346         this.lockedWrap = new E(cs[3]);
56347         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56348         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56349
56350         this.mainWrap = new E(cs[4]);
56351         this.mainHd = new E(this.mainWrap.dom.firstChild);
56352         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56353
56354         this.footerPanel = new E(cs[5]);
56355         this.footerPanel.enableDisplayMode("block");
56356
56357         this.resizeProxy = new E(cs[6]);
56358
56359         this.headerSelector = String.format(
56360            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56361            this.lockedHd.id, this.mainHd.id
56362         );
56363
56364         this.splitterSelector = String.format(
56365            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56366            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56367         );
56368     },
56369     idToCssName : function(s)
56370     {
56371         return s.replace(/[^a-z0-9]+/ig, '-');
56372     },
56373
56374     getHeaderCell : function(index){
56375         return Roo.DomQuery.select(this.headerSelector)[index];
56376     },
56377
56378     getHeaderCellMeasure : function(index){
56379         return this.getHeaderCell(index).firstChild;
56380     },
56381
56382     getHeaderCellText : function(index){
56383         return this.getHeaderCell(index).firstChild.firstChild;
56384     },
56385
56386     getLockedTable : function(){
56387         return this.lockedBody.dom.firstChild;
56388     },
56389
56390     getBodyTable : function(){
56391         return this.mainBody.dom.firstChild;
56392     },
56393
56394     getLockedRow : function(index){
56395         return this.getLockedTable().rows[index];
56396     },
56397
56398     getRow : function(index){
56399         return this.getBodyTable().rows[index];
56400     },
56401
56402     getRowComposite : function(index){
56403         if(!this.rowEl){
56404             this.rowEl = new Roo.CompositeElementLite();
56405         }
56406         var els = [], lrow, mrow;
56407         if(lrow = this.getLockedRow(index)){
56408             els.push(lrow);
56409         }
56410         if(mrow = this.getRow(index)){
56411             els.push(mrow);
56412         }
56413         this.rowEl.elements = els;
56414         return this.rowEl;
56415     },
56416     /**
56417      * Gets the 'td' of the cell
56418      * 
56419      * @param {Integer} rowIndex row to select
56420      * @param {Integer} colIndex column to select
56421      * 
56422      * @return {Object} 
56423      */
56424     getCell : function(rowIndex, colIndex){
56425         var locked = this.cm.getLockedCount();
56426         var source;
56427         if(colIndex < locked){
56428             source = this.lockedBody.dom.firstChild;
56429         }else{
56430             source = this.mainBody.dom.firstChild;
56431             colIndex -= locked;
56432         }
56433         return source.rows[rowIndex].childNodes[colIndex];
56434     },
56435
56436     getCellText : function(rowIndex, colIndex){
56437         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56438     },
56439
56440     getCellBox : function(cell){
56441         var b = this.fly(cell).getBox();
56442         if(Roo.isOpera){ // opera fails to report the Y
56443             b.y = cell.offsetTop + this.mainBody.getY();
56444         }
56445         return b;
56446     },
56447
56448     getCellIndex : function(cell){
56449         var id = String(cell.className).match(this.cellRE);
56450         if(id){
56451             return parseInt(id[1], 10);
56452         }
56453         return 0;
56454     },
56455
56456     findHeaderIndex : function(n){
56457         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56458         return r ? this.getCellIndex(r) : false;
56459     },
56460
56461     findHeaderCell : function(n){
56462         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56463         return r ? r : false;
56464     },
56465
56466     findRowIndex : function(n){
56467         if(!n){
56468             return false;
56469         }
56470         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56471         return r ? r.rowIndex : false;
56472     },
56473
56474     findCellIndex : function(node){
56475         var stop = this.el.dom;
56476         while(node && node != stop){
56477             if(this.findRE.test(node.className)){
56478                 return this.getCellIndex(node);
56479             }
56480             node = node.parentNode;
56481         }
56482         return false;
56483     },
56484
56485     getColumnId : function(index){
56486         return this.cm.getColumnId(index);
56487     },
56488
56489     getSplitters : function()
56490     {
56491         if(this.splitterSelector){
56492            return Roo.DomQuery.select(this.splitterSelector);
56493         }else{
56494             return null;
56495       }
56496     },
56497
56498     getSplitter : function(index){
56499         return this.getSplitters()[index];
56500     },
56501
56502     onRowOver : function(e, t){
56503         var row;
56504         if((row = this.findRowIndex(t)) !== false){
56505             this.getRowComposite(row).addClass("x-grid-row-over");
56506         }
56507     },
56508
56509     onRowOut : function(e, t){
56510         var row;
56511         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56512             this.getRowComposite(row).removeClass("x-grid-row-over");
56513         }
56514     },
56515
56516     renderHeaders : function(){
56517         var cm = this.cm;
56518         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56519         var cb = [], lb = [], sb = [], lsb = [], p = {};
56520         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56521             p.cellId = "x-grid-hd-0-" + i;
56522             p.splitId = "x-grid-csplit-0-" + i;
56523             p.id = cm.getColumnId(i);
56524             p.value = cm.getColumnHeader(i) || "";
56525             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56526             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56527             if(!cm.isLocked(i)){
56528                 cb[cb.length] = ct.apply(p);
56529                 sb[sb.length] = st.apply(p);
56530             }else{
56531                 lb[lb.length] = ct.apply(p);
56532                 lsb[lsb.length] = st.apply(p);
56533             }
56534         }
56535         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56536                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56537     },
56538
56539     updateHeaders : function(){
56540         var html = this.renderHeaders();
56541         this.lockedHd.update(html[0]);
56542         this.mainHd.update(html[1]);
56543     },
56544
56545     /**
56546      * Focuses the specified row.
56547      * @param {Number} row The row index
56548      */
56549     focusRow : function(row)
56550     {
56551         //Roo.log('GridView.focusRow');
56552         var x = this.scroller.dom.scrollLeft;
56553         this.focusCell(row, 0, false);
56554         this.scroller.dom.scrollLeft = x;
56555     },
56556
56557     /**
56558      * Focuses the specified cell.
56559      * @param {Number} row The row index
56560      * @param {Number} col The column index
56561      * @param {Boolean} hscroll false to disable horizontal scrolling
56562      */
56563     focusCell : function(row, col, hscroll)
56564     {
56565         //Roo.log('GridView.focusCell');
56566         var el = this.ensureVisible(row, col, hscroll);
56567         this.focusEl.alignTo(el, "tl-tl");
56568         if(Roo.isGecko){
56569             this.focusEl.focus();
56570         }else{
56571             this.focusEl.focus.defer(1, this.focusEl);
56572         }
56573     },
56574
56575     /**
56576      * Scrolls the specified cell into view
56577      * @param {Number} row The row index
56578      * @param {Number} col The column index
56579      * @param {Boolean} hscroll false to disable horizontal scrolling
56580      */
56581     ensureVisible : function(row, col, hscroll)
56582     {
56583         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56584         //return null; //disable for testing.
56585         if(typeof row != "number"){
56586             row = row.rowIndex;
56587         }
56588         if(row < 0 && row >= this.ds.getCount()){
56589             return  null;
56590         }
56591         col = (col !== undefined ? col : 0);
56592         var cm = this.grid.colModel;
56593         while(cm.isHidden(col)){
56594             col++;
56595         }
56596
56597         var el = this.getCell(row, col);
56598         if(!el){
56599             return null;
56600         }
56601         var c = this.scroller.dom;
56602
56603         var ctop = parseInt(el.offsetTop, 10);
56604         var cleft = parseInt(el.offsetLeft, 10);
56605         var cbot = ctop + el.offsetHeight;
56606         var cright = cleft + el.offsetWidth;
56607         
56608         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56609         var stop = parseInt(c.scrollTop, 10);
56610         var sleft = parseInt(c.scrollLeft, 10);
56611         var sbot = stop + ch;
56612         var sright = sleft + c.clientWidth;
56613         /*
56614         Roo.log('GridView.ensureVisible:' +
56615                 ' ctop:' + ctop +
56616                 ' c.clientHeight:' + c.clientHeight +
56617                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56618                 ' stop:' + stop +
56619                 ' cbot:' + cbot +
56620                 ' sbot:' + sbot +
56621                 ' ch:' + ch  
56622                 );
56623         */
56624         if(ctop < stop){
56625              c.scrollTop = ctop;
56626             //Roo.log("set scrolltop to ctop DISABLE?");
56627         }else if(cbot > sbot){
56628             //Roo.log("set scrolltop to cbot-ch");
56629             c.scrollTop = cbot-ch;
56630         }
56631         
56632         if(hscroll !== false){
56633             if(cleft < sleft){
56634                 c.scrollLeft = cleft;
56635             }else if(cright > sright){
56636                 c.scrollLeft = cright-c.clientWidth;
56637             }
56638         }
56639          
56640         return el;
56641     },
56642
56643     updateColumns : function(){
56644         this.grid.stopEditing();
56645         var cm = this.grid.colModel, colIds = this.getColumnIds();
56646         //var totalWidth = cm.getTotalWidth();
56647         var pos = 0;
56648         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56649             //if(cm.isHidden(i)) continue;
56650             var w = cm.getColumnWidth(i);
56651             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56652             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56653         }
56654         this.updateSplitters();
56655     },
56656
56657     generateRules : function(cm){
56658         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56659         Roo.util.CSS.removeStyleSheet(rulesId);
56660         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56661             var cid = cm.getColumnId(i);
56662             var align = '';
56663             if(cm.config[i].align){
56664                 align = 'text-align:'+cm.config[i].align+';';
56665             }
56666             var hidden = '';
56667             if(cm.isHidden(i)){
56668                 hidden = 'display:none;';
56669             }
56670             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56671             ruleBuf.push(
56672                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56673                     this.hdSelector, cid, " {\n", align, width, "}\n",
56674                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56675                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56676         }
56677         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56678     },
56679
56680     updateSplitters : function(){
56681         var cm = this.cm, s = this.getSplitters();
56682         if(s){ // splitters not created yet
56683             var pos = 0, locked = true;
56684             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56685                 if(cm.isHidden(i)) {
56686                     continue;
56687                 }
56688                 var w = cm.getColumnWidth(i); // make sure it's a number
56689                 if(!cm.isLocked(i) && locked){
56690                     pos = 0;
56691                     locked = false;
56692                 }
56693                 pos += w;
56694                 s[i].style.left = (pos-this.splitOffset) + "px";
56695             }
56696         }
56697     },
56698
56699     handleHiddenChange : function(colModel, colIndex, hidden){
56700         if(hidden){
56701             this.hideColumn(colIndex);
56702         }else{
56703             this.unhideColumn(colIndex);
56704         }
56705     },
56706
56707     hideColumn : function(colIndex){
56708         var cid = this.getColumnId(colIndex);
56709         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56710         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56711         if(Roo.isSafari){
56712             this.updateHeaders();
56713         }
56714         this.updateSplitters();
56715         this.layout();
56716     },
56717
56718     unhideColumn : function(colIndex){
56719         var cid = this.getColumnId(colIndex);
56720         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
56721         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
56722
56723         if(Roo.isSafari){
56724             this.updateHeaders();
56725         }
56726         this.updateSplitters();
56727         this.layout();
56728     },
56729
56730     insertRows : function(dm, firstRow, lastRow, isUpdate){
56731         if(firstRow == 0 && lastRow == dm.getCount()-1){
56732             this.refresh();
56733         }else{
56734             if(!isUpdate){
56735                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
56736             }
56737             var s = this.getScrollState();
56738             var markup = this.renderRows(firstRow, lastRow);
56739             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
56740             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
56741             this.restoreScroll(s);
56742             if(!isUpdate){
56743                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
56744                 this.syncRowHeights(firstRow, lastRow);
56745                 this.stripeRows(firstRow);
56746                 this.layout();
56747             }
56748         }
56749     },
56750
56751     bufferRows : function(markup, target, index){
56752         var before = null, trows = target.rows, tbody = target.tBodies[0];
56753         if(index < trows.length){
56754             before = trows[index];
56755         }
56756         var b = document.createElement("div");
56757         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
56758         var rows = b.firstChild.rows;
56759         for(var i = 0, len = rows.length; i < len; i++){
56760             if(before){
56761                 tbody.insertBefore(rows[0], before);
56762             }else{
56763                 tbody.appendChild(rows[0]);
56764             }
56765         }
56766         b.innerHTML = "";
56767         b = null;
56768     },
56769
56770     deleteRows : function(dm, firstRow, lastRow){
56771         if(dm.getRowCount()<1){
56772             this.fireEvent("beforerefresh", this);
56773             this.mainBody.update("");
56774             this.lockedBody.update("");
56775             this.fireEvent("refresh", this);
56776         }else{
56777             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
56778             var bt = this.getBodyTable();
56779             var tbody = bt.firstChild;
56780             var rows = bt.rows;
56781             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
56782                 tbody.removeChild(rows[firstRow]);
56783             }
56784             this.stripeRows(firstRow);
56785             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
56786         }
56787     },
56788
56789     updateRows : function(dataSource, firstRow, lastRow){
56790         var s = this.getScrollState();
56791         this.refresh();
56792         this.restoreScroll(s);
56793     },
56794
56795     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
56796         if(!noRefresh){
56797            this.refresh();
56798         }
56799         this.updateHeaderSortState();
56800     },
56801
56802     getScrollState : function(){
56803         
56804         var sb = this.scroller.dom;
56805         return {left: sb.scrollLeft, top: sb.scrollTop};
56806     },
56807
56808     stripeRows : function(startRow){
56809         if(!this.grid.stripeRows || this.ds.getCount() < 1){
56810             return;
56811         }
56812         startRow = startRow || 0;
56813         var rows = this.getBodyTable().rows;
56814         var lrows = this.getLockedTable().rows;
56815         var cls = ' x-grid-row-alt ';
56816         for(var i = startRow, len = rows.length; i < len; i++){
56817             var row = rows[i], lrow = lrows[i];
56818             var isAlt = ((i+1) % 2 == 0);
56819             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
56820             if(isAlt == hasAlt){
56821                 continue;
56822             }
56823             if(isAlt){
56824                 row.className += " x-grid-row-alt";
56825             }else{
56826                 row.className = row.className.replace("x-grid-row-alt", "");
56827             }
56828             if(lrow){
56829                 lrow.className = row.className;
56830             }
56831         }
56832     },
56833
56834     restoreScroll : function(state){
56835         //Roo.log('GridView.restoreScroll');
56836         var sb = this.scroller.dom;
56837         sb.scrollLeft = state.left;
56838         sb.scrollTop = state.top;
56839         this.syncScroll();
56840     },
56841
56842     syncScroll : function(){
56843         //Roo.log('GridView.syncScroll');
56844         var sb = this.scroller.dom;
56845         var sh = this.mainHd.dom;
56846         var bs = this.mainBody.dom;
56847         var lv = this.lockedBody.dom;
56848         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
56849         lv.scrollTop = bs.scrollTop = sb.scrollTop;
56850     },
56851
56852     handleScroll : function(e){
56853         this.syncScroll();
56854         var sb = this.scroller.dom;
56855         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
56856         e.stopEvent();
56857     },
56858
56859     handleWheel : function(e){
56860         var d = e.getWheelDelta();
56861         this.scroller.dom.scrollTop -= d*22;
56862         // set this here to prevent jumpy scrolling on large tables
56863         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
56864         e.stopEvent();
56865     },
56866
56867     renderRows : function(startRow, endRow){
56868         // pull in all the crap needed to render rows
56869         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
56870         var colCount = cm.getColumnCount();
56871
56872         if(ds.getCount() < 1){
56873             return ["", ""];
56874         }
56875
56876         // build a map for all the columns
56877         var cs = [];
56878         for(var i = 0; i < colCount; i++){
56879             var name = cm.getDataIndex(i);
56880             cs[i] = {
56881                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
56882                 renderer : cm.getRenderer(i),
56883                 id : cm.getColumnId(i),
56884                 locked : cm.isLocked(i),
56885                 has_editor : cm.isCellEditable(i)
56886             };
56887         }
56888
56889         startRow = startRow || 0;
56890         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
56891
56892         // records to render
56893         var rs = ds.getRange(startRow, endRow);
56894
56895         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
56896     },
56897
56898     // As much as I hate to duplicate code, this was branched because FireFox really hates
56899     // [].join("") on strings. The performance difference was substantial enough to
56900     // branch this function
56901     doRender : Roo.isGecko ?
56902             function(cs, rs, ds, startRow, colCount, stripe){
56903                 var ts = this.templates, ct = ts.cell, rt = ts.row;
56904                 // buffers
56905                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
56906                 
56907                 var hasListener = this.grid.hasListener('rowclass');
56908                 var rowcfg = {};
56909                 for(var j = 0, len = rs.length; j < len; j++){
56910                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
56911                     for(var i = 0; i < colCount; i++){
56912                         c = cs[i];
56913                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
56914                         p.id = c.id;
56915                         p.css = p.attr = "";
56916                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
56917                         if(p.value == undefined || p.value === "") {
56918                             p.value = "&#160;";
56919                         }
56920                         if(c.has_editor){
56921                             p.css += ' x-grid-editable-cell';
56922                         }
56923                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
56924                             p.css +=  ' x-grid-dirty-cell';
56925                         }
56926                         var markup = ct.apply(p);
56927                         if(!c.locked){
56928                             cb+= markup;
56929                         }else{
56930                             lcb+= markup;
56931                         }
56932                     }
56933                     var alt = [];
56934                     if(stripe && ((rowIndex+1) % 2 == 0)){
56935                         alt.push("x-grid-row-alt")
56936                     }
56937                     if(r.dirty){
56938                         alt.push(  " x-grid-dirty-row");
56939                     }
56940                     rp.cells = lcb;
56941                     if(this.getRowClass){
56942                         alt.push(this.getRowClass(r, rowIndex));
56943                     }
56944                     if (hasListener) {
56945                         rowcfg = {
56946                              
56947                             record: r,
56948                             rowIndex : rowIndex,
56949                             rowClass : ''
56950                         };
56951                         this.grid.fireEvent('rowclass', this, rowcfg);
56952                         alt.push(rowcfg.rowClass);
56953                     }
56954                     rp.alt = alt.join(" ");
56955                     lbuf+= rt.apply(rp);
56956                     rp.cells = cb;
56957                     buf+=  rt.apply(rp);
56958                 }
56959                 return [lbuf, buf];
56960             } :
56961             function(cs, rs, ds, startRow, colCount, stripe){
56962                 var ts = this.templates, ct = ts.cell, rt = ts.row;
56963                 // buffers
56964                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
56965                 var hasListener = this.grid.hasListener('rowclass');
56966  
56967                 var rowcfg = {};
56968                 for(var j = 0, len = rs.length; j < len; j++){
56969                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
56970                     for(var i = 0; i < colCount; i++){
56971                         c = cs[i];
56972                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
56973                         p.id = c.id;
56974                         p.css = p.attr = "";
56975                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
56976                         if(p.value == undefined || p.value === "") {
56977                             p.value = "&#160;";
56978                         }
56979                         //Roo.log(c);
56980                          if(c.has_editor){
56981                             p.css += ' x-grid-editable-cell';
56982                         }
56983                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
56984                             p.css += ' x-grid-dirty-cell' 
56985                         }
56986                         
56987                         var markup = ct.apply(p);
56988                         if(!c.locked){
56989                             cb[cb.length] = markup;
56990                         }else{
56991                             lcb[lcb.length] = markup;
56992                         }
56993                     }
56994                     var alt = [];
56995                     if(stripe && ((rowIndex+1) % 2 == 0)){
56996                         alt.push( "x-grid-row-alt");
56997                     }
56998                     if(r.dirty){
56999                         alt.push(" x-grid-dirty-row");
57000                     }
57001                     rp.cells = lcb;
57002                     if(this.getRowClass){
57003                         alt.push( this.getRowClass(r, rowIndex));
57004                     }
57005                     if (hasListener) {
57006                         rowcfg = {
57007                              
57008                             record: r,
57009                             rowIndex : rowIndex,
57010                             rowClass : ''
57011                         };
57012                         this.grid.fireEvent('rowclass', this, rowcfg);
57013                         alt.push(rowcfg.rowClass);
57014                     }
57015                     
57016                     rp.alt = alt.join(" ");
57017                     rp.cells = lcb.join("");
57018                     lbuf[lbuf.length] = rt.apply(rp);
57019                     rp.cells = cb.join("");
57020                     buf[buf.length] =  rt.apply(rp);
57021                 }
57022                 return [lbuf.join(""), buf.join("")];
57023             },
57024
57025     renderBody : function(){
57026         var markup = this.renderRows();
57027         var bt = this.templates.body;
57028         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57029     },
57030
57031     /**
57032      * Refreshes the grid
57033      * @param {Boolean} headersToo
57034      */
57035     refresh : function(headersToo){
57036         this.fireEvent("beforerefresh", this);
57037         this.grid.stopEditing();
57038         var result = this.renderBody();
57039         this.lockedBody.update(result[0]);
57040         this.mainBody.update(result[1]);
57041         if(headersToo === true){
57042             this.updateHeaders();
57043             this.updateColumns();
57044             this.updateSplitters();
57045             this.updateHeaderSortState();
57046         }
57047         this.syncRowHeights();
57048         this.layout();
57049         this.fireEvent("refresh", this);
57050     },
57051
57052     handleColumnMove : function(cm, oldIndex, newIndex){
57053         this.indexMap = null;
57054         var s = this.getScrollState();
57055         this.refresh(true);
57056         this.restoreScroll(s);
57057         this.afterMove(newIndex);
57058     },
57059
57060     afterMove : function(colIndex){
57061         if(this.enableMoveAnim && Roo.enableFx){
57062             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57063         }
57064         // if multisort - fix sortOrder, and reload..
57065         if (this.grid.dataSource.multiSort) {
57066             // the we can call sort again..
57067             var dm = this.grid.dataSource;
57068             var cm = this.grid.colModel;
57069             var so = [];
57070             for(var i = 0; i < cm.config.length; i++ ) {
57071                 
57072                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57073                     continue; // dont' bother, it's not in sort list or being set.
57074                 }
57075                 
57076                 so.push(cm.config[i].dataIndex);
57077             };
57078             dm.sortOrder = so;
57079             dm.load(dm.lastOptions);
57080             
57081             
57082         }
57083         
57084     },
57085
57086     updateCell : function(dm, rowIndex, dataIndex){
57087         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57088         if(typeof colIndex == "undefined"){ // not present in grid
57089             return;
57090         }
57091         var cm = this.grid.colModel;
57092         var cell = this.getCell(rowIndex, colIndex);
57093         var cellText = this.getCellText(rowIndex, colIndex);
57094
57095         var p = {
57096             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57097             id : cm.getColumnId(colIndex),
57098             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57099         };
57100         var renderer = cm.getRenderer(colIndex);
57101         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57102         if(typeof val == "undefined" || val === "") {
57103             val = "&#160;";
57104         }
57105         cellText.innerHTML = val;
57106         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57107         this.syncRowHeights(rowIndex, rowIndex);
57108     },
57109
57110     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57111         var maxWidth = 0;
57112         if(this.grid.autoSizeHeaders){
57113             var h = this.getHeaderCellMeasure(colIndex);
57114             maxWidth = Math.max(maxWidth, h.scrollWidth);
57115         }
57116         var tb, index;
57117         if(this.cm.isLocked(colIndex)){
57118             tb = this.getLockedTable();
57119             index = colIndex;
57120         }else{
57121             tb = this.getBodyTable();
57122             index = colIndex - this.cm.getLockedCount();
57123         }
57124         if(tb && tb.rows){
57125             var rows = tb.rows;
57126             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57127             for(var i = 0; i < stopIndex; i++){
57128                 var cell = rows[i].childNodes[index].firstChild;
57129                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57130             }
57131         }
57132         return maxWidth + /*margin for error in IE*/ 5;
57133     },
57134     /**
57135      * Autofit a column to its content.
57136      * @param {Number} colIndex
57137      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57138      */
57139      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57140          if(this.cm.isHidden(colIndex)){
57141              return; // can't calc a hidden column
57142          }
57143         if(forceMinSize){
57144             var cid = this.cm.getColumnId(colIndex);
57145             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57146            if(this.grid.autoSizeHeaders){
57147                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57148            }
57149         }
57150         var newWidth = this.calcColumnWidth(colIndex);
57151         this.cm.setColumnWidth(colIndex,
57152             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57153         if(!suppressEvent){
57154             this.grid.fireEvent("columnresize", colIndex, newWidth);
57155         }
57156     },
57157
57158     /**
57159      * Autofits all columns to their content and then expands to fit any extra space in the grid
57160      */
57161      autoSizeColumns : function(){
57162         var cm = this.grid.colModel;
57163         var colCount = cm.getColumnCount();
57164         for(var i = 0; i < colCount; i++){
57165             this.autoSizeColumn(i, true, true);
57166         }
57167         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57168             this.fitColumns();
57169         }else{
57170             this.updateColumns();
57171             this.layout();
57172         }
57173     },
57174
57175     /**
57176      * Autofits all columns to the grid's width proportionate with their current size
57177      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57178      */
57179     fitColumns : function(reserveScrollSpace){
57180         var cm = this.grid.colModel;
57181         var colCount = cm.getColumnCount();
57182         var cols = [];
57183         var width = 0;
57184         var i, w;
57185         for (i = 0; i < colCount; i++){
57186             if(!cm.isHidden(i) && !cm.isFixed(i)){
57187                 w = cm.getColumnWidth(i);
57188                 cols.push(i);
57189                 cols.push(w);
57190                 width += w;
57191             }
57192         }
57193         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57194         if(reserveScrollSpace){
57195             avail -= 17;
57196         }
57197         var frac = (avail - cm.getTotalWidth())/width;
57198         while (cols.length){
57199             w = cols.pop();
57200             i = cols.pop();
57201             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57202         }
57203         this.updateColumns();
57204         this.layout();
57205     },
57206
57207     onRowSelect : function(rowIndex){
57208         var row = this.getRowComposite(rowIndex);
57209         row.addClass("x-grid-row-selected");
57210     },
57211
57212     onRowDeselect : function(rowIndex){
57213         var row = this.getRowComposite(rowIndex);
57214         row.removeClass("x-grid-row-selected");
57215     },
57216
57217     onCellSelect : function(row, col){
57218         var cell = this.getCell(row, col);
57219         if(cell){
57220             Roo.fly(cell).addClass("x-grid-cell-selected");
57221         }
57222     },
57223
57224     onCellDeselect : function(row, col){
57225         var cell = this.getCell(row, col);
57226         if(cell){
57227             Roo.fly(cell).removeClass("x-grid-cell-selected");
57228         }
57229     },
57230
57231     updateHeaderSortState : function(){
57232         
57233         // sort state can be single { field: xxx, direction : yyy}
57234         // or   { xxx=>ASC , yyy : DESC ..... }
57235         
57236         var mstate = {};
57237         if (!this.ds.multiSort) { 
57238             var state = this.ds.getSortState();
57239             if(!state){
57240                 return;
57241             }
57242             mstate[state.field] = state.direction;
57243             // FIXME... - this is not used here.. but might be elsewhere..
57244             this.sortState = state;
57245             
57246         } else {
57247             mstate = this.ds.sortToggle;
57248         }
57249         //remove existing sort classes..
57250         
57251         var sc = this.sortClasses;
57252         var hds = this.el.select(this.headerSelector).removeClass(sc);
57253         
57254         for(var f in mstate) {
57255         
57256             var sortColumn = this.cm.findColumnIndex(f);
57257             
57258             if(sortColumn != -1){
57259                 var sortDir = mstate[f];        
57260                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57261             }
57262         }
57263         
57264          
57265         
57266     },
57267
57268
57269     handleHeaderClick : function(g, index,e){
57270         
57271         Roo.log("header click");
57272         
57273         if (Roo.isTouch) {
57274             // touch events on header are handled by context
57275             this.handleHdCtx(g,index,e);
57276             return;
57277         }
57278         
57279         
57280         if(this.headersDisabled){
57281             return;
57282         }
57283         var dm = g.dataSource, cm = g.colModel;
57284         if(!cm.isSortable(index)){
57285             return;
57286         }
57287         g.stopEditing();
57288         
57289         if (dm.multiSort) {
57290             // update the sortOrder
57291             var so = [];
57292             for(var i = 0; i < cm.config.length; i++ ) {
57293                 
57294                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57295                     continue; // dont' bother, it's not in sort list or being set.
57296                 }
57297                 
57298                 so.push(cm.config[i].dataIndex);
57299             };
57300             dm.sortOrder = so;
57301         }
57302         
57303         
57304         dm.sort(cm.getDataIndex(index));
57305     },
57306
57307
57308     destroy : function(){
57309         if(this.colMenu){
57310             this.colMenu.removeAll();
57311             Roo.menu.MenuMgr.unregister(this.colMenu);
57312             this.colMenu.getEl().remove();
57313             delete this.colMenu;
57314         }
57315         if(this.hmenu){
57316             this.hmenu.removeAll();
57317             Roo.menu.MenuMgr.unregister(this.hmenu);
57318             this.hmenu.getEl().remove();
57319             delete this.hmenu;
57320         }
57321         if(this.grid.enableColumnMove){
57322             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57323             if(dds){
57324                 for(var dd in dds){
57325                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57326                         var elid = dds[dd].dragElId;
57327                         dds[dd].unreg();
57328                         Roo.get(elid).remove();
57329                     } else if(dds[dd].config.isTarget){
57330                         dds[dd].proxyTop.remove();
57331                         dds[dd].proxyBottom.remove();
57332                         dds[dd].unreg();
57333                     }
57334                     if(Roo.dd.DDM.locationCache[dd]){
57335                         delete Roo.dd.DDM.locationCache[dd];
57336                     }
57337                 }
57338                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57339             }
57340         }
57341         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57342         this.bind(null, null);
57343         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57344     },
57345
57346     handleLockChange : function(){
57347         this.refresh(true);
57348     },
57349
57350     onDenyColumnLock : function(){
57351
57352     },
57353
57354     onDenyColumnHide : function(){
57355
57356     },
57357
57358     handleHdMenuClick : function(item){
57359         var index = this.hdCtxIndex;
57360         var cm = this.cm, ds = this.ds;
57361         switch(item.id){
57362             case "asc":
57363                 ds.sort(cm.getDataIndex(index), "ASC");
57364                 break;
57365             case "desc":
57366                 ds.sort(cm.getDataIndex(index), "DESC");
57367                 break;
57368             case "lock":
57369                 var lc = cm.getLockedCount();
57370                 if(cm.getColumnCount(true) <= lc+1){
57371                     this.onDenyColumnLock();
57372                     return;
57373                 }
57374                 if(lc != index){
57375                     cm.setLocked(index, true, true);
57376                     cm.moveColumn(index, lc);
57377                     this.grid.fireEvent("columnmove", index, lc);
57378                 }else{
57379                     cm.setLocked(index, true);
57380                 }
57381             break;
57382             case "unlock":
57383                 var lc = cm.getLockedCount();
57384                 if((lc-1) != index){
57385                     cm.setLocked(index, false, true);
57386                     cm.moveColumn(index, lc-1);
57387                     this.grid.fireEvent("columnmove", index, lc-1);
57388                 }else{
57389                     cm.setLocked(index, false);
57390                 }
57391             break;
57392             case 'wider': // used to expand cols on touch..
57393             case 'narrow':
57394                 var cw = cm.getColumnWidth(index);
57395                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57396                 cw = Math.max(0, cw);
57397                 cw = Math.min(cw,4000);
57398                 cm.setColumnWidth(index, cw);
57399                 break;
57400                 
57401             default:
57402                 index = cm.getIndexById(item.id.substr(4));
57403                 if(index != -1){
57404                     if(item.checked && cm.getColumnCount(true) <= 1){
57405                         this.onDenyColumnHide();
57406                         return false;
57407                     }
57408                     cm.setHidden(index, item.checked);
57409                 }
57410         }
57411         return true;
57412     },
57413
57414     beforeColMenuShow : function(){
57415         var cm = this.cm,  colCount = cm.getColumnCount();
57416         this.colMenu.removeAll();
57417         for(var i = 0; i < colCount; i++){
57418             this.colMenu.add(new Roo.menu.CheckItem({
57419                 id: "col-"+cm.getColumnId(i),
57420                 text: cm.getColumnHeader(i),
57421                 checked: !cm.isHidden(i),
57422                 hideOnClick:false
57423             }));
57424         }
57425     },
57426
57427     handleHdCtx : function(g, index, e){
57428         e.stopEvent();
57429         var hd = this.getHeaderCell(index);
57430         this.hdCtxIndex = index;
57431         var ms = this.hmenu.items, cm = this.cm;
57432         ms.get("asc").setDisabled(!cm.isSortable(index));
57433         ms.get("desc").setDisabled(!cm.isSortable(index));
57434         if(this.grid.enableColLock !== false){
57435             ms.get("lock").setDisabled(cm.isLocked(index));
57436             ms.get("unlock").setDisabled(!cm.isLocked(index));
57437         }
57438         this.hmenu.show(hd, "tl-bl");
57439     },
57440
57441     handleHdOver : function(e){
57442         var hd = this.findHeaderCell(e.getTarget());
57443         if(hd && !this.headersDisabled){
57444             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57445                this.fly(hd).addClass("x-grid-hd-over");
57446             }
57447         }
57448     },
57449
57450     handleHdOut : function(e){
57451         var hd = this.findHeaderCell(e.getTarget());
57452         if(hd){
57453             this.fly(hd).removeClass("x-grid-hd-over");
57454         }
57455     },
57456
57457     handleSplitDblClick : function(e, t){
57458         var i = this.getCellIndex(t);
57459         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57460             this.autoSizeColumn(i, true);
57461             this.layout();
57462         }
57463     },
57464
57465     render : function(){
57466
57467         var cm = this.cm;
57468         var colCount = cm.getColumnCount();
57469
57470         if(this.grid.monitorWindowResize === true){
57471             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57472         }
57473         var header = this.renderHeaders();
57474         var body = this.templates.body.apply({rows:""});
57475         var html = this.templates.master.apply({
57476             lockedBody: body,
57477             body: body,
57478             lockedHeader: header[0],
57479             header: header[1]
57480         });
57481
57482         //this.updateColumns();
57483
57484         this.grid.getGridEl().dom.innerHTML = html;
57485
57486         this.initElements();
57487         
57488         // a kludge to fix the random scolling effect in webkit
57489         this.el.on("scroll", function() {
57490             this.el.dom.scrollTop=0; // hopefully not recursive..
57491         },this);
57492
57493         this.scroller.on("scroll", this.handleScroll, this);
57494         this.lockedBody.on("mousewheel", this.handleWheel, this);
57495         this.mainBody.on("mousewheel", this.handleWheel, this);
57496
57497         this.mainHd.on("mouseover", this.handleHdOver, this);
57498         this.mainHd.on("mouseout", this.handleHdOut, this);
57499         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57500                 {delegate: "."+this.splitClass});
57501
57502         this.lockedHd.on("mouseover", this.handleHdOver, this);
57503         this.lockedHd.on("mouseout", this.handleHdOut, this);
57504         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57505                 {delegate: "."+this.splitClass});
57506
57507         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57508             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57509         }
57510
57511         this.updateSplitters();
57512
57513         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57514             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57515             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57516         }
57517
57518         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57519             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57520             this.hmenu.add(
57521                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57522                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57523             );
57524             if(this.grid.enableColLock !== false){
57525                 this.hmenu.add('-',
57526                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57527                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57528                 );
57529             }
57530             if (Roo.isTouch) {
57531                  this.hmenu.add('-',
57532                     {id:"wider", text: this.columnsWiderText},
57533                     {id:"narrow", text: this.columnsNarrowText }
57534                 );
57535                 
57536                  
57537             }
57538             
57539             if(this.grid.enableColumnHide !== false){
57540
57541                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57542                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57543                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57544
57545                 this.hmenu.add('-',
57546                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57547                 );
57548             }
57549             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57550
57551             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57552         }
57553
57554         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57555             this.dd = new Roo.grid.GridDragZone(this.grid, {
57556                 ddGroup : this.grid.ddGroup || 'GridDD'
57557             });
57558             
57559         }
57560
57561         /*
57562         for(var i = 0; i < colCount; i++){
57563             if(cm.isHidden(i)){
57564                 this.hideColumn(i);
57565             }
57566             if(cm.config[i].align){
57567                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57568                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57569             }
57570         }*/
57571         
57572         this.updateHeaderSortState();
57573
57574         this.beforeInitialResize();
57575         this.layout(true);
57576
57577         // two part rendering gives faster view to the user
57578         this.renderPhase2.defer(1, this);
57579     },
57580
57581     renderPhase2 : function(){
57582         // render the rows now
57583         this.refresh();
57584         if(this.grid.autoSizeColumns){
57585             this.autoSizeColumns();
57586         }
57587     },
57588
57589     beforeInitialResize : function(){
57590
57591     },
57592
57593     onColumnSplitterMoved : function(i, w){
57594         this.userResized = true;
57595         var cm = this.grid.colModel;
57596         cm.setColumnWidth(i, w, true);
57597         var cid = cm.getColumnId(i);
57598         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57599         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57600         this.updateSplitters();
57601         this.layout();
57602         this.grid.fireEvent("columnresize", i, w);
57603     },
57604
57605     syncRowHeights : function(startIndex, endIndex){
57606         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57607             startIndex = startIndex || 0;
57608             var mrows = this.getBodyTable().rows;
57609             var lrows = this.getLockedTable().rows;
57610             var len = mrows.length-1;
57611             endIndex = Math.min(endIndex || len, len);
57612             for(var i = startIndex; i <= endIndex; i++){
57613                 var m = mrows[i], l = lrows[i];
57614                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57615                 m.style.height = l.style.height = h + "px";
57616             }
57617         }
57618     },
57619
57620     layout : function(initialRender, is2ndPass){
57621         var g = this.grid;
57622         var auto = g.autoHeight;
57623         var scrollOffset = 16;
57624         var c = g.getGridEl(), cm = this.cm,
57625                 expandCol = g.autoExpandColumn,
57626                 gv = this;
57627         //c.beginMeasure();
57628
57629         if(!c.dom.offsetWidth){ // display:none?
57630             if(initialRender){
57631                 this.lockedWrap.show();
57632                 this.mainWrap.show();
57633             }
57634             return;
57635         }
57636
57637         var hasLock = this.cm.isLocked(0);
57638
57639         var tbh = this.headerPanel.getHeight();
57640         var bbh = this.footerPanel.getHeight();
57641
57642         if(auto){
57643             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57644             var newHeight = ch + c.getBorderWidth("tb");
57645             if(g.maxHeight){
57646                 newHeight = Math.min(g.maxHeight, newHeight);
57647             }
57648             c.setHeight(newHeight);
57649         }
57650
57651         if(g.autoWidth){
57652             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57653         }
57654
57655         var s = this.scroller;
57656
57657         var csize = c.getSize(true);
57658
57659         this.el.setSize(csize.width, csize.height);
57660
57661         this.headerPanel.setWidth(csize.width);
57662         this.footerPanel.setWidth(csize.width);
57663
57664         var hdHeight = this.mainHd.getHeight();
57665         var vw = csize.width;
57666         var vh = csize.height - (tbh + bbh);
57667
57668         s.setSize(vw, vh);
57669
57670         var bt = this.getBodyTable();
57671         
57672         if(cm.getLockedCount() == cm.config.length){
57673             bt = this.getLockedTable();
57674         }
57675         
57676         var ltWidth = hasLock ?
57677                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57678
57679         var scrollHeight = bt.offsetHeight;
57680         var scrollWidth = ltWidth + bt.offsetWidth;
57681         var vscroll = false, hscroll = false;
57682
57683         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57684
57685         var lw = this.lockedWrap, mw = this.mainWrap;
57686         var lb = this.lockedBody, mb = this.mainBody;
57687
57688         setTimeout(function(){
57689             var t = s.dom.offsetTop;
57690             var w = s.dom.clientWidth,
57691                 h = s.dom.clientHeight;
57692
57693             lw.setTop(t);
57694             lw.setSize(ltWidth, h);
57695
57696             mw.setLeftTop(ltWidth, t);
57697             mw.setSize(w-ltWidth, h);
57698
57699             lb.setHeight(h-hdHeight);
57700             mb.setHeight(h-hdHeight);
57701
57702             if(is2ndPass !== true && !gv.userResized && expandCol){
57703                 // high speed resize without full column calculation
57704                 
57705                 var ci = cm.getIndexById(expandCol);
57706                 if (ci < 0) {
57707                     ci = cm.findColumnIndex(expandCol);
57708                 }
57709                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57710                 var expandId = cm.getColumnId(ci);
57711                 var  tw = cm.getTotalWidth(false);
57712                 var currentWidth = cm.getColumnWidth(ci);
57713                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
57714                 if(currentWidth != cw){
57715                     cm.setColumnWidth(ci, cw, true);
57716                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57717                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57718                     gv.updateSplitters();
57719                     gv.layout(false, true);
57720                 }
57721             }
57722
57723             if(initialRender){
57724                 lw.show();
57725                 mw.show();
57726             }
57727             //c.endMeasure();
57728         }, 10);
57729     },
57730
57731     onWindowResize : function(){
57732         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
57733             return;
57734         }
57735         this.layout();
57736     },
57737
57738     appendFooter : function(parentEl){
57739         return null;
57740     },
57741
57742     sortAscText : "Sort Ascending",
57743     sortDescText : "Sort Descending",
57744     lockText : "Lock Column",
57745     unlockText : "Unlock Column",
57746     columnsText : "Columns",
57747  
57748     columnsWiderText : "Wider",
57749     columnsNarrowText : "Thinner"
57750 });
57751
57752
57753 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
57754     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
57755     this.proxy.el.addClass('x-grid3-col-dd');
57756 };
57757
57758 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
57759     handleMouseDown : function(e){
57760
57761     },
57762
57763     callHandleMouseDown : function(e){
57764         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
57765     }
57766 });
57767 /*
57768  * Based on:
57769  * Ext JS Library 1.1.1
57770  * Copyright(c) 2006-2007, Ext JS, LLC.
57771  *
57772  * Originally Released Under LGPL - original licence link has changed is not relivant.
57773  *
57774  * Fork - LGPL
57775  * <script type="text/javascript">
57776  */
57777  
57778 // private
57779 // This is a support class used internally by the Grid components
57780 Roo.grid.SplitDragZone = function(grid, hd, hd2){
57781     this.grid = grid;
57782     this.view = grid.getView();
57783     this.proxy = this.view.resizeProxy;
57784     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
57785         "gridSplitters" + this.grid.getGridEl().id, {
57786         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
57787     });
57788     this.setHandleElId(Roo.id(hd));
57789     this.setOuterHandleElId(Roo.id(hd2));
57790     this.scroll = false;
57791 };
57792 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
57793     fly: Roo.Element.fly,
57794
57795     b4StartDrag : function(x, y){
57796         this.view.headersDisabled = true;
57797         this.proxy.setHeight(this.view.mainWrap.getHeight());
57798         var w = this.cm.getColumnWidth(this.cellIndex);
57799         var minw = Math.max(w-this.grid.minColumnWidth, 0);
57800         this.resetConstraints();
57801         this.setXConstraint(minw, 1000);
57802         this.setYConstraint(0, 0);
57803         this.minX = x - minw;
57804         this.maxX = x + 1000;
57805         this.startPos = x;
57806         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
57807     },
57808
57809
57810     handleMouseDown : function(e){
57811         ev = Roo.EventObject.setEvent(e);
57812         var t = this.fly(ev.getTarget());
57813         if(t.hasClass("x-grid-split")){
57814             this.cellIndex = this.view.getCellIndex(t.dom);
57815             this.split = t.dom;
57816             this.cm = this.grid.colModel;
57817             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
57818                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
57819             }
57820         }
57821     },
57822
57823     endDrag : function(e){
57824         this.view.headersDisabled = false;
57825         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
57826         var diff = endX - this.startPos;
57827         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
57828     },
57829
57830     autoOffset : function(){
57831         this.setDelta(0,0);
57832     }
57833 });/*
57834  * Based on:
57835  * Ext JS Library 1.1.1
57836  * Copyright(c) 2006-2007, Ext JS, LLC.
57837  *
57838  * Originally Released Under LGPL - original licence link has changed is not relivant.
57839  *
57840  * Fork - LGPL
57841  * <script type="text/javascript">
57842  */
57843  
57844 // private
57845 // This is a support class used internally by the Grid components
57846 Roo.grid.GridDragZone = function(grid, config){
57847     this.view = grid.getView();
57848     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
57849     if(this.view.lockedBody){
57850         this.setHandleElId(Roo.id(this.view.mainBody.dom));
57851         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
57852     }
57853     this.scroll = false;
57854     this.grid = grid;
57855     this.ddel = document.createElement('div');
57856     this.ddel.className = 'x-grid-dd-wrap';
57857 };
57858
57859 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
57860     ddGroup : "GridDD",
57861
57862     getDragData : function(e){
57863         var t = Roo.lib.Event.getTarget(e);
57864         var rowIndex = this.view.findRowIndex(t);
57865         var sm = this.grid.selModel;
57866             
57867         //Roo.log(rowIndex);
57868         
57869         if (sm.getSelectedCell) {
57870             // cell selection..
57871             if (!sm.getSelectedCell()) {
57872                 return false;
57873             }
57874             if (rowIndex != sm.getSelectedCell()[0]) {
57875                 return false;
57876             }
57877         
57878         }
57879         
57880         if(rowIndex !== false){
57881             
57882             // if editorgrid.. 
57883             
57884             
57885             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
57886                
57887             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
57888               //  
57889             //}
57890             if (e.hasModifier()){
57891                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
57892             }
57893             
57894             Roo.log("getDragData");
57895             
57896             return {
57897                 grid: this.grid,
57898                 ddel: this.ddel,
57899                 rowIndex: rowIndex,
57900                 selections:sm.getSelections ? sm.getSelections() : (
57901                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
57902                 )
57903             };
57904         }
57905         return false;
57906     },
57907
57908     onInitDrag : function(e){
57909         var data = this.dragData;
57910         this.ddel.innerHTML = this.grid.getDragDropText();
57911         this.proxy.update(this.ddel);
57912         // fire start drag?
57913     },
57914
57915     afterRepair : function(){
57916         this.dragging = false;
57917     },
57918
57919     getRepairXY : function(e, data){
57920         return false;
57921     },
57922
57923     onEndDrag : function(data, e){
57924         // fire end drag?
57925     },
57926
57927     onValidDrop : function(dd, e, id){
57928         // fire drag drop?
57929         this.hideProxy();
57930     },
57931
57932     beforeInvalidDrop : function(e, id){
57933
57934     }
57935 });/*
57936  * Based on:
57937  * Ext JS Library 1.1.1
57938  * Copyright(c) 2006-2007, Ext JS, LLC.
57939  *
57940  * Originally Released Under LGPL - original licence link has changed is not relivant.
57941  *
57942  * Fork - LGPL
57943  * <script type="text/javascript">
57944  */
57945  
57946
57947 /**
57948  * @class Roo.grid.ColumnModel
57949  * @extends Roo.util.Observable
57950  * This is the default implementation of a ColumnModel used by the Grid. It defines
57951  * the columns in the grid.
57952  * <br>Usage:<br>
57953  <pre><code>
57954  var colModel = new Roo.grid.ColumnModel([
57955         {header: "Ticker", width: 60, sortable: true, locked: true},
57956         {header: "Company Name", width: 150, sortable: true},
57957         {header: "Market Cap.", width: 100, sortable: true},
57958         {header: "$ Sales", width: 100, sortable: true, renderer: money},
57959         {header: "Employees", width: 100, sortable: true, resizable: false}
57960  ]);
57961  </code></pre>
57962  * <p>
57963  
57964  * The config options listed for this class are options which may appear in each
57965  * individual column definition.
57966  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
57967  * @constructor
57968  * @param {Object} config An Array of column config objects. See this class's
57969  * config objects for details.
57970 */
57971 Roo.grid.ColumnModel = function(config){
57972         /**
57973      * The config passed into the constructor
57974      */
57975     this.config = config;
57976     this.lookup = {};
57977
57978     // if no id, create one
57979     // if the column does not have a dataIndex mapping,
57980     // map it to the order it is in the config
57981     for(var i = 0, len = config.length; i < len; i++){
57982         var c = config[i];
57983         if(typeof c.dataIndex == "undefined"){
57984             c.dataIndex = i;
57985         }
57986         if(typeof c.renderer == "string"){
57987             c.renderer = Roo.util.Format[c.renderer];
57988         }
57989         if(typeof c.id == "undefined"){
57990             c.id = Roo.id();
57991         }
57992         if(c.editor && c.editor.xtype){
57993             c.editor  = Roo.factory(c.editor, Roo.grid);
57994         }
57995         if(c.editor && c.editor.isFormField){
57996             c.editor = new Roo.grid.GridEditor(c.editor);
57997         }
57998         this.lookup[c.id] = c;
57999     }
58000
58001     /**
58002      * The width of columns which have no width specified (defaults to 100)
58003      * @type Number
58004      */
58005     this.defaultWidth = 100;
58006
58007     /**
58008      * Default sortable of columns which have no sortable specified (defaults to false)
58009      * @type Boolean
58010      */
58011     this.defaultSortable = false;
58012
58013     this.addEvents({
58014         /**
58015              * @event widthchange
58016              * Fires when the width of a column changes.
58017              * @param {ColumnModel} this
58018              * @param {Number} columnIndex The column index
58019              * @param {Number} newWidth The new width
58020              */
58021             "widthchange": true,
58022         /**
58023              * @event headerchange
58024              * Fires when the text of a header changes.
58025              * @param {ColumnModel} this
58026              * @param {Number} columnIndex The column index
58027              * @param {Number} newText The new header text
58028              */
58029             "headerchange": true,
58030         /**
58031              * @event hiddenchange
58032              * Fires when a column is hidden or "unhidden".
58033              * @param {ColumnModel} this
58034              * @param {Number} columnIndex The column index
58035              * @param {Boolean} hidden true if hidden, false otherwise
58036              */
58037             "hiddenchange": true,
58038             /**
58039          * @event columnmoved
58040          * Fires when a column is moved.
58041          * @param {ColumnModel} this
58042          * @param {Number} oldIndex
58043          * @param {Number} newIndex
58044          */
58045         "columnmoved" : true,
58046         /**
58047          * @event columlockchange
58048          * Fires when a column's locked state is changed
58049          * @param {ColumnModel} this
58050          * @param {Number} colIndex
58051          * @param {Boolean} locked true if locked
58052          */
58053         "columnlockchange" : true
58054     });
58055     Roo.grid.ColumnModel.superclass.constructor.call(this);
58056 };
58057 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58058     /**
58059      * @cfg {String} header The header text to display in the Grid view.
58060      */
58061     /**
58062      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58063      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58064      * specified, the column's index is used as an index into the Record's data Array.
58065      */
58066     /**
58067      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58068      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58069      */
58070     /**
58071      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58072      * Defaults to the value of the {@link #defaultSortable} property.
58073      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58074      */
58075     /**
58076      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58077      */
58078     /**
58079      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58080      */
58081     /**
58082      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58083      */
58084     /**
58085      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58086      */
58087     /**
58088      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58089      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58090      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58091      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58092      */
58093        /**
58094      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58095      */
58096     /**
58097      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58098      */
58099     /**
58100      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58101      */
58102     /**
58103      * @cfg {String} cursor (Optional)
58104      */
58105     /**
58106      * @cfg {String} tooltip (Optional)
58107      */
58108     /**
58109      * @cfg {Number} xs (Optional)
58110      */
58111     /**
58112      * @cfg {Number} sm (Optional)
58113      */
58114     /**
58115      * @cfg {Number} md (Optional)
58116      */
58117     /**
58118      * @cfg {Number} lg (Optional)
58119      */
58120     /**
58121      * Returns the id of the column at the specified index.
58122      * @param {Number} index The column index
58123      * @return {String} the id
58124      */
58125     getColumnId : function(index){
58126         return this.config[index].id;
58127     },
58128
58129     /**
58130      * Returns the column for a specified id.
58131      * @param {String} id The column id
58132      * @return {Object} the column
58133      */
58134     getColumnById : function(id){
58135         return this.lookup[id];
58136     },
58137
58138     
58139     /**
58140      * Returns the column for a specified dataIndex.
58141      * @param {String} dataIndex The column dataIndex
58142      * @return {Object|Boolean} the column or false if not found
58143      */
58144     getColumnByDataIndex: function(dataIndex){
58145         var index = this.findColumnIndex(dataIndex);
58146         return index > -1 ? this.config[index] : false;
58147     },
58148     
58149     /**
58150      * Returns the index for a specified column id.
58151      * @param {String} id The column id
58152      * @return {Number} the index, or -1 if not found
58153      */
58154     getIndexById : function(id){
58155         for(var i = 0, len = this.config.length; i < len; i++){
58156             if(this.config[i].id == id){
58157                 return i;
58158             }
58159         }
58160         return -1;
58161     },
58162     
58163     /**
58164      * Returns the index for a specified column dataIndex.
58165      * @param {String} dataIndex The column dataIndex
58166      * @return {Number} the index, or -1 if not found
58167      */
58168     
58169     findColumnIndex : function(dataIndex){
58170         for(var i = 0, len = this.config.length; i < len; i++){
58171             if(this.config[i].dataIndex == dataIndex){
58172                 return i;
58173             }
58174         }
58175         return -1;
58176     },
58177     
58178     
58179     moveColumn : function(oldIndex, newIndex){
58180         var c = this.config[oldIndex];
58181         this.config.splice(oldIndex, 1);
58182         this.config.splice(newIndex, 0, c);
58183         this.dataMap = null;
58184         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58185     },
58186
58187     isLocked : function(colIndex){
58188         return this.config[colIndex].locked === true;
58189     },
58190
58191     setLocked : function(colIndex, value, suppressEvent){
58192         if(this.isLocked(colIndex) == value){
58193             return;
58194         }
58195         this.config[colIndex].locked = value;
58196         if(!suppressEvent){
58197             this.fireEvent("columnlockchange", this, colIndex, value);
58198         }
58199     },
58200
58201     getTotalLockedWidth : function(){
58202         var totalWidth = 0;
58203         for(var i = 0; i < this.config.length; i++){
58204             if(this.isLocked(i) && !this.isHidden(i)){
58205                 this.totalWidth += this.getColumnWidth(i);
58206             }
58207         }
58208         return totalWidth;
58209     },
58210
58211     getLockedCount : function(){
58212         for(var i = 0, len = this.config.length; i < len; i++){
58213             if(!this.isLocked(i)){
58214                 return i;
58215             }
58216         }
58217         
58218         return this.config.length;
58219     },
58220
58221     /**
58222      * Returns the number of columns.
58223      * @return {Number}
58224      */
58225     getColumnCount : function(visibleOnly){
58226         if(visibleOnly === true){
58227             var c = 0;
58228             for(var i = 0, len = this.config.length; i < len; i++){
58229                 if(!this.isHidden(i)){
58230                     c++;
58231                 }
58232             }
58233             return c;
58234         }
58235         return this.config.length;
58236     },
58237
58238     /**
58239      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58240      * @param {Function} fn
58241      * @param {Object} scope (optional)
58242      * @return {Array} result
58243      */
58244     getColumnsBy : function(fn, scope){
58245         var r = [];
58246         for(var i = 0, len = this.config.length; i < len; i++){
58247             var c = this.config[i];
58248             if(fn.call(scope||this, c, i) === true){
58249                 r[r.length] = c;
58250             }
58251         }
58252         return r;
58253     },
58254
58255     /**
58256      * Returns true if the specified column is sortable.
58257      * @param {Number} col The column index
58258      * @return {Boolean}
58259      */
58260     isSortable : function(col){
58261         if(typeof this.config[col].sortable == "undefined"){
58262             return this.defaultSortable;
58263         }
58264         return this.config[col].sortable;
58265     },
58266
58267     /**
58268      * Returns the rendering (formatting) function defined for the column.
58269      * @param {Number} col The column index.
58270      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58271      */
58272     getRenderer : function(col){
58273         if(!this.config[col].renderer){
58274             return Roo.grid.ColumnModel.defaultRenderer;
58275         }
58276         return this.config[col].renderer;
58277     },
58278
58279     /**
58280      * Sets the rendering (formatting) function for a column.
58281      * @param {Number} col The column index
58282      * @param {Function} fn The function to use to process the cell's raw data
58283      * to return HTML markup for the grid view. The render function is called with
58284      * the following parameters:<ul>
58285      * <li>Data value.</li>
58286      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58287      * <li>css A CSS style string to apply to the table cell.</li>
58288      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58289      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58290      * <li>Row index</li>
58291      * <li>Column index</li>
58292      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58293      */
58294     setRenderer : function(col, fn){
58295         this.config[col].renderer = fn;
58296     },
58297
58298     /**
58299      * Returns the width for the specified column.
58300      * @param {Number} col The column index
58301      * @return {Number}
58302      */
58303     getColumnWidth : function(col){
58304         return this.config[col].width * 1 || this.defaultWidth;
58305     },
58306
58307     /**
58308      * Sets the width for a column.
58309      * @param {Number} col The column index
58310      * @param {Number} width The new width
58311      */
58312     setColumnWidth : function(col, width, suppressEvent){
58313         this.config[col].width = width;
58314         this.totalWidth = null;
58315         if(!suppressEvent){
58316              this.fireEvent("widthchange", this, col, width);
58317         }
58318     },
58319
58320     /**
58321      * Returns the total width of all columns.
58322      * @param {Boolean} includeHidden True to include hidden column widths
58323      * @return {Number}
58324      */
58325     getTotalWidth : function(includeHidden){
58326         if(!this.totalWidth){
58327             this.totalWidth = 0;
58328             for(var i = 0, len = this.config.length; i < len; i++){
58329                 if(includeHidden || !this.isHidden(i)){
58330                     this.totalWidth += this.getColumnWidth(i);
58331                 }
58332             }
58333         }
58334         return this.totalWidth;
58335     },
58336
58337     /**
58338      * Returns the header for the specified column.
58339      * @param {Number} col The column index
58340      * @return {String}
58341      */
58342     getColumnHeader : function(col){
58343         return this.config[col].header;
58344     },
58345
58346     /**
58347      * Sets the header for a column.
58348      * @param {Number} col The column index
58349      * @param {String} header The new header
58350      */
58351     setColumnHeader : function(col, header){
58352         this.config[col].header = header;
58353         this.fireEvent("headerchange", this, col, header);
58354     },
58355
58356     /**
58357      * Returns the tooltip for the specified column.
58358      * @param {Number} col The column index
58359      * @return {String}
58360      */
58361     getColumnTooltip : function(col){
58362             return this.config[col].tooltip;
58363     },
58364     /**
58365      * Sets the tooltip for a column.
58366      * @param {Number} col The column index
58367      * @param {String} tooltip The new tooltip
58368      */
58369     setColumnTooltip : function(col, tooltip){
58370             this.config[col].tooltip = tooltip;
58371     },
58372
58373     /**
58374      * Returns the dataIndex for the specified column.
58375      * @param {Number} col The column index
58376      * @return {Number}
58377      */
58378     getDataIndex : function(col){
58379         return this.config[col].dataIndex;
58380     },
58381
58382     /**
58383      * Sets the dataIndex for a column.
58384      * @param {Number} col The column index
58385      * @param {Number} dataIndex The new dataIndex
58386      */
58387     setDataIndex : function(col, dataIndex){
58388         this.config[col].dataIndex = dataIndex;
58389     },
58390
58391     
58392     
58393     /**
58394      * Returns true if the cell is editable.
58395      * @param {Number} colIndex The column index
58396      * @param {Number} rowIndex The row index - this is nto actually used..?
58397      * @return {Boolean}
58398      */
58399     isCellEditable : function(colIndex, rowIndex){
58400         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58401     },
58402
58403     /**
58404      * Returns the editor defined for the cell/column.
58405      * return false or null to disable editing.
58406      * @param {Number} colIndex The column index
58407      * @param {Number} rowIndex The row index
58408      * @return {Object}
58409      */
58410     getCellEditor : function(colIndex, rowIndex){
58411         return this.config[colIndex].editor;
58412     },
58413
58414     /**
58415      * Sets if a column is editable.
58416      * @param {Number} col The column index
58417      * @param {Boolean} editable True if the column is editable
58418      */
58419     setEditable : function(col, editable){
58420         this.config[col].editable = editable;
58421     },
58422
58423
58424     /**
58425      * Returns true if the column is hidden.
58426      * @param {Number} colIndex The column index
58427      * @return {Boolean}
58428      */
58429     isHidden : function(colIndex){
58430         return this.config[colIndex].hidden;
58431     },
58432
58433
58434     /**
58435      * Returns true if the column width cannot be changed
58436      */
58437     isFixed : function(colIndex){
58438         return this.config[colIndex].fixed;
58439     },
58440
58441     /**
58442      * Returns true if the column can be resized
58443      * @return {Boolean}
58444      */
58445     isResizable : function(colIndex){
58446         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58447     },
58448     /**
58449      * Sets if a column is hidden.
58450      * @param {Number} colIndex The column index
58451      * @param {Boolean} hidden True if the column is hidden
58452      */
58453     setHidden : function(colIndex, hidden){
58454         this.config[colIndex].hidden = hidden;
58455         this.totalWidth = null;
58456         this.fireEvent("hiddenchange", this, colIndex, hidden);
58457     },
58458
58459     /**
58460      * Sets the editor for a column.
58461      * @param {Number} col The column index
58462      * @param {Object} editor The editor object
58463      */
58464     setEditor : function(col, editor){
58465         this.config[col].editor = editor;
58466     }
58467 });
58468
58469 Roo.grid.ColumnModel.defaultRenderer = function(value)
58470 {
58471     if(typeof value == "object") {
58472         return value;
58473     }
58474         if(typeof value == "string" && value.length < 1){
58475             return "&#160;";
58476         }
58477     
58478         return String.format("{0}", value);
58479 };
58480
58481 // Alias for backwards compatibility
58482 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58483 /*
58484  * Based on:
58485  * Ext JS Library 1.1.1
58486  * Copyright(c) 2006-2007, Ext JS, LLC.
58487  *
58488  * Originally Released Under LGPL - original licence link has changed is not relivant.
58489  *
58490  * Fork - LGPL
58491  * <script type="text/javascript">
58492  */
58493
58494 /**
58495  * @class Roo.grid.AbstractSelectionModel
58496  * @extends Roo.util.Observable
58497  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58498  * implemented by descendant classes.  This class should not be directly instantiated.
58499  * @constructor
58500  */
58501 Roo.grid.AbstractSelectionModel = function(){
58502     this.locked = false;
58503     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58504 };
58505
58506 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58507     /** @ignore Called by the grid automatically. Do not call directly. */
58508     init : function(grid){
58509         this.grid = grid;
58510         this.initEvents();
58511     },
58512
58513     /**
58514      * Locks the selections.
58515      */
58516     lock : function(){
58517         this.locked = true;
58518     },
58519
58520     /**
58521      * Unlocks the selections.
58522      */
58523     unlock : function(){
58524         this.locked = false;
58525     },
58526
58527     /**
58528      * Returns true if the selections are locked.
58529      * @return {Boolean}
58530      */
58531     isLocked : function(){
58532         return this.locked;
58533     }
58534 });/*
58535  * Based on:
58536  * Ext JS Library 1.1.1
58537  * Copyright(c) 2006-2007, Ext JS, LLC.
58538  *
58539  * Originally Released Under LGPL - original licence link has changed is not relivant.
58540  *
58541  * Fork - LGPL
58542  * <script type="text/javascript">
58543  */
58544 /**
58545  * @extends Roo.grid.AbstractSelectionModel
58546  * @class Roo.grid.RowSelectionModel
58547  * The default SelectionModel used by {@link Roo.grid.Grid}.
58548  * It supports multiple selections and keyboard selection/navigation. 
58549  * @constructor
58550  * @param {Object} config
58551  */
58552 Roo.grid.RowSelectionModel = function(config){
58553     Roo.apply(this, config);
58554     this.selections = new Roo.util.MixedCollection(false, function(o){
58555         return o.id;
58556     });
58557
58558     this.last = false;
58559     this.lastActive = false;
58560
58561     this.addEvents({
58562         /**
58563              * @event selectionchange
58564              * Fires when the selection changes
58565              * @param {SelectionModel} this
58566              */
58567             "selectionchange" : true,
58568         /**
58569              * @event afterselectionchange
58570              * Fires after the selection changes (eg. by key press or clicking)
58571              * @param {SelectionModel} this
58572              */
58573             "afterselectionchange" : true,
58574         /**
58575              * @event beforerowselect
58576              * Fires when a row is selected being selected, return false to cancel.
58577              * @param {SelectionModel} this
58578              * @param {Number} rowIndex The selected index
58579              * @param {Boolean} keepExisting False if other selections will be cleared
58580              */
58581             "beforerowselect" : true,
58582         /**
58583              * @event rowselect
58584              * Fires when a row is selected.
58585              * @param {SelectionModel} this
58586              * @param {Number} rowIndex The selected index
58587              * @param {Roo.data.Record} r The record
58588              */
58589             "rowselect" : true,
58590         /**
58591              * @event rowdeselect
58592              * Fires when a row is deselected.
58593              * @param {SelectionModel} this
58594              * @param {Number} rowIndex The selected index
58595              */
58596         "rowdeselect" : true
58597     });
58598     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58599     this.locked = false;
58600 };
58601
58602 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58603     /**
58604      * @cfg {Boolean} singleSelect
58605      * True to allow selection of only one row at a time (defaults to false)
58606      */
58607     singleSelect : false,
58608
58609     // private
58610     initEvents : function(){
58611
58612         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58613             this.grid.on("mousedown", this.handleMouseDown, this);
58614         }else{ // allow click to work like normal
58615             this.grid.on("rowclick", this.handleDragableRowClick, this);
58616         }
58617
58618         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58619             "up" : function(e){
58620                 if(!e.shiftKey){
58621                     this.selectPrevious(e.shiftKey);
58622                 }else if(this.last !== false && this.lastActive !== false){
58623                     var last = this.last;
58624                     this.selectRange(this.last,  this.lastActive-1);
58625                     this.grid.getView().focusRow(this.lastActive);
58626                     if(last !== false){
58627                         this.last = last;
58628                     }
58629                 }else{
58630                     this.selectFirstRow();
58631                 }
58632                 this.fireEvent("afterselectionchange", this);
58633             },
58634             "down" : function(e){
58635                 if(!e.shiftKey){
58636                     this.selectNext(e.shiftKey);
58637                 }else if(this.last !== false && this.lastActive !== false){
58638                     var last = this.last;
58639                     this.selectRange(this.last,  this.lastActive+1);
58640                     this.grid.getView().focusRow(this.lastActive);
58641                     if(last !== false){
58642                         this.last = last;
58643                     }
58644                 }else{
58645                     this.selectFirstRow();
58646                 }
58647                 this.fireEvent("afterselectionchange", this);
58648             },
58649             scope: this
58650         });
58651
58652         var view = this.grid.view;
58653         view.on("refresh", this.onRefresh, this);
58654         view.on("rowupdated", this.onRowUpdated, this);
58655         view.on("rowremoved", this.onRemove, this);
58656     },
58657
58658     // private
58659     onRefresh : function(){
58660         var ds = this.grid.dataSource, i, v = this.grid.view;
58661         var s = this.selections;
58662         s.each(function(r){
58663             if((i = ds.indexOfId(r.id)) != -1){
58664                 v.onRowSelect(i);
58665                 s.add(ds.getAt(i)); // updating the selection relate data
58666             }else{
58667                 s.remove(r);
58668             }
58669         });
58670     },
58671
58672     // private
58673     onRemove : function(v, index, r){
58674         this.selections.remove(r);
58675     },
58676
58677     // private
58678     onRowUpdated : function(v, index, r){
58679         if(this.isSelected(r)){
58680             v.onRowSelect(index);
58681         }
58682     },
58683
58684     /**
58685      * Select records.
58686      * @param {Array} records The records to select
58687      * @param {Boolean} keepExisting (optional) True to keep existing selections
58688      */
58689     selectRecords : function(records, keepExisting){
58690         if(!keepExisting){
58691             this.clearSelections();
58692         }
58693         var ds = this.grid.dataSource;
58694         for(var i = 0, len = records.length; i < len; i++){
58695             this.selectRow(ds.indexOf(records[i]), true);
58696         }
58697     },
58698
58699     /**
58700      * Gets the number of selected rows.
58701      * @return {Number}
58702      */
58703     getCount : function(){
58704         return this.selections.length;
58705     },
58706
58707     /**
58708      * Selects the first row in the grid.
58709      */
58710     selectFirstRow : function(){
58711         this.selectRow(0);
58712     },
58713
58714     /**
58715      * Select the last row.
58716      * @param {Boolean} keepExisting (optional) True to keep existing selections
58717      */
58718     selectLastRow : function(keepExisting){
58719         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
58720     },
58721
58722     /**
58723      * Selects the row immediately following the last selected row.
58724      * @param {Boolean} keepExisting (optional) True to keep existing selections
58725      */
58726     selectNext : function(keepExisting){
58727         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
58728             this.selectRow(this.last+1, keepExisting);
58729             this.grid.getView().focusRow(this.last);
58730         }
58731     },
58732
58733     /**
58734      * Selects the row that precedes the last selected row.
58735      * @param {Boolean} keepExisting (optional) True to keep existing selections
58736      */
58737     selectPrevious : function(keepExisting){
58738         if(this.last){
58739             this.selectRow(this.last-1, keepExisting);
58740             this.grid.getView().focusRow(this.last);
58741         }
58742     },
58743
58744     /**
58745      * Returns the selected records
58746      * @return {Array} Array of selected records
58747      */
58748     getSelections : function(){
58749         return [].concat(this.selections.items);
58750     },
58751
58752     /**
58753      * Returns the first selected record.
58754      * @return {Record}
58755      */
58756     getSelected : function(){
58757         return this.selections.itemAt(0);
58758     },
58759
58760
58761     /**
58762      * Clears all selections.
58763      */
58764     clearSelections : function(fast){
58765         if(this.locked) {
58766             return;
58767         }
58768         if(fast !== true){
58769             var ds = this.grid.dataSource;
58770             var s = this.selections;
58771             s.each(function(r){
58772                 this.deselectRow(ds.indexOfId(r.id));
58773             }, this);
58774             s.clear();
58775         }else{
58776             this.selections.clear();
58777         }
58778         this.last = false;
58779     },
58780
58781
58782     /**
58783      * Selects all rows.
58784      */
58785     selectAll : function(){
58786         if(this.locked) {
58787             return;
58788         }
58789         this.selections.clear();
58790         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
58791             this.selectRow(i, true);
58792         }
58793     },
58794
58795     /**
58796      * Returns True if there is a selection.
58797      * @return {Boolean}
58798      */
58799     hasSelection : function(){
58800         return this.selections.length > 0;
58801     },
58802
58803     /**
58804      * Returns True if the specified row is selected.
58805      * @param {Number/Record} record The record or index of the record to check
58806      * @return {Boolean}
58807      */
58808     isSelected : function(index){
58809         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
58810         return (r && this.selections.key(r.id) ? true : false);
58811     },
58812
58813     /**
58814      * Returns True if the specified record id is selected.
58815      * @param {String} id The id of record to check
58816      * @return {Boolean}
58817      */
58818     isIdSelected : function(id){
58819         return (this.selections.key(id) ? true : false);
58820     },
58821
58822     // private
58823     handleMouseDown : function(e, t){
58824         var view = this.grid.getView(), rowIndex;
58825         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
58826             return;
58827         };
58828         if(e.shiftKey && this.last !== false){
58829             var last = this.last;
58830             this.selectRange(last, rowIndex, e.ctrlKey);
58831             this.last = last; // reset the last
58832             view.focusRow(rowIndex);
58833         }else{
58834             var isSelected = this.isSelected(rowIndex);
58835             if(e.button !== 0 && isSelected){
58836                 view.focusRow(rowIndex);
58837             }else if(e.ctrlKey && isSelected){
58838                 this.deselectRow(rowIndex);
58839             }else if(!isSelected){
58840                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
58841                 view.focusRow(rowIndex);
58842             }
58843         }
58844         this.fireEvent("afterselectionchange", this);
58845     },
58846     // private
58847     handleDragableRowClick :  function(grid, rowIndex, e) 
58848     {
58849         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
58850             this.selectRow(rowIndex, false);
58851             grid.view.focusRow(rowIndex);
58852              this.fireEvent("afterselectionchange", this);
58853         }
58854     },
58855     
58856     /**
58857      * Selects multiple rows.
58858      * @param {Array} rows Array of the indexes of the row to select
58859      * @param {Boolean} keepExisting (optional) True to keep existing selections
58860      */
58861     selectRows : function(rows, keepExisting){
58862         if(!keepExisting){
58863             this.clearSelections();
58864         }
58865         for(var i = 0, len = rows.length; i < len; i++){
58866             this.selectRow(rows[i], true);
58867         }
58868     },
58869
58870     /**
58871      * Selects a range of rows. All rows in between startRow and endRow are also selected.
58872      * @param {Number} startRow The index of the first row in the range
58873      * @param {Number} endRow The index of the last row in the range
58874      * @param {Boolean} keepExisting (optional) True to retain existing selections
58875      */
58876     selectRange : function(startRow, endRow, keepExisting){
58877         if(this.locked) {
58878             return;
58879         }
58880         if(!keepExisting){
58881             this.clearSelections();
58882         }
58883         if(startRow <= endRow){
58884             for(var i = startRow; i <= endRow; i++){
58885                 this.selectRow(i, true);
58886             }
58887         }else{
58888             for(var i = startRow; i >= endRow; i--){
58889                 this.selectRow(i, true);
58890             }
58891         }
58892     },
58893
58894     /**
58895      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
58896      * @param {Number} startRow The index of the first row in the range
58897      * @param {Number} endRow The index of the last row in the range
58898      */
58899     deselectRange : function(startRow, endRow, preventViewNotify){
58900         if(this.locked) {
58901             return;
58902         }
58903         for(var i = startRow; i <= endRow; i++){
58904             this.deselectRow(i, preventViewNotify);
58905         }
58906     },
58907
58908     /**
58909      * Selects a row.
58910      * @param {Number} row The index of the row to select
58911      * @param {Boolean} keepExisting (optional) True to keep existing selections
58912      */
58913     selectRow : function(index, keepExisting, preventViewNotify){
58914         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
58915             return;
58916         }
58917         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
58918             if(!keepExisting || this.singleSelect){
58919                 this.clearSelections();
58920             }
58921             var r = this.grid.dataSource.getAt(index);
58922             this.selections.add(r);
58923             this.last = this.lastActive = index;
58924             if(!preventViewNotify){
58925                 this.grid.getView().onRowSelect(index);
58926             }
58927             this.fireEvent("rowselect", this, index, r);
58928             this.fireEvent("selectionchange", this);
58929         }
58930     },
58931
58932     /**
58933      * Deselects a row.
58934      * @param {Number} row The index of the row to deselect
58935      */
58936     deselectRow : function(index, preventViewNotify){
58937         if(this.locked) {
58938             return;
58939         }
58940         if(this.last == index){
58941             this.last = false;
58942         }
58943         if(this.lastActive == index){
58944             this.lastActive = false;
58945         }
58946         var r = this.grid.dataSource.getAt(index);
58947         this.selections.remove(r);
58948         if(!preventViewNotify){
58949             this.grid.getView().onRowDeselect(index);
58950         }
58951         this.fireEvent("rowdeselect", this, index);
58952         this.fireEvent("selectionchange", this);
58953     },
58954
58955     // private
58956     restoreLast : function(){
58957         if(this._last){
58958             this.last = this._last;
58959         }
58960     },
58961
58962     // private
58963     acceptsNav : function(row, col, cm){
58964         return !cm.isHidden(col) && cm.isCellEditable(col, row);
58965     },
58966
58967     // private
58968     onEditorKey : function(field, e){
58969         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
58970         if(k == e.TAB){
58971             e.stopEvent();
58972             ed.completeEdit();
58973             if(e.shiftKey){
58974                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
58975             }else{
58976                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
58977             }
58978         }else if(k == e.ENTER && !e.ctrlKey){
58979             e.stopEvent();
58980             ed.completeEdit();
58981             if(e.shiftKey){
58982                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
58983             }else{
58984                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
58985             }
58986         }else if(k == e.ESC){
58987             ed.cancelEdit();
58988         }
58989         if(newCell){
58990             g.startEditing(newCell[0], newCell[1]);
58991         }
58992     }
58993 });/*
58994  * Based on:
58995  * Ext JS Library 1.1.1
58996  * Copyright(c) 2006-2007, Ext JS, LLC.
58997  *
58998  * Originally Released Under LGPL - original licence link has changed is not relivant.
58999  *
59000  * Fork - LGPL
59001  * <script type="text/javascript">
59002  */
59003 /**
59004  * @class Roo.grid.CellSelectionModel
59005  * @extends Roo.grid.AbstractSelectionModel
59006  * This class provides the basic implementation for cell selection in a grid.
59007  * @constructor
59008  * @param {Object} config The object containing the configuration of this model.
59009  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59010  */
59011 Roo.grid.CellSelectionModel = function(config){
59012     Roo.apply(this, config);
59013
59014     this.selection = null;
59015
59016     this.addEvents({
59017         /**
59018              * @event beforerowselect
59019              * Fires before a cell is selected.
59020              * @param {SelectionModel} this
59021              * @param {Number} rowIndex The selected row index
59022              * @param {Number} colIndex The selected cell index
59023              */
59024             "beforecellselect" : true,
59025         /**
59026              * @event cellselect
59027              * Fires when a cell is selected.
59028              * @param {SelectionModel} this
59029              * @param {Number} rowIndex The selected row index
59030              * @param {Number} colIndex The selected cell index
59031              */
59032             "cellselect" : true,
59033         /**
59034              * @event selectionchange
59035              * Fires when the active selection changes.
59036              * @param {SelectionModel} this
59037              * @param {Object} selection null for no selection or an object (o) with two properties
59038                 <ul>
59039                 <li>o.record: the record object for the row the selection is in</li>
59040                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59041                 </ul>
59042              */
59043             "selectionchange" : true,
59044         /**
59045              * @event tabend
59046              * Fires when the tab (or enter) was pressed on the last editable cell
59047              * You can use this to trigger add new row.
59048              * @param {SelectionModel} this
59049              */
59050             "tabend" : true,
59051          /**
59052              * @event beforeeditnext
59053              * Fires before the next editable sell is made active
59054              * You can use this to skip to another cell or fire the tabend
59055              *    if you set cell to false
59056              * @param {Object} eventdata object : { cell : [ row, col ] } 
59057              */
59058             "beforeeditnext" : true
59059     });
59060     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59061 };
59062
59063 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59064     
59065     enter_is_tab: false,
59066
59067     /** @ignore */
59068     initEvents : function(){
59069         this.grid.on("mousedown", this.handleMouseDown, this);
59070         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59071         var view = this.grid.view;
59072         view.on("refresh", this.onViewChange, this);
59073         view.on("rowupdated", this.onRowUpdated, this);
59074         view.on("beforerowremoved", this.clearSelections, this);
59075         view.on("beforerowsinserted", this.clearSelections, this);
59076         if(this.grid.isEditor){
59077             this.grid.on("beforeedit", this.beforeEdit,  this);
59078         }
59079     },
59080
59081         //private
59082     beforeEdit : function(e){
59083         this.select(e.row, e.column, false, true, e.record);
59084     },
59085
59086         //private
59087     onRowUpdated : function(v, index, r){
59088         if(this.selection && this.selection.record == r){
59089             v.onCellSelect(index, this.selection.cell[1]);
59090         }
59091     },
59092
59093         //private
59094     onViewChange : function(){
59095         this.clearSelections(true);
59096     },
59097
59098         /**
59099          * Returns the currently selected cell,.
59100          * @return {Array} The selected cell (row, column) or null if none selected.
59101          */
59102     getSelectedCell : function(){
59103         return this.selection ? this.selection.cell : null;
59104     },
59105
59106     /**
59107      * Clears all selections.
59108      * @param {Boolean} true to prevent the gridview from being notified about the change.
59109      */
59110     clearSelections : function(preventNotify){
59111         var s = this.selection;
59112         if(s){
59113             if(preventNotify !== true){
59114                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59115             }
59116             this.selection = null;
59117             this.fireEvent("selectionchange", this, null);
59118         }
59119     },
59120
59121     /**
59122      * Returns true if there is a selection.
59123      * @return {Boolean}
59124      */
59125     hasSelection : function(){
59126         return this.selection ? true : false;
59127     },
59128
59129     /** @ignore */
59130     handleMouseDown : function(e, t){
59131         var v = this.grid.getView();
59132         if(this.isLocked()){
59133             return;
59134         };
59135         var row = v.findRowIndex(t);
59136         var cell = v.findCellIndex(t);
59137         if(row !== false && cell !== false){
59138             this.select(row, cell);
59139         }
59140     },
59141
59142     /**
59143      * Selects a cell.
59144      * @param {Number} rowIndex
59145      * @param {Number} collIndex
59146      */
59147     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59148         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59149             this.clearSelections();
59150             r = r || this.grid.dataSource.getAt(rowIndex);
59151             this.selection = {
59152                 record : r,
59153                 cell : [rowIndex, colIndex]
59154             };
59155             if(!preventViewNotify){
59156                 var v = this.grid.getView();
59157                 v.onCellSelect(rowIndex, colIndex);
59158                 if(preventFocus !== true){
59159                     v.focusCell(rowIndex, colIndex);
59160                 }
59161             }
59162             this.fireEvent("cellselect", this, rowIndex, colIndex);
59163             this.fireEvent("selectionchange", this, this.selection);
59164         }
59165     },
59166
59167         //private
59168     isSelectable : function(rowIndex, colIndex, cm){
59169         return !cm.isHidden(colIndex);
59170     },
59171
59172     /** @ignore */
59173     handleKeyDown : function(e){
59174         //Roo.log('Cell Sel Model handleKeyDown');
59175         if(!e.isNavKeyPress()){
59176             return;
59177         }
59178         var g = this.grid, s = this.selection;
59179         if(!s){
59180             e.stopEvent();
59181             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59182             if(cell){
59183                 this.select(cell[0], cell[1]);
59184             }
59185             return;
59186         }
59187         var sm = this;
59188         var walk = function(row, col, step){
59189             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59190         };
59191         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59192         var newCell;
59193
59194       
59195
59196         switch(k){
59197             case e.TAB:
59198                 // handled by onEditorKey
59199                 if (g.isEditor && g.editing) {
59200                     return;
59201                 }
59202                 if(e.shiftKey) {
59203                     newCell = walk(r, c-1, -1);
59204                 } else {
59205                     newCell = walk(r, c+1, 1);
59206                 }
59207                 break;
59208             
59209             case e.DOWN:
59210                newCell = walk(r+1, c, 1);
59211                 break;
59212             
59213             case e.UP:
59214                 newCell = walk(r-1, c, -1);
59215                 break;
59216             
59217             case e.RIGHT:
59218                 newCell = walk(r, c+1, 1);
59219                 break;
59220             
59221             case e.LEFT:
59222                 newCell = walk(r, c-1, -1);
59223                 break;
59224             
59225             case e.ENTER:
59226                 
59227                 if(g.isEditor && !g.editing){
59228                    g.startEditing(r, c);
59229                    e.stopEvent();
59230                    return;
59231                 }
59232                 
59233                 
59234              break;
59235         };
59236         if(newCell){
59237             this.select(newCell[0], newCell[1]);
59238             e.stopEvent();
59239             
59240         }
59241     },
59242
59243     acceptsNav : function(row, col, cm){
59244         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59245     },
59246     /**
59247      * Selects a cell.
59248      * @param {Number} field (not used) - as it's normally used as a listener
59249      * @param {Number} e - event - fake it by using
59250      *
59251      * var e = Roo.EventObjectImpl.prototype;
59252      * e.keyCode = e.TAB
59253      *
59254      * 
59255      */
59256     onEditorKey : function(field, e){
59257         
59258         var k = e.getKey(),
59259             newCell,
59260             g = this.grid,
59261             ed = g.activeEditor,
59262             forward = false;
59263         ///Roo.log('onEditorKey' + k);
59264         
59265         
59266         if (this.enter_is_tab && k == e.ENTER) {
59267             k = e.TAB;
59268         }
59269         
59270         if(k == e.TAB){
59271             if(e.shiftKey){
59272                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59273             }else{
59274                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59275                 forward = true;
59276             }
59277             
59278             e.stopEvent();
59279             
59280         } else if(k == e.ENTER &&  !e.ctrlKey){
59281             ed.completeEdit();
59282             e.stopEvent();
59283             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59284         
59285                 } else if(k == e.ESC){
59286             ed.cancelEdit();
59287         }
59288                 
59289         if (newCell) {
59290             var ecall = { cell : newCell, forward : forward };
59291             this.fireEvent('beforeeditnext', ecall );
59292             newCell = ecall.cell;
59293                         forward = ecall.forward;
59294         }
59295                 
59296         if(newCell){
59297             //Roo.log('next cell after edit');
59298             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59299         } else if (forward) {
59300             // tabbed past last
59301             this.fireEvent.defer(100, this, ['tabend',this]);
59302         }
59303     }
59304 });/*
59305  * Based on:
59306  * Ext JS Library 1.1.1
59307  * Copyright(c) 2006-2007, Ext JS, LLC.
59308  *
59309  * Originally Released Under LGPL - original licence link has changed is not relivant.
59310  *
59311  * Fork - LGPL
59312  * <script type="text/javascript">
59313  */
59314  
59315 /**
59316  * @class Roo.grid.EditorGrid
59317  * @extends Roo.grid.Grid
59318  * Class for creating and editable grid.
59319  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59320  * The container MUST have some type of size defined for the grid to fill. The container will be 
59321  * automatically set to position relative if it isn't already.
59322  * @param {Object} dataSource The data model to bind to
59323  * @param {Object} colModel The column model with info about this grid's columns
59324  */
59325 Roo.grid.EditorGrid = function(container, config){
59326     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59327     this.getGridEl().addClass("xedit-grid");
59328
59329     if(!this.selModel){
59330         this.selModel = new Roo.grid.CellSelectionModel();
59331     }
59332
59333     this.activeEditor = null;
59334
59335         this.addEvents({
59336             /**
59337              * @event beforeedit
59338              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59339              * <ul style="padding:5px;padding-left:16px;">
59340              * <li>grid - This grid</li>
59341              * <li>record - The record being edited</li>
59342              * <li>field - The field name being edited</li>
59343              * <li>value - The value for the field being edited.</li>
59344              * <li>row - The grid row index</li>
59345              * <li>column - The grid column index</li>
59346              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59347              * </ul>
59348              * @param {Object} e An edit event (see above for description)
59349              */
59350             "beforeedit" : true,
59351             /**
59352              * @event afteredit
59353              * Fires after a cell is edited. <br />
59354              * <ul style="padding:5px;padding-left:16px;">
59355              * <li>grid - This grid</li>
59356              * <li>record - The record being edited</li>
59357              * <li>field - The field name being edited</li>
59358              * <li>value - The value being set</li>
59359              * <li>originalValue - The original value for the field, before the edit.</li>
59360              * <li>row - The grid row index</li>
59361              * <li>column - The grid column index</li>
59362              * </ul>
59363              * @param {Object} e An edit event (see above for description)
59364              */
59365             "afteredit" : true,
59366             /**
59367              * @event validateedit
59368              * Fires after a cell is edited, but before the value is set in the record. 
59369          * You can use this to modify the value being set in the field, Return false
59370              * to cancel the change. The edit event object has the following properties <br />
59371              * <ul style="padding:5px;padding-left:16px;">
59372          * <li>editor - This editor</li>
59373              * <li>grid - This grid</li>
59374              * <li>record - The record being edited</li>
59375              * <li>field - The field name being edited</li>
59376              * <li>value - The value being set</li>
59377              * <li>originalValue - The original value for the field, before the edit.</li>
59378              * <li>row - The grid row index</li>
59379              * <li>column - The grid column index</li>
59380              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59381              * </ul>
59382              * @param {Object} e An edit event (see above for description)
59383              */
59384             "validateedit" : true
59385         });
59386     this.on("bodyscroll", this.stopEditing,  this);
59387     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59388 };
59389
59390 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59391     /**
59392      * @cfg {Number} clicksToEdit
59393      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59394      */
59395     clicksToEdit: 2,
59396
59397     // private
59398     isEditor : true,
59399     // private
59400     trackMouseOver: false, // causes very odd FF errors
59401
59402     onCellDblClick : function(g, row, col){
59403         this.startEditing(row, col);
59404     },
59405
59406     onEditComplete : function(ed, value, startValue){
59407         this.editing = false;
59408         this.activeEditor = null;
59409         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59410         var r = ed.record;
59411         var field = this.colModel.getDataIndex(ed.col);
59412         var e = {
59413             grid: this,
59414             record: r,
59415             field: field,
59416             originalValue: startValue,
59417             value: value,
59418             row: ed.row,
59419             column: ed.col,
59420             cancel:false,
59421             editor: ed
59422         };
59423         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59424         cell.show();
59425           
59426         if(String(value) !== String(startValue)){
59427             
59428             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59429                 r.set(field, e.value);
59430                 // if we are dealing with a combo box..
59431                 // then we also set the 'name' colum to be the displayField
59432                 if (ed.field.displayField && ed.field.name) {
59433                     r.set(ed.field.name, ed.field.el.dom.value);
59434                 }
59435                 
59436                 delete e.cancel; //?? why!!!
59437                 this.fireEvent("afteredit", e);
59438             }
59439         } else {
59440             this.fireEvent("afteredit", e); // always fire it!
59441         }
59442         this.view.focusCell(ed.row, ed.col);
59443     },
59444
59445     /**
59446      * Starts editing the specified for the specified row/column
59447      * @param {Number} rowIndex
59448      * @param {Number} colIndex
59449      */
59450     startEditing : function(row, col){
59451         this.stopEditing();
59452         if(this.colModel.isCellEditable(col, row)){
59453             this.view.ensureVisible(row, col, true);
59454           
59455             var r = this.dataSource.getAt(row);
59456             var field = this.colModel.getDataIndex(col);
59457             var cell = Roo.get(this.view.getCell(row,col));
59458             var e = {
59459                 grid: this,
59460                 record: r,
59461                 field: field,
59462                 value: r.data[field],
59463                 row: row,
59464                 column: col,
59465                 cancel:false 
59466             };
59467             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59468                 this.editing = true;
59469                 var ed = this.colModel.getCellEditor(col, row);
59470                 
59471                 if (!ed) {
59472                     return;
59473                 }
59474                 if(!ed.rendered){
59475                     ed.render(ed.parentEl || document.body);
59476                 }
59477                 ed.field.reset();
59478                
59479                 cell.hide();
59480                 
59481                 (function(){ // complex but required for focus issues in safari, ie and opera
59482                     ed.row = row;
59483                     ed.col = col;
59484                     ed.record = r;
59485                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59486                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59487                     this.activeEditor = ed;
59488                     var v = r.data[field];
59489                     ed.startEdit(this.view.getCell(row, col), v);
59490                     // combo's with 'displayField and name set
59491                     if (ed.field.displayField && ed.field.name) {
59492                         ed.field.el.dom.value = r.data[ed.field.name];
59493                     }
59494                     
59495                     
59496                 }).defer(50, this);
59497             }
59498         }
59499     },
59500         
59501     /**
59502      * Stops any active editing
59503      */
59504     stopEditing : function(){
59505         if(this.activeEditor){
59506             this.activeEditor.completeEdit();
59507         }
59508         this.activeEditor = null;
59509     },
59510         
59511          /**
59512      * Called to get grid's drag proxy text, by default returns this.ddText.
59513      * @return {String}
59514      */
59515     getDragDropText : function(){
59516         var count = this.selModel.getSelectedCell() ? 1 : 0;
59517         return String.format(this.ddText, count, count == 1 ? '' : 's');
59518     }
59519         
59520 });/*
59521  * Based on:
59522  * Ext JS Library 1.1.1
59523  * Copyright(c) 2006-2007, Ext JS, LLC.
59524  *
59525  * Originally Released Under LGPL - original licence link has changed is not relivant.
59526  *
59527  * Fork - LGPL
59528  * <script type="text/javascript">
59529  */
59530
59531 // private - not really -- you end up using it !
59532 // This is a support class used internally by the Grid components
59533
59534 /**
59535  * @class Roo.grid.GridEditor
59536  * @extends Roo.Editor
59537  * Class for creating and editable grid elements.
59538  * @param {Object} config any settings (must include field)
59539  */
59540 Roo.grid.GridEditor = function(field, config){
59541     if (!config && field.field) {
59542         config = field;
59543         field = Roo.factory(config.field, Roo.form);
59544     }
59545     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59546     field.monitorTab = false;
59547 };
59548
59549 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59550     
59551     /**
59552      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59553      */
59554     
59555     alignment: "tl-tl",
59556     autoSize: "width",
59557     hideEl : false,
59558     cls: "x-small-editor x-grid-editor",
59559     shim:false,
59560     shadow:"frame"
59561 });/*
59562  * Based on:
59563  * Ext JS Library 1.1.1
59564  * Copyright(c) 2006-2007, Ext JS, LLC.
59565  *
59566  * Originally Released Under LGPL - original licence link has changed is not relivant.
59567  *
59568  * Fork - LGPL
59569  * <script type="text/javascript">
59570  */
59571   
59572
59573   
59574 Roo.grid.PropertyRecord = Roo.data.Record.create([
59575     {name:'name',type:'string'},  'value'
59576 ]);
59577
59578
59579 Roo.grid.PropertyStore = function(grid, source){
59580     this.grid = grid;
59581     this.store = new Roo.data.Store({
59582         recordType : Roo.grid.PropertyRecord
59583     });
59584     this.store.on('update', this.onUpdate,  this);
59585     if(source){
59586         this.setSource(source);
59587     }
59588     Roo.grid.PropertyStore.superclass.constructor.call(this);
59589 };
59590
59591
59592
59593 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59594     setSource : function(o){
59595         this.source = o;
59596         this.store.removeAll();
59597         var data = [];
59598         for(var k in o){
59599             if(this.isEditableValue(o[k])){
59600                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59601             }
59602         }
59603         this.store.loadRecords({records: data}, {}, true);
59604     },
59605
59606     onUpdate : function(ds, record, type){
59607         if(type == Roo.data.Record.EDIT){
59608             var v = record.data['value'];
59609             var oldValue = record.modified['value'];
59610             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59611                 this.source[record.id] = v;
59612                 record.commit();
59613                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59614             }else{
59615                 record.reject();
59616             }
59617         }
59618     },
59619
59620     getProperty : function(row){
59621        return this.store.getAt(row);
59622     },
59623
59624     isEditableValue: function(val){
59625         if(val && val instanceof Date){
59626             return true;
59627         }else if(typeof val == 'object' || typeof val == 'function'){
59628             return false;
59629         }
59630         return true;
59631     },
59632
59633     setValue : function(prop, value){
59634         this.source[prop] = value;
59635         this.store.getById(prop).set('value', value);
59636     },
59637
59638     getSource : function(){
59639         return this.source;
59640     }
59641 });
59642
59643 Roo.grid.PropertyColumnModel = function(grid, store){
59644     this.grid = grid;
59645     var g = Roo.grid;
59646     g.PropertyColumnModel.superclass.constructor.call(this, [
59647         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59648         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59649     ]);
59650     this.store = store;
59651     this.bselect = Roo.DomHelper.append(document.body, {
59652         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59653             {tag: 'option', value: 'true', html: 'true'},
59654             {tag: 'option', value: 'false', html: 'false'}
59655         ]
59656     });
59657     Roo.id(this.bselect);
59658     var f = Roo.form;
59659     this.editors = {
59660         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59661         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59662         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59663         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59664         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59665     };
59666     this.renderCellDelegate = this.renderCell.createDelegate(this);
59667     this.renderPropDelegate = this.renderProp.createDelegate(this);
59668 };
59669
59670 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59671     
59672     
59673     nameText : 'Name',
59674     valueText : 'Value',
59675     
59676     dateFormat : 'm/j/Y',
59677     
59678     
59679     renderDate : function(dateVal){
59680         return dateVal.dateFormat(this.dateFormat);
59681     },
59682
59683     renderBool : function(bVal){
59684         return bVal ? 'true' : 'false';
59685     },
59686
59687     isCellEditable : function(colIndex, rowIndex){
59688         return colIndex == 1;
59689     },
59690
59691     getRenderer : function(col){
59692         return col == 1 ?
59693             this.renderCellDelegate : this.renderPropDelegate;
59694     },
59695
59696     renderProp : function(v){
59697         return this.getPropertyName(v);
59698     },
59699
59700     renderCell : function(val){
59701         var rv = val;
59702         if(val instanceof Date){
59703             rv = this.renderDate(val);
59704         }else if(typeof val == 'boolean'){
59705             rv = this.renderBool(val);
59706         }
59707         return Roo.util.Format.htmlEncode(rv);
59708     },
59709
59710     getPropertyName : function(name){
59711         var pn = this.grid.propertyNames;
59712         return pn && pn[name] ? pn[name] : name;
59713     },
59714
59715     getCellEditor : function(colIndex, rowIndex){
59716         var p = this.store.getProperty(rowIndex);
59717         var n = p.data['name'], val = p.data['value'];
59718         
59719         if(typeof(this.grid.customEditors[n]) == 'string'){
59720             return this.editors[this.grid.customEditors[n]];
59721         }
59722         if(typeof(this.grid.customEditors[n]) != 'undefined'){
59723             return this.grid.customEditors[n];
59724         }
59725         if(val instanceof Date){
59726             return this.editors['date'];
59727         }else if(typeof val == 'number'){
59728             return this.editors['number'];
59729         }else if(typeof val == 'boolean'){
59730             return this.editors['boolean'];
59731         }else{
59732             return this.editors['string'];
59733         }
59734     }
59735 });
59736
59737 /**
59738  * @class Roo.grid.PropertyGrid
59739  * @extends Roo.grid.EditorGrid
59740  * This class represents the  interface of a component based property grid control.
59741  * <br><br>Usage:<pre><code>
59742  var grid = new Roo.grid.PropertyGrid("my-container-id", {
59743       
59744  });
59745  // set any options
59746  grid.render();
59747  * </code></pre>
59748   
59749  * @constructor
59750  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
59751  * The container MUST have some type of size defined for the grid to fill. The container will be
59752  * automatically set to position relative if it isn't already.
59753  * @param {Object} config A config object that sets properties on this grid.
59754  */
59755 Roo.grid.PropertyGrid = function(container, config){
59756     config = config || {};
59757     var store = new Roo.grid.PropertyStore(this);
59758     this.store = store;
59759     var cm = new Roo.grid.PropertyColumnModel(this, store);
59760     store.store.sort('name', 'ASC');
59761     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
59762         ds: store.store,
59763         cm: cm,
59764         enableColLock:false,
59765         enableColumnMove:false,
59766         stripeRows:false,
59767         trackMouseOver: false,
59768         clicksToEdit:1
59769     }, config));
59770     this.getGridEl().addClass('x-props-grid');
59771     this.lastEditRow = null;
59772     this.on('columnresize', this.onColumnResize, this);
59773     this.addEvents({
59774          /**
59775              * @event beforepropertychange
59776              * Fires before a property changes (return false to stop?)
59777              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
59778              * @param {String} id Record Id
59779              * @param {String} newval New Value
59780          * @param {String} oldval Old Value
59781              */
59782         "beforepropertychange": true,
59783         /**
59784              * @event propertychange
59785              * Fires after a property changes
59786              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
59787              * @param {String} id Record Id
59788              * @param {String} newval New Value
59789          * @param {String} oldval Old Value
59790              */
59791         "propertychange": true
59792     });
59793     this.customEditors = this.customEditors || {};
59794 };
59795 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
59796     
59797      /**
59798      * @cfg {Object} customEditors map of colnames=> custom editors.
59799      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
59800      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
59801      * false disables editing of the field.
59802          */
59803     
59804       /**
59805      * @cfg {Object} propertyNames map of property Names to their displayed value
59806          */
59807     
59808     render : function(){
59809         Roo.grid.PropertyGrid.superclass.render.call(this);
59810         this.autoSize.defer(100, this);
59811     },
59812
59813     autoSize : function(){
59814         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
59815         if(this.view){
59816             this.view.fitColumns();
59817         }
59818     },
59819
59820     onColumnResize : function(){
59821         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
59822         this.autoSize();
59823     },
59824     /**
59825      * Sets the data for the Grid
59826      * accepts a Key => Value object of all the elements avaiable.
59827      * @param {Object} data  to appear in grid.
59828      */
59829     setSource : function(source){
59830         this.store.setSource(source);
59831         //this.autoSize();
59832     },
59833     /**
59834      * Gets all the data from the grid.
59835      * @return {Object} data  data stored in grid
59836      */
59837     getSource : function(){
59838         return this.store.getSource();
59839     }
59840 });/*
59841   
59842  * Licence LGPL
59843  
59844  */
59845  
59846 /**
59847  * @class Roo.grid.Calendar
59848  * @extends Roo.util.Grid
59849  * This class extends the Grid to provide a calendar widget
59850  * <br><br>Usage:<pre><code>
59851  var grid = new Roo.grid.Calendar("my-container-id", {
59852      ds: myDataStore,
59853      cm: myColModel,
59854      selModel: mySelectionModel,
59855      autoSizeColumns: true,
59856      monitorWindowResize: false,
59857      trackMouseOver: true
59858      eventstore : real data store..
59859  });
59860  // set any options
59861  grid.render();
59862   
59863   * @constructor
59864  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
59865  * The container MUST have some type of size defined for the grid to fill. The container will be
59866  * automatically set to position relative if it isn't already.
59867  * @param {Object} config A config object that sets properties on this grid.
59868  */
59869 Roo.grid.Calendar = function(container, config){
59870         // initialize the container
59871         this.container = Roo.get(container);
59872         this.container.update("");
59873         this.container.setStyle("overflow", "hidden");
59874     this.container.addClass('x-grid-container');
59875
59876     this.id = this.container.id;
59877
59878     Roo.apply(this, config);
59879     // check and correct shorthanded configs
59880     
59881     var rows = [];
59882     var d =1;
59883     for (var r = 0;r < 6;r++) {
59884         
59885         rows[r]=[];
59886         for (var c =0;c < 7;c++) {
59887             rows[r][c]= '';
59888         }
59889     }
59890     if (this.eventStore) {
59891         this.eventStore= Roo.factory(this.eventStore, Roo.data);
59892         this.eventStore.on('load',this.onLoad, this);
59893         this.eventStore.on('beforeload',this.clearEvents, this);
59894          
59895     }
59896     
59897     this.dataSource = new Roo.data.Store({
59898             proxy: new Roo.data.MemoryProxy(rows),
59899             reader: new Roo.data.ArrayReader({}, [
59900                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
59901     });
59902
59903     this.dataSource.load();
59904     this.ds = this.dataSource;
59905     this.ds.xmodule = this.xmodule || false;
59906     
59907     
59908     var cellRender = function(v,x,r)
59909     {
59910         return String.format(
59911             '<div class="fc-day  fc-widget-content"><div>' +
59912                 '<div class="fc-event-container"></div>' +
59913                 '<div class="fc-day-number">{0}</div>'+
59914                 
59915                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
59916             '</div></div>', v);
59917     
59918     }
59919     
59920     
59921     this.colModel = new Roo.grid.ColumnModel( [
59922         {
59923             xtype: 'ColumnModel',
59924             xns: Roo.grid,
59925             dataIndex : 'weekday0',
59926             header : 'Sunday',
59927             renderer : cellRender
59928         },
59929         {
59930             xtype: 'ColumnModel',
59931             xns: Roo.grid,
59932             dataIndex : 'weekday1',
59933             header : 'Monday',
59934             renderer : cellRender
59935         },
59936         {
59937             xtype: 'ColumnModel',
59938             xns: Roo.grid,
59939             dataIndex : 'weekday2',
59940             header : 'Tuesday',
59941             renderer : cellRender
59942         },
59943         {
59944             xtype: 'ColumnModel',
59945             xns: Roo.grid,
59946             dataIndex : 'weekday3',
59947             header : 'Wednesday',
59948             renderer : cellRender
59949         },
59950         {
59951             xtype: 'ColumnModel',
59952             xns: Roo.grid,
59953             dataIndex : 'weekday4',
59954             header : 'Thursday',
59955             renderer : cellRender
59956         },
59957         {
59958             xtype: 'ColumnModel',
59959             xns: Roo.grid,
59960             dataIndex : 'weekday5',
59961             header : 'Friday',
59962             renderer : cellRender
59963         },
59964         {
59965             xtype: 'ColumnModel',
59966             xns: Roo.grid,
59967             dataIndex : 'weekday6',
59968             header : 'Saturday',
59969             renderer : cellRender
59970         }
59971     ]);
59972     this.cm = this.colModel;
59973     this.cm.xmodule = this.xmodule || false;
59974  
59975         
59976           
59977     //this.selModel = new Roo.grid.CellSelectionModel();
59978     //this.sm = this.selModel;
59979     //this.selModel.init(this);
59980     
59981     
59982     if(this.width){
59983         this.container.setWidth(this.width);
59984     }
59985
59986     if(this.height){
59987         this.container.setHeight(this.height);
59988     }
59989     /** @private */
59990         this.addEvents({
59991         // raw events
59992         /**
59993          * @event click
59994          * The raw click event for the entire grid.
59995          * @param {Roo.EventObject} e
59996          */
59997         "click" : true,
59998         /**
59999          * @event dblclick
60000          * The raw dblclick event for the entire grid.
60001          * @param {Roo.EventObject} e
60002          */
60003         "dblclick" : true,
60004         /**
60005          * @event contextmenu
60006          * The raw contextmenu event for the entire grid.
60007          * @param {Roo.EventObject} e
60008          */
60009         "contextmenu" : true,
60010         /**
60011          * @event mousedown
60012          * The raw mousedown event for the entire grid.
60013          * @param {Roo.EventObject} e
60014          */
60015         "mousedown" : true,
60016         /**
60017          * @event mouseup
60018          * The raw mouseup event for the entire grid.
60019          * @param {Roo.EventObject} e
60020          */
60021         "mouseup" : true,
60022         /**
60023          * @event mouseover
60024          * The raw mouseover event for the entire grid.
60025          * @param {Roo.EventObject} e
60026          */
60027         "mouseover" : true,
60028         /**
60029          * @event mouseout
60030          * The raw mouseout event for the entire grid.
60031          * @param {Roo.EventObject} e
60032          */
60033         "mouseout" : true,
60034         /**
60035          * @event keypress
60036          * The raw keypress event for the entire grid.
60037          * @param {Roo.EventObject} e
60038          */
60039         "keypress" : true,
60040         /**
60041          * @event keydown
60042          * The raw keydown event for the entire grid.
60043          * @param {Roo.EventObject} e
60044          */
60045         "keydown" : true,
60046
60047         // custom events
60048
60049         /**
60050          * @event cellclick
60051          * Fires when a cell is clicked
60052          * @param {Grid} this
60053          * @param {Number} rowIndex
60054          * @param {Number} columnIndex
60055          * @param {Roo.EventObject} e
60056          */
60057         "cellclick" : true,
60058         /**
60059          * @event celldblclick
60060          * Fires when a cell is double clicked
60061          * @param {Grid} this
60062          * @param {Number} rowIndex
60063          * @param {Number} columnIndex
60064          * @param {Roo.EventObject} e
60065          */
60066         "celldblclick" : true,
60067         /**
60068          * @event rowclick
60069          * Fires when a row is clicked
60070          * @param {Grid} this
60071          * @param {Number} rowIndex
60072          * @param {Roo.EventObject} e
60073          */
60074         "rowclick" : true,
60075         /**
60076          * @event rowdblclick
60077          * Fires when a row is double clicked
60078          * @param {Grid} this
60079          * @param {Number} rowIndex
60080          * @param {Roo.EventObject} e
60081          */
60082         "rowdblclick" : true,
60083         /**
60084          * @event headerclick
60085          * Fires when a header is clicked
60086          * @param {Grid} this
60087          * @param {Number} columnIndex
60088          * @param {Roo.EventObject} e
60089          */
60090         "headerclick" : true,
60091         /**
60092          * @event headerdblclick
60093          * Fires when a header cell is double clicked
60094          * @param {Grid} this
60095          * @param {Number} columnIndex
60096          * @param {Roo.EventObject} e
60097          */
60098         "headerdblclick" : true,
60099         /**
60100          * @event rowcontextmenu
60101          * Fires when a row is right clicked
60102          * @param {Grid} this
60103          * @param {Number} rowIndex
60104          * @param {Roo.EventObject} e
60105          */
60106         "rowcontextmenu" : true,
60107         /**
60108          * @event cellcontextmenu
60109          * Fires when a cell is right clicked
60110          * @param {Grid} this
60111          * @param {Number} rowIndex
60112          * @param {Number} cellIndex
60113          * @param {Roo.EventObject} e
60114          */
60115          "cellcontextmenu" : true,
60116         /**
60117          * @event headercontextmenu
60118          * Fires when a header is right clicked
60119          * @param {Grid} this
60120          * @param {Number} columnIndex
60121          * @param {Roo.EventObject} e
60122          */
60123         "headercontextmenu" : true,
60124         /**
60125          * @event bodyscroll
60126          * Fires when the body element is scrolled
60127          * @param {Number} scrollLeft
60128          * @param {Number} scrollTop
60129          */
60130         "bodyscroll" : true,
60131         /**
60132          * @event columnresize
60133          * Fires when the user resizes a column
60134          * @param {Number} columnIndex
60135          * @param {Number} newSize
60136          */
60137         "columnresize" : true,
60138         /**
60139          * @event columnmove
60140          * Fires when the user moves a column
60141          * @param {Number} oldIndex
60142          * @param {Number} newIndex
60143          */
60144         "columnmove" : true,
60145         /**
60146          * @event startdrag
60147          * Fires when row(s) start being dragged
60148          * @param {Grid} this
60149          * @param {Roo.GridDD} dd The drag drop object
60150          * @param {event} e The raw browser event
60151          */
60152         "startdrag" : true,
60153         /**
60154          * @event enddrag
60155          * Fires when a drag operation is complete
60156          * @param {Grid} this
60157          * @param {Roo.GridDD} dd The drag drop object
60158          * @param {event} e The raw browser event
60159          */
60160         "enddrag" : true,
60161         /**
60162          * @event dragdrop
60163          * Fires when dragged row(s) are dropped on a valid DD target
60164          * @param {Grid} this
60165          * @param {Roo.GridDD} dd The drag drop object
60166          * @param {String} targetId The target drag drop object
60167          * @param {event} e The raw browser event
60168          */
60169         "dragdrop" : true,
60170         /**
60171          * @event dragover
60172          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60173          * @param {Grid} this
60174          * @param {Roo.GridDD} dd The drag drop object
60175          * @param {String} targetId The target drag drop object
60176          * @param {event} e The raw browser event
60177          */
60178         "dragover" : true,
60179         /**
60180          * @event dragenter
60181          *  Fires when the dragged row(s) first cross another DD target while being dragged
60182          * @param {Grid} this
60183          * @param {Roo.GridDD} dd The drag drop object
60184          * @param {String} targetId The target drag drop object
60185          * @param {event} e The raw browser event
60186          */
60187         "dragenter" : true,
60188         /**
60189          * @event dragout
60190          * Fires when the dragged row(s) leave another DD target while being dragged
60191          * @param {Grid} this
60192          * @param {Roo.GridDD} dd The drag drop object
60193          * @param {String} targetId The target drag drop object
60194          * @param {event} e The raw browser event
60195          */
60196         "dragout" : true,
60197         /**
60198          * @event rowclass
60199          * Fires when a row is rendered, so you can change add a style to it.
60200          * @param {GridView} gridview   The grid view
60201          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60202          */
60203         'rowclass' : true,
60204
60205         /**
60206          * @event render
60207          * Fires when the grid is rendered
60208          * @param {Grid} grid
60209          */
60210         'render' : true,
60211             /**
60212              * @event select
60213              * Fires when a date is selected
60214              * @param {DatePicker} this
60215              * @param {Date} date The selected date
60216              */
60217         'select': true,
60218         /**
60219              * @event monthchange
60220              * Fires when the displayed month changes 
60221              * @param {DatePicker} this
60222              * @param {Date} date The selected month
60223              */
60224         'monthchange': true,
60225         /**
60226              * @event evententer
60227              * Fires when mouse over an event
60228              * @param {Calendar} this
60229              * @param {event} Event
60230              */
60231         'evententer': true,
60232         /**
60233              * @event eventleave
60234              * Fires when the mouse leaves an
60235              * @param {Calendar} this
60236              * @param {event}
60237              */
60238         'eventleave': true,
60239         /**
60240              * @event eventclick
60241              * Fires when the mouse click an
60242              * @param {Calendar} this
60243              * @param {event}
60244              */
60245         'eventclick': true,
60246         /**
60247              * @event eventrender
60248              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60249              * @param {Calendar} this
60250              * @param {data} data to be modified
60251              */
60252         'eventrender': true
60253         
60254     });
60255
60256     Roo.grid.Grid.superclass.constructor.call(this);
60257     this.on('render', function() {
60258         this.view.el.addClass('x-grid-cal'); 
60259         
60260         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60261
60262     },this);
60263     
60264     if (!Roo.grid.Calendar.style) {
60265         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60266             
60267             
60268             '.x-grid-cal .x-grid-col' :  {
60269                 height: 'auto !important',
60270                 'vertical-align': 'top'
60271             },
60272             '.x-grid-cal  .fc-event-hori' : {
60273                 height: '14px'
60274             }
60275              
60276             
60277         }, Roo.id());
60278     }
60279
60280     
60281     
60282 };
60283 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60284     /**
60285      * @cfg {Store} eventStore The store that loads events.
60286      */
60287     eventStore : 25,
60288
60289      
60290     activeDate : false,
60291     startDay : 0,
60292     autoWidth : true,
60293     monitorWindowResize : false,
60294
60295     
60296     resizeColumns : function() {
60297         var col = (this.view.el.getWidth() / 7) - 3;
60298         // loop through cols, and setWidth
60299         for(var i =0 ; i < 7 ; i++){
60300             this.cm.setColumnWidth(i, col);
60301         }
60302     },
60303      setDate :function(date) {
60304         
60305         Roo.log('setDate?');
60306         
60307         this.resizeColumns();
60308         var vd = this.activeDate;
60309         this.activeDate = date;
60310 //        if(vd && this.el){
60311 //            var t = date.getTime();
60312 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60313 //                Roo.log('using add remove');
60314 //                
60315 //                this.fireEvent('monthchange', this, date);
60316 //                
60317 //                this.cells.removeClass("fc-state-highlight");
60318 //                this.cells.each(function(c){
60319 //                   if(c.dateValue == t){
60320 //                       c.addClass("fc-state-highlight");
60321 //                       setTimeout(function(){
60322 //                            try{c.dom.firstChild.focus();}catch(e){}
60323 //                       }, 50);
60324 //                       return false;
60325 //                   }
60326 //                   return true;
60327 //                });
60328 //                return;
60329 //            }
60330 //        }
60331         
60332         var days = date.getDaysInMonth();
60333         
60334         var firstOfMonth = date.getFirstDateOfMonth();
60335         var startingPos = firstOfMonth.getDay()-this.startDay;
60336         
60337         if(startingPos < this.startDay){
60338             startingPos += 7;
60339         }
60340         
60341         var pm = date.add(Date.MONTH, -1);
60342         var prevStart = pm.getDaysInMonth()-startingPos;
60343 //        
60344         
60345         
60346         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60347         
60348         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60349         //this.cells.addClassOnOver('fc-state-hover');
60350         
60351         var cells = this.cells.elements;
60352         var textEls = this.textNodes;
60353         
60354         //Roo.each(cells, function(cell){
60355         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60356         //});
60357         
60358         days += startingPos;
60359
60360         // convert everything to numbers so it's fast
60361         var day = 86400000;
60362         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60363         //Roo.log(d);
60364         //Roo.log(pm);
60365         //Roo.log(prevStart);
60366         
60367         var today = new Date().clearTime().getTime();
60368         var sel = date.clearTime().getTime();
60369         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60370         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60371         var ddMatch = this.disabledDatesRE;
60372         var ddText = this.disabledDatesText;
60373         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60374         var ddaysText = this.disabledDaysText;
60375         var format = this.format;
60376         
60377         var setCellClass = function(cal, cell){
60378             
60379             //Roo.log('set Cell Class');
60380             cell.title = "";
60381             var t = d.getTime();
60382             
60383             //Roo.log(d);
60384             
60385             
60386             cell.dateValue = t;
60387             if(t == today){
60388                 cell.className += " fc-today";
60389                 cell.className += " fc-state-highlight";
60390                 cell.title = cal.todayText;
60391             }
60392             if(t == sel){
60393                 // disable highlight in other month..
60394                 cell.className += " fc-state-highlight";
60395                 
60396             }
60397             // disabling
60398             if(t < min) {
60399                 //cell.className = " fc-state-disabled";
60400                 cell.title = cal.minText;
60401                 return;
60402             }
60403             if(t > max) {
60404                 //cell.className = " fc-state-disabled";
60405                 cell.title = cal.maxText;
60406                 return;
60407             }
60408             if(ddays){
60409                 if(ddays.indexOf(d.getDay()) != -1){
60410                     // cell.title = ddaysText;
60411                    // cell.className = " fc-state-disabled";
60412                 }
60413             }
60414             if(ddMatch && format){
60415                 var fvalue = d.dateFormat(format);
60416                 if(ddMatch.test(fvalue)){
60417                     cell.title = ddText.replace("%0", fvalue);
60418                    cell.className = " fc-state-disabled";
60419                 }
60420             }
60421             
60422             if (!cell.initialClassName) {
60423                 cell.initialClassName = cell.dom.className;
60424             }
60425             
60426             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60427         };
60428
60429         var i = 0;
60430         
60431         for(; i < startingPos; i++) {
60432             cells[i].dayName =  (++prevStart);
60433             Roo.log(textEls[i]);
60434             d.setDate(d.getDate()+1);
60435             
60436             //cells[i].className = "fc-past fc-other-month";
60437             setCellClass(this, cells[i]);
60438         }
60439         
60440         var intDay = 0;
60441         
60442         for(; i < days; i++){
60443             intDay = i - startingPos + 1;
60444             cells[i].dayName =  (intDay);
60445             d.setDate(d.getDate()+1);
60446             
60447             cells[i].className = ''; // "x-date-active";
60448             setCellClass(this, cells[i]);
60449         }
60450         var extraDays = 0;
60451         
60452         for(; i < 42; i++) {
60453             //textEls[i].innerHTML = (++extraDays);
60454             
60455             d.setDate(d.getDate()+1);
60456             cells[i].dayName = (++extraDays);
60457             cells[i].className = "fc-future fc-other-month";
60458             setCellClass(this, cells[i]);
60459         }
60460         
60461         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60462         
60463         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60464         
60465         // this will cause all the cells to mis
60466         var rows= [];
60467         var i =0;
60468         for (var r = 0;r < 6;r++) {
60469             for (var c =0;c < 7;c++) {
60470                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60471             }    
60472         }
60473         
60474         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60475         for(i=0;i<cells.length;i++) {
60476             
60477             this.cells.elements[i].dayName = cells[i].dayName ;
60478             this.cells.elements[i].className = cells[i].className;
60479             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60480             this.cells.elements[i].title = cells[i].title ;
60481             this.cells.elements[i].dateValue = cells[i].dateValue ;
60482         }
60483         
60484         
60485         
60486         
60487         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60488         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60489         
60490         ////if(totalRows != 6){
60491             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60492            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60493        // }
60494         
60495         this.fireEvent('monthchange', this, date);
60496         
60497         
60498     },
60499  /**
60500      * Returns the grid's SelectionModel.
60501      * @return {SelectionModel}
60502      */
60503     getSelectionModel : function(){
60504         if(!this.selModel){
60505             this.selModel = new Roo.grid.CellSelectionModel();
60506         }
60507         return this.selModel;
60508     },
60509
60510     load: function() {
60511         this.eventStore.load()
60512         
60513         
60514         
60515     },
60516     
60517     findCell : function(dt) {
60518         dt = dt.clearTime().getTime();
60519         var ret = false;
60520         this.cells.each(function(c){
60521             //Roo.log("check " +c.dateValue + '?=' + dt);
60522             if(c.dateValue == dt){
60523                 ret = c;
60524                 return false;
60525             }
60526             return true;
60527         });
60528         
60529         return ret;
60530     },
60531     
60532     findCells : function(rec) {
60533         var s = rec.data.start_dt.clone().clearTime().getTime();
60534        // Roo.log(s);
60535         var e= rec.data.end_dt.clone().clearTime().getTime();
60536        // Roo.log(e);
60537         var ret = [];
60538         this.cells.each(function(c){
60539              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60540             
60541             if(c.dateValue > e){
60542                 return ;
60543             }
60544             if(c.dateValue < s){
60545                 return ;
60546             }
60547             ret.push(c);
60548         });
60549         
60550         return ret;    
60551     },
60552     
60553     findBestRow: function(cells)
60554     {
60555         var ret = 0;
60556         
60557         for (var i =0 ; i < cells.length;i++) {
60558             ret  = Math.max(cells[i].rows || 0,ret);
60559         }
60560         return ret;
60561         
60562     },
60563     
60564     
60565     addItem : function(rec)
60566     {
60567         // look for vertical location slot in
60568         var cells = this.findCells(rec);
60569         
60570         rec.row = this.findBestRow(cells);
60571         
60572         // work out the location.
60573         
60574         var crow = false;
60575         var rows = [];
60576         for(var i =0; i < cells.length; i++) {
60577             if (!crow) {
60578                 crow = {
60579                     start : cells[i],
60580                     end :  cells[i]
60581                 };
60582                 continue;
60583             }
60584             if (crow.start.getY() == cells[i].getY()) {
60585                 // on same row.
60586                 crow.end = cells[i];
60587                 continue;
60588             }
60589             // different row.
60590             rows.push(crow);
60591             crow = {
60592                 start: cells[i],
60593                 end : cells[i]
60594             };
60595             
60596         }
60597         
60598         rows.push(crow);
60599         rec.els = [];
60600         rec.rows = rows;
60601         rec.cells = cells;
60602         for (var i = 0; i < cells.length;i++) {
60603             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60604             
60605         }
60606         
60607         
60608     },
60609     
60610     clearEvents: function() {
60611         
60612         if (!this.eventStore.getCount()) {
60613             return;
60614         }
60615         // reset number of rows in cells.
60616         Roo.each(this.cells.elements, function(c){
60617             c.rows = 0;
60618         });
60619         
60620         this.eventStore.each(function(e) {
60621             this.clearEvent(e);
60622         },this);
60623         
60624     },
60625     
60626     clearEvent : function(ev)
60627     {
60628         if (ev.els) {
60629             Roo.each(ev.els, function(el) {
60630                 el.un('mouseenter' ,this.onEventEnter, this);
60631                 el.un('mouseleave' ,this.onEventLeave, this);
60632                 el.remove();
60633             },this);
60634             ev.els = [];
60635         }
60636     },
60637     
60638     
60639     renderEvent : function(ev,ctr) {
60640         if (!ctr) {
60641              ctr = this.view.el.select('.fc-event-container',true).first();
60642         }
60643         
60644          
60645         this.clearEvent(ev);
60646             //code
60647        
60648         
60649         
60650         ev.els = [];
60651         var cells = ev.cells;
60652         var rows = ev.rows;
60653         this.fireEvent('eventrender', this, ev);
60654         
60655         for(var i =0; i < rows.length; i++) {
60656             
60657             cls = '';
60658             if (i == 0) {
60659                 cls += ' fc-event-start';
60660             }
60661             if ((i+1) == rows.length) {
60662                 cls += ' fc-event-end';
60663             }
60664             
60665             //Roo.log(ev.data);
60666             // how many rows should it span..
60667             var cg = this.eventTmpl.append(ctr,Roo.apply({
60668                 fccls : cls
60669                 
60670             }, ev.data) , true);
60671             
60672             
60673             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60674             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60675             cg.on('click', this.onEventClick, this, ev);
60676             
60677             ev.els.push(cg);
60678             
60679             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60680             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60681             //Roo.log(cg);
60682              
60683             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60684             cg.setWidth(ebox.right - sbox.x -2);
60685         }
60686     },
60687     
60688     renderEvents: function()
60689     {   
60690         // first make sure there is enough space..
60691         
60692         if (!this.eventTmpl) {
60693             this.eventTmpl = new Roo.Template(
60694                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
60695                     '<div class="fc-event-inner">' +
60696                         '<span class="fc-event-time">{time}</span>' +
60697                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
60698                     '</div>' +
60699                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
60700                 '</div>'
60701             );
60702                 
60703         }
60704                
60705         
60706         
60707         this.cells.each(function(c) {
60708             //Roo.log(c.select('.fc-day-content div',true).first());
60709             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
60710         });
60711         
60712         var ctr = this.view.el.select('.fc-event-container',true).first();
60713         
60714         var cls;
60715         this.eventStore.each(function(ev){
60716             
60717             this.renderEvent(ev);
60718              
60719              
60720         }, this);
60721         this.view.layout();
60722         
60723     },
60724     
60725     onEventEnter: function (e, el,event,d) {
60726         this.fireEvent('evententer', this, el, event);
60727     },
60728     
60729     onEventLeave: function (e, el,event,d) {
60730         this.fireEvent('eventleave', this, el, event);
60731     },
60732     
60733     onEventClick: function (e, el,event,d) {
60734         this.fireEvent('eventclick', this, el, event);
60735     },
60736     
60737     onMonthChange: function () {
60738         this.store.load();
60739     },
60740     
60741     onLoad: function () {
60742         
60743         //Roo.log('calendar onload');
60744 //         
60745         if(this.eventStore.getCount() > 0){
60746             
60747            
60748             
60749             this.eventStore.each(function(d){
60750                 
60751                 
60752                 // FIXME..
60753                 var add =   d.data;
60754                 if (typeof(add.end_dt) == 'undefined')  {
60755                     Roo.log("Missing End time in calendar data: ");
60756                     Roo.log(d);
60757                     return;
60758                 }
60759                 if (typeof(add.start_dt) == 'undefined')  {
60760                     Roo.log("Missing Start time in calendar data: ");
60761                     Roo.log(d);
60762                     return;
60763                 }
60764                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
60765                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
60766                 add.id = add.id || d.id;
60767                 add.title = add.title || '??';
60768                 
60769                 this.addItem(d);
60770                 
60771              
60772             },this);
60773         }
60774         
60775         this.renderEvents();
60776     }
60777     
60778
60779 });
60780 /*
60781  grid : {
60782                 xtype: 'Grid',
60783                 xns: Roo.grid,
60784                 listeners : {
60785                     render : function ()
60786                     {
60787                         _this.grid = this;
60788                         
60789                         if (!this.view.el.hasClass('course-timesheet')) {
60790                             this.view.el.addClass('course-timesheet');
60791                         }
60792                         if (this.tsStyle) {
60793                             this.ds.load({});
60794                             return; 
60795                         }
60796                         Roo.log('width');
60797                         Roo.log(_this.grid.view.el.getWidth());
60798                         
60799                         
60800                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
60801                             '.course-timesheet .x-grid-row' : {
60802                                 height: '80px'
60803                             },
60804                             '.x-grid-row td' : {
60805                                 'vertical-align' : 0
60806                             },
60807                             '.course-edit-link' : {
60808                                 'color' : 'blue',
60809                                 'text-overflow' : 'ellipsis',
60810                                 'overflow' : 'hidden',
60811                                 'white-space' : 'nowrap',
60812                                 'cursor' : 'pointer'
60813                             },
60814                             '.sub-link' : {
60815                                 'color' : 'green'
60816                             },
60817                             '.de-act-sup-link' : {
60818                                 'color' : 'purple',
60819                                 'text-decoration' : 'line-through'
60820                             },
60821                             '.de-act-link' : {
60822                                 'color' : 'red',
60823                                 'text-decoration' : 'line-through'
60824                             },
60825                             '.course-timesheet .course-highlight' : {
60826                                 'border-top-style': 'dashed !important',
60827                                 'border-bottom-bottom': 'dashed !important'
60828                             },
60829                             '.course-timesheet .course-item' : {
60830                                 'font-family'   : 'tahoma, arial, helvetica',
60831                                 'font-size'     : '11px',
60832                                 'overflow'      : 'hidden',
60833                                 'padding-left'  : '10px',
60834                                 'padding-right' : '10px',
60835                                 'padding-top' : '10px' 
60836                             }
60837                             
60838                         }, Roo.id());
60839                                 this.ds.load({});
60840                     }
60841                 },
60842                 autoWidth : true,
60843                 monitorWindowResize : false,
60844                 cellrenderer : function(v,x,r)
60845                 {
60846                     return v;
60847                 },
60848                 sm : {
60849                     xtype: 'CellSelectionModel',
60850                     xns: Roo.grid
60851                 },
60852                 dataSource : {
60853                     xtype: 'Store',
60854                     xns: Roo.data,
60855                     listeners : {
60856                         beforeload : function (_self, options)
60857                         {
60858                             options.params = options.params || {};
60859                             options.params._month = _this.monthField.getValue();
60860                             options.params.limit = 9999;
60861                             options.params['sort'] = 'when_dt';    
60862                             options.params['dir'] = 'ASC';    
60863                             this.proxy.loadResponse = this.loadResponse;
60864                             Roo.log("load?");
60865                             //this.addColumns();
60866                         },
60867                         load : function (_self, records, options)
60868                         {
60869                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
60870                                 // if you click on the translation.. you can edit it...
60871                                 var el = Roo.get(this);
60872                                 var id = el.dom.getAttribute('data-id');
60873                                 var d = el.dom.getAttribute('data-date');
60874                                 var t = el.dom.getAttribute('data-time');
60875                                 //var id = this.child('span').dom.textContent;
60876                                 
60877                                 //Roo.log(this);
60878                                 Pman.Dialog.CourseCalendar.show({
60879                                     id : id,
60880                                     when_d : d,
60881                                     when_t : t,
60882                                     productitem_active : id ? 1 : 0
60883                                 }, function() {
60884                                     _this.grid.ds.load({});
60885                                 });
60886                            
60887                            });
60888                            
60889                            _this.panel.fireEvent('resize', [ '', '' ]);
60890                         }
60891                     },
60892                     loadResponse : function(o, success, response){
60893                             // this is overridden on before load..
60894                             
60895                             Roo.log("our code?");       
60896                             //Roo.log(success);
60897                             //Roo.log(response)
60898                             delete this.activeRequest;
60899                             if(!success){
60900                                 this.fireEvent("loadexception", this, o, response);
60901                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
60902                                 return;
60903                             }
60904                             var result;
60905                             try {
60906                                 result = o.reader.read(response);
60907                             }catch(e){
60908                                 Roo.log("load exception?");
60909                                 this.fireEvent("loadexception", this, o, response, e);
60910                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
60911                                 return;
60912                             }
60913                             Roo.log("ready...");        
60914                             // loop through result.records;
60915                             // and set this.tdate[date] = [] << array of records..
60916                             _this.tdata  = {};
60917                             Roo.each(result.records, function(r){
60918                                 //Roo.log(r.data);
60919                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
60920                                     _this.tdata[r.data.when_dt.format('j')] = [];
60921                                 }
60922                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
60923                             });
60924                             
60925                             //Roo.log(_this.tdata);
60926                             
60927                             result.records = [];
60928                             result.totalRecords = 6;
60929                     
60930                             // let's generate some duumy records for the rows.
60931                             //var st = _this.dateField.getValue();
60932                             
60933                             // work out monday..
60934                             //st = st.add(Date.DAY, -1 * st.format('w'));
60935                             
60936                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
60937                             
60938                             var firstOfMonth = date.getFirstDayOfMonth();
60939                             var days = date.getDaysInMonth();
60940                             var d = 1;
60941                             var firstAdded = false;
60942                             for (var i = 0; i < result.totalRecords ; i++) {
60943                                 //var d= st.add(Date.DAY, i);
60944                                 var row = {};
60945                                 var added = 0;
60946                                 for(var w = 0 ; w < 7 ; w++){
60947                                     if(!firstAdded && firstOfMonth != w){
60948                                         continue;
60949                                     }
60950                                     if(d > days){
60951                                         continue;
60952                                     }
60953                                     firstAdded = true;
60954                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
60955                                     row['weekday'+w] = String.format(
60956                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
60957                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
60958                                                     d,
60959                                                     date.format('Y-m-')+dd
60960                                                 );
60961                                     added++;
60962                                     if(typeof(_this.tdata[d]) != 'undefined'){
60963                                         Roo.each(_this.tdata[d], function(r){
60964                                             var is_sub = '';
60965                                             var deactive = '';
60966                                             var id = r.id;
60967                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
60968                                             if(r.parent_id*1>0){
60969                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
60970                                                 id = r.parent_id;
60971                                             }
60972                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
60973                                                 deactive = 'de-act-link';
60974                                             }
60975                                             
60976                                             row['weekday'+w] += String.format(
60977                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
60978                                                     id, //0
60979                                                     r.product_id_name, //1
60980                                                     r.when_dt.format('h:ia'), //2
60981                                                     is_sub, //3
60982                                                     deactive, //4
60983                                                     desc // 5
60984                                             );
60985                                         });
60986                                     }
60987                                     d++;
60988                                 }
60989                                 
60990                                 // only do this if something added..
60991                                 if(added > 0){ 
60992                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
60993                                 }
60994                                 
60995                                 
60996                                 // push it twice. (second one with an hour..
60997                                 
60998                             }
60999                             //Roo.log(result);
61000                             this.fireEvent("load", this, o, o.request.arg);
61001                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61002                         },
61003                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61004                     proxy : {
61005                         xtype: 'HttpProxy',
61006                         xns: Roo.data,
61007                         method : 'GET',
61008                         url : baseURL + '/Roo/Shop_course.php'
61009                     },
61010                     reader : {
61011                         xtype: 'JsonReader',
61012                         xns: Roo.data,
61013                         id : 'id',
61014                         fields : [
61015                             {
61016                                 'name': 'id',
61017                                 'type': 'int'
61018                             },
61019                             {
61020                                 'name': 'when_dt',
61021                                 'type': 'string'
61022                             },
61023                             {
61024                                 'name': 'end_dt',
61025                                 'type': 'string'
61026                             },
61027                             {
61028                                 'name': 'parent_id',
61029                                 'type': 'int'
61030                             },
61031                             {
61032                                 'name': 'product_id',
61033                                 'type': 'int'
61034                             },
61035                             {
61036                                 'name': 'productitem_id',
61037                                 'type': 'int'
61038                             },
61039                             {
61040                                 'name': 'guid',
61041                                 'type': 'int'
61042                             }
61043                         ]
61044                     }
61045                 },
61046                 toolbar : {
61047                     xtype: 'Toolbar',
61048                     xns: Roo,
61049                     items : [
61050                         {
61051                             xtype: 'Button',
61052                             xns: Roo.Toolbar,
61053                             listeners : {
61054                                 click : function (_self, e)
61055                                 {
61056                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61057                                     sd.setMonth(sd.getMonth()-1);
61058                                     _this.monthField.setValue(sd.format('Y-m-d'));
61059                                     _this.grid.ds.load({});
61060                                 }
61061                             },
61062                             text : "Back"
61063                         },
61064                         {
61065                             xtype: 'Separator',
61066                             xns: Roo.Toolbar
61067                         },
61068                         {
61069                             xtype: 'MonthField',
61070                             xns: Roo.form,
61071                             listeners : {
61072                                 render : function (_self)
61073                                 {
61074                                     _this.monthField = _self;
61075                                    // _this.monthField.set  today
61076                                 },
61077                                 select : function (combo, date)
61078                                 {
61079                                     _this.grid.ds.load({});
61080                                 }
61081                             },
61082                             value : (function() { return new Date(); })()
61083                         },
61084                         {
61085                             xtype: 'Separator',
61086                             xns: Roo.Toolbar
61087                         },
61088                         {
61089                             xtype: 'TextItem',
61090                             xns: Roo.Toolbar,
61091                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61092                         },
61093                         {
61094                             xtype: 'Fill',
61095                             xns: Roo.Toolbar
61096                         },
61097                         {
61098                             xtype: 'Button',
61099                             xns: Roo.Toolbar,
61100                             listeners : {
61101                                 click : function (_self, e)
61102                                 {
61103                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61104                                     sd.setMonth(sd.getMonth()+1);
61105                                     _this.monthField.setValue(sd.format('Y-m-d'));
61106                                     _this.grid.ds.load({});
61107                                 }
61108                             },
61109                             text : "Next"
61110                         }
61111                     ]
61112                 },
61113                  
61114             }
61115         };
61116         
61117         *//*
61118  * Based on:
61119  * Ext JS Library 1.1.1
61120  * Copyright(c) 2006-2007, Ext JS, LLC.
61121  *
61122  * Originally Released Under LGPL - original licence link has changed is not relivant.
61123  *
61124  * Fork - LGPL
61125  * <script type="text/javascript">
61126  */
61127  
61128 /**
61129  * @class Roo.LoadMask
61130  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61131  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61132  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61133  * element's UpdateManager load indicator and will be destroyed after the initial load.
61134  * @constructor
61135  * Create a new LoadMask
61136  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61137  * @param {Object} config The config object
61138  */
61139 Roo.LoadMask = function(el, config){
61140     this.el = Roo.get(el);
61141     Roo.apply(this, config);
61142     if(this.store){
61143         this.store.on('beforeload', this.onBeforeLoad, this);
61144         this.store.on('load', this.onLoad, this);
61145         this.store.on('loadexception', this.onLoadException, this);
61146         this.removeMask = false;
61147     }else{
61148         var um = this.el.getUpdateManager();
61149         um.showLoadIndicator = false; // disable the default indicator
61150         um.on('beforeupdate', this.onBeforeLoad, this);
61151         um.on('update', this.onLoad, this);
61152         um.on('failure', this.onLoad, this);
61153         this.removeMask = true;
61154     }
61155 };
61156
61157 Roo.LoadMask.prototype = {
61158     /**
61159      * @cfg {Boolean} removeMask
61160      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61161      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61162      */
61163     /**
61164      * @cfg {String} msg
61165      * The text to display in a centered loading message box (defaults to 'Loading...')
61166      */
61167     msg : 'Loading...',
61168     /**
61169      * @cfg {String} msgCls
61170      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61171      */
61172     msgCls : 'x-mask-loading',
61173
61174     /**
61175      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61176      * @type Boolean
61177      */
61178     disabled: false,
61179
61180     /**
61181      * Disables the mask to prevent it from being displayed
61182      */
61183     disable : function(){
61184        this.disabled = true;
61185     },
61186
61187     /**
61188      * Enables the mask so that it can be displayed
61189      */
61190     enable : function(){
61191         this.disabled = false;
61192     },
61193     
61194     onLoadException : function()
61195     {
61196         Roo.log(arguments);
61197         
61198         if (typeof(arguments[3]) != 'undefined') {
61199             Roo.MessageBox.alert("Error loading",arguments[3]);
61200         } 
61201         /*
61202         try {
61203             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61204                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61205             }   
61206         } catch(e) {
61207             
61208         }
61209         */
61210     
61211         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61212     },
61213     // private
61214     onLoad : function()
61215     {
61216         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61217     },
61218
61219     // private
61220     onBeforeLoad : function(){
61221         if(!this.disabled){
61222             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61223         }
61224     },
61225
61226     // private
61227     destroy : function(){
61228         if(this.store){
61229             this.store.un('beforeload', this.onBeforeLoad, this);
61230             this.store.un('load', this.onLoad, this);
61231             this.store.un('loadexception', this.onLoadException, this);
61232         }else{
61233             var um = this.el.getUpdateManager();
61234             um.un('beforeupdate', this.onBeforeLoad, this);
61235             um.un('update', this.onLoad, this);
61236             um.un('failure', this.onLoad, this);
61237         }
61238     }
61239 };/*
61240  * Based on:
61241  * Ext JS Library 1.1.1
61242  * Copyright(c) 2006-2007, Ext JS, LLC.
61243  *
61244  * Originally Released Under LGPL - original licence link has changed is not relivant.
61245  *
61246  * Fork - LGPL
61247  * <script type="text/javascript">
61248  */
61249
61250
61251 /**
61252  * @class Roo.XTemplate
61253  * @extends Roo.Template
61254  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61255 <pre><code>
61256 var t = new Roo.XTemplate(
61257         '&lt;select name="{name}"&gt;',
61258                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61259         '&lt;/select&gt;'
61260 );
61261  
61262 // then append, applying the master template values
61263  </code></pre>
61264  *
61265  * Supported features:
61266  *
61267  *  Tags:
61268
61269 <pre><code>
61270       {a_variable} - output encoded.
61271       {a_variable.format:("Y-m-d")} - call a method on the variable
61272       {a_variable:raw} - unencoded output
61273       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61274       {a_variable:this.method_on_template(...)} - call a method on the template object.
61275  
61276 </code></pre>
61277  *  The tpl tag:
61278 <pre><code>
61279         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61280         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61281         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61282         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61283   
61284         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61285         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61286 </code></pre>
61287  *      
61288  */
61289 Roo.XTemplate = function()
61290 {
61291     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61292     if (this.html) {
61293         this.compile();
61294     }
61295 };
61296
61297
61298 Roo.extend(Roo.XTemplate, Roo.Template, {
61299
61300     /**
61301      * The various sub templates
61302      */
61303     tpls : false,
61304     /**
61305      *
61306      * basic tag replacing syntax
61307      * WORD:WORD()
61308      *
61309      * // you can fake an object call by doing this
61310      *  x.t:(test,tesT) 
61311      * 
61312      */
61313     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61314
61315     /**
61316      * compile the template
61317      *
61318      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61319      *
61320      */
61321     compile: function()
61322     {
61323         var s = this.html;
61324      
61325         s = ['<tpl>', s, '</tpl>'].join('');
61326     
61327         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61328             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61329             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61330             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61331             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61332             m,
61333             id     = 0,
61334             tpls   = [];
61335     
61336         while(true == !!(m = s.match(re))){
61337             var forMatch   = m[0].match(nameRe),
61338                 ifMatch   = m[0].match(ifRe),
61339                 execMatch   = m[0].match(execRe),
61340                 namedMatch   = m[0].match(namedRe),
61341                 
61342                 exp  = null, 
61343                 fn   = null,
61344                 exec = null,
61345                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61346                 
61347             if (ifMatch) {
61348                 // if - puts fn into test..
61349                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61350                 if(exp){
61351                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61352                 }
61353             }
61354             
61355             if (execMatch) {
61356                 // exec - calls a function... returns empty if true is  returned.
61357                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61358                 if(exp){
61359                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61360                 }
61361             }
61362             
61363             
61364             if (name) {
61365                 // for = 
61366                 switch(name){
61367                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61368                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61369                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61370                 }
61371             }
61372             var uid = namedMatch ? namedMatch[1] : id;
61373             
61374             
61375             tpls.push({
61376                 id:     namedMatch ? namedMatch[1] : id,
61377                 target: name,
61378                 exec:   exec,
61379                 test:   fn,
61380                 body:   m[1] || ''
61381             });
61382             if (namedMatch) {
61383                 s = s.replace(m[0], '');
61384             } else { 
61385                 s = s.replace(m[0], '{xtpl'+ id + '}');
61386             }
61387             ++id;
61388         }
61389         this.tpls = [];
61390         for(var i = tpls.length-1; i >= 0; --i){
61391             this.compileTpl(tpls[i]);
61392             this.tpls[tpls[i].id] = tpls[i];
61393         }
61394         this.master = tpls[tpls.length-1];
61395         return this;
61396     },
61397     /**
61398      * same as applyTemplate, except it's done to one of the subTemplates
61399      * when using named templates, you can do:
61400      *
61401      * var str = pl.applySubTemplate('your-name', values);
61402      *
61403      * 
61404      * @param {Number} id of the template
61405      * @param {Object} values to apply to template
61406      * @param {Object} parent (normaly the instance of this object)
61407      */
61408     applySubTemplate : function(id, values, parent)
61409     {
61410         
61411         
61412         var t = this.tpls[id];
61413         
61414         
61415         try { 
61416             if(t.test && !t.test.call(this, values, parent)){
61417                 return '';
61418             }
61419         } catch(e) {
61420             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61421             Roo.log(e.toString());
61422             Roo.log(t.test);
61423             return ''
61424         }
61425         try { 
61426             
61427             if(t.exec && t.exec.call(this, values, parent)){
61428                 return '';
61429             }
61430         } catch(e) {
61431             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61432             Roo.log(e.toString());
61433             Roo.log(t.exec);
61434             return ''
61435         }
61436         try {
61437             var vs = t.target ? t.target.call(this, values, parent) : values;
61438             parent = t.target ? values : parent;
61439             if(t.target && vs instanceof Array){
61440                 var buf = [];
61441                 for(var i = 0, len = vs.length; i < len; i++){
61442                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61443                 }
61444                 return buf.join('');
61445             }
61446             return t.compiled.call(this, vs, parent);
61447         } catch (e) {
61448             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61449             Roo.log(e.toString());
61450             Roo.log(t.compiled);
61451             return '';
61452         }
61453     },
61454
61455     compileTpl : function(tpl)
61456     {
61457         var fm = Roo.util.Format;
61458         var useF = this.disableFormats !== true;
61459         var sep = Roo.isGecko ? "+" : ",";
61460         var undef = function(str) {
61461             Roo.log("Property not found :"  + str);
61462             return '';
61463         };
61464         
61465         var fn = function(m, name, format, args)
61466         {
61467             //Roo.log(arguments);
61468             args = args ? args.replace(/\\'/g,"'") : args;
61469             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61470             if (typeof(format) == 'undefined') {
61471                 format= 'htmlEncode';
61472             }
61473             if (format == 'raw' ) {
61474                 format = false;
61475             }
61476             
61477             if(name.substr(0, 4) == 'xtpl'){
61478                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61479             }
61480             
61481             // build an array of options to determine if value is undefined..
61482             
61483             // basically get 'xxxx.yyyy' then do
61484             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61485             //    (function () { Roo.log("Property not found"); return ''; })() :
61486             //    ......
61487             
61488             var udef_ar = [];
61489             var lookfor = '';
61490             Roo.each(name.split('.'), function(st) {
61491                 lookfor += (lookfor.length ? '.': '') + st;
61492                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61493             });
61494             
61495             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61496             
61497             
61498             if(format && useF){
61499                 
61500                 args = args ? ',' + args : "";
61501                  
61502                 if(format.substr(0, 5) != "this."){
61503                     format = "fm." + format + '(';
61504                 }else{
61505                     format = 'this.call("'+ format.substr(5) + '", ';
61506                     args = ", values";
61507                 }
61508                 
61509                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61510             }
61511              
61512             if (args.length) {
61513                 // called with xxyx.yuu:(test,test)
61514                 // change to ()
61515                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61516             }
61517             // raw.. - :raw modifier..
61518             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61519             
61520         };
61521         var body;
61522         // branched to use + in gecko and [].join() in others
61523         if(Roo.isGecko){
61524             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61525                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61526                     "';};};";
61527         }else{
61528             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61529             body.push(tpl.body.replace(/(\r\n|\n)/g,
61530                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61531             body.push("'].join('');};};");
61532             body = body.join('');
61533         }
61534         
61535         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61536        
61537         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61538         eval(body);
61539         
61540         return this;
61541     },
61542
61543     applyTemplate : function(values){
61544         return this.master.compiled.call(this, values, {});
61545         //var s = this.subs;
61546     },
61547
61548     apply : function(){
61549         return this.applyTemplate.apply(this, arguments);
61550     }
61551
61552  });
61553
61554 Roo.XTemplate.from = function(el){
61555     el = Roo.getDom(el);
61556     return new Roo.XTemplate(el.value || el.innerHTML);
61557 };