Fix #6640 - Inspection Schedule
[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      * equals
1021      * @param {Array} o The array to compare to
1022      * @returns {Boolean} true if the same
1023      */
1024     equals : function(b)
1025     {
1026         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1027         if (this === b) {
1028             return true;
1029          }
1030         if (b == null) {
1031             return false;
1032         }
1033         if (this.length !== b.length) {
1034             return false;
1035         }
1036       
1037         // sort?? a.sort().equals(b.sort());
1038       
1039         for (var i = 0; i < this.length; ++i) {
1040             if (this[i] !== b[i]) {
1041                 return false;
1042             }
1043         }
1044         return true;
1045     }
1046 });
1047
1048
1049  
1050 /*
1051  * Based on:
1052  * Ext JS Library 1.1.1
1053  * Copyright(c) 2006-2007, Ext JS, LLC.
1054  *
1055  * Originally Released Under LGPL - original licence link has changed is not relivant.
1056  *
1057  * Fork - LGPL
1058  * <script type="text/javascript">
1059  */
1060
1061 /**
1062  * @class Date
1063  *
1064  * The date parsing and format syntax is a subset of
1065  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1066  * supported will provide results equivalent to their PHP versions.
1067  *
1068  * Following is the list of all currently supported formats:
1069  *<pre>
1070 Sample date:
1071 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1072
1073 Format  Output      Description
1074 ------  ----------  --------------------------------------------------------------
1075   d      10         Day of the month, 2 digits with leading zeros
1076   D      Wed        A textual representation of a day, three letters
1077   j      10         Day of the month without leading zeros
1078   l      Wednesday  A full textual representation of the day of the week
1079   S      th         English ordinal day of month suffix, 2 chars (use with j)
1080   w      3          Numeric representation of the day of the week
1081   z      9          The julian date, or day of the year (0-365)
1082   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1083   F      January    A full textual representation of the month
1084   m      01         Numeric representation of a month, with leading zeros
1085   M      Jan        Month name abbreviation, three letters
1086   n      1          Numeric representation of a month, without leading zeros
1087   t      31         Number of days in the given month
1088   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1089   Y      2007       A full numeric representation of a year, 4 digits
1090   y      07         A two digit representation of a year
1091   a      pm         Lowercase Ante meridiem and Post meridiem
1092   A      PM         Uppercase Ante meridiem and Post meridiem
1093   g      3          12-hour format of an hour without leading zeros
1094   G      15         24-hour format of an hour without leading zeros
1095   h      03         12-hour format of an hour with leading zeros
1096   H      15         24-hour format of an hour with leading zeros
1097   i      05         Minutes with leading zeros
1098   s      01         Seconds, with leading zeros
1099   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1100   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1101   T      CST        Timezone setting of the machine running the code
1102   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1103 </pre>
1104  *
1105  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1106  * <pre><code>
1107 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1108 document.write(dt.format('Y-m-d'));                         //2007-01-10
1109 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1110 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
1111  </code></pre>
1112  *
1113  * Here are some standard date/time patterns that you might find helpful.  They
1114  * are not part of the source of Date.js, but to use them you can simply copy this
1115  * block of code into any script that is included after Date.js and they will also become
1116  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1117  * <pre><code>
1118 Date.patterns = {
1119     ISO8601Long:"Y-m-d H:i:s",
1120     ISO8601Short:"Y-m-d",
1121     ShortDate: "n/j/Y",
1122     LongDate: "l, F d, Y",
1123     FullDateTime: "l, F d, Y g:i:s A",
1124     MonthDay: "F d",
1125     ShortTime: "g:i A",
1126     LongTime: "g:i:s A",
1127     SortableDateTime: "Y-m-d\\TH:i:s",
1128     UniversalSortableDateTime: "Y-m-d H:i:sO",
1129     YearMonth: "F, Y"
1130 };
1131 </code></pre>
1132  *
1133  * Example usage:
1134  * <pre><code>
1135 var dt = new Date();
1136 document.write(dt.format(Date.patterns.ShortDate));
1137  </code></pre>
1138  */
1139
1140 /*
1141  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1142  * They generate precompiled functions from date formats instead of parsing and
1143  * processing the pattern every time you format a date.  These functions are available
1144  * on every Date object (any javascript function).
1145  *
1146  * The original article and download are here:
1147  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1148  *
1149  */
1150  
1151  
1152  // was in core
1153 /**
1154  Returns the number of milliseconds between this date and date
1155  @param {Date} date (optional) Defaults to now
1156  @return {Number} The diff in milliseconds
1157  @member Date getElapsed
1158  */
1159 Date.prototype.getElapsed = function(date) {
1160         return Math.abs((date || new Date()).getTime()-this.getTime());
1161 };
1162 // was in date file..
1163
1164
1165 // private
1166 Date.parseFunctions = {count:0};
1167 // private
1168 Date.parseRegexes = [];
1169 // private
1170 Date.formatFunctions = {count:0};
1171
1172 // private
1173 Date.prototype.dateFormat = function(format) {
1174     if (Date.formatFunctions[format] == null) {
1175         Date.createNewFormat(format);
1176     }
1177     var func = Date.formatFunctions[format];
1178     return this[func]();
1179 };
1180
1181
1182 /**
1183  * Formats a date given the supplied format string
1184  * @param {String} format The format string
1185  * @return {String} The formatted date
1186  * @method
1187  */
1188 Date.prototype.format = Date.prototype.dateFormat;
1189
1190 // private
1191 Date.createNewFormat = function(format) {
1192     var funcName = "format" + Date.formatFunctions.count++;
1193     Date.formatFunctions[format] = funcName;
1194     var code = "Date.prototype." + funcName + " = function(){return ";
1195     var special = false;
1196     var ch = '';
1197     for (var i = 0; i < format.length; ++i) {
1198         ch = format.charAt(i);
1199         if (!special && ch == "\\") {
1200             special = true;
1201         }
1202         else if (special) {
1203             special = false;
1204             code += "'" + String.escape(ch) + "' + ";
1205         }
1206         else {
1207             code += Date.getFormatCode(ch);
1208         }
1209     }
1210     /** eval:var:zzzzzzzzzzzzz */
1211     eval(code.substring(0, code.length - 3) + ";}");
1212 };
1213
1214 // private
1215 Date.getFormatCode = function(character) {
1216     switch (character) {
1217     case "d":
1218         return "String.leftPad(this.getDate(), 2, '0') + ";
1219     case "D":
1220         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1221     case "j":
1222         return "this.getDate() + ";
1223     case "l":
1224         return "Date.dayNames[this.getDay()] + ";
1225     case "S":
1226         return "this.getSuffix() + ";
1227     case "w":
1228         return "this.getDay() + ";
1229     case "z":
1230         return "this.getDayOfYear() + ";
1231     case "W":
1232         return "this.getWeekOfYear() + ";
1233     case "F":
1234         return "Date.monthNames[this.getMonth()] + ";
1235     case "m":
1236         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1237     case "M":
1238         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1239     case "n":
1240         return "(this.getMonth() + 1) + ";
1241     case "t":
1242         return "this.getDaysInMonth() + ";
1243     case "L":
1244         return "(this.isLeapYear() ? 1 : 0) + ";
1245     case "Y":
1246         return "this.getFullYear() + ";
1247     case "y":
1248         return "('' + this.getFullYear()).substring(2, 4) + ";
1249     case "a":
1250         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1251     case "A":
1252         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1253     case "g":
1254         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1255     case "G":
1256         return "this.getHours() + ";
1257     case "h":
1258         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1259     case "H":
1260         return "String.leftPad(this.getHours(), 2, '0') + ";
1261     case "i":
1262         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1263     case "s":
1264         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1265     case "O":
1266         return "this.getGMTOffset() + ";
1267     case "P":
1268         return "this.getGMTColonOffset() + ";
1269     case "T":
1270         return "this.getTimezone() + ";
1271     case "Z":
1272         return "(this.getTimezoneOffset() * -60) + ";
1273     default:
1274         return "'" + String.escape(character) + "' + ";
1275     }
1276 };
1277
1278 /**
1279  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1280  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1281  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1282  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1283  * string or the parse operation will fail.
1284  * Example Usage:
1285 <pre><code>
1286 //dt = Fri May 25 2007 (current date)
1287 var dt = new Date();
1288
1289 //dt = Thu May 25 2006 (today's month/day in 2006)
1290 dt = Date.parseDate("2006", "Y");
1291
1292 //dt = Sun Jan 15 2006 (all date parts specified)
1293 dt = Date.parseDate("2006-1-15", "Y-m-d");
1294
1295 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1296 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1297 </code></pre>
1298  * @param {String} input The unparsed date as a string
1299  * @param {String} format The format the date is in
1300  * @return {Date} The parsed date
1301  * @static
1302  */
1303 Date.parseDate = function(input, format) {
1304     if (Date.parseFunctions[format] == null) {
1305         Date.createParser(format);
1306     }
1307     var func = Date.parseFunctions[format];
1308     return Date[func](input);
1309 };
1310 /**
1311  * @private
1312  */
1313
1314 Date.createParser = function(format) {
1315     var funcName = "parse" + Date.parseFunctions.count++;
1316     var regexNum = Date.parseRegexes.length;
1317     var currentGroup = 1;
1318     Date.parseFunctions[format] = funcName;
1319
1320     var code = "Date." + funcName + " = function(input){\n"
1321         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1322         + "var d = new Date();\n"
1323         + "y = d.getFullYear();\n"
1324         + "m = d.getMonth();\n"
1325         + "d = d.getDate();\n"
1326         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1327         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1328         + "if (results && results.length > 0) {";
1329     var regex = "";
1330
1331     var special = false;
1332     var ch = '';
1333     for (var i = 0; i < format.length; ++i) {
1334         ch = format.charAt(i);
1335         if (!special && ch == "\\") {
1336             special = true;
1337         }
1338         else if (special) {
1339             special = false;
1340             regex += String.escape(ch);
1341         }
1342         else {
1343             var obj = Date.formatCodeToRegex(ch, currentGroup);
1344             currentGroup += obj.g;
1345             regex += obj.s;
1346             if (obj.g && obj.c) {
1347                 code += obj.c;
1348             }
1349         }
1350     }
1351
1352     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1353         + "{v = new Date(y, m, d, h, i, s);}\n"
1354         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1355         + "{v = new Date(y, m, d, h, i);}\n"
1356         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1357         + "{v = new Date(y, m, d, h);}\n"
1358         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1359         + "{v = new Date(y, m, d);}\n"
1360         + "else if (y >= 0 && m >= 0)\n"
1361         + "{v = new Date(y, m);}\n"
1362         + "else if (y >= 0)\n"
1363         + "{v = new Date(y);}\n"
1364         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1365         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1366         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1367         + ";}";
1368
1369     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1370     /** eval:var:zzzzzzzzzzzzz */
1371     eval(code);
1372 };
1373
1374 // private
1375 Date.formatCodeToRegex = function(character, currentGroup) {
1376     switch (character) {
1377     case "D":
1378         return {g:0,
1379         c:null,
1380         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1381     case "j":
1382         return {g:1,
1383             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1384             s:"(\\d{1,2})"}; // day of month without leading zeroes
1385     case "d":
1386         return {g:1,
1387             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1388             s:"(\\d{2})"}; // day of month with leading zeroes
1389     case "l":
1390         return {g:0,
1391             c:null,
1392             s:"(?:" + Date.dayNames.join("|") + ")"};
1393     case "S":
1394         return {g:0,
1395             c:null,
1396             s:"(?:st|nd|rd|th)"};
1397     case "w":
1398         return {g:0,
1399             c:null,
1400             s:"\\d"};
1401     case "z":
1402         return {g:0,
1403             c:null,
1404             s:"(?:\\d{1,3})"};
1405     case "W":
1406         return {g:0,
1407             c:null,
1408             s:"(?:\\d{2})"};
1409     case "F":
1410         return {g:1,
1411             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1412             s:"(" + Date.monthNames.join("|") + ")"};
1413     case "M":
1414         return {g:1,
1415             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1416             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1417     case "n":
1418         return {g:1,
1419             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1420             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1421     case "m":
1422         return {g:1,
1423             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1424             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1425     case "t":
1426         return {g:0,
1427             c:null,
1428             s:"\\d{1,2}"};
1429     case "L":
1430         return {g:0,
1431             c:null,
1432             s:"(?:1|0)"};
1433     case "Y":
1434         return {g:1,
1435             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1436             s:"(\\d{4})"};
1437     case "y":
1438         return {g:1,
1439             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1440                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1441             s:"(\\d{1,2})"};
1442     case "a":
1443         return {g:1,
1444             c:"if (results[" + currentGroup + "] == 'am') {\n"
1445                 + "if (h == 12) { h = 0; }\n"
1446                 + "} else { if (h < 12) { h += 12; }}",
1447             s:"(am|pm)"};
1448     case "A":
1449         return {g:1,
1450             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1451                 + "if (h == 12) { h = 0; }\n"
1452                 + "} else { if (h < 12) { h += 12; }}",
1453             s:"(AM|PM)"};
1454     case "g":
1455     case "G":
1456         return {g:1,
1457             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1458             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1459     case "h":
1460     case "H":
1461         return {g:1,
1462             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1464     case "i":
1465         return {g:1,
1466             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1467             s:"(\\d{2})"};
1468     case "s":
1469         return {g:1,
1470             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1471             s:"(\\d{2})"};
1472     case "O":
1473         return {g:1,
1474             c:[
1475                 "o = results[", currentGroup, "];\n",
1476                 "var sn = o.substring(0,1);\n", // get + / - sign
1477                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1478                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1479                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1480                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1481             ].join(""),
1482             s:"([+\-]\\d{2,4})"};
1483     
1484     
1485     case "P":
1486         return {g:1,
1487                 c:[
1488                    "o = results[", currentGroup, "];\n",
1489                    "var sn = o.substring(0,1);\n",
1490                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1491                    "var mn = o.substring(4,6) % 60;\n",
1492                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1493                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1494             ].join(""),
1495             s:"([+\-]\\d{4})"};
1496     case "T":
1497         return {g:0,
1498             c:null,
1499             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1500     case "Z":
1501         return {g:1,
1502             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1503                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1504             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1505     default:
1506         return {g:0,
1507             c:null,
1508             s:String.escape(character)};
1509     }
1510 };
1511
1512 /**
1513  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1514  * @return {String} The abbreviated timezone name (e.g. 'CST')
1515  */
1516 Date.prototype.getTimezone = function() {
1517     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1518 };
1519
1520 /**
1521  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1522  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1523  */
1524 Date.prototype.getGMTOffset = function() {
1525     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1526         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1527         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1528 };
1529
1530 /**
1531  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1532  * @return {String} 2-characters representing hours and 2-characters representing minutes
1533  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1534  */
1535 Date.prototype.getGMTColonOffset = function() {
1536         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1537                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1538                 + ":"
1539                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1540 }
1541
1542 /**
1543  * Get the numeric day number of the year, adjusted for leap year.
1544  * @return {Number} 0 through 364 (365 in leap years)
1545  */
1546 Date.prototype.getDayOfYear = function() {
1547     var num = 0;
1548     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1549     for (var i = 0; i < this.getMonth(); ++i) {
1550         num += Date.daysInMonth[i];
1551     }
1552     return num + this.getDate() - 1;
1553 };
1554
1555 /**
1556  * Get the string representation of the numeric week number of the year
1557  * (equivalent to the format specifier 'W').
1558  * @return {String} '00' through '52'
1559  */
1560 Date.prototype.getWeekOfYear = function() {
1561     // Skip to Thursday of this week
1562     var now = this.getDayOfYear() + (4 - this.getDay());
1563     // Find the first Thursday of the year
1564     var jan1 = new Date(this.getFullYear(), 0, 1);
1565     var then = (7 - jan1.getDay() + 4);
1566     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1567 };
1568
1569 /**
1570  * Whether or not the current date is in a leap year.
1571  * @return {Boolean} True if the current date is in a leap year, else false
1572  */
1573 Date.prototype.isLeapYear = function() {
1574     var year = this.getFullYear();
1575     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1576 };
1577
1578 /**
1579  * Get the first day of the current month, adjusted for leap year.  The returned value
1580  * is the numeric day index within the week (0-6) which can be used in conjunction with
1581  * the {@link #monthNames} array to retrieve the textual day name.
1582  * Example:
1583  *<pre><code>
1584 var dt = new Date('1/10/2007');
1585 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1586 </code></pre>
1587  * @return {Number} The day number (0-6)
1588  */
1589 Date.prototype.getFirstDayOfMonth = function() {
1590     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1591     return (day < 0) ? (day + 7) : day;
1592 };
1593
1594 /**
1595  * Get the last day of the current month, adjusted for leap year.  The returned value
1596  * is the numeric day index within the week (0-6) which can be used in conjunction with
1597  * the {@link #monthNames} array to retrieve the textual day name.
1598  * Example:
1599  *<pre><code>
1600 var dt = new Date('1/10/2007');
1601 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1602 </code></pre>
1603  * @return {Number} The day number (0-6)
1604  */
1605 Date.prototype.getLastDayOfMonth = function() {
1606     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1607     return (day < 0) ? (day + 7) : day;
1608 };
1609
1610
1611 /**
1612  * Get the first date of this date's month
1613  * @return {Date}
1614  */
1615 Date.prototype.getFirstDateOfMonth = function() {
1616     return new Date(this.getFullYear(), this.getMonth(), 1);
1617 };
1618
1619 /**
1620  * Get the last date of this date's month
1621  * @return {Date}
1622  */
1623 Date.prototype.getLastDateOfMonth = function() {
1624     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1625 };
1626 /**
1627  * Get the number of days in the current month, adjusted for leap year.
1628  * @return {Number} The number of days in the month
1629  */
1630 Date.prototype.getDaysInMonth = function() {
1631     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1632     return Date.daysInMonth[this.getMonth()];
1633 };
1634
1635 /**
1636  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1637  * @return {String} 'st, 'nd', 'rd' or 'th'
1638  */
1639 Date.prototype.getSuffix = function() {
1640     switch (this.getDate()) {
1641         case 1:
1642         case 21:
1643         case 31:
1644             return "st";
1645         case 2:
1646         case 22:
1647             return "nd";
1648         case 3:
1649         case 23:
1650             return "rd";
1651         default:
1652             return "th";
1653     }
1654 };
1655
1656 // private
1657 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1658
1659 /**
1660  * An array of textual month names.
1661  * Override these values for international dates, for example...
1662  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1663  * @type Array
1664  * @static
1665  */
1666 Date.monthNames =
1667    ["January",
1668     "February",
1669     "March",
1670     "April",
1671     "May",
1672     "June",
1673     "July",
1674     "August",
1675     "September",
1676     "October",
1677     "November",
1678     "December"];
1679
1680 /**
1681  * An array of textual day names.
1682  * Override these values for international dates, for example...
1683  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1684  * @type Array
1685  * @static
1686  */
1687 Date.dayNames =
1688    ["Sunday",
1689     "Monday",
1690     "Tuesday",
1691     "Wednesday",
1692     "Thursday",
1693     "Friday",
1694     "Saturday"];
1695
1696 // private
1697 Date.y2kYear = 50;
1698 // private
1699 Date.monthNumbers = {
1700     Jan:0,
1701     Feb:1,
1702     Mar:2,
1703     Apr:3,
1704     May:4,
1705     Jun:5,
1706     Jul:6,
1707     Aug:7,
1708     Sep:8,
1709     Oct:9,
1710     Nov:10,
1711     Dec:11};
1712
1713 /**
1714  * Creates and returns a new Date instance with the exact same date value as the called instance.
1715  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1716  * variable will also be changed.  When the intention is to create a new variable that will not
1717  * modify the original instance, you should create a clone.
1718  *
1719  * Example of correctly cloning a date:
1720  * <pre><code>
1721 //wrong way:
1722 var orig = new Date('10/1/2006');
1723 var copy = orig;
1724 copy.setDate(5);
1725 document.write(orig);  //returns 'Thu Oct 05 2006'!
1726
1727 //correct way:
1728 var orig = new Date('10/1/2006');
1729 var copy = orig.clone();
1730 copy.setDate(5);
1731 document.write(orig);  //returns 'Thu Oct 01 2006'
1732 </code></pre>
1733  * @return {Date} The new Date instance
1734  */
1735 Date.prototype.clone = function() {
1736         return new Date(this.getTime());
1737 };
1738
1739 /**
1740  * Clears any time information from this date
1741  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1742  @return {Date} this or the clone
1743  */
1744 Date.prototype.clearTime = function(clone){
1745     if(clone){
1746         return this.clone().clearTime();
1747     }
1748     this.setHours(0);
1749     this.setMinutes(0);
1750     this.setSeconds(0);
1751     this.setMilliseconds(0);
1752     return this;
1753 };
1754
1755 // private
1756 // safari setMonth is broken -- check that this is only donw once...
1757 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1758     Date.brokenSetMonth = Date.prototype.setMonth;
1759         Date.prototype.setMonth = function(num){
1760                 if(num <= -1){
1761                         var n = Math.ceil(-num);
1762                         var back_year = Math.ceil(n/12);
1763                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1764                         this.setFullYear(this.getFullYear() - back_year);
1765                         return Date.brokenSetMonth.call(this, month);
1766                 } else {
1767                         return Date.brokenSetMonth.apply(this, arguments);
1768                 }
1769         };
1770 }
1771
1772 /** Date interval constant 
1773 * @static 
1774 * @type String */
1775 Date.MILLI = "ms";
1776 /** Date interval constant 
1777 * @static 
1778 * @type String */
1779 Date.SECOND = "s";
1780 /** Date interval constant 
1781 * @static 
1782 * @type String */
1783 Date.MINUTE = "mi";
1784 /** Date interval constant 
1785 * @static 
1786 * @type String */
1787 Date.HOUR = "h";
1788 /** Date interval constant 
1789 * @static 
1790 * @type String */
1791 Date.DAY = "d";
1792 /** Date interval constant 
1793 * @static 
1794 * @type String */
1795 Date.MONTH = "mo";
1796 /** Date interval constant 
1797 * @static 
1798 * @type String */
1799 Date.YEAR = "y";
1800
1801 /**
1802  * Provides a convenient method of performing basic date arithmetic.  This method
1803  * does not modify the Date instance being called - it creates and returns
1804  * a new Date instance containing the resulting date value.
1805  *
1806  * Examples:
1807  * <pre><code>
1808 //Basic usage:
1809 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1810 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1811
1812 //Negative values will subtract correctly:
1813 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1814 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1815
1816 //You can even chain several calls together in one line!
1817 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1818 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1819  </code></pre>
1820  *
1821  * @param {String} interval   A valid date interval enum value
1822  * @param {Number} value      The amount to add to the current date
1823  * @return {Date} The new Date instance
1824  */
1825 Date.prototype.add = function(interval, value){
1826   var d = this.clone();
1827   if (!interval || value === 0) { return d; }
1828   switch(interval.toLowerCase()){
1829     case Date.MILLI:
1830       d.setMilliseconds(this.getMilliseconds() + value);
1831       break;
1832     case Date.SECOND:
1833       d.setSeconds(this.getSeconds() + value);
1834       break;
1835     case Date.MINUTE:
1836       d.setMinutes(this.getMinutes() + value);
1837       break;
1838     case Date.HOUR:
1839       d.setHours(this.getHours() + value);
1840       break;
1841     case Date.DAY:
1842       d.setDate(this.getDate() + value);
1843       break;
1844     case Date.MONTH:
1845       var day = this.getDate();
1846       if(day > 28){
1847           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1848       }
1849       d.setDate(day);
1850       d.setMonth(this.getMonth() + value);
1851       break;
1852     case Date.YEAR:
1853       d.setFullYear(this.getFullYear() + value);
1854       break;
1855   }
1856   return d;
1857 };
1858 /*
1859  * Based on:
1860  * Ext JS Library 1.1.1
1861  * Copyright(c) 2006-2007, Ext JS, LLC.
1862  *
1863  * Originally Released Under LGPL - original licence link has changed is not relivant.
1864  *
1865  * Fork - LGPL
1866  * <script type="text/javascript">
1867  */
1868
1869 /**
1870  * @class Roo.lib.Dom
1871  * @static
1872  * 
1873  * Dom utils (from YIU afaik)
1874  * 
1875  **/
1876 Roo.lib.Dom = {
1877     /**
1878      * Get the view width
1879      * @param {Boolean} full True will get the full document, otherwise it's the view width
1880      * @return {Number} The width
1881      */
1882      
1883     getViewWidth : function(full) {
1884         return full ? this.getDocumentWidth() : this.getViewportWidth();
1885     },
1886     /**
1887      * Get the view height
1888      * @param {Boolean} full True will get the full document, otherwise it's the view height
1889      * @return {Number} The height
1890      */
1891     getViewHeight : function(full) {
1892         return full ? this.getDocumentHeight() : this.getViewportHeight();
1893     },
1894
1895     getDocumentHeight: function() {
1896         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1897         return Math.max(scrollHeight, this.getViewportHeight());
1898     },
1899
1900     getDocumentWidth: function() {
1901         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1902         return Math.max(scrollWidth, this.getViewportWidth());
1903     },
1904
1905     getViewportHeight: function() {
1906         var height = self.innerHeight;
1907         var mode = document.compatMode;
1908
1909         if ((mode || Roo.isIE) && !Roo.isOpera) {
1910             height = (mode == "CSS1Compat") ?
1911                      document.documentElement.clientHeight :
1912                      document.body.clientHeight;
1913         }
1914
1915         return height;
1916     },
1917
1918     getViewportWidth: function() {
1919         var width = self.innerWidth;
1920         var mode = document.compatMode;
1921
1922         if (mode || Roo.isIE) {
1923             width = (mode == "CSS1Compat") ?
1924                     document.documentElement.clientWidth :
1925                     document.body.clientWidth;
1926         }
1927         return width;
1928     },
1929
1930     isAncestor : function(p, c) {
1931         p = Roo.getDom(p);
1932         c = Roo.getDom(c);
1933         if (!p || !c) {
1934             return false;
1935         }
1936
1937         if (p.contains && !Roo.isSafari) {
1938             return p.contains(c);
1939         } else if (p.compareDocumentPosition) {
1940             return !!(p.compareDocumentPosition(c) & 16);
1941         } else {
1942             var parent = c.parentNode;
1943             while (parent) {
1944                 if (parent == p) {
1945                     return true;
1946                 }
1947                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1948                     return false;
1949                 }
1950                 parent = parent.parentNode;
1951             }
1952             return false;
1953         }
1954     },
1955
1956     getRegion : function(el) {
1957         return Roo.lib.Region.getRegion(el);
1958     },
1959
1960     getY : function(el) {
1961         return this.getXY(el)[1];
1962     },
1963
1964     getX : function(el) {
1965         return this.getXY(el)[0];
1966     },
1967
1968     getXY : function(el) {
1969         var p, pe, b, scroll, bd = document.body;
1970         el = Roo.getDom(el);
1971         var fly = Roo.lib.AnimBase.fly;
1972         if (el.getBoundingClientRect) {
1973             b = el.getBoundingClientRect();
1974             scroll = fly(document).getScroll();
1975             return [b.left + scroll.left, b.top + scroll.top];
1976         }
1977         var x = 0, y = 0;
1978
1979         p = el;
1980
1981         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1982
1983         while (p) {
1984
1985             x += p.offsetLeft;
1986             y += p.offsetTop;
1987
1988             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1989                 hasAbsolute = true;
1990             }
1991
1992             if (Roo.isGecko) {
1993                 pe = fly(p);
1994
1995                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1996                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1997
1998
1999                 x += bl;
2000                 y += bt;
2001
2002
2003                 if (p != el && pe.getStyle('overflow') != 'visible') {
2004                     x += bl;
2005                     y += bt;
2006                 }
2007             }
2008             p = p.offsetParent;
2009         }
2010
2011         if (Roo.isSafari && hasAbsolute) {
2012             x -= bd.offsetLeft;
2013             y -= bd.offsetTop;
2014         }
2015
2016         if (Roo.isGecko && !hasAbsolute) {
2017             var dbd = fly(bd);
2018             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2019             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2020         }
2021
2022         p = el.parentNode;
2023         while (p && p != bd) {
2024             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2025                 x -= p.scrollLeft;
2026                 y -= p.scrollTop;
2027             }
2028             p = p.parentNode;
2029         }
2030         return [x, y];
2031     },
2032  
2033   
2034
2035
2036     setXY : function(el, xy) {
2037         el = Roo.fly(el, '_setXY');
2038         el.position();
2039         var pts = el.translatePoints(xy);
2040         if (xy[0] !== false) {
2041             el.dom.style.left = pts.left + "px";
2042         }
2043         if (xy[1] !== false) {
2044             el.dom.style.top = pts.top + "px";
2045         }
2046     },
2047
2048     setX : function(el, x) {
2049         this.setXY(el, [x, false]);
2050     },
2051
2052     setY : function(el, y) {
2053         this.setXY(el, [false, y]);
2054     }
2055 };
2056 /*
2057  * Portions of this file are based on pieces of Yahoo User Interface Library
2058  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2059  * YUI licensed under the BSD License:
2060  * http://developer.yahoo.net/yui/license.txt
2061  * <script type="text/javascript">
2062  *
2063  */
2064
2065 Roo.lib.Event = function() {
2066     var loadComplete = false;
2067     var listeners = [];
2068     var unloadListeners = [];
2069     var retryCount = 0;
2070     var onAvailStack = [];
2071     var counter = 0;
2072     var lastError = null;
2073
2074     return {
2075         POLL_RETRYS: 200,
2076         POLL_INTERVAL: 20,
2077         EL: 0,
2078         TYPE: 1,
2079         FN: 2,
2080         WFN: 3,
2081         OBJ: 3,
2082         ADJ_SCOPE: 4,
2083         _interval: null,
2084
2085         startInterval: function() {
2086             if (!this._interval) {
2087                 var self = this;
2088                 var callback = function() {
2089                     self._tryPreloadAttach();
2090                 };
2091                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2092
2093             }
2094         },
2095
2096         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2097             onAvailStack.push({ id:         p_id,
2098                 fn:         p_fn,
2099                 obj:        p_obj,
2100                 override:   p_override,
2101                 checkReady: false    });
2102
2103             retryCount = this.POLL_RETRYS;
2104             this.startInterval();
2105         },
2106
2107
2108         addListener: function(el, eventName, fn) {
2109             el = Roo.getDom(el);
2110             if (!el || !fn) {
2111                 return false;
2112             }
2113
2114             if ("unload" == eventName) {
2115                 unloadListeners[unloadListeners.length] =
2116                 [el, eventName, fn];
2117                 return true;
2118             }
2119
2120             var wrappedFn = function(e) {
2121                 return fn(Roo.lib.Event.getEvent(e));
2122             };
2123
2124             var li = [el, eventName, fn, wrappedFn];
2125
2126             var index = listeners.length;
2127             listeners[index] = li;
2128
2129             this.doAdd(el, eventName, wrappedFn, false);
2130             return true;
2131
2132         },
2133
2134
2135         removeListener: function(el, eventName, fn) {
2136             var i, len;
2137
2138             el = Roo.getDom(el);
2139
2140             if(!fn) {
2141                 return this.purgeElement(el, false, eventName);
2142             }
2143
2144
2145             if ("unload" == eventName) {
2146
2147                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2148                     var li = unloadListeners[i];
2149                     if (li &&
2150                         li[0] == el &&
2151                         li[1] == eventName &&
2152                         li[2] == fn) {
2153                         unloadListeners.splice(i, 1);
2154                         return true;
2155                     }
2156                 }
2157
2158                 return false;
2159             }
2160
2161             var cacheItem = null;
2162
2163
2164             var index = arguments[3];
2165
2166             if ("undefined" == typeof index) {
2167                 index = this._getCacheIndex(el, eventName, fn);
2168             }
2169
2170             if (index >= 0) {
2171                 cacheItem = listeners[index];
2172             }
2173
2174             if (!el || !cacheItem) {
2175                 return false;
2176             }
2177
2178             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2179
2180             delete listeners[index][this.WFN];
2181             delete listeners[index][this.FN];
2182             listeners.splice(index, 1);
2183
2184             return true;
2185
2186         },
2187
2188
2189         getTarget: function(ev, resolveTextNode) {
2190             ev = ev.browserEvent || ev;
2191             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2192             var t = ev.target || ev.srcElement;
2193             return this.resolveTextNode(t);
2194         },
2195
2196
2197         resolveTextNode: function(node) {
2198             if (Roo.isSafari && node && 3 == node.nodeType) {
2199                 return node.parentNode;
2200             } else {
2201                 return node;
2202             }
2203         },
2204
2205
2206         getPageX: function(ev) {
2207             ev = ev.browserEvent || ev;
2208             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2209             var x = ev.pageX;
2210             if (!x && 0 !== x) {
2211                 x = ev.clientX || 0;
2212
2213                 if (Roo.isIE) {
2214                     x += this.getScroll()[1];
2215                 }
2216             }
2217
2218             return x;
2219         },
2220
2221
2222         getPageY: function(ev) {
2223             ev = ev.browserEvent || ev;
2224             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2225             var y = ev.pageY;
2226             if (!y && 0 !== y) {
2227                 y = ev.clientY || 0;
2228
2229                 if (Roo.isIE) {
2230                     y += this.getScroll()[0];
2231                 }
2232             }
2233
2234
2235             return y;
2236         },
2237
2238
2239         getXY: function(ev) {
2240             ev = ev.browserEvent || ev;
2241             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2242             return [this.getPageX(ev), this.getPageY(ev)];
2243         },
2244
2245
2246         getRelatedTarget: function(ev) {
2247             ev = ev.browserEvent || ev;
2248             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2249             var t = ev.relatedTarget;
2250             if (!t) {
2251                 if (ev.type == "mouseout") {
2252                     t = ev.toElement;
2253                 } else if (ev.type == "mouseover") {
2254                     t = ev.fromElement;
2255                 }
2256             }
2257
2258             return this.resolveTextNode(t);
2259         },
2260
2261
2262         getTime: function(ev) {
2263             ev = ev.browserEvent || ev;
2264             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2265             if (!ev.time) {
2266                 var t = new Date().getTime();
2267                 try {
2268                     ev.time = t;
2269                 } catch(ex) {
2270                     this.lastError = ex;
2271                     return t;
2272                 }
2273             }
2274
2275             return ev.time;
2276         },
2277
2278
2279         stopEvent: function(ev) {
2280             this.stopPropagation(ev);
2281             this.preventDefault(ev);
2282         },
2283
2284
2285         stopPropagation: function(ev) {
2286             ev = ev.browserEvent || ev;
2287             if (ev.stopPropagation) {
2288                 ev.stopPropagation();
2289             } else {
2290                 ev.cancelBubble = true;
2291             }
2292         },
2293
2294
2295         preventDefault: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             if(ev.preventDefault) {
2298                 ev.preventDefault();
2299             } else {
2300                 ev.returnValue = false;
2301             }
2302         },
2303
2304
2305         getEvent: function(e) {
2306             var ev = e || window.event;
2307             if (!ev) {
2308                 var c = this.getEvent.caller;
2309                 while (c) {
2310                     ev = c.arguments[0];
2311                     if (ev && Event == ev.constructor) {
2312                         break;
2313                     }
2314                     c = c.caller;
2315                 }
2316             }
2317             return ev;
2318         },
2319
2320
2321         getCharCode: function(ev) {
2322             ev = ev.browserEvent || ev;
2323             return ev.charCode || ev.keyCode || 0;
2324         },
2325
2326
2327         _getCacheIndex: function(el, eventName, fn) {
2328             for (var i = 0,len = listeners.length; i < len; ++i) {
2329                 var li = listeners[i];
2330                 if (li &&
2331                     li[this.FN] == fn &&
2332                     li[this.EL] == el &&
2333                     li[this.TYPE] == eventName) {
2334                     return i;
2335                 }
2336             }
2337
2338             return -1;
2339         },
2340
2341
2342         elCache: {},
2343
2344
2345         getEl: function(id) {
2346             return document.getElementById(id);
2347         },
2348
2349
2350         clearCache: function() {
2351         },
2352
2353
2354         _load: function(e) {
2355             loadComplete = true;
2356             var EU = Roo.lib.Event;
2357
2358
2359             if (Roo.isIE) {
2360                 EU.doRemove(window, "load", EU._load);
2361             }
2362         },
2363
2364
2365         _tryPreloadAttach: function() {
2366
2367             if (this.locked) {
2368                 return false;
2369             }
2370
2371             this.locked = true;
2372
2373
2374             var tryAgain = !loadComplete;
2375             if (!tryAgain) {
2376                 tryAgain = (retryCount > 0);
2377             }
2378
2379
2380             var notAvail = [];
2381             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2382                 var item = onAvailStack[i];
2383                 if (item) {
2384                     var el = this.getEl(item.id);
2385
2386                     if (el) {
2387                         if (!item.checkReady ||
2388                             loadComplete ||
2389                             el.nextSibling ||
2390                             (document && document.body)) {
2391
2392                             var scope = el;
2393                             if (item.override) {
2394                                 if (item.override === true) {
2395                                     scope = item.obj;
2396                                 } else {
2397                                     scope = item.override;
2398                                 }
2399                             }
2400                             item.fn.call(scope, item.obj);
2401                             onAvailStack[i] = null;
2402                         }
2403                     } else {
2404                         notAvail.push(item);
2405                     }
2406                 }
2407             }
2408
2409             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2410
2411             if (tryAgain) {
2412
2413                 this.startInterval();
2414             } else {
2415                 clearInterval(this._interval);
2416                 this._interval = null;
2417             }
2418
2419             this.locked = false;
2420
2421             return true;
2422
2423         },
2424
2425
2426         purgeElement: function(el, recurse, eventName) {
2427             var elListeners = this.getListeners(el, eventName);
2428             if (elListeners) {
2429                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2430                     var l = elListeners[i];
2431                     this.removeListener(el, l.type, l.fn);
2432                 }
2433             }
2434
2435             if (recurse && el && el.childNodes) {
2436                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2437                     this.purgeElement(el.childNodes[i], recurse, eventName);
2438                 }
2439             }
2440         },
2441
2442
2443         getListeners: function(el, eventName) {
2444             var results = [], searchLists;
2445             if (!eventName) {
2446                 searchLists = [listeners, unloadListeners];
2447             } else if (eventName == "unload") {
2448                 searchLists = [unloadListeners];
2449             } else {
2450                 searchLists = [listeners];
2451             }
2452
2453             for (var j = 0; j < searchLists.length; ++j) {
2454                 var searchList = searchLists[j];
2455                 if (searchList && searchList.length > 0) {
2456                     for (var i = 0,len = searchList.length; i < len; ++i) {
2457                         var l = searchList[i];
2458                         if (l && l[this.EL] === el &&
2459                             (!eventName || eventName === l[this.TYPE])) {
2460                             results.push({
2461                                 type:   l[this.TYPE],
2462                                 fn:     l[this.FN],
2463                                 obj:    l[this.OBJ],
2464                                 adjust: l[this.ADJ_SCOPE],
2465                                 index:  i
2466                             });
2467                         }
2468                     }
2469                 }
2470             }
2471
2472             return (results.length) ? results : null;
2473         },
2474
2475
2476         _unload: function(e) {
2477
2478             var EU = Roo.lib.Event, i, j, l, len, index;
2479
2480             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2481                 l = unloadListeners[i];
2482                 if (l) {
2483                     var scope = window;
2484                     if (l[EU.ADJ_SCOPE]) {
2485                         if (l[EU.ADJ_SCOPE] === true) {
2486                             scope = l[EU.OBJ];
2487                         } else {
2488                             scope = l[EU.ADJ_SCOPE];
2489                         }
2490                     }
2491                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2492                     unloadListeners[i] = null;
2493                     l = null;
2494                     scope = null;
2495                 }
2496             }
2497
2498             unloadListeners = null;
2499
2500             if (listeners && listeners.length > 0) {
2501                 j = listeners.length;
2502                 while (j) {
2503                     index = j - 1;
2504                     l = listeners[index];
2505                     if (l) {
2506                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2507                                 l[EU.FN], index);
2508                     }
2509                     j = j - 1;
2510                 }
2511                 l = null;
2512
2513                 EU.clearCache();
2514             }
2515
2516             EU.doRemove(window, "unload", EU._unload);
2517
2518         },
2519
2520
2521         getScroll: function() {
2522             var dd = document.documentElement, db = document.body;
2523             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2524                 return [dd.scrollTop, dd.scrollLeft];
2525             } else if (db) {
2526                 return [db.scrollTop, db.scrollLeft];
2527             } else {
2528                 return [0, 0];
2529             }
2530         },
2531
2532
2533         doAdd: function () {
2534             if (window.addEventListener) {
2535                 return function(el, eventName, fn, capture) {
2536                     el.addEventListener(eventName, fn, (capture));
2537                 };
2538             } else if (window.attachEvent) {
2539                 return function(el, eventName, fn, capture) {
2540                     el.attachEvent("on" + eventName, fn);
2541                 };
2542             } else {
2543                 return function() {
2544                 };
2545             }
2546         }(),
2547
2548
2549         doRemove: function() {
2550             if (window.removeEventListener) {
2551                 return function (el, eventName, fn, capture) {
2552                     el.removeEventListener(eventName, fn, (capture));
2553                 };
2554             } else if (window.detachEvent) {
2555                 return function (el, eventName, fn) {
2556                     el.detachEvent("on" + eventName, fn);
2557                 };
2558             } else {
2559                 return function() {
2560                 };
2561             }
2562         }()
2563     };
2564     
2565 }();
2566 (function() {     
2567    
2568     var E = Roo.lib.Event;
2569     E.on = E.addListener;
2570     E.un = E.removeListener;
2571
2572     if (document && document.body) {
2573         E._load();
2574     } else {
2575         E.doAdd(window, "load", E._load);
2576     }
2577     E.doAdd(window, "unload", E._unload);
2578     E._tryPreloadAttach();
2579 })();
2580
2581 /*
2582  * Portions of this file are based on pieces of Yahoo User Interface Library
2583  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2584  * YUI licensed under the BSD License:
2585  * http://developer.yahoo.net/yui/license.txt
2586  * <script type="text/javascript">
2587  *
2588  */
2589
2590 (function() {
2591     /**
2592      * @class Roo.lib.Ajax
2593      *
2594      */
2595     Roo.lib.Ajax = {
2596         /**
2597          * @static 
2598          */
2599         request : function(method, uri, cb, data, options) {
2600             if(options){
2601                 var hs = options.headers;
2602                 if(hs){
2603                     for(var h in hs){
2604                         if(hs.hasOwnProperty(h)){
2605                             this.initHeader(h, hs[h], false);
2606                         }
2607                     }
2608                 }
2609                 if(options.xmlData){
2610                     this.initHeader('Content-Type', 'text/xml', false);
2611                     method = 'POST';
2612                     data = options.xmlData;
2613                 }
2614             }
2615
2616             return this.asyncRequest(method, uri, cb, data);
2617         },
2618
2619         serializeForm : function(form) {
2620             if(typeof form == 'string') {
2621                 form = (document.getElementById(form) || document.forms[form]);
2622             }
2623
2624             var el, name, val, disabled, data = '', hasSubmit = false;
2625             for (var i = 0; i < form.elements.length; i++) {
2626                 el = form.elements[i];
2627                 disabled = form.elements[i].disabled;
2628                 name = form.elements[i].name;
2629                 val = form.elements[i].value;
2630
2631                 if (!disabled && name){
2632                     switch (el.type)
2633                             {
2634                         case 'select-one':
2635                         case 'select-multiple':
2636                             for (var j = 0; j < el.options.length; j++) {
2637                                 if (el.options[j].selected) {
2638                                     if (Roo.isIE) {
2639                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2640                                     }
2641                                     else {
2642                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2643                                     }
2644                                 }
2645                             }
2646                             break;
2647                         case 'radio':
2648                         case 'checkbox':
2649                             if (el.checked) {
2650                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2651                             }
2652                             break;
2653                         case 'file':
2654
2655                         case undefined:
2656
2657                         case 'reset':
2658
2659                         case 'button':
2660
2661                             break;
2662                         case 'submit':
2663                             if(hasSubmit == false) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                                 hasSubmit = true;
2666                             }
2667                             break;
2668                         default:
2669                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2670                             break;
2671                     }
2672                 }
2673             }
2674             data = data.substr(0, data.length - 1);
2675             return data;
2676         },
2677
2678         headers:{},
2679
2680         hasHeaders:false,
2681
2682         useDefaultHeader:true,
2683
2684         defaultPostHeader:'application/x-www-form-urlencoded',
2685
2686         useDefaultXhrHeader:true,
2687
2688         defaultXhrHeader:'XMLHttpRequest',
2689
2690         hasDefaultHeaders:true,
2691
2692         defaultHeaders:{},
2693
2694         poll:{},
2695
2696         timeout:{},
2697
2698         pollInterval:50,
2699
2700         transactionId:0,
2701
2702         setProgId:function(id)
2703         {
2704             this.activeX.unshift(id);
2705         },
2706
2707         setDefaultPostHeader:function(b)
2708         {
2709             this.useDefaultHeader = b;
2710         },
2711
2712         setDefaultXhrHeader:function(b)
2713         {
2714             this.useDefaultXhrHeader = b;
2715         },
2716
2717         setPollingInterval:function(i)
2718         {
2719             if (typeof i == 'number' && isFinite(i)) {
2720                 this.pollInterval = i;
2721             }
2722         },
2723
2724         createXhrObject:function(transactionId)
2725         {
2726             var obj,http;
2727             try
2728             {
2729
2730                 http = new XMLHttpRequest();
2731
2732                 obj = { conn:http, tId:transactionId };
2733             }
2734             catch(e)
2735             {
2736                 for (var i = 0; i < this.activeX.length; ++i) {
2737                     try
2738                     {
2739
2740                         http = new ActiveXObject(this.activeX[i]);
2741
2742                         obj = { conn:http, tId:transactionId };
2743                         break;
2744                     }
2745                     catch(e) {
2746                     }
2747                 }
2748             }
2749             finally
2750             {
2751                 return obj;
2752             }
2753         },
2754
2755         getConnectionObject:function()
2756         {
2757             var o;
2758             var tId = this.transactionId;
2759
2760             try
2761             {
2762                 o = this.createXhrObject(tId);
2763                 if (o) {
2764                     this.transactionId++;
2765                 }
2766             }
2767             catch(e) {
2768             }
2769             finally
2770             {
2771                 return o;
2772             }
2773         },
2774
2775         asyncRequest:function(method, uri, callback, postData)
2776         {
2777             var o = this.getConnectionObject();
2778
2779             if (!o) {
2780                 return null;
2781             }
2782             else {
2783                 o.conn.open(method, uri, true);
2784
2785                 if (this.useDefaultXhrHeader) {
2786                     if (!this.defaultHeaders['X-Requested-With']) {
2787                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2788                     }
2789                 }
2790
2791                 if(postData && this.useDefaultHeader){
2792                     this.initHeader('Content-Type', this.defaultPostHeader);
2793                 }
2794
2795                  if (this.hasDefaultHeaders || this.hasHeaders) {
2796                     this.setHeader(o);
2797                 }
2798
2799                 this.handleReadyState(o, callback);
2800                 o.conn.send(postData || null);
2801
2802                 return o;
2803             }
2804         },
2805
2806         handleReadyState:function(o, callback)
2807         {
2808             var oConn = this;
2809
2810             if (callback && callback.timeout) {
2811                 
2812                 this.timeout[o.tId] = window.setTimeout(function() {
2813                     oConn.abort(o, callback, true);
2814                 }, callback.timeout);
2815             }
2816
2817             this.poll[o.tId] = window.setInterval(
2818                     function() {
2819                         if (o.conn && o.conn.readyState == 4) {
2820                             window.clearInterval(oConn.poll[o.tId]);
2821                             delete oConn.poll[o.tId];
2822
2823                             if(callback && callback.timeout) {
2824                                 window.clearTimeout(oConn.timeout[o.tId]);
2825                                 delete oConn.timeout[o.tId];
2826                             }
2827
2828                             oConn.handleTransactionResponse(o, callback);
2829                         }
2830                     }
2831                     , this.pollInterval);
2832         },
2833
2834         handleTransactionResponse:function(o, callback, isAbort)
2835         {
2836
2837             if (!callback) {
2838                 this.releaseObject(o);
2839                 return;
2840             }
2841
2842             var httpStatus, responseObject;
2843
2844             try
2845             {
2846                 if (o.conn.status !== undefined && o.conn.status != 0) {
2847                     httpStatus = o.conn.status;
2848                 }
2849                 else {
2850                     httpStatus = 13030;
2851                 }
2852             }
2853             catch(e) {
2854
2855
2856                 httpStatus = 13030;
2857             }
2858
2859             if (httpStatus >= 200 && httpStatus < 300) {
2860                 responseObject = this.createResponseObject(o, callback.argument);
2861                 if (callback.success) {
2862                     if (!callback.scope) {
2863                         callback.success(responseObject);
2864                     }
2865                     else {
2866
2867
2868                         callback.success.apply(callback.scope, [responseObject]);
2869                     }
2870                 }
2871             }
2872             else {
2873                 switch (httpStatus) {
2874
2875                     case 12002:
2876                     case 12029:
2877                     case 12030:
2878                     case 12031:
2879                     case 12152:
2880                     case 13030:
2881                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2882                         if (callback.failure) {
2883                             if (!callback.scope) {
2884                                 callback.failure(responseObject);
2885                             }
2886                             else {
2887                                 callback.failure.apply(callback.scope, [responseObject]);
2888                             }
2889                         }
2890                         break;
2891                     default:
2892                         responseObject = this.createResponseObject(o, callback.argument);
2893                         if (callback.failure) {
2894                             if (!callback.scope) {
2895                                 callback.failure(responseObject);
2896                             }
2897                             else {
2898                                 callback.failure.apply(callback.scope, [responseObject]);
2899                             }
2900                         }
2901                 }
2902             }
2903
2904             this.releaseObject(o);
2905             responseObject = null;
2906         },
2907
2908         createResponseObject:function(o, callbackArg)
2909         {
2910             var obj = {};
2911             var headerObj = {};
2912
2913             try
2914             {
2915                 var headerStr = o.conn.getAllResponseHeaders();
2916                 var header = headerStr.split('\n');
2917                 for (var i = 0; i < header.length; i++) {
2918                     var delimitPos = header[i].indexOf(':');
2919                     if (delimitPos != -1) {
2920                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2921                     }
2922                 }
2923             }
2924             catch(e) {
2925             }
2926
2927             obj.tId = o.tId;
2928             obj.status = o.conn.status;
2929             obj.statusText = o.conn.statusText;
2930             obj.getResponseHeader = headerObj;
2931             obj.getAllResponseHeaders = headerStr;
2932             obj.responseText = o.conn.responseText;
2933             obj.responseXML = o.conn.responseXML;
2934
2935             if (typeof callbackArg !== undefined) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         createExceptionObject:function(tId, callbackArg, isAbort)
2943         {
2944             var COMM_CODE = 0;
2945             var COMM_ERROR = 'communication failure';
2946             var ABORT_CODE = -1;
2947             var ABORT_ERROR = 'transaction aborted';
2948
2949             var obj = {};
2950
2951             obj.tId = tId;
2952             if (isAbort) {
2953                 obj.status = ABORT_CODE;
2954                 obj.statusText = ABORT_ERROR;
2955             }
2956             else {
2957                 obj.status = COMM_CODE;
2958                 obj.statusText = COMM_ERROR;
2959             }
2960
2961             if (callbackArg) {
2962                 obj.argument = callbackArg;
2963             }
2964
2965             return obj;
2966         },
2967
2968         initHeader:function(label, value, isDefault)
2969         {
2970             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2971
2972             if (headerObj[label] === undefined) {
2973                 headerObj[label] = value;
2974             }
2975             else {
2976
2977
2978                 headerObj[label] = value + "," + headerObj[label];
2979             }
2980
2981             if (isDefault) {
2982                 this.hasDefaultHeaders = true;
2983             }
2984             else {
2985                 this.hasHeaders = true;
2986             }
2987         },
2988
2989
2990         setHeader:function(o)
2991         {
2992             if (this.hasDefaultHeaders) {
2993                 for (var prop in this.defaultHeaders) {
2994                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2995                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2996                     }
2997                 }
2998             }
2999
3000             if (this.hasHeaders) {
3001                 for (var prop in this.headers) {
3002                     if (this.headers.hasOwnProperty(prop)) {
3003                         o.conn.setRequestHeader(prop, this.headers[prop]);
3004                     }
3005                 }
3006                 this.headers = {};
3007                 this.hasHeaders = false;
3008             }
3009         },
3010
3011         resetDefaultHeaders:function() {
3012             delete this.defaultHeaders;
3013             this.defaultHeaders = {};
3014             this.hasDefaultHeaders = false;
3015         },
3016
3017         abort:function(o, callback, isTimeout)
3018         {
3019             if(this.isCallInProgress(o)) {
3020                 o.conn.abort();
3021                 window.clearInterval(this.poll[o.tId]);
3022                 delete this.poll[o.tId];
3023                 if (isTimeout) {
3024                     delete this.timeout[o.tId];
3025                 }
3026
3027                 this.handleTransactionResponse(o, callback, true);
3028
3029                 return true;
3030             }
3031             else {
3032                 return false;
3033             }
3034         },
3035
3036
3037         isCallInProgress:function(o)
3038         {
3039             if (o && o.conn) {
3040                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3041             }
3042             else {
3043
3044                 return false;
3045             }
3046         },
3047
3048
3049         releaseObject:function(o)
3050         {
3051
3052             o.conn = null;
3053
3054             o = null;
3055         },
3056
3057         activeX:[
3058         'MSXML2.XMLHTTP.3.0',
3059         'MSXML2.XMLHTTP',
3060         'Microsoft.XMLHTTP'
3061         ]
3062
3063
3064     };
3065 })();/*
3066  * Portions of this file are based on pieces of Yahoo User Interface Library
3067  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3068  * YUI licensed under the BSD License:
3069  * http://developer.yahoo.net/yui/license.txt
3070  * <script type="text/javascript">
3071  *
3072  */
3073
3074 Roo.lib.Region = function(t, r, b, l) {
3075     this.top = t;
3076     this[1] = t;
3077     this.right = r;
3078     this.bottom = b;
3079     this.left = l;
3080     this[0] = l;
3081 };
3082
3083
3084 Roo.lib.Region.prototype = {
3085     contains : function(region) {
3086         return ( region.left >= this.left &&
3087                  region.right <= this.right &&
3088                  region.top >= this.top &&
3089                  region.bottom <= this.bottom    );
3090
3091     },
3092
3093     getArea : function() {
3094         return ( (this.bottom - this.top) * (this.right - this.left) );
3095     },
3096
3097     intersect : function(region) {
3098         var t = Math.max(this.top, region.top);
3099         var r = Math.min(this.right, region.right);
3100         var b = Math.min(this.bottom, region.bottom);
3101         var l = Math.max(this.left, region.left);
3102
3103         if (b >= t && r >= l) {
3104             return new Roo.lib.Region(t, r, b, l);
3105         } else {
3106             return null;
3107         }
3108     },
3109     union : function(region) {
3110         var t = Math.min(this.top, region.top);
3111         var r = Math.max(this.right, region.right);
3112         var b = Math.max(this.bottom, region.bottom);
3113         var l = Math.min(this.left, region.left);
3114
3115         return new Roo.lib.Region(t, r, b, l);
3116     },
3117
3118     adjust : function(t, l, b, r) {
3119         this.top += t;
3120         this.left += l;
3121         this.right += r;
3122         this.bottom += b;
3123         return this;
3124     }
3125 };
3126
3127 Roo.lib.Region.getRegion = function(el) {
3128     var p = Roo.lib.Dom.getXY(el);
3129
3130     var t = p[1];
3131     var r = p[0] + el.offsetWidth;
3132     var b = p[1] + el.offsetHeight;
3133     var l = p[0];
3134
3135     return new Roo.lib.Region(t, r, b, l);
3136 };
3137 /*
3138  * Portions of this file are based on pieces of Yahoo User Interface Library
3139  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3140  * YUI licensed under the BSD License:
3141  * http://developer.yahoo.net/yui/license.txt
3142  * <script type="text/javascript">
3143  *
3144  */
3145 //@@dep Roo.lib.Region
3146
3147
3148 Roo.lib.Point = function(x, y) {
3149     if (x instanceof Array) {
3150         y = x[1];
3151         x = x[0];
3152     }
3153     this.x = this.right = this.left = this[0] = x;
3154     this.y = this.top = this.bottom = this[1] = y;
3155 };
3156
3157 Roo.lib.Point.prototype = new Roo.lib.Region();
3158 /*
3159  * Portions of this file are based on pieces of Yahoo User Interface Library
3160  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3161  * YUI licensed under the BSD License:
3162  * http://developer.yahoo.net/yui/license.txt
3163  * <script type="text/javascript">
3164  *
3165  */
3166  
3167 (function() {   
3168
3169     Roo.lib.Anim = {
3170         scroll : function(el, args, duration, easing, cb, scope) {
3171             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3172         },
3173
3174         motion : function(el, args, duration, easing, cb, scope) {
3175             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3176         },
3177
3178         color : function(el, args, duration, easing, cb, scope) {
3179             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3180         },
3181
3182         run : function(el, args, duration, easing, cb, scope, type) {
3183             type = type || Roo.lib.AnimBase;
3184             if (typeof easing == "string") {
3185                 easing = Roo.lib.Easing[easing];
3186             }
3187             var anim = new type(el, args, duration, easing);
3188             anim.animateX(function() {
3189                 Roo.callback(cb, scope);
3190             });
3191             return anim;
3192         }
3193     };
3194 })();/*
3195  * Portions of this file are based on pieces of Yahoo User Interface Library
3196  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3197  * YUI licensed under the BSD License:
3198  * http://developer.yahoo.net/yui/license.txt
3199  * <script type="text/javascript">
3200  *
3201  */
3202
3203 (function() {    
3204     var libFlyweight;
3205     
3206     function fly(el) {
3207         if (!libFlyweight) {
3208             libFlyweight = new Roo.Element.Flyweight();
3209         }
3210         libFlyweight.dom = el;
3211         return libFlyweight;
3212     }
3213
3214     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3215     
3216    
3217     
3218     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3219         if (el) {
3220             this.init(el, attributes, duration, method);
3221         }
3222     };
3223
3224     Roo.lib.AnimBase.fly = fly;
3225     
3226     
3227     
3228     Roo.lib.AnimBase.prototype = {
3229
3230         toString: function() {
3231             var el = this.getEl();
3232             var id = el.id || el.tagName;
3233             return ("Anim " + id);
3234         },
3235
3236         patterns: {
3237             noNegatives:        /width|height|opacity|padding/i,
3238             offsetAttribute:  /^((width|height)|(top|left))$/,
3239             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3240             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3241         },
3242
3243
3244         doMethod: function(attr, start, end) {
3245             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3246         },
3247
3248
3249         setAttribute: function(attr, val, unit) {
3250             if (this.patterns.noNegatives.test(attr)) {
3251                 val = (val > 0) ? val : 0;
3252             }
3253
3254             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3255         },
3256
3257
3258         getAttribute: function(attr) {
3259             var el = this.getEl();
3260             var val = fly(el).getStyle(attr);
3261
3262             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3263                 return parseFloat(val);
3264             }
3265
3266             var a = this.patterns.offsetAttribute.exec(attr) || [];
3267             var pos = !!( a[3] );
3268             var box = !!( a[2] );
3269
3270
3271             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3272                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3273             } else {
3274                 val = 0;
3275             }
3276
3277             return val;
3278         },
3279
3280
3281         getDefaultUnit: function(attr) {
3282             if (this.patterns.defaultUnit.test(attr)) {
3283                 return 'px';
3284             }
3285
3286             return '';
3287         },
3288
3289         animateX : function(callback, scope) {
3290             var f = function() {
3291                 this.onComplete.removeListener(f);
3292                 if (typeof callback == "function") {
3293                     callback.call(scope || this, this);
3294                 }
3295             };
3296             this.onComplete.addListener(f, this);
3297             this.animate();
3298         },
3299
3300
3301         setRuntimeAttribute: function(attr) {
3302             var start;
3303             var end;
3304             var attributes = this.attributes;
3305
3306             this.runtimeAttributes[attr] = {};
3307
3308             var isset = function(prop) {
3309                 return (typeof prop !== 'undefined');
3310             };
3311
3312             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3313                 return false;
3314             }
3315
3316             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3317
3318
3319             if (isset(attributes[attr]['to'])) {
3320                 end = attributes[attr]['to'];
3321             } else if (isset(attributes[attr]['by'])) {
3322                 if (start.constructor == Array) {
3323                     end = [];
3324                     for (var i = 0, len = start.length; i < len; ++i) {
3325                         end[i] = start[i] + attributes[attr]['by'][i];
3326                     }
3327                 } else {
3328                     end = start + attributes[attr]['by'];
3329                 }
3330             }
3331
3332             this.runtimeAttributes[attr].start = start;
3333             this.runtimeAttributes[attr].end = end;
3334
3335
3336             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3337         },
3338
3339
3340         init: function(el, attributes, duration, method) {
3341
3342             var isAnimated = false;
3343
3344
3345             var startTime = null;
3346
3347
3348             var actualFrames = 0;
3349
3350
3351             el = Roo.getDom(el);
3352
3353
3354             this.attributes = attributes || {};
3355
3356
3357             this.duration = duration || 1;
3358
3359
3360             this.method = method || Roo.lib.Easing.easeNone;
3361
3362
3363             this.useSeconds = true;
3364
3365
3366             this.currentFrame = 0;
3367
3368
3369             this.totalFrames = Roo.lib.AnimMgr.fps;
3370
3371
3372             this.getEl = function() {
3373                 return el;
3374             };
3375
3376
3377             this.isAnimated = function() {
3378                 return isAnimated;
3379             };
3380
3381
3382             this.getStartTime = function() {
3383                 return startTime;
3384             };
3385
3386             this.runtimeAttributes = {};
3387
3388
3389             this.animate = function() {
3390                 if (this.isAnimated()) {
3391                     return false;
3392                 }
3393
3394                 this.currentFrame = 0;
3395
3396                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3397
3398                 Roo.lib.AnimMgr.registerElement(this);
3399             };
3400
3401
3402             this.stop = function(finish) {
3403                 if (finish) {
3404                     this.currentFrame = this.totalFrames;
3405                     this._onTween.fire();
3406                 }
3407                 Roo.lib.AnimMgr.stop(this);
3408             };
3409
3410             var onStart = function() {
3411                 this.onStart.fire();
3412
3413                 this.runtimeAttributes = {};
3414                 for (var attr in this.attributes) {
3415                     this.setRuntimeAttribute(attr);
3416                 }
3417
3418                 isAnimated = true;
3419                 actualFrames = 0;
3420                 startTime = new Date();
3421             };
3422
3423
3424             var onTween = function() {
3425                 var data = {
3426                     duration: new Date() - this.getStartTime(),
3427                     currentFrame: this.currentFrame
3428                 };
3429
3430                 data.toString = function() {
3431                     return (
3432                             'duration: ' + data.duration +
3433                             ', currentFrame: ' + data.currentFrame
3434                             );
3435                 };
3436
3437                 this.onTween.fire(data);
3438
3439                 var runtimeAttributes = this.runtimeAttributes;
3440
3441                 for (var attr in runtimeAttributes) {
3442                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3443                 }
3444
3445                 actualFrames += 1;
3446             };
3447
3448             var onComplete = function() {
3449                 var actual_duration = (new Date() - startTime) / 1000 ;
3450
3451                 var data = {
3452                     duration: actual_duration,
3453                     frames: actualFrames,
3454                     fps: actualFrames / actual_duration
3455                 };
3456
3457                 data.toString = function() {
3458                     return (
3459                             'duration: ' + data.duration +
3460                             ', frames: ' + data.frames +
3461                             ', fps: ' + data.fps
3462                             );
3463                 };
3464
3465                 isAnimated = false;
3466                 actualFrames = 0;
3467                 this.onComplete.fire(data);
3468             };
3469
3470
3471             this._onStart = new Roo.util.Event(this);
3472             this.onStart = new Roo.util.Event(this);
3473             this.onTween = new Roo.util.Event(this);
3474             this._onTween = new Roo.util.Event(this);
3475             this.onComplete = new Roo.util.Event(this);
3476             this._onComplete = new Roo.util.Event(this);
3477             this._onStart.addListener(onStart);
3478             this._onTween.addListener(onTween);
3479             this._onComplete.addListener(onComplete);
3480         }
3481     };
3482 })();
3483 /*
3484  * Portions of this file are based on pieces of Yahoo User Interface Library
3485  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3486  * YUI licensed under the BSD License:
3487  * http://developer.yahoo.net/yui/license.txt
3488  * <script type="text/javascript">
3489  *
3490  */
3491
3492 Roo.lib.AnimMgr = new function() {
3493
3494     var thread = null;
3495
3496
3497     var queue = [];
3498
3499
3500     var tweenCount = 0;
3501
3502
3503     this.fps = 1000;
3504
3505
3506     this.delay = 1;
3507
3508
3509     this.registerElement = function(tween) {
3510         queue[queue.length] = tween;
3511         tweenCount += 1;
3512         tween._onStart.fire();
3513         this.start();
3514     };
3515
3516
3517     this.unRegister = function(tween, index) {
3518         tween._onComplete.fire();
3519         index = index || getIndex(tween);
3520         if (index != -1) {
3521             queue.splice(index, 1);
3522         }
3523
3524         tweenCount -= 1;
3525         if (tweenCount <= 0) {
3526             this.stop();
3527         }
3528     };
3529
3530
3531     this.start = function() {
3532         if (thread === null) {
3533             thread = setInterval(this.run, this.delay);
3534         }
3535     };
3536
3537
3538     this.stop = function(tween) {
3539         if (!tween) {
3540             clearInterval(thread);
3541
3542             for (var i = 0, len = queue.length; i < len; ++i) {
3543                 if (queue[0].isAnimated()) {
3544                     this.unRegister(queue[0], 0);
3545                 }
3546             }
3547
3548             queue = [];
3549             thread = null;
3550             tweenCount = 0;
3551         }
3552         else {
3553             this.unRegister(tween);
3554         }
3555     };
3556
3557
3558     this.run = function() {
3559         for (var i = 0, len = queue.length; i < len; ++i) {
3560             var tween = queue[i];
3561             if (!tween || !tween.isAnimated()) {
3562                 continue;
3563             }
3564
3565             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3566             {
3567                 tween.currentFrame += 1;
3568
3569                 if (tween.useSeconds) {
3570                     correctFrame(tween);
3571                 }
3572                 tween._onTween.fire();
3573             }
3574             else {
3575                 Roo.lib.AnimMgr.stop(tween, i);
3576             }
3577         }
3578     };
3579
3580     var getIndex = function(anim) {
3581         for (var i = 0, len = queue.length; i < len; ++i) {
3582             if (queue[i] == anim) {
3583                 return i;
3584             }
3585         }
3586         return -1;
3587     };
3588
3589
3590     var correctFrame = function(tween) {
3591         var frames = tween.totalFrames;
3592         var frame = tween.currentFrame;
3593         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3594         var elapsed = (new Date() - tween.getStartTime());
3595         var tweak = 0;
3596
3597         if (elapsed < tween.duration * 1000) {
3598             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3599         } else {
3600             tweak = frames - (frame + 1);
3601         }
3602         if (tweak > 0 && isFinite(tweak)) {
3603             if (tween.currentFrame + tweak >= frames) {
3604                 tweak = frames - (frame + 1);
3605             }
3606
3607             tween.currentFrame += tweak;
3608         }
3609     };
3610 };
3611
3612     /*
3613  * Portions of this file are based on pieces of Yahoo User Interface Library
3614  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3615  * YUI licensed under the BSD License:
3616  * http://developer.yahoo.net/yui/license.txt
3617  * <script type="text/javascript">
3618  *
3619  */
3620 Roo.lib.Bezier = new function() {
3621
3622         this.getPosition = function(points, t) {
3623             var n = points.length;
3624             var tmp = [];
3625
3626             for (var i = 0; i < n; ++i) {
3627                 tmp[i] = [points[i][0], points[i][1]];
3628             }
3629
3630             for (var j = 1; j < n; ++j) {
3631                 for (i = 0; i < n - j; ++i) {
3632                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3633                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3634                 }
3635             }
3636
3637             return [ tmp[0][0], tmp[0][1] ];
3638
3639         };
3640     };/*
3641  * Portions of this file are based on pieces of Yahoo User Interface Library
3642  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3643  * YUI licensed under the BSD License:
3644  * http://developer.yahoo.net/yui/license.txt
3645  * <script type="text/javascript">
3646  *
3647  */
3648 (function() {
3649
3650     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3651         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3652     };
3653
3654     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3655
3656     var fly = Roo.lib.AnimBase.fly;
3657     var Y = Roo.lib;
3658     var superclass = Y.ColorAnim.superclass;
3659     var proto = Y.ColorAnim.prototype;
3660
3661     proto.toString = function() {
3662         var el = this.getEl();
3663         var id = el.id || el.tagName;
3664         return ("ColorAnim " + id);
3665     };
3666
3667     proto.patterns.color = /color$/i;
3668     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3669     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3670     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3671     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3672
3673
3674     proto.parseColor = function(s) {
3675         if (s.length == 3) {
3676             return s;
3677         }
3678
3679         var c = this.patterns.hex.exec(s);
3680         if (c && c.length == 4) {
3681             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3682         }
3683
3684         c = this.patterns.rgb.exec(s);
3685         if (c && c.length == 4) {
3686             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3687         }
3688
3689         c = this.patterns.hex3.exec(s);
3690         if (c && c.length == 4) {
3691             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3692         }
3693
3694         return null;
3695     };
3696     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3697     proto.getAttribute = function(attr) {
3698         var el = this.getEl();
3699         if (this.patterns.color.test(attr)) {
3700             var val = fly(el).getStyle(attr);
3701
3702             if (this.patterns.transparent.test(val)) {
3703                 var parent = el.parentNode;
3704                 val = fly(parent).getStyle(attr);
3705
3706                 while (parent && this.patterns.transparent.test(val)) {
3707                     parent = parent.parentNode;
3708                     val = fly(parent).getStyle(attr);
3709                     if (parent.tagName.toUpperCase() == 'HTML') {
3710                         val = '#fff';
3711                     }
3712                 }
3713             }
3714         } else {
3715             val = superclass.getAttribute.call(this, attr);
3716         }
3717
3718         return val;
3719     };
3720     proto.getAttribute = function(attr) {
3721         var el = this.getEl();
3722         if (this.patterns.color.test(attr)) {
3723             var val = fly(el).getStyle(attr);
3724
3725             if (this.patterns.transparent.test(val)) {
3726                 var parent = el.parentNode;
3727                 val = fly(parent).getStyle(attr);
3728
3729                 while (parent && this.patterns.transparent.test(val)) {
3730                     parent = parent.parentNode;
3731                     val = fly(parent).getStyle(attr);
3732                     if (parent.tagName.toUpperCase() == 'HTML') {
3733                         val = '#fff';
3734                     }
3735                 }
3736             }
3737         } else {
3738             val = superclass.getAttribute.call(this, attr);
3739         }
3740
3741         return val;
3742     };
3743
3744     proto.doMethod = function(attr, start, end) {
3745         var val;
3746
3747         if (this.patterns.color.test(attr)) {
3748             val = [];
3749             for (var i = 0, len = start.length; i < len; ++i) {
3750                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3751             }
3752
3753             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3754         }
3755         else {
3756             val = superclass.doMethod.call(this, attr, start, end);
3757         }
3758
3759         return val;
3760     };
3761
3762     proto.setRuntimeAttribute = function(attr) {
3763         superclass.setRuntimeAttribute.call(this, attr);
3764
3765         if (this.patterns.color.test(attr)) {
3766             var attributes = this.attributes;
3767             var start = this.parseColor(this.runtimeAttributes[attr].start);
3768             var end = this.parseColor(this.runtimeAttributes[attr].end);
3769
3770             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3771                 end = this.parseColor(attributes[attr].by);
3772
3773                 for (var i = 0, len = start.length; i < len; ++i) {
3774                     end[i] = start[i] + end[i];
3775                 }
3776             }
3777
3778             this.runtimeAttributes[attr].start = start;
3779             this.runtimeAttributes[attr].end = end;
3780         }
3781     };
3782 })();
3783
3784 /*
3785  * Portions of this file are based on pieces of Yahoo User Interface Library
3786  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3787  * YUI licensed under the BSD License:
3788  * http://developer.yahoo.net/yui/license.txt
3789  * <script type="text/javascript">
3790  *
3791  */
3792 Roo.lib.Easing = {
3793
3794
3795     easeNone: function (t, b, c, d) {
3796         return c * t / d + b;
3797     },
3798
3799
3800     easeIn: function (t, b, c, d) {
3801         return c * (t /= d) * t + b;
3802     },
3803
3804
3805     easeOut: function (t, b, c, d) {
3806         return -c * (t /= d) * (t - 2) + b;
3807     },
3808
3809
3810     easeBoth: function (t, b, c, d) {
3811         if ((t /= d / 2) < 1) {
3812             return c / 2 * t * t + b;
3813         }
3814
3815         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3816     },
3817
3818
3819     easeInStrong: function (t, b, c, d) {
3820         return c * (t /= d) * t * t * t + b;
3821     },
3822
3823
3824     easeOutStrong: function (t, b, c, d) {
3825         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3826     },
3827
3828
3829     easeBothStrong: function (t, b, c, d) {
3830         if ((t /= d / 2) < 1) {
3831             return c / 2 * t * t * t * t + b;
3832         }
3833
3834         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3835     },
3836
3837
3838
3839     elasticIn: function (t, b, c, d, a, p) {
3840         if (t == 0) {
3841             return b;
3842         }
3843         if ((t /= d) == 1) {
3844             return b + c;
3845         }
3846         if (!p) {
3847             p = d * .3;
3848         }
3849
3850         if (!a || a < Math.abs(c)) {
3851             a = c;
3852             var s = p / 4;
3853         }
3854         else {
3855             var s = p / (2 * Math.PI) * Math.asin(c / a);
3856         }
3857
3858         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3859     },
3860
3861
3862     elasticOut: function (t, b, c, d, a, p) {
3863         if (t == 0) {
3864             return b;
3865         }
3866         if ((t /= d) == 1) {
3867             return b + c;
3868         }
3869         if (!p) {
3870             p = d * .3;
3871         }
3872
3873         if (!a || a < Math.abs(c)) {
3874             a = c;
3875             var s = p / 4;
3876         }
3877         else {
3878             var s = p / (2 * Math.PI) * Math.asin(c / a);
3879         }
3880
3881         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3882     },
3883
3884
3885     elasticBoth: function (t, b, c, d, a, p) {
3886         if (t == 0) {
3887             return b;
3888         }
3889
3890         if ((t /= d / 2) == 2) {
3891             return b + c;
3892         }
3893
3894         if (!p) {
3895             p = d * (.3 * 1.5);
3896         }
3897
3898         if (!a || a < Math.abs(c)) {
3899             a = c;
3900             var s = p / 4;
3901         }
3902         else {
3903             var s = p / (2 * Math.PI) * Math.asin(c / a);
3904         }
3905
3906         if (t < 1) {
3907             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3908                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3909         }
3910         return a * Math.pow(2, -10 * (t -= 1)) *
3911                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3912     },
3913
3914
3915
3916     backIn: function (t, b, c, d, s) {
3917         if (typeof s == 'undefined') {
3918             s = 1.70158;
3919         }
3920         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3921     },
3922
3923
3924     backOut: function (t, b, c, d, s) {
3925         if (typeof s == 'undefined') {
3926             s = 1.70158;
3927         }
3928         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3929     },
3930
3931
3932     backBoth: function (t, b, c, d, s) {
3933         if (typeof s == 'undefined') {
3934             s = 1.70158;
3935         }
3936
3937         if ((t /= d / 2 ) < 1) {
3938             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3939         }
3940         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3941     },
3942
3943
3944     bounceIn: function (t, b, c, d) {
3945         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3946     },
3947
3948
3949     bounceOut: function (t, b, c, d) {
3950         if ((t /= d) < (1 / 2.75)) {
3951             return c * (7.5625 * t * t) + b;
3952         } else if (t < (2 / 2.75)) {
3953             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3954         } else if (t < (2.5 / 2.75)) {
3955             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3956         }
3957         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3958     },
3959
3960
3961     bounceBoth: function (t, b, c, d) {
3962         if (t < d / 2) {
3963             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3964         }
3965         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3966     }
3967 };/*
3968  * Portions of this file are based on pieces of Yahoo User Interface Library
3969  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3970  * YUI licensed under the BSD License:
3971  * http://developer.yahoo.net/yui/license.txt
3972  * <script type="text/javascript">
3973  *
3974  */
3975     (function() {
3976         Roo.lib.Motion = function(el, attributes, duration, method) {
3977             if (el) {
3978                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3979             }
3980         };
3981
3982         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3983
3984
3985         var Y = Roo.lib;
3986         var superclass = Y.Motion.superclass;
3987         var proto = Y.Motion.prototype;
3988
3989         proto.toString = function() {
3990             var el = this.getEl();
3991             var id = el.id || el.tagName;
3992             return ("Motion " + id);
3993         };
3994
3995         proto.patterns.points = /^points$/i;
3996
3997         proto.setAttribute = function(attr, val, unit) {
3998             if (this.patterns.points.test(attr)) {
3999                 unit = unit || 'px';
4000                 superclass.setAttribute.call(this, 'left', val[0], unit);
4001                 superclass.setAttribute.call(this, 'top', val[1], unit);
4002             } else {
4003                 superclass.setAttribute.call(this, attr, val, unit);
4004             }
4005         };
4006
4007         proto.getAttribute = function(attr) {
4008             if (this.patterns.points.test(attr)) {
4009                 var val = [
4010                         superclass.getAttribute.call(this, 'left'),
4011                         superclass.getAttribute.call(this, 'top')
4012                         ];
4013             } else {
4014                 val = superclass.getAttribute.call(this, attr);
4015             }
4016
4017             return val;
4018         };
4019
4020         proto.doMethod = function(attr, start, end) {
4021             var val = null;
4022
4023             if (this.patterns.points.test(attr)) {
4024                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4025                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4026             } else {
4027                 val = superclass.doMethod.call(this, attr, start, end);
4028             }
4029             return val;
4030         };
4031
4032         proto.setRuntimeAttribute = function(attr) {
4033             if (this.patterns.points.test(attr)) {
4034                 var el = this.getEl();
4035                 var attributes = this.attributes;
4036                 var start;
4037                 var control = attributes['points']['control'] || [];
4038                 var end;
4039                 var i, len;
4040
4041                 if (control.length > 0 && !(control[0] instanceof Array)) {
4042                     control = [control];
4043                 } else {
4044                     var tmp = [];
4045                     for (i = 0,len = control.length; i < len; ++i) {
4046                         tmp[i] = control[i];
4047                     }
4048                     control = tmp;
4049                 }
4050
4051                 Roo.fly(el).position();
4052
4053                 if (isset(attributes['points']['from'])) {
4054                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4055                 }
4056                 else {
4057                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4058                 }
4059
4060                 start = this.getAttribute('points');
4061
4062
4063                 if (isset(attributes['points']['to'])) {
4064                     end = translateValues.call(this, attributes['points']['to'], start);
4065
4066                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4067                     for (i = 0,len = control.length; i < len; ++i) {
4068                         control[i] = translateValues.call(this, control[i], start);
4069                     }
4070
4071
4072                 } else if (isset(attributes['points']['by'])) {
4073                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4074
4075                     for (i = 0,len = control.length; i < len; ++i) {
4076                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4077                     }
4078                 }
4079
4080                 this.runtimeAttributes[attr] = [start];
4081
4082                 if (control.length > 0) {
4083                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4084                 }
4085
4086                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4087             }
4088             else {
4089                 superclass.setRuntimeAttribute.call(this, attr);
4090             }
4091         };
4092
4093         var translateValues = function(val, start) {
4094             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4095             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4096
4097             return val;
4098         };
4099
4100         var isset = function(prop) {
4101             return (typeof prop !== 'undefined');
4102         };
4103     })();
4104 /*
4105  * Portions of this file are based on pieces of Yahoo User Interface Library
4106  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4107  * YUI licensed under the BSD License:
4108  * http://developer.yahoo.net/yui/license.txt
4109  * <script type="text/javascript">
4110  *
4111  */
4112     (function() {
4113         Roo.lib.Scroll = function(el, attributes, duration, method) {
4114             if (el) {
4115                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4116             }
4117         };
4118
4119         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4120
4121
4122         var Y = Roo.lib;
4123         var superclass = Y.Scroll.superclass;
4124         var proto = Y.Scroll.prototype;
4125
4126         proto.toString = function() {
4127             var el = this.getEl();
4128             var id = el.id || el.tagName;
4129             return ("Scroll " + id);
4130         };
4131
4132         proto.doMethod = function(attr, start, end) {
4133             var val = null;
4134
4135             if (attr == 'scroll') {
4136                 val = [
4137                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4138                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4139                         ];
4140
4141             } else {
4142                 val = superclass.doMethod.call(this, attr, start, end);
4143             }
4144             return val;
4145         };
4146
4147         proto.getAttribute = function(attr) {
4148             var val = null;
4149             var el = this.getEl();
4150
4151             if (attr == 'scroll') {
4152                 val = [ el.scrollLeft, el.scrollTop ];
4153             } else {
4154                 val = superclass.getAttribute.call(this, attr);
4155             }
4156
4157             return val;
4158         };
4159
4160         proto.setAttribute = function(attr, val, unit) {
4161             var el = this.getEl();
4162
4163             if (attr == 'scroll') {
4164                 el.scrollLeft = val[0];
4165                 el.scrollTop = val[1];
4166             } else {
4167                 superclass.setAttribute.call(this, attr, val, unit);
4168             }
4169         };
4170     })();
4171 /*
4172  * Based on:
4173  * Ext JS Library 1.1.1
4174  * Copyright(c) 2006-2007, Ext JS, LLC.
4175  *
4176  * Originally Released Under LGPL - original licence link has changed is not relivant.
4177  *
4178  * Fork - LGPL
4179  * <script type="text/javascript">
4180  */
4181
4182
4183 // nasty IE9 hack - what a pile of crap that is..
4184
4185  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4186     Range.prototype.createContextualFragment = function (html) {
4187         var doc = window.document;
4188         var container = doc.createElement("div");
4189         container.innerHTML = html;
4190         var frag = doc.createDocumentFragment(), n;
4191         while ((n = container.firstChild)) {
4192             frag.appendChild(n);
4193         }
4194         return frag;
4195     };
4196 }
4197
4198 /**
4199  * @class Roo.DomHelper
4200  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4201  * 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>.
4202  * @singleton
4203  */
4204 Roo.DomHelper = function(){
4205     var tempTableEl = null;
4206     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4207     var tableRe = /^table|tbody|tr|td$/i;
4208     var xmlns = {};
4209     // build as innerHTML where available
4210     /** @ignore */
4211     var createHtml = function(o){
4212         if(typeof o == 'string'){
4213             return o;
4214         }
4215         var b = "";
4216         if(!o.tag){
4217             o.tag = "div";
4218         }
4219         b += "<" + o.tag;
4220         for(var attr in o){
4221             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4222             if(attr == "style"){
4223                 var s = o["style"];
4224                 if(typeof s == "function"){
4225                     s = s.call();
4226                 }
4227                 if(typeof s == "string"){
4228                     b += ' style="' + s + '"';
4229                 }else if(typeof s == "object"){
4230                     b += ' style="';
4231                     for(var key in s){
4232                         if(typeof s[key] != "function"){
4233                             b += key + ":" + s[key] + ";";
4234                         }
4235                     }
4236                     b += '"';
4237                 }
4238             }else{
4239                 if(attr == "cls"){
4240                     b += ' class="' + o["cls"] + '"';
4241                 }else if(attr == "htmlFor"){
4242                     b += ' for="' + o["htmlFor"] + '"';
4243                 }else{
4244                     b += " " + attr + '="' + o[attr] + '"';
4245                 }
4246             }
4247         }
4248         if(emptyTags.test(o.tag)){
4249             b += "/>";
4250         }else{
4251             b += ">";
4252             var cn = o.children || o.cn;
4253             if(cn){
4254                 //http://bugs.kde.org/show_bug.cgi?id=71506
4255                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4256                     for(var i = 0, len = cn.length; i < len; i++) {
4257                         b += createHtml(cn[i], b);
4258                     }
4259                 }else{
4260                     b += createHtml(cn, b);
4261                 }
4262             }
4263             if(o.html){
4264                 b += o.html;
4265             }
4266             b += "</" + o.tag + ">";
4267         }
4268         return b;
4269     };
4270
4271     // build as dom
4272     /** @ignore */
4273     var createDom = function(o, parentNode){
4274          
4275         // defininition craeted..
4276         var ns = false;
4277         if (o.ns && o.ns != 'html') {
4278                
4279             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4280                 xmlns[o.ns] = o.xmlns;
4281                 ns = o.xmlns;
4282             }
4283             if (typeof(xmlns[o.ns]) == 'undefined') {
4284                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4285             }
4286             ns = xmlns[o.ns];
4287         }
4288         
4289         
4290         if (typeof(o) == 'string') {
4291             return parentNode.appendChild(document.createTextNode(o));
4292         }
4293         o.tag = o.tag || div;
4294         if (o.ns && Roo.isIE) {
4295             ns = false;
4296             o.tag = o.ns + ':' + o.tag;
4297             
4298         }
4299         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4300         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4301         for(var attr in o){
4302             
4303             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4304                     attr == "style" || typeof o[attr] == "function") { continue; }
4305                     
4306             if(attr=="cls" && Roo.isIE){
4307                 el.className = o["cls"];
4308             }else{
4309                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4310                 else { 
4311                     el[attr] = o[attr];
4312                 }
4313             }
4314         }
4315         Roo.DomHelper.applyStyles(el, o.style);
4316         var cn = o.children || o.cn;
4317         if(cn){
4318             //http://bugs.kde.org/show_bug.cgi?id=71506
4319              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4320                 for(var i = 0, len = cn.length; i < len; i++) {
4321                     createDom(cn[i], el);
4322                 }
4323             }else{
4324                 createDom(cn, el);
4325             }
4326         }
4327         if(o.html){
4328             el.innerHTML = o.html;
4329         }
4330         if(parentNode){
4331            parentNode.appendChild(el);
4332         }
4333         return el;
4334     };
4335
4336     var ieTable = function(depth, s, h, e){
4337         tempTableEl.innerHTML = [s, h, e].join('');
4338         var i = -1, el = tempTableEl;
4339         while(++i < depth){
4340             el = el.firstChild;
4341         }
4342         return el;
4343     };
4344
4345     // kill repeat to save bytes
4346     var ts = '<table>',
4347         te = '</table>',
4348         tbs = ts+'<tbody>',
4349         tbe = '</tbody>'+te,
4350         trs = tbs + '<tr>',
4351         tre = '</tr>'+tbe;
4352
4353     /**
4354      * @ignore
4355      * Nasty code for IE's broken table implementation
4356      */
4357     var insertIntoTable = function(tag, where, el, html){
4358         if(!tempTableEl){
4359             tempTableEl = document.createElement('div');
4360         }
4361         var node;
4362         var before = null;
4363         if(tag == 'td'){
4364             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4365                 return;
4366             }
4367             if(where == 'beforebegin'){
4368                 before = el;
4369                 el = el.parentNode;
4370             } else{
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373             }
4374             node = ieTable(4, trs, html, tre);
4375         }
4376         else if(tag == 'tr'){
4377             if(where == 'beforebegin'){
4378                 before = el;
4379                 el = el.parentNode;
4380                 node = ieTable(3, tbs, html, tbe);
4381             } else if(where == 'afterend'){
4382                 before = el.nextSibling;
4383                 el = el.parentNode;
4384                 node = ieTable(3, tbs, html, tbe);
4385             } else{ // INTO a TR
4386                 if(where == 'afterbegin'){
4387                     before = el.firstChild;
4388                 }
4389                 node = ieTable(4, trs, html, tre);
4390             }
4391         } else if(tag == 'tbody'){
4392             if(where == 'beforebegin'){
4393                 before = el;
4394                 el = el.parentNode;
4395                 node = ieTable(2, ts, html, te);
4396             } else if(where == 'afterend'){
4397                 before = el.nextSibling;
4398                 el = el.parentNode;
4399                 node = ieTable(2, ts, html, te);
4400             } else{
4401                 if(where == 'afterbegin'){
4402                     before = el.firstChild;
4403                 }
4404                 node = ieTable(3, tbs, html, tbe);
4405             }
4406         } else{ // TABLE
4407             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4408                 return;
4409             }
4410             if(where == 'afterbegin'){
4411                 before = el.firstChild;
4412             }
4413             node = ieTable(2, ts, html, te);
4414         }
4415         el.insertBefore(node, before);
4416         return node;
4417     };
4418
4419     return {
4420     /** True to force the use of DOM instead of html fragments @type Boolean */
4421     useDom : false,
4422
4423     /**
4424      * Returns the markup for the passed Element(s) config
4425      * @param {Object} o The Dom object spec (and children)
4426      * @return {String}
4427      */
4428     markup : function(o){
4429         return createHtml(o);
4430     },
4431
4432     /**
4433      * Applies a style specification to an element
4434      * @param {String/HTMLElement} el The element to apply styles to
4435      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4436      * a function which returns such a specification.
4437      */
4438     applyStyles : function(el, styles){
4439         if(styles){
4440            el = Roo.fly(el);
4441            if(typeof styles == "string"){
4442                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4443                var matches;
4444                while ((matches = re.exec(styles)) != null){
4445                    el.setStyle(matches[1], matches[2]);
4446                }
4447            }else if (typeof styles == "object"){
4448                for (var style in styles){
4449                   el.setStyle(style, styles[style]);
4450                }
4451            }else if (typeof styles == "function"){
4452                 Roo.DomHelper.applyStyles(el, styles.call());
4453            }
4454         }
4455     },
4456
4457     /**
4458      * Inserts an HTML fragment into the Dom
4459      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4460      * @param {HTMLElement} el The context element
4461      * @param {String} html The HTML fragmenet
4462      * @return {HTMLElement} The new node
4463      */
4464     insertHtml : function(where, el, html){
4465         where = where.toLowerCase();
4466         if(el.insertAdjacentHTML){
4467             if(tableRe.test(el.tagName)){
4468                 var rs;
4469                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4470                     return rs;
4471                 }
4472             }
4473             switch(where){
4474                 case "beforebegin":
4475                     el.insertAdjacentHTML('BeforeBegin', html);
4476                     return el.previousSibling;
4477                 case "afterbegin":
4478                     el.insertAdjacentHTML('AfterBegin', html);
4479                     return el.firstChild;
4480                 case "beforeend":
4481                     el.insertAdjacentHTML('BeforeEnd', html);
4482                     return el.lastChild;
4483                 case "afterend":
4484                     el.insertAdjacentHTML('AfterEnd', html);
4485                     return el.nextSibling;
4486             }
4487             throw 'Illegal insertion point -> "' + where + '"';
4488         }
4489         var range = el.ownerDocument.createRange();
4490         var frag;
4491         switch(where){
4492              case "beforebegin":
4493                 range.setStartBefore(el);
4494                 frag = range.createContextualFragment(html);
4495                 el.parentNode.insertBefore(frag, el);
4496                 return el.previousSibling;
4497              case "afterbegin":
4498                 if(el.firstChild){
4499                     range.setStartBefore(el.firstChild);
4500                     frag = range.createContextualFragment(html);
4501                     el.insertBefore(frag, el.firstChild);
4502                     return el.firstChild;
4503                 }else{
4504                     el.innerHTML = html;
4505                     return el.firstChild;
4506                 }
4507             case "beforeend":
4508                 if(el.lastChild){
4509                     range.setStartAfter(el.lastChild);
4510                     frag = range.createContextualFragment(html);
4511                     el.appendChild(frag);
4512                     return el.lastChild;
4513                 }else{
4514                     el.innerHTML = html;
4515                     return el.lastChild;
4516                 }
4517             case "afterend":
4518                 range.setStartAfter(el);
4519                 frag = range.createContextualFragment(html);
4520                 el.parentNode.insertBefore(frag, el.nextSibling);
4521                 return el.nextSibling;
4522             }
4523             throw 'Illegal insertion point -> "' + where + '"';
4524     },
4525
4526     /**
4527      * Creates new Dom element(s) and inserts them before el
4528      * @param {String/HTMLElement/Element} el The context element
4529      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4530      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4531      * @return {HTMLElement/Roo.Element} The new node
4532      */
4533     insertBefore : function(el, o, returnElement){
4534         return this.doInsert(el, o, returnElement, "beforeBegin");
4535     },
4536
4537     /**
4538      * Creates new Dom element(s) and inserts them after el
4539      * @param {String/HTMLElement/Element} el The context element
4540      * @param {Object} o The Dom object spec (and children)
4541      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4542      * @return {HTMLElement/Roo.Element} The new node
4543      */
4544     insertAfter : function(el, o, returnElement){
4545         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4546     },
4547
4548     /**
4549      * Creates new Dom element(s) and inserts them as the first child of el
4550      * @param {String/HTMLElement/Element} el The context element
4551      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4552      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4553      * @return {HTMLElement/Roo.Element} The new node
4554      */
4555     insertFirst : function(el, o, returnElement){
4556         return this.doInsert(el, o, returnElement, "afterBegin");
4557     },
4558
4559     // private
4560     doInsert : function(el, o, returnElement, pos, sibling){
4561         el = Roo.getDom(el);
4562         var newNode;
4563         if(this.useDom || o.ns){
4564             newNode = createDom(o, null);
4565             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4566         }else{
4567             var html = createHtml(o);
4568             newNode = this.insertHtml(pos, el, html);
4569         }
4570         return returnElement ? Roo.get(newNode, true) : newNode;
4571     },
4572
4573     /**
4574      * Creates new Dom element(s) and appends them to el
4575      * @param {String/HTMLElement/Element} el The context element
4576      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4577      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4578      * @return {HTMLElement/Roo.Element} The new node
4579      */
4580     append : function(el, o, returnElement){
4581         el = Roo.getDom(el);
4582         var newNode;
4583         if(this.useDom || o.ns){
4584             newNode = createDom(o, null);
4585             el.appendChild(newNode);
4586         }else{
4587             var html = createHtml(o);
4588             newNode = this.insertHtml("beforeEnd", el, html);
4589         }
4590         return returnElement ? Roo.get(newNode, true) : newNode;
4591     },
4592
4593     /**
4594      * Creates new Dom element(s) and overwrites the contents of el with them
4595      * @param {String/HTMLElement/Element} el The context element
4596      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4597      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4598      * @return {HTMLElement/Roo.Element} The new node
4599      */
4600     overwrite : function(el, o, returnElement){
4601         el = Roo.getDom(el);
4602         if (o.ns) {
4603           
4604             while (el.childNodes.length) {
4605                 el.removeChild(el.firstChild);
4606             }
4607             createDom(o, el);
4608         } else {
4609             el.innerHTML = createHtml(o);   
4610         }
4611         
4612         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4613     },
4614
4615     /**
4616      * Creates a new Roo.DomHelper.Template from the Dom object spec
4617      * @param {Object} o The Dom object spec (and children)
4618      * @return {Roo.DomHelper.Template} The new template
4619      */
4620     createTemplate : function(o){
4621         var html = createHtml(o);
4622         return new Roo.Template(html);
4623     }
4624     };
4625 }();
4626 /*
4627  * Based on:
4628  * Ext JS Library 1.1.1
4629  * Copyright(c) 2006-2007, Ext JS, LLC.
4630  *
4631  * Originally Released Under LGPL - original licence link has changed is not relivant.
4632  *
4633  * Fork - LGPL
4634  * <script type="text/javascript">
4635  */
4636  
4637 /**
4638 * @class Roo.Template
4639 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4640 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4641 * Usage:
4642 <pre><code>
4643 var t = new Roo.Template({
4644     html :  '&lt;div name="{id}"&gt;' + 
4645         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4646         '&lt;/div&gt;',
4647     myformat: function (value, allValues) {
4648         return 'XX' + value;
4649     }
4650 });
4651 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4652 </code></pre>
4653 * For more information see this blog post with examples:
4654 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4655      - Create Elements using DOM, HTML fragments and Templates</a>. 
4656 * @constructor
4657 * @param {Object} cfg - Configuration object.
4658 */
4659 Roo.Template = function(cfg){
4660     // BC!
4661     if(cfg instanceof Array){
4662         cfg = cfg.join("");
4663     }else if(arguments.length > 1){
4664         cfg = Array.prototype.join.call(arguments, "");
4665     }
4666     
4667     
4668     if (typeof(cfg) == 'object') {
4669         Roo.apply(this,cfg)
4670     } else {
4671         // bc
4672         this.html = cfg;
4673     }
4674     if (this.url) {
4675         this.load();
4676     }
4677     
4678 };
4679 Roo.Template.prototype = {
4680     
4681     /**
4682      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4683      */
4684     onLoad : false,
4685     
4686     
4687     /**
4688      * @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..
4689      *                    it should be fixed so that template is observable...
4690      */
4691     url : false,
4692     /**
4693      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4694      */
4695     html : '',
4696     
4697     
4698     compiled : false,
4699     loaded : false,
4700     /**
4701      * Returns an HTML fragment of this template with the specified values applied.
4702      * @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'})
4703      * @return {String} The HTML fragment
4704      */
4705     
4706    
4707     
4708     applyTemplate : function(values){
4709         //Roo.log(["applyTemplate", values]);
4710         try {
4711            
4712             if(this.compiled){
4713                 return this.compiled(values);
4714             }
4715             var useF = this.disableFormats !== true;
4716             var fm = Roo.util.Format, tpl = this;
4717             var fn = function(m, name, format, args){
4718                 if(format && useF){
4719                     if(format.substr(0, 5) == "this."){
4720                         return tpl.call(format.substr(5), values[name], values);
4721                     }else{
4722                         if(args){
4723                             // quoted values are required for strings in compiled templates, 
4724                             // but for non compiled we need to strip them
4725                             // quoted reversed for jsmin
4726                             var re = /^\s*['"](.*)["']\s*$/;
4727                             args = args.split(',');
4728                             for(var i = 0, len = args.length; i < len; i++){
4729                                 args[i] = args[i].replace(re, "$1");
4730                             }
4731                             args = [values[name]].concat(args);
4732                         }else{
4733                             args = [values[name]];
4734                         }
4735                         return fm[format].apply(fm, args);
4736                     }
4737                 }else{
4738                     return values[name] !== undefined ? values[name] : "";
4739                 }
4740             };
4741             return this.html.replace(this.re, fn);
4742         } catch (e) {
4743             Roo.log(e);
4744             throw e;
4745         }
4746          
4747     },
4748     
4749     loading : false,
4750       
4751     load : function ()
4752     {
4753          
4754         if (this.loading) {
4755             return;
4756         }
4757         var _t = this;
4758         
4759         this.loading = true;
4760         this.compiled = false;
4761         
4762         var cx = new Roo.data.Connection();
4763         cx.request({
4764             url : this.url,
4765             method : 'GET',
4766             success : function (response) {
4767                 _t.loading = false;
4768                 _t.url = false;
4769                 
4770                 _t.set(response.responseText,true);
4771                 _t.loaded = true;
4772                 if (_t.onLoad) {
4773                     _t.onLoad();
4774                 }
4775              },
4776             failure : function(response) {
4777                 Roo.log("Template failed to load from " + _t.url);
4778                 _t.loading = false;
4779             }
4780         });
4781     },
4782
4783     /**
4784      * Sets the HTML used as the template and optionally compiles it.
4785      * @param {String} html
4786      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4787      * @return {Roo.Template} this
4788      */
4789     set : function(html, compile){
4790         this.html = html;
4791         this.compiled = false;
4792         if(compile){
4793             this.compile();
4794         }
4795         return this;
4796     },
4797     
4798     /**
4799      * True to disable format functions (defaults to false)
4800      * @type Boolean
4801      */
4802     disableFormats : false,
4803     
4804     /**
4805     * The regular expression used to match template variables 
4806     * @type RegExp
4807     * @property 
4808     */
4809     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4810     
4811     /**
4812      * Compiles the template into an internal function, eliminating the RegEx overhead.
4813      * @return {Roo.Template} this
4814      */
4815     compile : function(){
4816         var fm = Roo.util.Format;
4817         var useF = this.disableFormats !== true;
4818         var sep = Roo.isGecko ? "+" : ",";
4819         var fn = function(m, name, format, args){
4820             if(format && useF){
4821                 args = args ? ',' + args : "";
4822                 if(format.substr(0, 5) != "this."){
4823                     format = "fm." + format + '(';
4824                 }else{
4825                     format = 'this.call("'+ format.substr(5) + '", ';
4826                     args = ", values";
4827                 }
4828             }else{
4829                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4830             }
4831             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4832         };
4833         var body;
4834         // branched to use + in gecko and [].join() in others
4835         if(Roo.isGecko){
4836             body = "this.compiled = function(values){ return '" +
4837                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4838                     "';};";
4839         }else{
4840             body = ["this.compiled = function(values){ return ['"];
4841             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4842             body.push("'].join('');};");
4843             body = body.join('');
4844         }
4845         /**
4846          * eval:var:values
4847          * eval:var:fm
4848          */
4849         eval(body);
4850         return this;
4851     },
4852     
4853     // private function used to call members
4854     call : function(fnName, value, allValues){
4855         return this[fnName](value, allValues);
4856     },
4857     
4858     /**
4859      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4860      * @param {String/HTMLElement/Roo.Element} el The context element
4861      * @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'})
4862      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4863      * @return {HTMLElement/Roo.Element} The new node or Element
4864      */
4865     insertFirst: function(el, values, returnElement){
4866         return this.doInsert('afterBegin', el, values, returnElement);
4867     },
4868
4869     /**
4870      * Applies the supplied values to the template and inserts the new node(s) before el.
4871      * @param {String/HTMLElement/Roo.Element} el The context element
4872      * @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'})
4873      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4874      * @return {HTMLElement/Roo.Element} The new node or Element
4875      */
4876     insertBefore: function(el, values, returnElement){
4877         return this.doInsert('beforeBegin', el, values, returnElement);
4878     },
4879
4880     /**
4881      * Applies the supplied values to the template and inserts the new node(s) after el.
4882      * @param {String/HTMLElement/Roo.Element} el The context element
4883      * @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'})
4884      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4885      * @return {HTMLElement/Roo.Element} The new node or Element
4886      */
4887     insertAfter : function(el, values, returnElement){
4888         return this.doInsert('afterEnd', el, values, returnElement);
4889     },
4890     
4891     /**
4892      * Applies the supplied values to the template and appends the new node(s) to el.
4893      * @param {String/HTMLElement/Roo.Element} el The context element
4894      * @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'})
4895      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4896      * @return {HTMLElement/Roo.Element} The new node or Element
4897      */
4898     append : function(el, values, returnElement){
4899         return this.doInsert('beforeEnd', el, values, returnElement);
4900     },
4901
4902     doInsert : function(where, el, values, returnEl){
4903         el = Roo.getDom(el);
4904         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4905         return returnEl ? Roo.get(newNode, true) : newNode;
4906     },
4907
4908     /**
4909      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4910      * @param {String/HTMLElement/Roo.Element} el The context element
4911      * @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'})
4912      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4913      * @return {HTMLElement/Roo.Element} The new node or Element
4914      */
4915     overwrite : function(el, values, returnElement){
4916         el = Roo.getDom(el);
4917         el.innerHTML = this.applyTemplate(values);
4918         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4919     }
4920 };
4921 /**
4922  * Alias for {@link #applyTemplate}
4923  * @method
4924  */
4925 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4926
4927 // backwards compat
4928 Roo.DomHelper.Template = Roo.Template;
4929
4930 /**
4931  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4932  * @param {String/HTMLElement} el A DOM element or its id
4933  * @returns {Roo.Template} The created template
4934  * @static
4935  */
4936 Roo.Template.from = function(el){
4937     el = Roo.getDom(el);
4938     return new Roo.Template(el.value || el.innerHTML);
4939 };/*
4940  * Based on:
4941  * Ext JS Library 1.1.1
4942  * Copyright(c) 2006-2007, Ext JS, LLC.
4943  *
4944  * Originally Released Under LGPL - original licence link has changed is not relivant.
4945  *
4946  * Fork - LGPL
4947  * <script type="text/javascript">
4948  */
4949  
4950
4951 /*
4952  * This is code is also distributed under MIT license for use
4953  * with jQuery and prototype JavaScript libraries.
4954  */
4955 /**
4956  * @class Roo.DomQuery
4957 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).
4958 <p>
4959 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>
4960
4961 <p>
4962 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.
4963 </p>
4964 <h4>Element Selectors:</h4>
4965 <ul class="list">
4966     <li> <b>*</b> any element</li>
4967     <li> <b>E</b> an element with the tag E</li>
4968     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4969     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4970     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4971     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4972 </ul>
4973 <h4>Attribute Selectors:</h4>
4974 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4975 <ul class="list">
4976     <li> <b>E[foo]</b> has an attribute "foo"</li>
4977     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4978     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4979     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4980     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4981     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4982     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4983 </ul>
4984 <h4>Pseudo Classes:</h4>
4985 <ul class="list">
4986     <li> <b>E:first-child</b> E is the first child of its parent</li>
4987     <li> <b>E:last-child</b> E is the last child of its parent</li>
4988     <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>
4989     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4990     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4991     <li> <b>E:only-child</b> E is the only child of its parent</li>
4992     <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>
4993     <li> <b>E:first</b> the first E in the resultset</li>
4994     <li> <b>E:last</b> the last E in the resultset</li>
4995     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4996     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4997     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4998     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4999     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5000     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5001     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5002     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5003     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5004 </ul>
5005 <h4>CSS Value Selectors:</h4>
5006 <ul class="list">
5007     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5008     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5009     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5010     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5011     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5012     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5013 </ul>
5014  * @singleton
5015  */
5016 Roo.DomQuery = function(){
5017     var cache = {}, simpleCache = {}, valueCache = {};
5018     var nonSpace = /\S/;
5019     var trimRe = /^\s+|\s+$/g;
5020     var tplRe = /\{(\d+)\}/g;
5021     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5022     var tagTokenRe = /^(#)?([\w-\*]+)/;
5023     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5024
5025     function child(p, index){
5026         var i = 0;
5027         var n = p.firstChild;
5028         while(n){
5029             if(n.nodeType == 1){
5030                if(++i == index){
5031                    return n;
5032                }
5033             }
5034             n = n.nextSibling;
5035         }
5036         return null;
5037     };
5038
5039     function next(n){
5040         while((n = n.nextSibling) && n.nodeType != 1);
5041         return n;
5042     };
5043
5044     function prev(n){
5045         while((n = n.previousSibling) && n.nodeType != 1);
5046         return n;
5047     };
5048
5049     function children(d){
5050         var n = d.firstChild, ni = -1;
5051             while(n){
5052                 var nx = n.nextSibling;
5053                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5054                     d.removeChild(n);
5055                 }else{
5056                     n.nodeIndex = ++ni;
5057                 }
5058                 n = nx;
5059             }
5060             return this;
5061         };
5062
5063     function byClassName(c, a, v){
5064         if(!v){
5065             return c;
5066         }
5067         var r = [], ri = -1, cn;
5068         for(var i = 0, ci; ci = c[i]; i++){
5069             if((' '+ci.className+' ').indexOf(v) != -1){
5070                 r[++ri] = ci;
5071             }
5072         }
5073         return r;
5074     };
5075
5076     function attrValue(n, attr){
5077         if(!n.tagName && typeof n.length != "undefined"){
5078             n = n[0];
5079         }
5080         if(!n){
5081             return null;
5082         }
5083         if(attr == "for"){
5084             return n.htmlFor;
5085         }
5086         if(attr == "class" || attr == "className"){
5087             return n.className;
5088         }
5089         return n.getAttribute(attr) || n[attr];
5090
5091     };
5092
5093     function getNodes(ns, mode, tagName){
5094         var result = [], ri = -1, cs;
5095         if(!ns){
5096             return result;
5097         }
5098         tagName = tagName || "*";
5099         if(typeof ns.getElementsByTagName != "undefined"){
5100             ns = [ns];
5101         }
5102         if(!mode){
5103             for(var i = 0, ni; ni = ns[i]; i++){
5104                 cs = ni.getElementsByTagName(tagName);
5105                 for(var j = 0, ci; ci = cs[j]; j++){
5106                     result[++ri] = ci;
5107                 }
5108             }
5109         }else if(mode == "/" || mode == ">"){
5110             var utag = tagName.toUpperCase();
5111             for(var i = 0, ni, cn; ni = ns[i]; i++){
5112                 cn = ni.children || ni.childNodes;
5113                 for(var j = 0, cj; cj = cn[j]; j++){
5114                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5115                         result[++ri] = cj;
5116                     }
5117                 }
5118             }
5119         }else if(mode == "+"){
5120             var utag = tagName.toUpperCase();
5121             for(var i = 0, n; n = ns[i]; i++){
5122                 while((n = n.nextSibling) && n.nodeType != 1);
5123                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5124                     result[++ri] = n;
5125                 }
5126             }
5127         }else if(mode == "~"){
5128             for(var i = 0, n; n = ns[i]; i++){
5129                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5130                 if(n){
5131                     result[++ri] = n;
5132                 }
5133             }
5134         }
5135         return result;
5136     };
5137
5138     function concat(a, b){
5139         if(b.slice){
5140             return a.concat(b);
5141         }
5142         for(var i = 0, l = b.length; i < l; i++){
5143             a[a.length] = b[i];
5144         }
5145         return a;
5146     }
5147
5148     function byTag(cs, tagName){
5149         if(cs.tagName || cs == document){
5150             cs = [cs];
5151         }
5152         if(!tagName){
5153             return cs;
5154         }
5155         var r = [], ri = -1;
5156         tagName = tagName.toLowerCase();
5157         for(var i = 0, ci; ci = cs[i]; i++){
5158             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5159                 r[++ri] = ci;
5160             }
5161         }
5162         return r;
5163     };
5164
5165     function byId(cs, attr, id){
5166         if(cs.tagName || cs == document){
5167             cs = [cs];
5168         }
5169         if(!id){
5170             return cs;
5171         }
5172         var r = [], ri = -1;
5173         for(var i = 0,ci; ci = cs[i]; i++){
5174             if(ci && ci.id == id){
5175                 r[++ri] = ci;
5176                 return r;
5177             }
5178         }
5179         return r;
5180     };
5181
5182     function byAttribute(cs, attr, value, op, custom){
5183         var r = [], ri = -1, st = custom=="{";
5184         var f = Roo.DomQuery.operators[op];
5185         for(var i = 0, ci; ci = cs[i]; i++){
5186             var a;
5187             if(st){
5188                 a = Roo.DomQuery.getStyle(ci, attr);
5189             }
5190             else if(attr == "class" || attr == "className"){
5191                 a = ci.className;
5192             }else if(attr == "for"){
5193                 a = ci.htmlFor;
5194             }else if(attr == "href"){
5195                 a = ci.getAttribute("href", 2);
5196             }else{
5197                 a = ci.getAttribute(attr);
5198             }
5199             if((f && f(a, value)) || (!f && a)){
5200                 r[++ri] = ci;
5201             }
5202         }
5203         return r;
5204     };
5205
5206     function byPseudo(cs, name, value){
5207         return Roo.DomQuery.pseudos[name](cs, value);
5208     };
5209
5210     // This is for IE MSXML which does not support expandos.
5211     // IE runs the same speed using setAttribute, however FF slows way down
5212     // and Safari completely fails so they need to continue to use expandos.
5213     var isIE = window.ActiveXObject ? true : false;
5214
5215     // this eval is stop the compressor from
5216     // renaming the variable to something shorter
5217     
5218     /** eval:var:batch */
5219     var batch = 30803; 
5220
5221     var key = 30803;
5222
5223     function nodupIEXml(cs){
5224         var d = ++key;
5225         cs[0].setAttribute("_nodup", d);
5226         var r = [cs[0]];
5227         for(var i = 1, len = cs.length; i < len; i++){
5228             var c = cs[i];
5229             if(!c.getAttribute("_nodup") != d){
5230                 c.setAttribute("_nodup", d);
5231                 r[r.length] = c;
5232             }
5233         }
5234         for(var i = 0, len = cs.length; i < len; i++){
5235             cs[i].removeAttribute("_nodup");
5236         }
5237         return r;
5238     }
5239
5240     function nodup(cs){
5241         if(!cs){
5242             return [];
5243         }
5244         var len = cs.length, c, i, r = cs, cj, ri = -1;
5245         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5246             return cs;
5247         }
5248         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5249             return nodupIEXml(cs);
5250         }
5251         var d = ++key;
5252         cs[0]._nodup = d;
5253         for(i = 1; c = cs[i]; i++){
5254             if(c._nodup != d){
5255                 c._nodup = d;
5256             }else{
5257                 r = [];
5258                 for(var j = 0; j < i; j++){
5259                     r[++ri] = cs[j];
5260                 }
5261                 for(j = i+1; cj = cs[j]; j++){
5262                     if(cj._nodup != d){
5263                         cj._nodup = d;
5264                         r[++ri] = cj;
5265                     }
5266                 }
5267                 return r;
5268             }
5269         }
5270         return r;
5271     }
5272
5273     function quickDiffIEXml(c1, c2){
5274         var d = ++key;
5275         for(var i = 0, len = c1.length; i < len; i++){
5276             c1[i].setAttribute("_qdiff", d);
5277         }
5278         var r = [];
5279         for(var i = 0, len = c2.length; i < len; i++){
5280             if(c2[i].getAttribute("_qdiff") != d){
5281                 r[r.length] = c2[i];
5282             }
5283         }
5284         for(var i = 0, len = c1.length; i < len; i++){
5285            c1[i].removeAttribute("_qdiff");
5286         }
5287         return r;
5288     }
5289
5290     function quickDiff(c1, c2){
5291         var len1 = c1.length;
5292         if(!len1){
5293             return c2;
5294         }
5295         if(isIE && c1[0].selectSingleNode){
5296             return quickDiffIEXml(c1, c2);
5297         }
5298         var d = ++key;
5299         for(var i = 0; i < len1; i++){
5300             c1[i]._qdiff = d;
5301         }
5302         var r = [];
5303         for(var i = 0, len = c2.length; i < len; i++){
5304             if(c2[i]._qdiff != d){
5305                 r[r.length] = c2[i];
5306             }
5307         }
5308         return r;
5309     }
5310
5311     function quickId(ns, mode, root, id){
5312         if(ns == root){
5313            var d = root.ownerDocument || root;
5314            return d.getElementById(id);
5315         }
5316         ns = getNodes(ns, mode, "*");
5317         return byId(ns, null, id);
5318     }
5319
5320     return {
5321         getStyle : function(el, name){
5322             return Roo.fly(el).getStyle(name);
5323         },
5324         /**
5325          * Compiles a selector/xpath query into a reusable function. The returned function
5326          * takes one parameter "root" (optional), which is the context node from where the query should start.
5327          * @param {String} selector The selector/xpath query
5328          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5329          * @return {Function}
5330          */
5331         compile : function(path, type){
5332             type = type || "select";
5333             
5334             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5335             var q = path, mode, lq;
5336             var tk = Roo.DomQuery.matchers;
5337             var tklen = tk.length;
5338             var mm;
5339
5340             // accept leading mode switch
5341             var lmode = q.match(modeRe);
5342             if(lmode && lmode[1]){
5343                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5344                 q = q.replace(lmode[1], "");
5345             }
5346             // strip leading slashes
5347             while(path.substr(0, 1)=="/"){
5348                 path = path.substr(1);
5349             }
5350
5351             while(q && lq != q){
5352                 lq = q;
5353                 var tm = q.match(tagTokenRe);
5354                 if(type == "select"){
5355                     if(tm){
5356                         if(tm[1] == "#"){
5357                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5358                         }else{
5359                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5360                         }
5361                         q = q.replace(tm[0], "");
5362                     }else if(q.substr(0, 1) != '@'){
5363                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5364                     }
5365                 }else{
5366                     if(tm){
5367                         if(tm[1] == "#"){
5368                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5369                         }else{
5370                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5371                         }
5372                         q = q.replace(tm[0], "");
5373                     }
5374                 }
5375                 while(!(mm = q.match(modeRe))){
5376                     var matched = false;
5377                     for(var j = 0; j < tklen; j++){
5378                         var t = tk[j];
5379                         var m = q.match(t.re);
5380                         if(m){
5381                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5382                                                     return m[i];
5383                                                 });
5384                             q = q.replace(m[0], "");
5385                             matched = true;
5386                             break;
5387                         }
5388                     }
5389                     // prevent infinite loop on bad selector
5390                     if(!matched){
5391                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5392                     }
5393                 }
5394                 if(mm[1]){
5395                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5396                     q = q.replace(mm[1], "");
5397                 }
5398             }
5399             fn[fn.length] = "return nodup(n);\n}";
5400             
5401              /** 
5402               * list of variables that need from compression as they are used by eval.
5403              *  eval:var:batch 
5404              *  eval:var:nodup
5405              *  eval:var:byTag
5406              *  eval:var:ById
5407              *  eval:var:getNodes
5408              *  eval:var:quickId
5409              *  eval:var:mode
5410              *  eval:var:root
5411              *  eval:var:n
5412              *  eval:var:byClassName
5413              *  eval:var:byPseudo
5414              *  eval:var:byAttribute
5415              *  eval:var:attrValue
5416              * 
5417              **/ 
5418             eval(fn.join(""));
5419             return f;
5420         },
5421
5422         /**
5423          * Selects a group of elements.
5424          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5425          * @param {Node} root (optional) The start of the query (defaults to document).
5426          * @return {Array}
5427          */
5428         select : function(path, root, type){
5429             if(!root || root == document){
5430                 root = document;
5431             }
5432             if(typeof root == "string"){
5433                 root = document.getElementById(root);
5434             }
5435             var paths = path.split(",");
5436             var results = [];
5437             for(var i = 0, len = paths.length; i < len; i++){
5438                 var p = paths[i].replace(trimRe, "");
5439                 if(!cache[p]){
5440                     cache[p] = Roo.DomQuery.compile(p);
5441                     if(!cache[p]){
5442                         throw p + " is not a valid selector";
5443                     }
5444                 }
5445                 var result = cache[p](root);
5446                 if(result && result != document){
5447                     results = results.concat(result);
5448                 }
5449             }
5450             if(paths.length > 1){
5451                 return nodup(results);
5452             }
5453             return results;
5454         },
5455
5456         /**
5457          * Selects a single element.
5458          * @param {String} selector The selector/xpath query
5459          * @param {Node} root (optional) The start of the query (defaults to document).
5460          * @return {Element}
5461          */
5462         selectNode : function(path, root){
5463             return Roo.DomQuery.select(path, root)[0];
5464         },
5465
5466         /**
5467          * Selects the value of a node, optionally replacing null with the defaultValue.
5468          * @param {String} selector The selector/xpath query
5469          * @param {Node} root (optional) The start of the query (defaults to document).
5470          * @param {String} defaultValue
5471          */
5472         selectValue : function(path, root, defaultValue){
5473             path = path.replace(trimRe, "");
5474             if(!valueCache[path]){
5475                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5476             }
5477             var n = valueCache[path](root);
5478             n = n[0] ? n[0] : n;
5479             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5480             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5481         },
5482
5483         /**
5484          * Selects the value of a node, parsing integers and floats.
5485          * @param {String} selector The selector/xpath query
5486          * @param {Node} root (optional) The start of the query (defaults to document).
5487          * @param {Number} defaultValue
5488          * @return {Number}
5489          */
5490         selectNumber : function(path, root, defaultValue){
5491             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5492             return parseFloat(v);
5493         },
5494
5495         /**
5496          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5497          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5498          * @param {String} selector The simple selector to test
5499          * @return {Boolean}
5500          */
5501         is : function(el, ss){
5502             if(typeof el == "string"){
5503                 el = document.getElementById(el);
5504             }
5505             var isArray = (el instanceof Array);
5506             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5507             return isArray ? (result.length == el.length) : (result.length > 0);
5508         },
5509
5510         /**
5511          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5512          * @param {Array} el An array of elements to filter
5513          * @param {String} selector The simple selector to test
5514          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5515          * the selector instead of the ones that match
5516          * @return {Array}
5517          */
5518         filter : function(els, ss, nonMatches){
5519             ss = ss.replace(trimRe, "");
5520             if(!simpleCache[ss]){
5521                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5522             }
5523             var result = simpleCache[ss](els);
5524             return nonMatches ? quickDiff(result, els) : result;
5525         },
5526
5527         /**
5528          * Collection of matching regular expressions and code snippets.
5529          */
5530         matchers : [{
5531                 re: /^\.([\w-]+)/,
5532                 select: 'n = byClassName(n, null, " {1} ");'
5533             }, {
5534                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5535                 select: 'n = byPseudo(n, "{1}", "{2}");'
5536             },{
5537                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5538                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5539             }, {
5540                 re: /^#([\w-]+)/,
5541                 select: 'n = byId(n, null, "{1}");'
5542             },{
5543                 re: /^@([\w-]+)/,
5544                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5545             }
5546         ],
5547
5548         /**
5549          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5550          * 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;.
5551          */
5552         operators : {
5553             "=" : function(a, v){
5554                 return a == v;
5555             },
5556             "!=" : function(a, v){
5557                 return a != v;
5558             },
5559             "^=" : function(a, v){
5560                 return a && a.substr(0, v.length) == v;
5561             },
5562             "$=" : function(a, v){
5563                 return a && a.substr(a.length-v.length) == v;
5564             },
5565             "*=" : function(a, v){
5566                 return a && a.indexOf(v) !== -1;
5567             },
5568             "%=" : function(a, v){
5569                 return (a % v) == 0;
5570             },
5571             "|=" : function(a, v){
5572                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5573             },
5574             "~=" : function(a, v){
5575                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5576             }
5577         },
5578
5579         /**
5580          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5581          * and the argument (if any) supplied in the selector.
5582          */
5583         pseudos : {
5584             "first-child" : function(c){
5585                 var r = [], ri = -1, n;
5586                 for(var i = 0, ci; ci = n = c[i]; i++){
5587                     while((n = n.previousSibling) && n.nodeType != 1);
5588                     if(!n){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "last-child" : function(c){
5596                 var r = [], ri = -1, n;
5597                 for(var i = 0, ci; ci = n = c[i]; i++){
5598                     while((n = n.nextSibling) && n.nodeType != 1);
5599                     if(!n){
5600                         r[++ri] = ci;
5601                     }
5602                 }
5603                 return r;
5604             },
5605
5606             "nth-child" : function(c, a) {
5607                 var r = [], ri = -1;
5608                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5609                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5610                 for(var i = 0, n; n = c[i]; i++){
5611                     var pn = n.parentNode;
5612                     if (batch != pn._batch) {
5613                         var j = 0;
5614                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5615                             if(cn.nodeType == 1){
5616                                cn.nodeIndex = ++j;
5617                             }
5618                         }
5619                         pn._batch = batch;
5620                     }
5621                     if (f == 1) {
5622                         if (l == 0 || n.nodeIndex == l){
5623                             r[++ri] = n;
5624                         }
5625                     } else if ((n.nodeIndex + l) % f == 0){
5626                         r[++ri] = n;
5627                     }
5628                 }
5629
5630                 return r;
5631             },
5632
5633             "only-child" : function(c){
5634                 var r = [], ri = -1;;
5635                 for(var i = 0, ci; ci = c[i]; i++){
5636                     if(!prev(ci) && !next(ci)){
5637                         r[++ri] = ci;
5638                     }
5639                 }
5640                 return r;
5641             },
5642
5643             "empty" : function(c){
5644                 var r = [], ri = -1;
5645                 for(var i = 0, ci; ci = c[i]; i++){
5646                     var cns = ci.childNodes, j = 0, cn, empty = true;
5647                     while(cn = cns[j]){
5648                         ++j;
5649                         if(cn.nodeType == 1 || cn.nodeType == 3){
5650                             empty = false;
5651                             break;
5652                         }
5653                     }
5654                     if(empty){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "contains" : function(c, v){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5665                         r[++ri] = ci;
5666                     }
5667                 }
5668                 return r;
5669             },
5670
5671             "nodeValue" : function(c, v){
5672                 var r = [], ri = -1;
5673                 for(var i = 0, ci; ci = c[i]; i++){
5674                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5675                         r[++ri] = ci;
5676                     }
5677                 }
5678                 return r;
5679             },
5680
5681             "checked" : function(c){
5682                 var r = [], ri = -1;
5683                 for(var i = 0, ci; ci = c[i]; i++){
5684                     if(ci.checked == true){
5685                         r[++ri] = ci;
5686                     }
5687                 }
5688                 return r;
5689             },
5690
5691             "not" : function(c, ss){
5692                 return Roo.DomQuery.filter(c, ss, true);
5693             },
5694
5695             "odd" : function(c){
5696                 return this["nth-child"](c, "odd");
5697             },
5698
5699             "even" : function(c){
5700                 return this["nth-child"](c, "even");
5701             },
5702
5703             "nth" : function(c, a){
5704                 return c[a-1] || [];
5705             },
5706
5707             "first" : function(c){
5708                 return c[0] || [];
5709             },
5710
5711             "last" : function(c){
5712                 return c[c.length-1] || [];
5713             },
5714
5715             "has" : function(c, ss){
5716                 var s = Roo.DomQuery.select;
5717                 var r = [], ri = -1;
5718                 for(var i = 0, ci; ci = c[i]; i++){
5719                     if(s(ss, ci).length > 0){
5720                         r[++ri] = ci;
5721                     }
5722                 }
5723                 return r;
5724             },
5725
5726             "next" : function(c, ss){
5727                 var is = Roo.DomQuery.is;
5728                 var r = [], ri = -1;
5729                 for(var i = 0, ci; ci = c[i]; i++){
5730                     var n = next(ci);
5731                     if(n && is(n, ss)){
5732                         r[++ri] = ci;
5733                     }
5734                 }
5735                 return r;
5736             },
5737
5738             "prev" : function(c, ss){
5739                 var is = Roo.DomQuery.is;
5740                 var r = [], ri = -1;
5741                 for(var i = 0, ci; ci = c[i]; i++){
5742                     var n = prev(ci);
5743                     if(n && is(n, ss)){
5744                         r[++ri] = ci;
5745                     }
5746                 }
5747                 return r;
5748             }
5749         }
5750     };
5751 }();
5752
5753 /**
5754  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5755  * @param {String} path The selector/xpath query
5756  * @param {Node} root (optional) The start of the query (defaults to document).
5757  * @return {Array}
5758  * @member Roo
5759  * @method query
5760  */
5761 Roo.query = Roo.DomQuery.select;
5762 /*
5763  * Based on:
5764  * Ext JS Library 1.1.1
5765  * Copyright(c) 2006-2007, Ext JS, LLC.
5766  *
5767  * Originally Released Under LGPL - original licence link has changed is not relivant.
5768  *
5769  * Fork - LGPL
5770  * <script type="text/javascript">
5771  */
5772
5773 /**
5774  * @class Roo.util.Observable
5775  * Base class that provides a common interface for publishing events. Subclasses are expected to
5776  * to have a property "events" with all the events defined.<br>
5777  * For example:
5778  * <pre><code>
5779  Employee = function(name){
5780     this.name = name;
5781     this.addEvents({
5782         "fired" : true,
5783         "quit" : true
5784     });
5785  }
5786  Roo.extend(Employee, Roo.util.Observable);
5787 </code></pre>
5788  * @param {Object} config properties to use (incuding events / listeners)
5789  */
5790
5791 Roo.util.Observable = function(cfg){
5792     
5793     cfg = cfg|| {};
5794     this.addEvents(cfg.events || {});
5795     if (cfg.events) {
5796         delete cfg.events; // make sure
5797     }
5798      
5799     Roo.apply(this, cfg);
5800     
5801     if(this.listeners){
5802         this.on(this.listeners);
5803         delete this.listeners;
5804     }
5805 };
5806 Roo.util.Observable.prototype = {
5807     /** 
5808  * @cfg {Object} listeners  list of events and functions to call for this object, 
5809  * For example :
5810  * <pre><code>
5811     listeners :  { 
5812        'click' : function(e) {
5813            ..... 
5814         } ,
5815         .... 
5816     } 
5817   </code></pre>
5818  */
5819     
5820     
5821     /**
5822      * Fires the specified event with the passed parameters (minus the event name).
5823      * @param {String} eventName
5824      * @param {Object...} args Variable number of parameters are passed to handlers
5825      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5826      */
5827     fireEvent : function(){
5828         var ce = this.events[arguments[0].toLowerCase()];
5829         if(typeof ce == "object"){
5830             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5831         }else{
5832             return true;
5833         }
5834     },
5835
5836     // private
5837     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5838
5839     /**
5840      * Appends an event handler to this component
5841      * @param {String}   eventName The type of event to listen for
5842      * @param {Function} handler The method the event invokes
5843      * @param {Object}   scope (optional) The scope in which to execute the handler
5844      * function. The handler function's "this" context.
5845      * @param {Object}   options (optional) An object containing handler configuration
5846      * properties. This may contain any of the following properties:<ul>
5847      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5848      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5849      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5850      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5851      * by the specified number of milliseconds. If the event fires again within that time, the original
5852      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5853      * </ul><br>
5854      * <p>
5855      * <b>Combining Options</b><br>
5856      * Using the options argument, it is possible to combine different types of listeners:<br>
5857      * <br>
5858      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5859                 <pre><code>
5860                 el.on('click', this.onClick, this, {
5861                         single: true,
5862                 delay: 100,
5863                 forumId: 4
5864                 });
5865                 </code></pre>
5866      * <p>
5867      * <b>Attaching multiple handlers in 1 call</b><br>
5868      * The method also allows for a single argument to be passed which is a config object containing properties
5869      * which specify multiple handlers.
5870      * <pre><code>
5871                 el.on({
5872                         'click': {
5873                         fn: this.onClick,
5874                         scope: this,
5875                         delay: 100
5876                 }, 
5877                 'mouseover': {
5878                         fn: this.onMouseOver,
5879                         scope: this
5880                 },
5881                 'mouseout': {
5882                         fn: this.onMouseOut,
5883                         scope: this
5884                 }
5885                 });
5886                 </code></pre>
5887      * <p>
5888      * Or a shorthand syntax which passes the same scope object to all handlers:
5889         <pre><code>
5890                 el.on({
5891                         'click': this.onClick,
5892                 'mouseover': this.onMouseOver,
5893                 'mouseout': this.onMouseOut,
5894                 scope: this
5895                 });
5896                 </code></pre>
5897      */
5898     addListener : function(eventName, fn, scope, o){
5899         if(typeof eventName == "object"){
5900             o = eventName;
5901             for(var e in o){
5902                 if(this.filterOptRe.test(e)){
5903                     continue;
5904                 }
5905                 if(typeof o[e] == "function"){
5906                     // shared options
5907                     this.addListener(e, o[e], o.scope,  o);
5908                 }else{
5909                     // individual options
5910                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5911                 }
5912             }
5913             return;
5914         }
5915         o = (!o || typeof o == "boolean") ? {} : o;
5916         eventName = eventName.toLowerCase();
5917         var ce = this.events[eventName] || true;
5918         if(typeof ce == "boolean"){
5919             ce = new Roo.util.Event(this, eventName);
5920             this.events[eventName] = ce;
5921         }
5922         ce.addListener(fn, scope, o);
5923     },
5924
5925     /**
5926      * Removes a listener
5927      * @param {String}   eventName     The type of event to listen for
5928      * @param {Function} handler        The handler to remove
5929      * @param {Object}   scope  (optional) The scope (this object) for the handler
5930      */
5931     removeListener : function(eventName, fn, scope){
5932         var ce = this.events[eventName.toLowerCase()];
5933         if(typeof ce == "object"){
5934             ce.removeListener(fn, scope);
5935         }
5936     },
5937
5938     /**
5939      * Removes all listeners for this object
5940      */
5941     purgeListeners : function(){
5942         for(var evt in this.events){
5943             if(typeof this.events[evt] == "object"){
5944                  this.events[evt].clearListeners();
5945             }
5946         }
5947     },
5948
5949     relayEvents : function(o, events){
5950         var createHandler = function(ename){
5951             return function(){
5952                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5953             };
5954         };
5955         for(var i = 0, len = events.length; i < len; i++){
5956             var ename = events[i];
5957             if(!this.events[ename]){ this.events[ename] = true; };
5958             o.on(ename, createHandler(ename), this);
5959         }
5960     },
5961
5962     /**
5963      * Used to define events on this Observable
5964      * @param {Object} object The object with the events defined
5965      */
5966     addEvents : function(o){
5967         if(!this.events){
5968             this.events = {};
5969         }
5970         Roo.applyIf(this.events, o);
5971     },
5972
5973     /**
5974      * Checks to see if this object has any listeners for a specified event
5975      * @param {String} eventName The name of the event to check for
5976      * @return {Boolean} True if the event is being listened for, else false
5977      */
5978     hasListener : function(eventName){
5979         var e = this.events[eventName];
5980         return typeof e == "object" && e.listeners.length > 0;
5981     }
5982 };
5983 /**
5984  * Appends an event handler to this element (shorthand for addListener)
5985  * @param {String}   eventName     The type of event to listen for
5986  * @param {Function} handler        The method the event invokes
5987  * @param {Object}   scope (optional) The scope in which to execute the handler
5988  * function. The handler function's "this" context.
5989  * @param {Object}   options  (optional)
5990  * @method
5991  */
5992 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5993 /**
5994  * Removes a listener (shorthand for removeListener)
5995  * @param {String}   eventName     The type of event to listen for
5996  * @param {Function} handler        The handler to remove
5997  * @param {Object}   scope  (optional) The scope (this object) for the handler
5998  * @method
5999  */
6000 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6001
6002 /**
6003  * Starts capture on the specified Observable. All events will be passed
6004  * to the supplied function with the event name + standard signature of the event
6005  * <b>before</b> the event is fired. If the supplied function returns false,
6006  * the event will not fire.
6007  * @param {Observable} o The Observable to capture
6008  * @param {Function} fn The function to call
6009  * @param {Object} scope (optional) The scope (this object) for the fn
6010  * @static
6011  */
6012 Roo.util.Observable.capture = function(o, fn, scope){
6013     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6014 };
6015
6016 /**
6017  * Removes <b>all</b> added captures from the Observable.
6018  * @param {Observable} o The Observable to release
6019  * @static
6020  */
6021 Roo.util.Observable.releaseCapture = function(o){
6022     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6023 };
6024
6025 (function(){
6026
6027     var createBuffered = function(h, o, scope){
6028         var task = new Roo.util.DelayedTask();
6029         return function(){
6030             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6031         };
6032     };
6033
6034     var createSingle = function(h, e, fn, scope){
6035         return function(){
6036             e.removeListener(fn, scope);
6037             return h.apply(scope, arguments);
6038         };
6039     };
6040
6041     var createDelayed = function(h, o, scope){
6042         return function(){
6043             var args = Array.prototype.slice.call(arguments, 0);
6044             setTimeout(function(){
6045                 h.apply(scope, args);
6046             }, o.delay || 10);
6047         };
6048     };
6049
6050     Roo.util.Event = function(obj, name){
6051         this.name = name;
6052         this.obj = obj;
6053         this.listeners = [];
6054     };
6055
6056     Roo.util.Event.prototype = {
6057         addListener : function(fn, scope, options){
6058             var o = options || {};
6059             scope = scope || this.obj;
6060             if(!this.isListening(fn, scope)){
6061                 var l = {fn: fn, scope: scope, options: o};
6062                 var h = fn;
6063                 if(o.delay){
6064                     h = createDelayed(h, o, scope);
6065                 }
6066                 if(o.single){
6067                     h = createSingle(h, this, fn, scope);
6068                 }
6069                 if(o.buffer){
6070                     h = createBuffered(h, o, scope);
6071                 }
6072                 l.fireFn = h;
6073                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6074                     this.listeners.push(l);
6075                 }else{
6076                     this.listeners = this.listeners.slice(0);
6077                     this.listeners.push(l);
6078                 }
6079             }
6080         },
6081
6082         findListener : function(fn, scope){
6083             scope = scope || this.obj;
6084             var ls = this.listeners;
6085             for(var i = 0, len = ls.length; i < len; i++){
6086                 var l = ls[i];
6087                 if(l.fn == fn && l.scope == scope){
6088                     return i;
6089                 }
6090             }
6091             return -1;
6092         },
6093
6094         isListening : function(fn, scope){
6095             return this.findListener(fn, scope) != -1;
6096         },
6097
6098         removeListener : function(fn, scope){
6099             var index;
6100             if((index = this.findListener(fn, scope)) != -1){
6101                 if(!this.firing){
6102                     this.listeners.splice(index, 1);
6103                 }else{
6104                     this.listeners = this.listeners.slice(0);
6105                     this.listeners.splice(index, 1);
6106                 }
6107                 return true;
6108             }
6109             return false;
6110         },
6111
6112         clearListeners : function(){
6113             this.listeners = [];
6114         },
6115
6116         fire : function(){
6117             var ls = this.listeners, scope, len = ls.length;
6118             if(len > 0){
6119                 this.firing = true;
6120                 var args = Array.prototype.slice.call(arguments, 0);                
6121                 for(var i = 0; i < len; i++){
6122                     var l = ls[i];
6123                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6124                         this.firing = false;
6125                         return false;
6126                     }
6127                 }
6128                 this.firing = false;
6129             }
6130             return true;
6131         }
6132     };
6133 })();/*
6134  * RooJS Library 
6135  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6136  *
6137  * Licence LGPL 
6138  *
6139  */
6140  
6141 /**
6142  * @class Roo.Document
6143  * @extends Roo.util.Observable
6144  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6145  * 
6146  * @param {Object} config the methods and properties of the 'base' class for the application.
6147  * 
6148  *  Generic Page handler - implement this to start your app..
6149  * 
6150  * eg.
6151  *  MyProject = new Roo.Document({
6152         events : {
6153             'load' : true // your events..
6154         },
6155         listeners : {
6156             'ready' : function() {
6157                 // fired on Roo.onReady()
6158             }
6159         }
6160  * 
6161  */
6162 Roo.Document = function(cfg) {
6163      
6164     this.addEvents({ 
6165         'ready' : true
6166     });
6167     Roo.util.Observable.call(this,cfg);
6168     
6169     var _this = this;
6170     
6171     Roo.onReady(function() {
6172         _this.fireEvent('ready');
6173     },null,false);
6174     
6175     
6176 }
6177
6178 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6179  * Based on:
6180  * Ext JS Library 1.1.1
6181  * Copyright(c) 2006-2007, Ext JS, LLC.
6182  *
6183  * Originally Released Under LGPL - original licence link has changed is not relivant.
6184  *
6185  * Fork - LGPL
6186  * <script type="text/javascript">
6187  */
6188
6189 /**
6190  * @class Roo.EventManager
6191  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6192  * several useful events directly.
6193  * See {@link Roo.EventObject} for more details on normalized event objects.
6194  * @singleton
6195  */
6196 Roo.EventManager = function(){
6197     var docReadyEvent, docReadyProcId, docReadyState = false;
6198     var resizeEvent, resizeTask, textEvent, textSize;
6199     var E = Roo.lib.Event;
6200     var D = Roo.lib.Dom;
6201
6202     
6203     
6204
6205     var fireDocReady = function(){
6206         if(!docReadyState){
6207             docReadyState = true;
6208             Roo.isReady = true;
6209             if(docReadyProcId){
6210                 clearInterval(docReadyProcId);
6211             }
6212             if(Roo.isGecko || Roo.isOpera) {
6213                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6214             }
6215             if(Roo.isIE){
6216                 var defer = document.getElementById("ie-deferred-loader");
6217                 if(defer){
6218                     defer.onreadystatechange = null;
6219                     defer.parentNode.removeChild(defer);
6220                 }
6221             }
6222             if(docReadyEvent){
6223                 docReadyEvent.fire();
6224                 docReadyEvent.clearListeners();
6225             }
6226         }
6227     };
6228     
6229     var initDocReady = function(){
6230         docReadyEvent = new Roo.util.Event();
6231         if(Roo.isGecko || Roo.isOpera) {
6232             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6233         }else if(Roo.isIE){
6234             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6235             var defer = document.getElementById("ie-deferred-loader");
6236             defer.onreadystatechange = function(){
6237                 if(this.readyState == "complete"){
6238                     fireDocReady();
6239                 }
6240             };
6241         }else if(Roo.isSafari){ 
6242             docReadyProcId = setInterval(function(){
6243                 var rs = document.readyState;
6244                 if(rs == "complete") {
6245                     fireDocReady();     
6246                  }
6247             }, 10);
6248         }
6249         // no matter what, make sure it fires on load
6250         E.on(window, "load", fireDocReady);
6251     };
6252
6253     var createBuffered = function(h, o){
6254         var task = new Roo.util.DelayedTask(h);
6255         return function(e){
6256             // create new event object impl so new events don't wipe out properties
6257             e = new Roo.EventObjectImpl(e);
6258             task.delay(o.buffer, h, null, [e]);
6259         };
6260     };
6261
6262     var createSingle = function(h, el, ename, fn){
6263         return function(e){
6264             Roo.EventManager.removeListener(el, ename, fn);
6265             h(e);
6266         };
6267     };
6268
6269     var createDelayed = function(h, o){
6270         return function(e){
6271             // create new event object impl so new events don't wipe out properties
6272             e = new Roo.EventObjectImpl(e);
6273             setTimeout(function(){
6274                 h(e);
6275             }, o.delay || 10);
6276         };
6277     };
6278     var transitionEndVal = false;
6279     
6280     var transitionEnd = function()
6281     {
6282         if (transitionEndVal) {
6283             return transitionEndVal;
6284         }
6285         var el = document.createElement('div');
6286
6287         var transEndEventNames = {
6288             WebkitTransition : 'webkitTransitionEnd',
6289             MozTransition    : 'transitionend',
6290             OTransition      : 'oTransitionEnd otransitionend',
6291             transition       : 'transitionend'
6292         };
6293     
6294         for (var name in transEndEventNames) {
6295             if (el.style[name] !== undefined) {
6296                 transitionEndVal = transEndEventNames[name];
6297                 return  transitionEndVal ;
6298             }
6299         }
6300     }
6301     
6302
6303     var listen = function(element, ename, opt, fn, scope){
6304         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6305         fn = fn || o.fn; scope = scope || o.scope;
6306         var el = Roo.getDom(element);
6307         
6308         
6309         if(!el){
6310             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6311         }
6312         
6313         if (ename == 'transitionend') {
6314             ename = transitionEnd();
6315         }
6316         var h = function(e){
6317             e = Roo.EventObject.setEvent(e);
6318             var t;
6319             if(o.delegate){
6320                 t = e.getTarget(o.delegate, el);
6321                 if(!t){
6322                     return;
6323                 }
6324             }else{
6325                 t = e.target;
6326             }
6327             if(o.stopEvent === true){
6328                 e.stopEvent();
6329             }
6330             if(o.preventDefault === true){
6331                e.preventDefault();
6332             }
6333             if(o.stopPropagation === true){
6334                 e.stopPropagation();
6335             }
6336
6337             if(o.normalized === false){
6338                 e = e.browserEvent;
6339             }
6340
6341             fn.call(scope || el, e, t, o);
6342         };
6343         if(o.delay){
6344             h = createDelayed(h, o);
6345         }
6346         if(o.single){
6347             h = createSingle(h, el, ename, fn);
6348         }
6349         if(o.buffer){
6350             h = createBuffered(h, o);
6351         }
6352         
6353         fn._handlers = fn._handlers || [];
6354         
6355         
6356         fn._handlers.push([Roo.id(el), ename, h]);
6357         
6358         
6359          
6360         E.on(el, ename, h);
6361         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6362             el.addEventListener("DOMMouseScroll", h, false);
6363             E.on(window, 'unload', function(){
6364                 el.removeEventListener("DOMMouseScroll", h, false);
6365             });
6366         }
6367         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6368             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6369         }
6370         return h;
6371     };
6372
6373     var stopListening = function(el, ename, fn){
6374         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6375         if(hds){
6376             for(var i = 0, len = hds.length; i < len; i++){
6377                 var h = hds[i];
6378                 if(h[0] == id && h[1] == ename){
6379                     hd = h[2];
6380                     hds.splice(i, 1);
6381                     break;
6382                 }
6383             }
6384         }
6385         E.un(el, ename, hd);
6386         el = Roo.getDom(el);
6387         if(ename == "mousewheel" && el.addEventListener){
6388             el.removeEventListener("DOMMouseScroll", hd, false);
6389         }
6390         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6391             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6392         }
6393     };
6394
6395     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6396     
6397     var pub = {
6398         
6399         
6400         /** 
6401          * Fix for doc tools
6402          * @scope Roo.EventManager
6403          */
6404         
6405         
6406         /** 
6407          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6408          * object with a Roo.EventObject
6409          * @param {Function} fn        The method the event invokes
6410          * @param {Object}   scope    An object that becomes the scope of the handler
6411          * @param {boolean}  override If true, the obj passed in becomes
6412          *                             the execution scope of the listener
6413          * @return {Function} The wrapped function
6414          * @deprecated
6415          */
6416         wrap : function(fn, scope, override){
6417             return function(e){
6418                 Roo.EventObject.setEvent(e);
6419                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6420             };
6421         },
6422         
6423         /**
6424      * Appends an event handler to an element (shorthand for addListener)
6425      * @param {String/HTMLElement}   element        The html element or id to assign the
6426      * @param {String}   eventName The type of event to listen for
6427      * @param {Function} handler The method the event invokes
6428      * @param {Object}   scope (optional) The scope in which to execute the handler
6429      * function. The handler function's "this" context.
6430      * @param {Object}   options (optional) An object containing handler configuration
6431      * properties. This may contain any of the following properties:<ul>
6432      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6433      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6434      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6435      * <li>preventDefault {Boolean} True to prevent the default action</li>
6436      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6437      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6438      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6439      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6440      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6441      * by the specified number of milliseconds. If the event fires again within that time, the original
6442      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6443      * </ul><br>
6444      * <p>
6445      * <b>Combining Options</b><br>
6446      * Using the options argument, it is possible to combine different types of listeners:<br>
6447      * <br>
6448      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6449      * Code:<pre><code>
6450 el.on('click', this.onClick, this, {
6451     single: true,
6452     delay: 100,
6453     stopEvent : true,
6454     forumId: 4
6455 });</code></pre>
6456      * <p>
6457      * <b>Attaching multiple handlers in 1 call</b><br>
6458       * The method also allows for a single argument to be passed which is a config object containing properties
6459      * which specify multiple handlers.
6460      * <p>
6461      * Code:<pre><code>
6462 el.on({
6463     'click' : {
6464         fn: this.onClick
6465         scope: this,
6466         delay: 100
6467     },
6468     'mouseover' : {
6469         fn: this.onMouseOver
6470         scope: this
6471     },
6472     'mouseout' : {
6473         fn: this.onMouseOut
6474         scope: this
6475     }
6476 });</code></pre>
6477      * <p>
6478      * Or a shorthand syntax:<br>
6479      * Code:<pre><code>
6480 el.on({
6481     'click' : this.onClick,
6482     'mouseover' : this.onMouseOver,
6483     'mouseout' : this.onMouseOut
6484     scope: this
6485 });</code></pre>
6486      */
6487         addListener : function(element, eventName, fn, scope, options){
6488             if(typeof eventName == "object"){
6489                 var o = eventName;
6490                 for(var e in o){
6491                     if(propRe.test(e)){
6492                         continue;
6493                     }
6494                     if(typeof o[e] == "function"){
6495                         // shared options
6496                         listen(element, e, o, o[e], o.scope);
6497                     }else{
6498                         // individual options
6499                         listen(element, e, o[e]);
6500                     }
6501                 }
6502                 return;
6503             }
6504             return listen(element, eventName, options, fn, scope);
6505         },
6506         
6507         /**
6508          * Removes an event handler
6509          *
6510          * @param {String/HTMLElement}   element        The id or html element to remove the 
6511          *                             event from
6512          * @param {String}   eventName     The type of event
6513          * @param {Function} fn
6514          * @return {Boolean} True if a listener was actually removed
6515          */
6516         removeListener : function(element, eventName, fn){
6517             return stopListening(element, eventName, fn);
6518         },
6519         
6520         /**
6521          * Fires when the document is ready (before onload and before images are loaded). Can be 
6522          * accessed shorthanded Roo.onReady().
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         onDocumentReady : function(fn, scope, options){
6528             if(docReadyState){ // if it already fired
6529                 docReadyEvent.addListener(fn, scope, options);
6530                 docReadyEvent.fire();
6531                 docReadyEvent.clearListeners();
6532                 return;
6533             }
6534             if(!docReadyEvent){
6535                 initDocReady();
6536             }
6537             docReadyEvent.addListener(fn, scope, options);
6538         },
6539         
6540         /**
6541          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6542          * @param {Function} fn        The method the event invokes
6543          * @param {Object}   scope    An object that becomes the scope of the handler
6544          * @param {boolean}  options
6545          */
6546         onWindowResize : function(fn, scope, options){
6547             if(!resizeEvent){
6548                 resizeEvent = new Roo.util.Event();
6549                 resizeTask = new Roo.util.DelayedTask(function(){
6550                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6551                 });
6552                 E.on(window, "resize", function(){
6553                     if(Roo.isIE){
6554                         resizeTask.delay(50);
6555                     }else{
6556                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6557                     }
6558                 });
6559             }
6560             resizeEvent.addListener(fn, scope, options);
6561         },
6562
6563         /**
6564          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6565          * @param {Function} fn        The method the event invokes
6566          * @param {Object}   scope    An object that becomes the scope of the handler
6567          * @param {boolean}  options
6568          */
6569         onTextResize : function(fn, scope, options){
6570             if(!textEvent){
6571                 textEvent = new Roo.util.Event();
6572                 var textEl = new Roo.Element(document.createElement('div'));
6573                 textEl.dom.className = 'x-text-resize';
6574                 textEl.dom.innerHTML = 'X';
6575                 textEl.appendTo(document.body);
6576                 textSize = textEl.dom.offsetHeight;
6577                 setInterval(function(){
6578                     if(textEl.dom.offsetHeight != textSize){
6579                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6580                     }
6581                 }, this.textResizeInterval);
6582             }
6583             textEvent.addListener(fn, scope, options);
6584         },
6585
6586         /**
6587          * Removes the passed window resize listener.
6588          * @param {Function} fn        The method the event invokes
6589          * @param {Object}   scope    The scope of handler
6590          */
6591         removeResizeListener : function(fn, scope){
6592             if(resizeEvent){
6593                 resizeEvent.removeListener(fn, scope);
6594             }
6595         },
6596
6597         // private
6598         fireResize : function(){
6599             if(resizeEvent){
6600                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6601             }   
6602         },
6603         /**
6604          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6605          */
6606         ieDeferSrc : false,
6607         /**
6608          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6609          */
6610         textResizeInterval : 50
6611     };
6612     
6613     /**
6614      * Fix for doc tools
6615      * @scopeAlias pub=Roo.EventManager
6616      */
6617     
6618      /**
6619      * Appends an event handler to an element (shorthand for addListener)
6620      * @param {String/HTMLElement}   element        The html element or id to assign the
6621      * @param {String}   eventName The type of event to listen for
6622      * @param {Function} handler The method the event invokes
6623      * @param {Object}   scope (optional) The scope in which to execute the handler
6624      * function. The handler function's "this" context.
6625      * @param {Object}   options (optional) An object containing handler configuration
6626      * properties. This may contain any of the following properties:<ul>
6627      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6628      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6629      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6630      * <li>preventDefault {Boolean} True to prevent the default action</li>
6631      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6632      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6633      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6634      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6635      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6636      * by the specified number of milliseconds. If the event fires again within that time, the original
6637      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6638      * </ul><br>
6639      * <p>
6640      * <b>Combining Options</b><br>
6641      * Using the options argument, it is possible to combine different types of listeners:<br>
6642      * <br>
6643      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6644      * Code:<pre><code>
6645 el.on('click', this.onClick, this, {
6646     single: true,
6647     delay: 100,
6648     stopEvent : true,
6649     forumId: 4
6650 });</code></pre>
6651      * <p>
6652      * <b>Attaching multiple handlers in 1 call</b><br>
6653       * The method also allows for a single argument to be passed which is a config object containing properties
6654      * which specify multiple handlers.
6655      * <p>
6656      * Code:<pre><code>
6657 el.on({
6658     'click' : {
6659         fn: this.onClick
6660         scope: this,
6661         delay: 100
6662     },
6663     'mouseover' : {
6664         fn: this.onMouseOver
6665         scope: this
6666     },
6667     'mouseout' : {
6668         fn: this.onMouseOut
6669         scope: this
6670     }
6671 });</code></pre>
6672      * <p>
6673      * Or a shorthand syntax:<br>
6674      * Code:<pre><code>
6675 el.on({
6676     'click' : this.onClick,
6677     'mouseover' : this.onMouseOver,
6678     'mouseout' : this.onMouseOut
6679     scope: this
6680 });</code></pre>
6681      */
6682     pub.on = pub.addListener;
6683     pub.un = pub.removeListener;
6684
6685     pub.stoppedMouseDownEvent = new Roo.util.Event();
6686     return pub;
6687 }();
6688 /**
6689   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6690   * @param {Function} fn        The method the event invokes
6691   * @param {Object}   scope    An  object that becomes the scope of the handler
6692   * @param {boolean}  override If true, the obj passed in becomes
6693   *                             the execution scope of the listener
6694   * @member Roo
6695   * @method onReady
6696  */
6697 Roo.onReady = Roo.EventManager.onDocumentReady;
6698
6699 Roo.onReady(function(){
6700     var bd = Roo.get(document.body);
6701     if(!bd){ return; }
6702
6703     var cls = [
6704             Roo.isIE ? "roo-ie"
6705             : Roo.isIE11 ? "roo-ie11"
6706             : Roo.isEdge ? "roo-edge"
6707             : Roo.isGecko ? "roo-gecko"
6708             : Roo.isOpera ? "roo-opera"
6709             : Roo.isSafari ? "roo-safari" : ""];
6710
6711     if(Roo.isMac){
6712         cls.push("roo-mac");
6713     }
6714     if(Roo.isLinux){
6715         cls.push("roo-linux");
6716     }
6717     if(Roo.isIOS){
6718         cls.push("roo-ios");
6719     }
6720     if(Roo.isTouch){
6721         cls.push("roo-touch");
6722     }
6723     if(Roo.isBorderBox){
6724         cls.push('roo-border-box');
6725     }
6726     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6727         var p = bd.dom.parentNode;
6728         if(p){
6729             p.className += ' roo-strict';
6730         }
6731     }
6732     bd.addClass(cls.join(' '));
6733 });
6734
6735 /**
6736  * @class Roo.EventObject
6737  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6738  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6739  * Example:
6740  * <pre><code>
6741  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6742     e.preventDefault();
6743     var target = e.getTarget();
6744     ...
6745  }
6746  var myDiv = Roo.get("myDiv");
6747  myDiv.on("click", handleClick);
6748  //or
6749  Roo.EventManager.on("myDiv", 'click', handleClick);
6750  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6751  </code></pre>
6752  * @singleton
6753  */
6754 Roo.EventObject = function(){
6755     
6756     var E = Roo.lib.Event;
6757     
6758     // safari keypress events for special keys return bad keycodes
6759     var safariKeys = {
6760         63234 : 37, // left
6761         63235 : 39, // right
6762         63232 : 38, // up
6763         63233 : 40, // down
6764         63276 : 33, // page up
6765         63277 : 34, // page down
6766         63272 : 46, // delete
6767         63273 : 36, // home
6768         63275 : 35  // end
6769     };
6770
6771     // normalize button clicks
6772     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6773                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6774
6775     Roo.EventObjectImpl = function(e){
6776         if(e){
6777             this.setEvent(e.browserEvent || e);
6778         }
6779     };
6780     Roo.EventObjectImpl.prototype = {
6781         /**
6782          * Used to fix doc tools.
6783          * @scope Roo.EventObject.prototype
6784          */
6785             
6786
6787         
6788         
6789         /** The normal browser event */
6790         browserEvent : null,
6791         /** The button pressed in a mouse event */
6792         button : -1,
6793         /** True if the shift key was down during the event */
6794         shiftKey : false,
6795         /** True if the control key was down during the event */
6796         ctrlKey : false,
6797         /** True if the alt key was down during the event */
6798         altKey : false,
6799
6800         /** Key constant 
6801         * @type Number */
6802         BACKSPACE : 8,
6803         /** Key constant 
6804         * @type Number */
6805         TAB : 9,
6806         /** Key constant 
6807         * @type Number */
6808         RETURN : 13,
6809         /** Key constant 
6810         * @type Number */
6811         ENTER : 13,
6812         /** Key constant 
6813         * @type Number */
6814         SHIFT : 16,
6815         /** Key constant 
6816         * @type Number */
6817         CONTROL : 17,
6818         /** Key constant 
6819         * @type Number */
6820         ESC : 27,
6821         /** Key constant 
6822         * @type Number */
6823         SPACE : 32,
6824         /** Key constant 
6825         * @type Number */
6826         PAGEUP : 33,
6827         /** Key constant 
6828         * @type Number */
6829         PAGEDOWN : 34,
6830         /** Key constant 
6831         * @type Number */
6832         END : 35,
6833         /** Key constant 
6834         * @type Number */
6835         HOME : 36,
6836         /** Key constant 
6837         * @type Number */
6838         LEFT : 37,
6839         /** Key constant 
6840         * @type Number */
6841         UP : 38,
6842         /** Key constant 
6843         * @type Number */
6844         RIGHT : 39,
6845         /** Key constant 
6846         * @type Number */
6847         DOWN : 40,
6848         /** Key constant 
6849         * @type Number */
6850         DELETE : 46,
6851         /** Key constant 
6852         * @type Number */
6853         F5 : 116,
6854
6855            /** @private */
6856         setEvent : function(e){
6857             if(e == this || (e && e.browserEvent)){ // already wrapped
6858                 return e;
6859             }
6860             this.browserEvent = e;
6861             if(e){
6862                 // normalize buttons
6863                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6864                 if(e.type == 'click' && this.button == -1){
6865                     this.button = 0;
6866                 }
6867                 this.type = e.type;
6868                 this.shiftKey = e.shiftKey;
6869                 // mac metaKey behaves like ctrlKey
6870                 this.ctrlKey = e.ctrlKey || e.metaKey;
6871                 this.altKey = e.altKey;
6872                 // in getKey these will be normalized for the mac
6873                 this.keyCode = e.keyCode;
6874                 // keyup warnings on firefox.
6875                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6876                 // cache the target for the delayed and or buffered events
6877                 this.target = E.getTarget(e);
6878                 // same for XY
6879                 this.xy = E.getXY(e);
6880             }else{
6881                 this.button = -1;
6882                 this.shiftKey = false;
6883                 this.ctrlKey = false;
6884                 this.altKey = false;
6885                 this.keyCode = 0;
6886                 this.charCode =0;
6887                 this.target = null;
6888                 this.xy = [0, 0];
6889             }
6890             return this;
6891         },
6892
6893         /**
6894          * Stop the event (preventDefault and stopPropagation)
6895          */
6896         stopEvent : function(){
6897             if(this.browserEvent){
6898                 if(this.browserEvent.type == 'mousedown'){
6899                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6900                 }
6901                 E.stopEvent(this.browserEvent);
6902             }
6903         },
6904
6905         /**
6906          * Prevents the browsers default handling of the event.
6907          */
6908         preventDefault : function(){
6909             if(this.browserEvent){
6910                 E.preventDefault(this.browserEvent);
6911             }
6912         },
6913
6914         /** @private */
6915         isNavKeyPress : function(){
6916             var k = this.keyCode;
6917             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6918             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6919         },
6920
6921         isSpecialKey : function(){
6922             var k = this.keyCode;
6923             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6924             (k == 16) || (k == 17) ||
6925             (k >= 18 && k <= 20) ||
6926             (k >= 33 && k <= 35) ||
6927             (k >= 36 && k <= 39) ||
6928             (k >= 44 && k <= 45);
6929         },
6930         /**
6931          * Cancels bubbling of the event.
6932          */
6933         stopPropagation : function(){
6934             if(this.browserEvent){
6935                 if(this.type == 'mousedown'){
6936                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6937                 }
6938                 E.stopPropagation(this.browserEvent);
6939             }
6940         },
6941
6942         /**
6943          * Gets the key code for the event.
6944          * @return {Number}
6945          */
6946         getCharCode : function(){
6947             return this.charCode || this.keyCode;
6948         },
6949
6950         /**
6951          * Returns a normalized keyCode for the event.
6952          * @return {Number} The key code
6953          */
6954         getKey : function(){
6955             var k = this.keyCode || this.charCode;
6956             return Roo.isSafari ? (safariKeys[k] || k) : k;
6957         },
6958
6959         /**
6960          * Gets the x coordinate of the event.
6961          * @return {Number}
6962          */
6963         getPageX : function(){
6964             return this.xy[0];
6965         },
6966
6967         /**
6968          * Gets the y coordinate of the event.
6969          * @return {Number}
6970          */
6971         getPageY : function(){
6972             return this.xy[1];
6973         },
6974
6975         /**
6976          * Gets the time of the event.
6977          * @return {Number}
6978          */
6979         getTime : function(){
6980             if(this.browserEvent){
6981                 return E.getTime(this.browserEvent);
6982             }
6983             return null;
6984         },
6985
6986         /**
6987          * Gets the page coordinates of the event.
6988          * @return {Array} The xy values like [x, y]
6989          */
6990         getXY : function(){
6991             return this.xy;
6992         },
6993
6994         /**
6995          * Gets the target for the event.
6996          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
6997          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
6998                 search as a number or element (defaults to 10 || document.body)
6999          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7000          * @return {HTMLelement}
7001          */
7002         getTarget : function(selector, maxDepth, returnEl){
7003             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7004         },
7005         /**
7006          * Gets the related target.
7007          * @return {HTMLElement}
7008          */
7009         getRelatedTarget : function(){
7010             if(this.browserEvent){
7011                 return E.getRelatedTarget(this.browserEvent);
7012             }
7013             return null;
7014         },
7015
7016         /**
7017          * Normalizes mouse wheel delta across browsers
7018          * @return {Number} The delta
7019          */
7020         getWheelDelta : function(){
7021             var e = this.browserEvent;
7022             var delta = 0;
7023             if(e.wheelDelta){ /* IE/Opera. */
7024                 delta = e.wheelDelta/120;
7025             }else if(e.detail){ /* Mozilla case. */
7026                 delta = -e.detail/3;
7027             }
7028             return delta;
7029         },
7030
7031         /**
7032          * Returns true if the control, meta, shift or alt key was pressed during this event.
7033          * @return {Boolean}
7034          */
7035         hasModifier : function(){
7036             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7037         },
7038
7039         /**
7040          * Returns true if the target of this event equals el or is a child of el
7041          * @param {String/HTMLElement/Element} el
7042          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7043          * @return {Boolean}
7044          */
7045         within : function(el, related){
7046             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7047             return t && Roo.fly(el).contains(t);
7048         },
7049
7050         getPoint : function(){
7051             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7052         }
7053     };
7054
7055     return new Roo.EventObjectImpl();
7056 }();
7057             
7058     /*
7059  * Based on:
7060  * Ext JS Library 1.1.1
7061  * Copyright(c) 2006-2007, Ext JS, LLC.
7062  *
7063  * Originally Released Under LGPL - original licence link has changed is not relivant.
7064  *
7065  * Fork - LGPL
7066  * <script type="text/javascript">
7067  */
7068
7069  
7070 // was in Composite Element!??!?!
7071  
7072 (function(){
7073     var D = Roo.lib.Dom;
7074     var E = Roo.lib.Event;
7075     var A = Roo.lib.Anim;
7076
7077     // local style camelizing for speed
7078     var propCache = {};
7079     var camelRe = /(-[a-z])/gi;
7080     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7081     var view = document.defaultView;
7082
7083 /**
7084  * @class Roo.Element
7085  * Represents an Element in the DOM.<br><br>
7086  * Usage:<br>
7087 <pre><code>
7088 var el = Roo.get("my-div");
7089
7090 // or with getEl
7091 var el = getEl("my-div");
7092
7093 // or with a DOM element
7094 var el = Roo.get(myDivElement);
7095 </code></pre>
7096  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7097  * each call instead of constructing a new one.<br><br>
7098  * <b>Animations</b><br />
7099  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7100  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7101 <pre>
7102 Option    Default   Description
7103 --------- --------  ---------------------------------------------
7104 duration  .35       The duration of the animation in seconds
7105 easing    easeOut   The YUI easing method
7106 callback  none      A function to execute when the anim completes
7107 scope     this      The scope (this) of the callback function
7108 </pre>
7109 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7110 * manipulate the animation. Here's an example:
7111 <pre><code>
7112 var el = Roo.get("my-div");
7113
7114 // no animation
7115 el.setWidth(100);
7116
7117 // default animation
7118 el.setWidth(100, true);
7119
7120 // animation with some options set
7121 el.setWidth(100, {
7122     duration: 1,
7123     callback: this.foo,
7124     scope: this
7125 });
7126
7127 // using the "anim" property to get the Anim object
7128 var opt = {
7129     duration: 1,
7130     callback: this.foo,
7131     scope: this
7132 };
7133 el.setWidth(100, opt);
7134 ...
7135 if(opt.anim.isAnimated()){
7136     opt.anim.stop();
7137 }
7138 </code></pre>
7139 * <b> Composite (Collections of) Elements</b><br />
7140  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7141  * @constructor Create a new Element directly.
7142  * @param {String/HTMLElement} element
7143  * @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).
7144  */
7145     Roo.Element = function(element, forceNew){
7146         var dom = typeof element == "string" ?
7147                 document.getElementById(element) : element;
7148         if(!dom){ // invalid id/element
7149             return null;
7150         }
7151         var id = dom.id;
7152         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7153             return Roo.Element.cache[id];
7154         }
7155
7156         /**
7157          * The DOM element
7158          * @type HTMLElement
7159          */
7160         this.dom = dom;
7161
7162         /**
7163          * The DOM element ID
7164          * @type String
7165          */
7166         this.id = id || Roo.id(dom);
7167     };
7168
7169     var El = Roo.Element;
7170
7171     El.prototype = {
7172         /**
7173          * The element's default display mode  (defaults to "") 
7174          * @type String
7175          */
7176         originalDisplay : "",
7177
7178         
7179         // note this is overridden in BS version..
7180         visibilityMode : 1, 
7181         /**
7182          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7183          * @type String
7184          */
7185         defaultUnit : "px",
7186         
7187         /**
7188          * Sets the element's visibility mode. When setVisible() is called it
7189          * will use this to determine whether to set the visibility or the display property.
7190          * @param visMode Element.VISIBILITY or Element.DISPLAY
7191          * @return {Roo.Element} this
7192          */
7193         setVisibilityMode : function(visMode){
7194             this.visibilityMode = visMode;
7195             return this;
7196         },
7197         /**
7198          * Convenience method for setVisibilityMode(Element.DISPLAY)
7199          * @param {String} display (optional) What to set display to when visible
7200          * @return {Roo.Element} this
7201          */
7202         enableDisplayMode : function(display){
7203             this.setVisibilityMode(El.DISPLAY);
7204             if(typeof display != "undefined") { this.originalDisplay = display; }
7205             return this;
7206         },
7207
7208         /**
7209          * 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)
7210          * @param {String} selector The simple selector to test
7211          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7212                 search as a number or element (defaults to 10 || document.body)
7213          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7214          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7215          */
7216         findParent : function(simpleSelector, maxDepth, returnEl){
7217             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7218             maxDepth = maxDepth || 50;
7219             if(typeof maxDepth != "number"){
7220                 stopEl = Roo.getDom(maxDepth);
7221                 maxDepth = 10;
7222             }
7223             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7224                 if(dq.is(p, simpleSelector)){
7225                     return returnEl ? Roo.get(p) : p;
7226                 }
7227                 depth++;
7228                 p = p.parentNode;
7229             }
7230             return null;
7231         },
7232
7233
7234         /**
7235          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7236          * @param {String} selector The simple selector to test
7237          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7238                 search as a number or element (defaults to 10 || document.body)
7239          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7240          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7241          */
7242         findParentNode : function(simpleSelector, maxDepth, returnEl){
7243             var p = Roo.fly(this.dom.parentNode, '_internal');
7244             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7245         },
7246         
7247         /**
7248          * Looks at  the scrollable parent element
7249          */
7250         findScrollableParent : function()
7251         {
7252             var overflowRegex = /(auto|scroll)/;
7253             
7254             if(this.getStyle('position') === 'fixed'){
7255                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7256             }
7257             
7258             var excludeStaticParent = this.getStyle('position') === "absolute";
7259             
7260             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7261                 
7262                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7263                     continue;
7264                 }
7265                 
7266                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7267                     return parent;
7268                 }
7269                 
7270                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7271                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7272                 }
7273             }
7274             
7275             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7276         },
7277
7278         /**
7279          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7280          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7281          * @param {String} selector The simple selector to test
7282          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7283                 search as a number or element (defaults to 10 || document.body)
7284          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7285          */
7286         up : function(simpleSelector, maxDepth){
7287             return this.findParentNode(simpleSelector, maxDepth, true);
7288         },
7289
7290
7291
7292         /**
7293          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7294          * @param {String} selector The simple selector to test
7295          * @return {Boolean} True if this element matches the selector, else false
7296          */
7297         is : function(simpleSelector){
7298             return Roo.DomQuery.is(this.dom, simpleSelector);
7299         },
7300
7301         /**
7302          * Perform animation on this element.
7303          * @param {Object} args The YUI animation control args
7304          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7305          * @param {Function} onComplete (optional) Function to call when animation completes
7306          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7307          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7308          * @return {Roo.Element} this
7309          */
7310         animate : function(args, duration, onComplete, easing, animType){
7311             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7312             return this;
7313         },
7314
7315         /*
7316          * @private Internal animation call
7317          */
7318         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7319             animType = animType || 'run';
7320             opt = opt || {};
7321             var anim = Roo.lib.Anim[animType](
7322                 this.dom, args,
7323                 (opt.duration || defaultDur) || .35,
7324                 (opt.easing || defaultEase) || 'easeOut',
7325                 function(){
7326                     Roo.callback(cb, this);
7327                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7328                 },
7329                 this
7330             );
7331             opt.anim = anim;
7332             return anim;
7333         },
7334
7335         // private legacy anim prep
7336         preanim : function(a, i){
7337             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7338         },
7339
7340         /**
7341          * Removes worthless text nodes
7342          * @param {Boolean} forceReclean (optional) By default the element
7343          * keeps track if it has been cleaned already so
7344          * you can call this over and over. However, if you update the element and
7345          * need to force a reclean, you can pass true.
7346          */
7347         clean : function(forceReclean){
7348             if(this.isCleaned && forceReclean !== true){
7349                 return this;
7350             }
7351             var ns = /\S/;
7352             var d = this.dom, n = d.firstChild, ni = -1;
7353             while(n){
7354                 var nx = n.nextSibling;
7355                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7356                     d.removeChild(n);
7357                 }else{
7358                     n.nodeIndex = ++ni;
7359                 }
7360                 n = nx;
7361             }
7362             this.isCleaned = true;
7363             return this;
7364         },
7365
7366         // private
7367         calcOffsetsTo : function(el){
7368             el = Roo.get(el);
7369             var d = el.dom;
7370             var restorePos = false;
7371             if(el.getStyle('position') == 'static'){
7372                 el.position('relative');
7373                 restorePos = true;
7374             }
7375             var x = 0, y =0;
7376             var op = this.dom;
7377             while(op && op != d && op.tagName != 'HTML'){
7378                 x+= op.offsetLeft;
7379                 y+= op.offsetTop;
7380                 op = op.offsetParent;
7381             }
7382             if(restorePos){
7383                 el.position('static');
7384             }
7385             return [x, y];
7386         },
7387
7388         /**
7389          * Scrolls this element into view within the passed container.
7390          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7391          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7392          * @return {Roo.Element} this
7393          */
7394         scrollIntoView : function(container, hscroll){
7395             var c = Roo.getDom(container) || document.body;
7396             var el = this.dom;
7397
7398             var o = this.calcOffsetsTo(c),
7399                 l = o[0],
7400                 t = o[1],
7401                 b = t+el.offsetHeight,
7402                 r = l+el.offsetWidth;
7403
7404             var ch = c.clientHeight;
7405             var ct = parseInt(c.scrollTop, 10);
7406             var cl = parseInt(c.scrollLeft, 10);
7407             var cb = ct + ch;
7408             var cr = cl + c.clientWidth;
7409
7410             if(t < ct){
7411                 c.scrollTop = t;
7412             }else if(b > cb){
7413                 c.scrollTop = b-ch;
7414             }
7415
7416             if(hscroll !== false){
7417                 if(l < cl){
7418                     c.scrollLeft = l;
7419                 }else if(r > cr){
7420                     c.scrollLeft = r-c.clientWidth;
7421                 }
7422             }
7423             return this;
7424         },
7425
7426         // private
7427         scrollChildIntoView : function(child, hscroll){
7428             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7429         },
7430
7431         /**
7432          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7433          * the new height may not be available immediately.
7434          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7435          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7436          * @param {Function} onComplete (optional) Function to call when animation completes
7437          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7438          * @return {Roo.Element} this
7439          */
7440         autoHeight : function(animate, duration, onComplete, easing){
7441             var oldHeight = this.getHeight();
7442             this.clip();
7443             this.setHeight(1); // force clipping
7444             setTimeout(function(){
7445                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7446                 if(!animate){
7447                     this.setHeight(height);
7448                     this.unclip();
7449                     if(typeof onComplete == "function"){
7450                         onComplete();
7451                     }
7452                 }else{
7453                     this.setHeight(oldHeight); // restore original height
7454                     this.setHeight(height, animate, duration, function(){
7455                         this.unclip();
7456                         if(typeof onComplete == "function") { onComplete(); }
7457                     }.createDelegate(this), easing);
7458                 }
7459             }.createDelegate(this), 0);
7460             return this;
7461         },
7462
7463         /**
7464          * Returns true if this element is an ancestor of the passed element
7465          * @param {HTMLElement/String} el The element to check
7466          * @return {Boolean} True if this element is an ancestor of el, else false
7467          */
7468         contains : function(el){
7469             if(!el){return false;}
7470             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7471         },
7472
7473         /**
7474          * Checks whether the element is currently visible using both visibility and display properties.
7475          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7476          * @return {Boolean} True if the element is currently visible, else false
7477          */
7478         isVisible : function(deep) {
7479             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7480             if(deep !== true || !vis){
7481                 return vis;
7482             }
7483             var p = this.dom.parentNode;
7484             while(p && p.tagName.toLowerCase() != "body"){
7485                 if(!Roo.fly(p, '_isVisible').isVisible()){
7486                     return false;
7487                 }
7488                 p = p.parentNode;
7489             }
7490             return true;
7491         },
7492
7493         /**
7494          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7495          * @param {String} selector The CSS selector
7496          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7497          * @return {CompositeElement/CompositeElementLite} The composite element
7498          */
7499         select : function(selector, unique){
7500             return El.select(selector, unique, this.dom);
7501         },
7502
7503         /**
7504          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7505          * @param {String} selector The CSS selector
7506          * @return {Array} An array of the matched nodes
7507          */
7508         query : function(selector, unique){
7509             return Roo.DomQuery.select(selector, this.dom);
7510         },
7511
7512         /**
7513          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7514          * @param {String} selector The CSS selector
7515          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7516          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7517          */
7518         child : function(selector, returnDom){
7519             var n = Roo.DomQuery.selectNode(selector, this.dom);
7520             return returnDom ? n : Roo.get(n);
7521         },
7522
7523         /**
7524          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7525          * @param {String} selector The CSS selector
7526          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7527          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7528          */
7529         down : function(selector, returnDom){
7530             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7531             return returnDom ? n : Roo.get(n);
7532         },
7533
7534         /**
7535          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7536          * @param {String} group The group the DD object is member of
7537          * @param {Object} config The DD config object
7538          * @param {Object} overrides An object containing methods to override/implement on the DD object
7539          * @return {Roo.dd.DD} The DD object
7540          */
7541         initDD : function(group, config, overrides){
7542             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7543             return Roo.apply(dd, overrides);
7544         },
7545
7546         /**
7547          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7548          * @param {String} group The group the DDProxy object is member of
7549          * @param {Object} config The DDProxy config object
7550          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7551          * @return {Roo.dd.DDProxy} The DDProxy object
7552          */
7553         initDDProxy : function(group, config, overrides){
7554             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7555             return Roo.apply(dd, overrides);
7556         },
7557
7558         /**
7559          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7560          * @param {String} group The group the DDTarget object is member of
7561          * @param {Object} config The DDTarget config object
7562          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7563          * @return {Roo.dd.DDTarget} The DDTarget object
7564          */
7565         initDDTarget : function(group, config, overrides){
7566             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7567             return Roo.apply(dd, overrides);
7568         },
7569
7570         /**
7571          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7572          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7573          * @param {Boolean} visible Whether the element is visible
7574          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7575          * @return {Roo.Element} this
7576          */
7577          setVisible : function(visible, animate){
7578             if(!animate || !A){
7579                 if(this.visibilityMode == El.DISPLAY){
7580                     this.setDisplayed(visible);
7581                 }else{
7582                     this.fixDisplay();
7583                     this.dom.style.visibility = visible ? "visible" : "hidden";
7584                 }
7585             }else{
7586                 // closure for composites
7587                 var dom = this.dom;
7588                 var visMode = this.visibilityMode;
7589                 if(visible){
7590                     this.setOpacity(.01);
7591                     this.setVisible(true);
7592                 }
7593                 this.anim({opacity: { to: (visible?1:0) }},
7594                       this.preanim(arguments, 1),
7595                       null, .35, 'easeIn', function(){
7596                          if(!visible){
7597                              if(visMode == El.DISPLAY){
7598                                  dom.style.display = "none";
7599                              }else{
7600                                  dom.style.visibility = "hidden";
7601                              }
7602                              Roo.get(dom).setOpacity(1);
7603                          }
7604                      });
7605             }
7606             return this;
7607         },
7608
7609         /**
7610          * Returns true if display is not "none"
7611          * @return {Boolean}
7612          */
7613         isDisplayed : function() {
7614             return this.getStyle("display") != "none";
7615         },
7616
7617         /**
7618          * Toggles the element's visibility or display, depending on visibility mode.
7619          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7620          * @return {Roo.Element} this
7621          */
7622         toggle : function(animate){
7623             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7624             return this;
7625         },
7626
7627         /**
7628          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7629          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7630          * @return {Roo.Element} this
7631          */
7632         setDisplayed : function(value) {
7633             if(typeof value == "boolean"){
7634                value = value ? this.originalDisplay : "none";
7635             }
7636             this.setStyle("display", value);
7637             return this;
7638         },
7639
7640         /**
7641          * Tries to focus the element. Any exceptions are caught and ignored.
7642          * @return {Roo.Element} this
7643          */
7644         focus : function() {
7645             try{
7646                 this.dom.focus();
7647             }catch(e){}
7648             return this;
7649         },
7650
7651         /**
7652          * Tries to blur the element. Any exceptions are caught and ignored.
7653          * @return {Roo.Element} this
7654          */
7655         blur : function() {
7656             try{
7657                 this.dom.blur();
7658             }catch(e){}
7659             return this;
7660         },
7661
7662         /**
7663          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7664          * @param {String/Array} className The CSS class to add, or an array of classes
7665          * @return {Roo.Element} this
7666          */
7667         addClass : function(className){
7668             if(className instanceof Array){
7669                 for(var i = 0, len = className.length; i < len; i++) {
7670                     this.addClass(className[i]);
7671                 }
7672             }else{
7673                 if(className && !this.hasClass(className)){
7674                     this.dom.className = this.dom.className + " " + className;
7675                 }
7676             }
7677             return this;
7678         },
7679
7680         /**
7681          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7682          * @param {String/Array} className The CSS class to add, or an array of classes
7683          * @return {Roo.Element} this
7684          */
7685         radioClass : function(className){
7686             var siblings = this.dom.parentNode.childNodes;
7687             for(var i = 0; i < siblings.length; i++) {
7688                 var s = siblings[i];
7689                 if(s.nodeType == 1){
7690                     Roo.get(s).removeClass(className);
7691                 }
7692             }
7693             this.addClass(className);
7694             return this;
7695         },
7696
7697         /**
7698          * Removes one or more CSS classes from the element.
7699          * @param {String/Array} className The CSS class to remove, or an array of classes
7700          * @return {Roo.Element} this
7701          */
7702         removeClass : function(className){
7703             if(!className || !this.dom.className){
7704                 return this;
7705             }
7706             if(className instanceof Array){
7707                 for(var i = 0, len = className.length; i < len; i++) {
7708                     this.removeClass(className[i]);
7709                 }
7710             }else{
7711                 if(this.hasClass(className)){
7712                     var re = this.classReCache[className];
7713                     if (!re) {
7714                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7715                        this.classReCache[className] = re;
7716                     }
7717                     this.dom.className =
7718                         this.dom.className.replace(re, " ");
7719                 }
7720             }
7721             return this;
7722         },
7723
7724         // private
7725         classReCache: {},
7726
7727         /**
7728          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7729          * @param {String} className The CSS class to toggle
7730          * @return {Roo.Element} this
7731          */
7732         toggleClass : function(className){
7733             if(this.hasClass(className)){
7734                 this.removeClass(className);
7735             }else{
7736                 this.addClass(className);
7737             }
7738             return this;
7739         },
7740
7741         /**
7742          * Checks if the specified CSS class exists on this element's DOM node.
7743          * @param {String} className The CSS class to check for
7744          * @return {Boolean} True if the class exists, else false
7745          */
7746         hasClass : function(className){
7747             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7748         },
7749
7750         /**
7751          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7752          * @param {String} oldClassName The CSS class to replace
7753          * @param {String} newClassName The replacement CSS class
7754          * @return {Roo.Element} this
7755          */
7756         replaceClass : function(oldClassName, newClassName){
7757             this.removeClass(oldClassName);
7758             this.addClass(newClassName);
7759             return this;
7760         },
7761
7762         /**
7763          * Returns an object with properties matching the styles requested.
7764          * For example, el.getStyles('color', 'font-size', 'width') might return
7765          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7766          * @param {String} style1 A style name
7767          * @param {String} style2 A style name
7768          * @param {String} etc.
7769          * @return {Object} The style object
7770          */
7771         getStyles : function(){
7772             var a = arguments, len = a.length, r = {};
7773             for(var i = 0; i < len; i++){
7774                 r[a[i]] = this.getStyle(a[i]);
7775             }
7776             return r;
7777         },
7778
7779         /**
7780          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7781          * @param {String} property The style property whose value is returned.
7782          * @return {String} The current value of the style property for this element.
7783          */
7784         getStyle : function(){
7785             return view && view.getComputedStyle ?
7786                 function(prop){
7787                     var el = this.dom, v, cs, camel;
7788                     if(prop == 'float'){
7789                         prop = "cssFloat";
7790                     }
7791                     if(el.style && (v = el.style[prop])){
7792                         return v;
7793                     }
7794                     if(cs = view.getComputedStyle(el, "")){
7795                         if(!(camel = propCache[prop])){
7796                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7797                         }
7798                         return cs[camel];
7799                     }
7800                     return null;
7801                 } :
7802                 function(prop){
7803                     var el = this.dom, v, cs, camel;
7804                     if(prop == 'opacity'){
7805                         if(typeof el.style.filter == 'string'){
7806                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7807                             if(m){
7808                                 var fv = parseFloat(m[1]);
7809                                 if(!isNaN(fv)){
7810                                     return fv ? fv / 100 : 0;
7811                                 }
7812                             }
7813                         }
7814                         return 1;
7815                     }else if(prop == 'float'){
7816                         prop = "styleFloat";
7817                     }
7818                     if(!(camel = propCache[prop])){
7819                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7820                     }
7821                     if(v = el.style[camel]){
7822                         return v;
7823                     }
7824                     if(cs = el.currentStyle){
7825                         return cs[camel];
7826                     }
7827                     return null;
7828                 };
7829         }(),
7830
7831         /**
7832          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7833          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7834          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7835          * @return {Roo.Element} this
7836          */
7837         setStyle : function(prop, value){
7838             if(typeof prop == "string"){
7839                 
7840                 if (prop == 'float') {
7841                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7842                     return this;
7843                 }
7844                 
7845                 var camel;
7846                 if(!(camel = propCache[prop])){
7847                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7848                 }
7849                 
7850                 if(camel == 'opacity') {
7851                     this.setOpacity(value);
7852                 }else{
7853                     this.dom.style[camel] = value;
7854                 }
7855             }else{
7856                 for(var style in prop){
7857                     if(typeof prop[style] != "function"){
7858                        this.setStyle(style, prop[style]);
7859                     }
7860                 }
7861             }
7862             return this;
7863         },
7864
7865         /**
7866          * More flexible version of {@link #setStyle} for setting style properties.
7867          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7868          * a function which returns such a specification.
7869          * @return {Roo.Element} this
7870          */
7871         applyStyles : function(style){
7872             Roo.DomHelper.applyStyles(this.dom, style);
7873             return this;
7874         },
7875
7876         /**
7877           * 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).
7878           * @return {Number} The X position of the element
7879           */
7880         getX : function(){
7881             return D.getX(this.dom);
7882         },
7883
7884         /**
7885           * 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).
7886           * @return {Number} The Y position of the element
7887           */
7888         getY : function(){
7889             return D.getY(this.dom);
7890         },
7891
7892         /**
7893           * 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).
7894           * @return {Array} The XY position of the element
7895           */
7896         getXY : function(){
7897             return D.getXY(this.dom);
7898         },
7899
7900         /**
7901          * 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).
7902          * @param {Number} The X position of the element
7903          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7904          * @return {Roo.Element} this
7905          */
7906         setX : function(x, animate){
7907             if(!animate || !A){
7908                 D.setX(this.dom, x);
7909             }else{
7910                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7911             }
7912             return this;
7913         },
7914
7915         /**
7916          * 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).
7917          * @param {Number} The Y position of the element
7918          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7919          * @return {Roo.Element} this
7920          */
7921         setY : function(y, animate){
7922             if(!animate || !A){
7923                 D.setY(this.dom, y);
7924             }else{
7925                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7926             }
7927             return this;
7928         },
7929
7930         /**
7931          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7932          * @param {String} left The left CSS property value
7933          * @return {Roo.Element} this
7934          */
7935         setLeft : function(left){
7936             this.setStyle("left", this.addUnits(left));
7937             return this;
7938         },
7939
7940         /**
7941          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7942          * @param {String} top The top CSS property value
7943          * @return {Roo.Element} this
7944          */
7945         setTop : function(top){
7946             this.setStyle("top", this.addUnits(top));
7947             return this;
7948         },
7949
7950         /**
7951          * Sets the element's CSS right style.
7952          * @param {String} right The right CSS property value
7953          * @return {Roo.Element} this
7954          */
7955         setRight : function(right){
7956             this.setStyle("right", this.addUnits(right));
7957             return this;
7958         },
7959
7960         /**
7961          * Sets the element's CSS bottom style.
7962          * @param {String} bottom The bottom CSS property value
7963          * @return {Roo.Element} this
7964          */
7965         setBottom : function(bottom){
7966             this.setStyle("bottom", this.addUnits(bottom));
7967             return this;
7968         },
7969
7970         /**
7971          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7972          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7973          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7974          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7975          * @return {Roo.Element} this
7976          */
7977         setXY : function(pos, animate){
7978             if(!animate || !A){
7979                 D.setXY(this.dom, pos);
7980             }else{
7981                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7982             }
7983             return this;
7984         },
7985
7986         /**
7987          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7988          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7989          * @param {Number} x X value for new position (coordinates are page-based)
7990          * @param {Number} y Y value for new position (coordinates are page-based)
7991          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7992          * @return {Roo.Element} this
7993          */
7994         setLocation : function(x, y, animate){
7995             this.setXY([x, y], this.preanim(arguments, 2));
7996             return this;
7997         },
7998
7999         /**
8000          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8001          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8002          * @param {Number} x X value for new position (coordinates are page-based)
8003          * @param {Number} y Y value for new position (coordinates are page-based)
8004          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8005          * @return {Roo.Element} this
8006          */
8007         moveTo : function(x, y, animate){
8008             this.setXY([x, y], this.preanim(arguments, 2));
8009             return this;
8010         },
8011
8012         /**
8013          * Returns the region of the given element.
8014          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8015          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8016          */
8017         getRegion : function(){
8018             return D.getRegion(this.dom);
8019         },
8020
8021         /**
8022          * Returns the offset height of the element
8023          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8024          * @return {Number} The element's height
8025          */
8026         getHeight : function(contentHeight){
8027             var h = this.dom.offsetHeight || 0;
8028             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8029         },
8030
8031         /**
8032          * Returns the offset width of the element
8033          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8034          * @return {Number} The element's width
8035          */
8036         getWidth : function(contentWidth){
8037             var w = this.dom.offsetWidth || 0;
8038             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8039         },
8040
8041         /**
8042          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8043          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8044          * if a height has not been set using CSS.
8045          * @return {Number}
8046          */
8047         getComputedHeight : function(){
8048             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8049             if(!h){
8050                 h = parseInt(this.getStyle('height'), 10) || 0;
8051                 if(!this.isBorderBox()){
8052                     h += this.getFrameWidth('tb');
8053                 }
8054             }
8055             return h;
8056         },
8057
8058         /**
8059          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8060          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8061          * if a width has not been set using CSS.
8062          * @return {Number}
8063          */
8064         getComputedWidth : function(){
8065             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8066             if(!w){
8067                 w = parseInt(this.getStyle('width'), 10) || 0;
8068                 if(!this.isBorderBox()){
8069                     w += this.getFrameWidth('lr');
8070                 }
8071             }
8072             return w;
8073         },
8074
8075         /**
8076          * Returns the size of the element.
8077          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8078          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8079          */
8080         getSize : function(contentSize){
8081             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8082         },
8083
8084         /**
8085          * Returns the width and height of the viewport.
8086          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8087          */
8088         getViewSize : function(){
8089             var d = this.dom, doc = document, aw = 0, ah = 0;
8090             if(d == doc || d == doc.body){
8091                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8092             }else{
8093                 return {
8094                     width : d.clientWidth,
8095                     height: d.clientHeight
8096                 };
8097             }
8098         },
8099
8100         /**
8101          * Returns the value of the "value" attribute
8102          * @param {Boolean} asNumber true to parse the value as a number
8103          * @return {String/Number}
8104          */
8105         getValue : function(asNumber){
8106             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8107         },
8108
8109         // private
8110         adjustWidth : function(width){
8111             if(typeof width == "number"){
8112                 if(this.autoBoxAdjust && !this.isBorderBox()){
8113                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8114                 }
8115                 if(width < 0){
8116                     width = 0;
8117                 }
8118             }
8119             return width;
8120         },
8121
8122         // private
8123         adjustHeight : function(height){
8124             if(typeof height == "number"){
8125                if(this.autoBoxAdjust && !this.isBorderBox()){
8126                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8127                }
8128                if(height < 0){
8129                    height = 0;
8130                }
8131             }
8132             return height;
8133         },
8134
8135         /**
8136          * Set the width of the element
8137          * @param {Number} width The new width
8138          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8139          * @return {Roo.Element} this
8140          */
8141         setWidth : function(width, animate){
8142             width = this.adjustWidth(width);
8143             if(!animate || !A){
8144                 this.dom.style.width = this.addUnits(width);
8145             }else{
8146                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8147             }
8148             return this;
8149         },
8150
8151         /**
8152          * Set the height of the element
8153          * @param {Number} height The new height
8154          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8155          * @return {Roo.Element} this
8156          */
8157          setHeight : function(height, animate){
8158             height = this.adjustHeight(height);
8159             if(!animate || !A){
8160                 this.dom.style.height = this.addUnits(height);
8161             }else{
8162                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8163             }
8164             return this;
8165         },
8166
8167         /**
8168          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8169          * @param {Number} width The new width
8170          * @param {Number} height The new height
8171          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8172          * @return {Roo.Element} this
8173          */
8174          setSize : function(width, height, animate){
8175             if(typeof width == "object"){ // in case of object from getSize()
8176                 height = width.height; width = width.width;
8177             }
8178             width = this.adjustWidth(width); height = this.adjustHeight(height);
8179             if(!animate || !A){
8180                 this.dom.style.width = this.addUnits(width);
8181                 this.dom.style.height = this.addUnits(height);
8182             }else{
8183                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8184             }
8185             return this;
8186         },
8187
8188         /**
8189          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8190          * @param {Number} x X value for new position (coordinates are page-based)
8191          * @param {Number} y Y value for new position (coordinates are page-based)
8192          * @param {Number} width The new width
8193          * @param {Number} height The new height
8194          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8195          * @return {Roo.Element} this
8196          */
8197         setBounds : function(x, y, width, height, animate){
8198             if(!animate || !A){
8199                 this.setSize(width, height);
8200                 this.setLocation(x, y);
8201             }else{
8202                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8203                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8204                               this.preanim(arguments, 4), 'motion');
8205             }
8206             return this;
8207         },
8208
8209         /**
8210          * 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.
8211          * @param {Roo.lib.Region} region The region to fill
8212          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8213          * @return {Roo.Element} this
8214          */
8215         setRegion : function(region, animate){
8216             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8217             return this;
8218         },
8219
8220         /**
8221          * Appends an event handler
8222          *
8223          * @param {String}   eventName     The type of event to append
8224          * @param {Function} fn        The method the event invokes
8225          * @param {Object} scope       (optional) The scope (this object) of the fn
8226          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8227          */
8228         addListener : function(eventName, fn, scope, options){
8229             if (this.dom) {
8230                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8231             }
8232         },
8233
8234         /**
8235          * Removes an event handler from this element
8236          * @param {String} eventName the type of event to remove
8237          * @param {Function} fn the method the event invokes
8238          * @return {Roo.Element} this
8239          */
8240         removeListener : function(eventName, fn){
8241             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8242             return this;
8243         },
8244
8245         /**
8246          * Removes all previous added listeners from this element
8247          * @return {Roo.Element} this
8248          */
8249         removeAllListeners : function(){
8250             E.purgeElement(this.dom);
8251             return this;
8252         },
8253
8254         relayEvent : function(eventName, observable){
8255             this.on(eventName, function(e){
8256                 observable.fireEvent(eventName, e);
8257             });
8258         },
8259
8260         /**
8261          * Set the opacity of the element
8262          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8263          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8264          * @return {Roo.Element} this
8265          */
8266          setOpacity : function(opacity, animate){
8267             if(!animate || !A){
8268                 var s = this.dom.style;
8269                 if(Roo.isIE){
8270                     s.zoom = 1;
8271                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8272                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8273                 }else{
8274                     s.opacity = opacity;
8275                 }
8276             }else{
8277                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8278             }
8279             return this;
8280         },
8281
8282         /**
8283          * Gets the left X coordinate
8284          * @param {Boolean} local True to get the local css position instead of page coordinate
8285          * @return {Number}
8286          */
8287         getLeft : function(local){
8288             if(!local){
8289                 return this.getX();
8290             }else{
8291                 return parseInt(this.getStyle("left"), 10) || 0;
8292             }
8293         },
8294
8295         /**
8296          * Gets the right X coordinate of the element (element X position + element width)
8297          * @param {Boolean} local True to get the local css position instead of page coordinate
8298          * @return {Number}
8299          */
8300         getRight : function(local){
8301             if(!local){
8302                 return this.getX() + this.getWidth();
8303             }else{
8304                 return (this.getLeft(true) + this.getWidth()) || 0;
8305             }
8306         },
8307
8308         /**
8309          * Gets the top Y coordinate
8310          * @param {Boolean} local True to get the local css position instead of page coordinate
8311          * @return {Number}
8312          */
8313         getTop : function(local) {
8314             if(!local){
8315                 return this.getY();
8316             }else{
8317                 return parseInt(this.getStyle("top"), 10) || 0;
8318             }
8319         },
8320
8321         /**
8322          * Gets the bottom Y coordinate of the element (element Y position + element height)
8323          * @param {Boolean} local True to get the local css position instead of page coordinate
8324          * @return {Number}
8325          */
8326         getBottom : function(local){
8327             if(!local){
8328                 return this.getY() + this.getHeight();
8329             }else{
8330                 return (this.getTop(true) + this.getHeight()) || 0;
8331             }
8332         },
8333
8334         /**
8335         * Initializes positioning on this element. If a desired position is not passed, it will make the
8336         * the element positioned relative IF it is not already positioned.
8337         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8338         * @param {Number} zIndex (optional) The zIndex to apply
8339         * @param {Number} x (optional) Set the page X position
8340         * @param {Number} y (optional) Set the page Y position
8341         */
8342         position : function(pos, zIndex, x, y){
8343             if(!pos){
8344                if(this.getStyle('position') == 'static'){
8345                    this.setStyle('position', 'relative');
8346                }
8347             }else{
8348                 this.setStyle("position", pos);
8349             }
8350             if(zIndex){
8351                 this.setStyle("z-index", zIndex);
8352             }
8353             if(x !== undefined && y !== undefined){
8354                 this.setXY([x, y]);
8355             }else if(x !== undefined){
8356                 this.setX(x);
8357             }else if(y !== undefined){
8358                 this.setY(y);
8359             }
8360         },
8361
8362         /**
8363         * Clear positioning back to the default when the document was loaded
8364         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8365         * @return {Roo.Element} this
8366          */
8367         clearPositioning : function(value){
8368             value = value ||'';
8369             this.setStyle({
8370                 "left": value,
8371                 "right": value,
8372                 "top": value,
8373                 "bottom": value,
8374                 "z-index": "",
8375                 "position" : "static"
8376             });
8377             return this;
8378         },
8379
8380         /**
8381         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8382         * snapshot before performing an update and then restoring the element.
8383         * @return {Object}
8384         */
8385         getPositioning : function(){
8386             var l = this.getStyle("left");
8387             var t = this.getStyle("top");
8388             return {
8389                 "position" : this.getStyle("position"),
8390                 "left" : l,
8391                 "right" : l ? "" : this.getStyle("right"),
8392                 "top" : t,
8393                 "bottom" : t ? "" : this.getStyle("bottom"),
8394                 "z-index" : this.getStyle("z-index")
8395             };
8396         },
8397
8398         /**
8399          * Gets the width of the border(s) for the specified side(s)
8400          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8401          * passing lr would get the border (l)eft width + the border (r)ight width.
8402          * @return {Number} The width of the sides passed added together
8403          */
8404         getBorderWidth : function(side){
8405             return this.addStyles(side, El.borders);
8406         },
8407
8408         /**
8409          * Gets the width of the padding(s) for the specified side(s)
8410          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8411          * passing lr would get the padding (l)eft + the padding (r)ight.
8412          * @return {Number} The padding of the sides passed added together
8413          */
8414         getPadding : function(side){
8415             return this.addStyles(side, El.paddings);
8416         },
8417
8418         /**
8419         * Set positioning with an object returned by getPositioning().
8420         * @param {Object} posCfg
8421         * @return {Roo.Element} this
8422          */
8423         setPositioning : function(pc){
8424             this.applyStyles(pc);
8425             if(pc.right == "auto"){
8426                 this.dom.style.right = "";
8427             }
8428             if(pc.bottom == "auto"){
8429                 this.dom.style.bottom = "";
8430             }
8431             return this;
8432         },
8433
8434         // private
8435         fixDisplay : function(){
8436             if(this.getStyle("display") == "none"){
8437                 this.setStyle("visibility", "hidden");
8438                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8439                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8440                     this.setStyle("display", "block");
8441                 }
8442             }
8443         },
8444
8445         /**
8446          * Quick set left and top adding default units
8447          * @param {String} left The left CSS property value
8448          * @param {String} top The top CSS property value
8449          * @return {Roo.Element} this
8450          */
8451          setLeftTop : function(left, top){
8452             this.dom.style.left = this.addUnits(left);
8453             this.dom.style.top = this.addUnits(top);
8454             return this;
8455         },
8456
8457         /**
8458          * Move this element relative to its current position.
8459          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8460          * @param {Number} distance How far to move the element in pixels
8461          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8462          * @return {Roo.Element} this
8463          */
8464          move : function(direction, distance, animate){
8465             var xy = this.getXY();
8466             direction = direction.toLowerCase();
8467             switch(direction){
8468                 case "l":
8469                 case "left":
8470                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8471                     break;
8472                case "r":
8473                case "right":
8474                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8475                     break;
8476                case "t":
8477                case "top":
8478                case "up":
8479                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8480                     break;
8481                case "b":
8482                case "bottom":
8483                case "down":
8484                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8485                     break;
8486             }
8487             return this;
8488         },
8489
8490         /**
8491          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8492          * @return {Roo.Element} this
8493          */
8494         clip : function(){
8495             if(!this.isClipped){
8496                this.isClipped = true;
8497                this.originalClip = {
8498                    "o": this.getStyle("overflow"),
8499                    "x": this.getStyle("overflow-x"),
8500                    "y": this.getStyle("overflow-y")
8501                };
8502                this.setStyle("overflow", "hidden");
8503                this.setStyle("overflow-x", "hidden");
8504                this.setStyle("overflow-y", "hidden");
8505             }
8506             return this;
8507         },
8508
8509         /**
8510          *  Return clipping (overflow) to original clipping before clip() was called
8511          * @return {Roo.Element} this
8512          */
8513         unclip : function(){
8514             if(this.isClipped){
8515                 this.isClipped = false;
8516                 var o = this.originalClip;
8517                 if(o.o){this.setStyle("overflow", o.o);}
8518                 if(o.x){this.setStyle("overflow-x", o.x);}
8519                 if(o.y){this.setStyle("overflow-y", o.y);}
8520             }
8521             return this;
8522         },
8523
8524
8525         /**
8526          * Gets the x,y coordinates specified by the anchor position on the element.
8527          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8528          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8529          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8530          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8531          * @return {Array} [x, y] An array containing the element's x and y coordinates
8532          */
8533         getAnchorXY : function(anchor, local, s){
8534             //Passing a different size is useful for pre-calculating anchors,
8535             //especially for anchored animations that change the el size.
8536
8537             var w, h, vp = false;
8538             if(!s){
8539                 var d = this.dom;
8540                 if(d == document.body || d == document){
8541                     vp = true;
8542                     w = D.getViewWidth(); h = D.getViewHeight();
8543                 }else{
8544                     w = this.getWidth(); h = this.getHeight();
8545                 }
8546             }else{
8547                 w = s.width;  h = s.height;
8548             }
8549             var x = 0, y = 0, r = Math.round;
8550             switch((anchor || "tl").toLowerCase()){
8551                 case "c":
8552                     x = r(w*.5);
8553                     y = r(h*.5);
8554                 break;
8555                 case "t":
8556                     x = r(w*.5);
8557                     y = 0;
8558                 break;
8559                 case "l":
8560                     x = 0;
8561                     y = r(h*.5);
8562                 break;
8563                 case "r":
8564                     x = w;
8565                     y = r(h*.5);
8566                 break;
8567                 case "b":
8568                     x = r(w*.5);
8569                     y = h;
8570                 break;
8571                 case "tl":
8572                     x = 0;
8573                     y = 0;
8574                 break;
8575                 case "bl":
8576                     x = 0;
8577                     y = h;
8578                 break;
8579                 case "br":
8580                     x = w;
8581                     y = h;
8582                 break;
8583                 case "tr":
8584                     x = w;
8585                     y = 0;
8586                 break;
8587             }
8588             if(local === true){
8589                 return [x, y];
8590             }
8591             if(vp){
8592                 var sc = this.getScroll();
8593                 return [x + sc.left, y + sc.top];
8594             }
8595             //Add the element's offset xy
8596             var o = this.getXY();
8597             return [x+o[0], y+o[1]];
8598         },
8599
8600         /**
8601          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8602          * supported position values.
8603          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8604          * @param {String} position The position to align to.
8605          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8606          * @return {Array} [x, y]
8607          */
8608         getAlignToXY : function(el, p, o)
8609         {
8610             el = Roo.get(el);
8611             var d = this.dom;
8612             if(!el.dom){
8613                 throw "Element.alignTo with an element that doesn't exist";
8614             }
8615             var c = false; //constrain to viewport
8616             var p1 = "", p2 = "";
8617             o = o || [0,0];
8618
8619             if(!p){
8620                 p = "tl-bl";
8621             }else if(p == "?"){
8622                 p = "tl-bl?";
8623             }else if(p.indexOf("-") == -1){
8624                 p = "tl-" + p;
8625             }
8626             p = p.toLowerCase();
8627             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8628             if(!m){
8629                throw "Element.alignTo with an invalid alignment " + p;
8630             }
8631             p1 = m[1]; p2 = m[2]; c = !!m[3];
8632
8633             //Subtract the aligned el's internal xy from the target's offset xy
8634             //plus custom offset to get the aligned el's new offset xy
8635             var a1 = this.getAnchorXY(p1, true);
8636             var a2 = el.getAnchorXY(p2, false);
8637             var x = a2[0] - a1[0] + o[0];
8638             var y = a2[1] - a1[1] + o[1];
8639             if(c){
8640                 //constrain the aligned el to viewport if necessary
8641                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8642                 // 5px of margin for ie
8643                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8644
8645                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8646                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8647                 //otherwise swap the aligned el to the opposite border of the target.
8648                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8649                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8650                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8651                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8652
8653                var doc = document;
8654                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8655                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8656
8657                if((x+w) > dw + scrollX){
8658                     x = swapX ? r.left-w : dw+scrollX-w;
8659                 }
8660                if(x < scrollX){
8661                    x = swapX ? r.right : scrollX;
8662                }
8663                if((y+h) > dh + scrollY){
8664                     y = swapY ? r.top-h : dh+scrollY-h;
8665                 }
8666                if (y < scrollY){
8667                    y = swapY ? r.bottom : scrollY;
8668                }
8669             }
8670             return [x,y];
8671         },
8672
8673         // private
8674         getConstrainToXY : function(){
8675             var os = {top:0, left:0, bottom:0, right: 0};
8676
8677             return function(el, local, offsets, proposedXY){
8678                 el = Roo.get(el);
8679                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8680
8681                 var vw, vh, vx = 0, vy = 0;
8682                 if(el.dom == document.body || el.dom == document){
8683                     vw = Roo.lib.Dom.getViewWidth();
8684                     vh = Roo.lib.Dom.getViewHeight();
8685                 }else{
8686                     vw = el.dom.clientWidth;
8687                     vh = el.dom.clientHeight;
8688                     if(!local){
8689                         var vxy = el.getXY();
8690                         vx = vxy[0];
8691                         vy = vxy[1];
8692                     }
8693                 }
8694
8695                 var s = el.getScroll();
8696
8697                 vx += offsets.left + s.left;
8698                 vy += offsets.top + s.top;
8699
8700                 vw -= offsets.right;
8701                 vh -= offsets.bottom;
8702
8703                 var vr = vx+vw;
8704                 var vb = vy+vh;
8705
8706                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8707                 var x = xy[0], y = xy[1];
8708                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8709
8710                 // only move it if it needs it
8711                 var moved = false;
8712
8713                 // first validate right/bottom
8714                 if((x + w) > vr){
8715                     x = vr - w;
8716                     moved = true;
8717                 }
8718                 if((y + h) > vb){
8719                     y = vb - h;
8720                     moved = true;
8721                 }
8722                 // then make sure top/left isn't negative
8723                 if(x < vx){
8724                     x = vx;
8725                     moved = true;
8726                 }
8727                 if(y < vy){
8728                     y = vy;
8729                     moved = true;
8730                 }
8731                 return moved ? [x, y] : false;
8732             };
8733         }(),
8734
8735         // private
8736         adjustForConstraints : function(xy, parent, offsets){
8737             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8738         },
8739
8740         /**
8741          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8742          * document it aligns it to the viewport.
8743          * The position parameter is optional, and can be specified in any one of the following formats:
8744          * <ul>
8745          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8746          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8747          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8748          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8749          *   <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
8750          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8751          * </ul>
8752          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8753          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8754          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8755          * that specified in order to enforce the viewport constraints.
8756          * Following are all of the supported anchor positions:
8757     <pre>
8758     Value  Description
8759     -----  -----------------------------
8760     tl     The top left corner (default)
8761     t      The center of the top edge
8762     tr     The top right corner
8763     l      The center of the left edge
8764     c      In the center of the element
8765     r      The center of the right edge
8766     bl     The bottom left corner
8767     b      The center of the bottom edge
8768     br     The bottom right corner
8769     </pre>
8770     Example Usage:
8771     <pre><code>
8772     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8773     el.alignTo("other-el");
8774
8775     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8776     el.alignTo("other-el", "tr?");
8777
8778     // align the bottom right corner of el with the center left edge of other-el
8779     el.alignTo("other-el", "br-l?");
8780
8781     // align the center of el with the bottom left corner of other-el and
8782     // adjust the x position by -6 pixels (and the y position by 0)
8783     el.alignTo("other-el", "c-bl", [-6, 0]);
8784     </code></pre>
8785          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8786          * @param {String} position The position to align to.
8787          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8788          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8789          * @return {Roo.Element} this
8790          */
8791         alignTo : function(element, position, offsets, animate){
8792             var xy = this.getAlignToXY(element, position, offsets);
8793             this.setXY(xy, this.preanim(arguments, 3));
8794             return this;
8795         },
8796
8797         /**
8798          * Anchors an element to another element and realigns it when the window is resized.
8799          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8800          * @param {String} position The position to align to.
8801          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8802          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8803          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8804          * is a number, it is used as the buffer delay (defaults to 50ms).
8805          * @param {Function} callback The function to call after the animation finishes
8806          * @return {Roo.Element} this
8807          */
8808         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8809             var action = function(){
8810                 this.alignTo(el, alignment, offsets, animate);
8811                 Roo.callback(callback, this);
8812             };
8813             Roo.EventManager.onWindowResize(action, this);
8814             var tm = typeof monitorScroll;
8815             if(tm != 'undefined'){
8816                 Roo.EventManager.on(window, 'scroll', action, this,
8817                     {buffer: tm == 'number' ? monitorScroll : 50});
8818             }
8819             action.call(this); // align immediately
8820             return this;
8821         },
8822         /**
8823          * Clears any opacity settings from this element. Required in some cases for IE.
8824          * @return {Roo.Element} this
8825          */
8826         clearOpacity : function(){
8827             if (window.ActiveXObject) {
8828                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8829                     this.dom.style.filter = "";
8830                 }
8831             } else {
8832                 this.dom.style.opacity = "";
8833                 this.dom.style["-moz-opacity"] = "";
8834                 this.dom.style["-khtml-opacity"] = "";
8835             }
8836             return this;
8837         },
8838
8839         /**
8840          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8841          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8842          * @return {Roo.Element} this
8843          */
8844         hide : function(animate){
8845             this.setVisible(false, this.preanim(arguments, 0));
8846             return this;
8847         },
8848
8849         /**
8850         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8851         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8852          * @return {Roo.Element} this
8853          */
8854         show : function(animate){
8855             this.setVisible(true, this.preanim(arguments, 0));
8856             return this;
8857         },
8858
8859         /**
8860          * @private Test if size has a unit, otherwise appends the default
8861          */
8862         addUnits : function(size){
8863             return Roo.Element.addUnits(size, this.defaultUnit);
8864         },
8865
8866         /**
8867          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8868          * @return {Roo.Element} this
8869          */
8870         beginMeasure : function(){
8871             var el = this.dom;
8872             if(el.offsetWidth || el.offsetHeight){
8873                 return this; // offsets work already
8874             }
8875             var changed = [];
8876             var p = this.dom, b = document.body; // start with this element
8877             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8878                 var pe = Roo.get(p);
8879                 if(pe.getStyle('display') == 'none'){
8880                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8881                     p.style.visibility = "hidden";
8882                     p.style.display = "block";
8883                 }
8884                 p = p.parentNode;
8885             }
8886             this._measureChanged = changed;
8887             return this;
8888
8889         },
8890
8891         /**
8892          * Restores displays to before beginMeasure was called
8893          * @return {Roo.Element} this
8894          */
8895         endMeasure : function(){
8896             var changed = this._measureChanged;
8897             if(changed){
8898                 for(var i = 0, len = changed.length; i < len; i++) {
8899                     var r = changed[i];
8900                     r.el.style.visibility = r.visibility;
8901                     r.el.style.display = "none";
8902                 }
8903                 this._measureChanged = null;
8904             }
8905             return this;
8906         },
8907
8908         /**
8909         * Update the innerHTML of this element, optionally searching for and processing scripts
8910         * @param {String} html The new HTML
8911         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8912         * @param {Function} callback For async script loading you can be noticed when the update completes
8913         * @return {Roo.Element} this
8914          */
8915         update : function(html, loadScripts, callback){
8916             if(typeof html == "undefined"){
8917                 html = "";
8918             }
8919             if(loadScripts !== true){
8920                 this.dom.innerHTML = html;
8921                 if(typeof callback == "function"){
8922                     callback();
8923                 }
8924                 return this;
8925             }
8926             var id = Roo.id();
8927             var dom = this.dom;
8928
8929             html += '<span id="' + id + '"></span>';
8930
8931             E.onAvailable(id, function(){
8932                 var hd = document.getElementsByTagName("head")[0];
8933                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8934                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8935                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8936
8937                 var match;
8938                 while(match = re.exec(html)){
8939                     var attrs = match[1];
8940                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8941                     if(srcMatch && srcMatch[2]){
8942                        var s = document.createElement("script");
8943                        s.src = srcMatch[2];
8944                        var typeMatch = attrs.match(typeRe);
8945                        if(typeMatch && typeMatch[2]){
8946                            s.type = typeMatch[2];
8947                        }
8948                        hd.appendChild(s);
8949                     }else if(match[2] && match[2].length > 0){
8950                         if(window.execScript) {
8951                            window.execScript(match[2]);
8952                         } else {
8953                             /**
8954                              * eval:var:id
8955                              * eval:var:dom
8956                              * eval:var:html
8957                              * 
8958                              */
8959                            window.eval(match[2]);
8960                         }
8961                     }
8962                 }
8963                 var el = document.getElementById(id);
8964                 if(el){el.parentNode.removeChild(el);}
8965                 if(typeof callback == "function"){
8966                     callback();
8967                 }
8968             });
8969             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8970             return this;
8971         },
8972
8973         /**
8974          * Direct access to the UpdateManager update() method (takes the same parameters).
8975          * @param {String/Function} url The url for this request or a function to call to get the url
8976          * @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}
8977          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8978          * @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.
8979          * @return {Roo.Element} this
8980          */
8981         load : function(){
8982             var um = this.getUpdateManager();
8983             um.update.apply(um, arguments);
8984             return this;
8985         },
8986
8987         /**
8988         * Gets this element's UpdateManager
8989         * @return {Roo.UpdateManager} The UpdateManager
8990         */
8991         getUpdateManager : function(){
8992             if(!this.updateManager){
8993                 this.updateManager = new Roo.UpdateManager(this);
8994             }
8995             return this.updateManager;
8996         },
8997
8998         /**
8999          * Disables text selection for this element (normalized across browsers)
9000          * @return {Roo.Element} this
9001          */
9002         unselectable : function(){
9003             this.dom.unselectable = "on";
9004             this.swallowEvent("selectstart", true);
9005             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9006             this.addClass("x-unselectable");
9007             return this;
9008         },
9009
9010         /**
9011         * Calculates the x, y to center this element on the screen
9012         * @return {Array} The x, y values [x, y]
9013         */
9014         getCenterXY : function(){
9015             return this.getAlignToXY(document, 'c-c');
9016         },
9017
9018         /**
9019         * Centers the Element in either the viewport, or another Element.
9020         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9021         */
9022         center : function(centerIn){
9023             this.alignTo(centerIn || document, 'c-c');
9024             return this;
9025         },
9026
9027         /**
9028          * Tests various css rules/browsers to determine if this element uses a border box
9029          * @return {Boolean}
9030          */
9031         isBorderBox : function(){
9032             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9033         },
9034
9035         /**
9036          * Return a box {x, y, width, height} that can be used to set another elements
9037          * size/location to match this element.
9038          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9039          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9040          * @return {Object} box An object in the format {x, y, width, height}
9041          */
9042         getBox : function(contentBox, local){
9043             var xy;
9044             if(!local){
9045                 xy = this.getXY();
9046             }else{
9047                 var left = parseInt(this.getStyle("left"), 10) || 0;
9048                 var top = parseInt(this.getStyle("top"), 10) || 0;
9049                 xy = [left, top];
9050             }
9051             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9052             if(!contentBox){
9053                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9054             }else{
9055                 var l = this.getBorderWidth("l")+this.getPadding("l");
9056                 var r = this.getBorderWidth("r")+this.getPadding("r");
9057                 var t = this.getBorderWidth("t")+this.getPadding("t");
9058                 var b = this.getBorderWidth("b")+this.getPadding("b");
9059                 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)};
9060             }
9061             bx.right = bx.x + bx.width;
9062             bx.bottom = bx.y + bx.height;
9063             return bx;
9064         },
9065
9066         /**
9067          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9068          for more information about the sides.
9069          * @param {String} sides
9070          * @return {Number}
9071          */
9072         getFrameWidth : function(sides, onlyContentBox){
9073             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9074         },
9075
9076         /**
9077          * 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.
9078          * @param {Object} box The box to fill {x, y, width, height}
9079          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9080          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9081          * @return {Roo.Element} this
9082          */
9083         setBox : function(box, adjust, animate){
9084             var w = box.width, h = box.height;
9085             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9086                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9087                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9088             }
9089             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9090             return this;
9091         },
9092
9093         /**
9094          * Forces the browser to repaint this element
9095          * @return {Roo.Element} this
9096          */
9097          repaint : function(){
9098             var dom = this.dom;
9099             this.addClass("x-repaint");
9100             setTimeout(function(){
9101                 Roo.get(dom).removeClass("x-repaint");
9102             }, 1);
9103             return this;
9104         },
9105
9106         /**
9107          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9108          * then it returns the calculated width of the sides (see getPadding)
9109          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9110          * @return {Object/Number}
9111          */
9112         getMargins : function(side){
9113             if(!side){
9114                 return {
9115                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9116                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9117                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9118                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9119                 };
9120             }else{
9121                 return this.addStyles(side, El.margins);
9122              }
9123         },
9124
9125         // private
9126         addStyles : function(sides, styles){
9127             var val = 0, v, w;
9128             for(var i = 0, len = sides.length; i < len; i++){
9129                 v = this.getStyle(styles[sides.charAt(i)]);
9130                 if(v){
9131                      w = parseInt(v, 10);
9132                      if(w){ val += w; }
9133                 }
9134             }
9135             return val;
9136         },
9137
9138         /**
9139          * Creates a proxy element of this element
9140          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9141          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9142          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9143          * @return {Roo.Element} The new proxy element
9144          */
9145         createProxy : function(config, renderTo, matchBox){
9146             if(renderTo){
9147                 renderTo = Roo.getDom(renderTo);
9148             }else{
9149                 renderTo = document.body;
9150             }
9151             config = typeof config == "object" ?
9152                 config : {tag : "div", cls: config};
9153             var proxy = Roo.DomHelper.append(renderTo, config, true);
9154             if(matchBox){
9155                proxy.setBox(this.getBox());
9156             }
9157             return proxy;
9158         },
9159
9160         /**
9161          * Puts a mask over this element to disable user interaction. Requires core.css.
9162          * This method can only be applied to elements which accept child nodes.
9163          * @param {String} msg (optional) A message to display in the mask
9164          * @param {String} msgCls (optional) A css class to apply to the msg element
9165          * @return {Element} The mask  element
9166          */
9167         mask : function(msg, msgCls)
9168         {
9169             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9170                 this.setStyle("position", "relative");
9171             }
9172             if(!this._mask){
9173                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9174             }
9175             
9176             this.addClass("x-masked");
9177             this._mask.setDisplayed(true);
9178             
9179             // we wander
9180             var z = 0;
9181             var dom = this.dom;
9182             while (dom && dom.style) {
9183                 if (!isNaN(parseInt(dom.style.zIndex))) {
9184                     z = Math.max(z, parseInt(dom.style.zIndex));
9185                 }
9186                 dom = dom.parentNode;
9187             }
9188             // if we are masking the body - then it hides everything..
9189             if (this.dom == document.body) {
9190                 z = 1000000;
9191                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9192                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9193             }
9194            
9195             if(typeof msg == 'string'){
9196                 if(!this._maskMsg){
9197                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9198                         cls: "roo-el-mask-msg", 
9199                         cn: [
9200                             {
9201                                 tag: 'i',
9202                                 cls: 'fa fa-spinner fa-spin'
9203                             },
9204                             {
9205                                 tag: 'div'
9206                             }   
9207                         ]
9208                     }, true);
9209                 }
9210                 var mm = this._maskMsg;
9211                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9212                 if (mm.dom.lastChild) { // weird IE issue?
9213                     mm.dom.lastChild.innerHTML = msg;
9214                 }
9215                 mm.setDisplayed(true);
9216                 mm.center(this);
9217                 mm.setStyle('z-index', z + 102);
9218             }
9219             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9220                 this._mask.setHeight(this.getHeight());
9221             }
9222             this._mask.setStyle('z-index', z + 100);
9223             
9224             return this._mask;
9225         },
9226
9227         /**
9228          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9229          * it is cached for reuse.
9230          */
9231         unmask : function(removeEl){
9232             if(this._mask){
9233                 if(removeEl === true){
9234                     this._mask.remove();
9235                     delete this._mask;
9236                     if(this._maskMsg){
9237                         this._maskMsg.remove();
9238                         delete this._maskMsg;
9239                     }
9240                 }else{
9241                     this._mask.setDisplayed(false);
9242                     if(this._maskMsg){
9243                         this._maskMsg.setDisplayed(false);
9244                     }
9245                 }
9246             }
9247             this.removeClass("x-masked");
9248         },
9249
9250         /**
9251          * Returns true if this element is masked
9252          * @return {Boolean}
9253          */
9254         isMasked : function(){
9255             return this._mask && this._mask.isVisible();
9256         },
9257
9258         /**
9259          * Creates an iframe shim for this element to keep selects and other windowed objects from
9260          * showing through.
9261          * @return {Roo.Element} The new shim element
9262          */
9263         createShim : function(){
9264             var el = document.createElement('iframe');
9265             el.frameBorder = 'no';
9266             el.className = 'roo-shim';
9267             if(Roo.isIE && Roo.isSecure){
9268                 el.src = Roo.SSL_SECURE_URL;
9269             }
9270             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9271             shim.autoBoxAdjust = false;
9272             return shim;
9273         },
9274
9275         /**
9276          * Removes this element from the DOM and deletes it from the cache
9277          */
9278         remove : function(){
9279             if(this.dom.parentNode){
9280                 this.dom.parentNode.removeChild(this.dom);
9281             }
9282             delete El.cache[this.dom.id];
9283         },
9284
9285         /**
9286          * Sets up event handlers to add and remove a css class when the mouse is over this element
9287          * @param {String} className
9288          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9289          * mouseout events for children elements
9290          * @return {Roo.Element} this
9291          */
9292         addClassOnOver : function(className, preventFlicker){
9293             this.on("mouseover", function(){
9294                 Roo.fly(this, '_internal').addClass(className);
9295             }, this.dom);
9296             var removeFn = function(e){
9297                 if(preventFlicker !== true || !e.within(this, true)){
9298                     Roo.fly(this, '_internal').removeClass(className);
9299                 }
9300             };
9301             this.on("mouseout", removeFn, this.dom);
9302             return this;
9303         },
9304
9305         /**
9306          * Sets up event handlers to add and remove a css class when this element has the focus
9307          * @param {String} className
9308          * @return {Roo.Element} this
9309          */
9310         addClassOnFocus : function(className){
9311             this.on("focus", function(){
9312                 Roo.fly(this, '_internal').addClass(className);
9313             }, this.dom);
9314             this.on("blur", function(){
9315                 Roo.fly(this, '_internal').removeClass(className);
9316             }, this.dom);
9317             return this;
9318         },
9319         /**
9320          * 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)
9321          * @param {String} className
9322          * @return {Roo.Element} this
9323          */
9324         addClassOnClick : function(className){
9325             var dom = this.dom;
9326             this.on("mousedown", function(){
9327                 Roo.fly(dom, '_internal').addClass(className);
9328                 var d = Roo.get(document);
9329                 var fn = function(){
9330                     Roo.fly(dom, '_internal').removeClass(className);
9331                     d.removeListener("mouseup", fn);
9332                 };
9333                 d.on("mouseup", fn);
9334             });
9335             return this;
9336         },
9337
9338         /**
9339          * Stops the specified event from bubbling and optionally prevents the default action
9340          * @param {String} eventName
9341          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9342          * @return {Roo.Element} this
9343          */
9344         swallowEvent : function(eventName, preventDefault){
9345             var fn = function(e){
9346                 e.stopPropagation();
9347                 if(preventDefault){
9348                     e.preventDefault();
9349                 }
9350             };
9351             if(eventName instanceof Array){
9352                 for(var i = 0, len = eventName.length; i < len; i++){
9353                      this.on(eventName[i], fn);
9354                 }
9355                 return this;
9356             }
9357             this.on(eventName, fn);
9358             return this;
9359         },
9360
9361         /**
9362          * @private
9363          */
9364       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9365
9366         /**
9367          * Sizes this element to its parent element's dimensions performing
9368          * neccessary box adjustments.
9369          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9370          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9371          * @return {Roo.Element} this
9372          */
9373         fitToParent : function(monitorResize, targetParent) {
9374           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9375           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9376           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9377             return;
9378           }
9379           var p = Roo.get(targetParent || this.dom.parentNode);
9380           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9381           if (monitorResize === true) {
9382             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9383             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9384           }
9385           return this;
9386         },
9387
9388         /**
9389          * Gets the next sibling, skipping text nodes
9390          * @return {HTMLElement} The next sibling or null
9391          */
9392         getNextSibling : function(){
9393             var n = this.dom.nextSibling;
9394             while(n && n.nodeType != 1){
9395                 n = n.nextSibling;
9396             }
9397             return n;
9398         },
9399
9400         /**
9401          * Gets the previous sibling, skipping text nodes
9402          * @return {HTMLElement} The previous sibling or null
9403          */
9404         getPrevSibling : function(){
9405             var n = this.dom.previousSibling;
9406             while(n && n.nodeType != 1){
9407                 n = n.previousSibling;
9408             }
9409             return n;
9410         },
9411
9412
9413         /**
9414          * Appends the passed element(s) to this element
9415          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9416          * @return {Roo.Element} this
9417          */
9418         appendChild: function(el){
9419             el = Roo.get(el);
9420             el.appendTo(this);
9421             return this;
9422         },
9423
9424         /**
9425          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9426          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9427          * automatically generated with the specified attributes.
9428          * @param {HTMLElement} insertBefore (optional) a child element of this element
9429          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9430          * @return {Roo.Element} The new child element
9431          */
9432         createChild: function(config, insertBefore, returnDom){
9433             config = config || {tag:'div'};
9434             if(insertBefore){
9435                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9436             }
9437             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9438         },
9439
9440         /**
9441          * Appends this element to the passed element
9442          * @param {String/HTMLElement/Element} el The new parent element
9443          * @return {Roo.Element} this
9444          */
9445         appendTo: function(el){
9446             el = Roo.getDom(el);
9447             el.appendChild(this.dom);
9448             return this;
9449         },
9450
9451         /**
9452          * Inserts this element before the passed element in the DOM
9453          * @param {String/HTMLElement/Element} el The element to insert before
9454          * @return {Roo.Element} this
9455          */
9456         insertBefore: function(el){
9457             el = Roo.getDom(el);
9458             el.parentNode.insertBefore(this.dom, el);
9459             return this;
9460         },
9461
9462         /**
9463          * Inserts this element after the passed element in the DOM
9464          * @param {String/HTMLElement/Element} el The element to insert after
9465          * @return {Roo.Element} this
9466          */
9467         insertAfter: function(el){
9468             el = Roo.getDom(el);
9469             el.parentNode.insertBefore(this.dom, el.nextSibling);
9470             return this;
9471         },
9472
9473         /**
9474          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9475          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9476          * @return {Roo.Element} The new child
9477          */
9478         insertFirst: function(el, returnDom){
9479             el = el || {};
9480             if(typeof el == 'object' && !el.nodeType){ // dh config
9481                 return this.createChild(el, this.dom.firstChild, returnDom);
9482             }else{
9483                 el = Roo.getDom(el);
9484                 this.dom.insertBefore(el, this.dom.firstChild);
9485                 return !returnDom ? Roo.get(el) : el;
9486             }
9487         },
9488
9489         /**
9490          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9491          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9492          * @param {String} where (optional) 'before' or 'after' defaults to before
9493          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9494          * @return {Roo.Element} the inserted Element
9495          */
9496         insertSibling: function(el, where, returnDom){
9497             where = where ? where.toLowerCase() : 'before';
9498             el = el || {};
9499             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9500
9501             if(typeof el == 'object' && !el.nodeType){ // dh config
9502                 if(where == 'after' && !this.dom.nextSibling){
9503                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9504                 }else{
9505                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9506                 }
9507
9508             }else{
9509                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9510                             where == 'before' ? this.dom : this.dom.nextSibling);
9511                 if(!returnDom){
9512                     rt = Roo.get(rt);
9513                 }
9514             }
9515             return rt;
9516         },
9517
9518         /**
9519          * Creates and wraps this element with another element
9520          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9521          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9522          * @return {HTMLElement/Element} The newly created wrapper element
9523          */
9524         wrap: function(config, returnDom){
9525             if(!config){
9526                 config = {tag: "div"};
9527             }
9528             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9529             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9530             return newEl;
9531         },
9532
9533         /**
9534          * Replaces the passed element with this element
9535          * @param {String/HTMLElement/Element} el The element to replace
9536          * @return {Roo.Element} this
9537          */
9538         replace: function(el){
9539             el = Roo.get(el);
9540             this.insertBefore(el);
9541             el.remove();
9542             return this;
9543         },
9544
9545         /**
9546          * Inserts an html fragment into this element
9547          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9548          * @param {String} html The HTML fragment
9549          * @param {Boolean} returnEl True to return an Roo.Element
9550          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9551          */
9552         insertHtml : function(where, html, returnEl){
9553             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9554             return returnEl ? Roo.get(el) : el;
9555         },
9556
9557         /**
9558          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9559          * @param {Object} o The object with the attributes
9560          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9561          * @return {Roo.Element} this
9562          */
9563         set : function(o, useSet){
9564             var el = this.dom;
9565             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9566             for(var attr in o){
9567                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9568                 if(attr=="cls"){
9569                     el.className = o["cls"];
9570                 }else{
9571                     if(useSet) {
9572                         el.setAttribute(attr, o[attr]);
9573                     } else {
9574                         el[attr] = o[attr];
9575                     }
9576                 }
9577             }
9578             if(o.style){
9579                 Roo.DomHelper.applyStyles(el, o.style);
9580             }
9581             return this;
9582         },
9583
9584         /**
9585          * Convenience method for constructing a KeyMap
9586          * @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:
9587          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9588          * @param {Function} fn The function to call
9589          * @param {Object} scope (optional) The scope of the function
9590          * @return {Roo.KeyMap} The KeyMap created
9591          */
9592         addKeyListener : function(key, fn, scope){
9593             var config;
9594             if(typeof key != "object" || key instanceof Array){
9595                 config = {
9596                     key: key,
9597                     fn: fn,
9598                     scope: scope
9599                 };
9600             }else{
9601                 config = {
9602                     key : key.key,
9603                     shift : key.shift,
9604                     ctrl : key.ctrl,
9605                     alt : key.alt,
9606                     fn: fn,
9607                     scope: scope
9608                 };
9609             }
9610             return new Roo.KeyMap(this, config);
9611         },
9612
9613         /**
9614          * Creates a KeyMap for this element
9615          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9616          * @return {Roo.KeyMap} The KeyMap created
9617          */
9618         addKeyMap : function(config){
9619             return new Roo.KeyMap(this, config);
9620         },
9621
9622         /**
9623          * Returns true if this element is scrollable.
9624          * @return {Boolean}
9625          */
9626          isScrollable : function(){
9627             var dom = this.dom;
9628             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9629         },
9630
9631         /**
9632          * 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().
9633          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9634          * @param {Number} value The new scroll value
9635          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9636          * @return {Element} this
9637          */
9638
9639         scrollTo : function(side, value, animate){
9640             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9641             if(!animate || !A){
9642                 this.dom[prop] = value;
9643             }else{
9644                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9645                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9646             }
9647             return this;
9648         },
9649
9650         /**
9651          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9652          * within this element's scrollable range.
9653          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9654          * @param {Number} distance How far to scroll the element in pixels
9655          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9656          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9657          * was scrolled as far as it could go.
9658          */
9659          scroll : function(direction, distance, animate){
9660              if(!this.isScrollable()){
9661                  return;
9662              }
9663              var el = this.dom;
9664              var l = el.scrollLeft, t = el.scrollTop;
9665              var w = el.scrollWidth, h = el.scrollHeight;
9666              var cw = el.clientWidth, ch = el.clientHeight;
9667              direction = direction.toLowerCase();
9668              var scrolled = false;
9669              var a = this.preanim(arguments, 2);
9670              switch(direction){
9671                  case "l":
9672                  case "left":
9673                      if(w - l > cw){
9674                          var v = Math.min(l + distance, w-cw);
9675                          this.scrollTo("left", v, a);
9676                          scrolled = true;
9677                      }
9678                      break;
9679                 case "r":
9680                 case "right":
9681                      if(l > 0){
9682                          var v = Math.max(l - distance, 0);
9683                          this.scrollTo("left", v, a);
9684                          scrolled = true;
9685                      }
9686                      break;
9687                 case "t":
9688                 case "top":
9689                 case "up":
9690                      if(t > 0){
9691                          var v = Math.max(t - distance, 0);
9692                          this.scrollTo("top", v, a);
9693                          scrolled = true;
9694                      }
9695                      break;
9696                 case "b":
9697                 case "bottom":
9698                 case "down":
9699                      if(h - t > ch){
9700                          var v = Math.min(t + distance, h-ch);
9701                          this.scrollTo("top", v, a);
9702                          scrolled = true;
9703                      }
9704                      break;
9705              }
9706              return scrolled;
9707         },
9708
9709         /**
9710          * Translates the passed page coordinates into left/top css values for this element
9711          * @param {Number/Array} x The page x or an array containing [x, y]
9712          * @param {Number} y The page y
9713          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9714          */
9715         translatePoints : function(x, y){
9716             if(typeof x == 'object' || x instanceof Array){
9717                 y = x[1]; x = x[0];
9718             }
9719             var p = this.getStyle('position');
9720             var o = this.getXY();
9721
9722             var l = parseInt(this.getStyle('left'), 10);
9723             var t = parseInt(this.getStyle('top'), 10);
9724
9725             if(isNaN(l)){
9726                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9727             }
9728             if(isNaN(t)){
9729                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9730             }
9731
9732             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9733         },
9734
9735         /**
9736          * Returns the current scroll position of the element.
9737          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9738          */
9739         getScroll : function(){
9740             var d = this.dom, doc = document;
9741             if(d == doc || d == doc.body){
9742                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9743                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9744                 return {left: l, top: t};
9745             }else{
9746                 return {left: d.scrollLeft, top: d.scrollTop};
9747             }
9748         },
9749
9750         /**
9751          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9752          * are convert to standard 6 digit hex color.
9753          * @param {String} attr The css attribute
9754          * @param {String} defaultValue The default value to use when a valid color isn't found
9755          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9756          * YUI color anims.
9757          */
9758         getColor : function(attr, defaultValue, prefix){
9759             var v = this.getStyle(attr);
9760             if(!v || v == "transparent" || v == "inherit") {
9761                 return defaultValue;
9762             }
9763             var color = typeof prefix == "undefined" ? "#" : prefix;
9764             if(v.substr(0, 4) == "rgb("){
9765                 var rvs = v.slice(4, v.length -1).split(",");
9766                 for(var i = 0; i < 3; i++){
9767                     var h = parseInt(rvs[i]).toString(16);
9768                     if(h < 16){
9769                         h = "0" + h;
9770                     }
9771                     color += h;
9772                 }
9773             } else {
9774                 if(v.substr(0, 1) == "#"){
9775                     if(v.length == 4) {
9776                         for(var i = 1; i < 4; i++){
9777                             var c = v.charAt(i);
9778                             color +=  c + c;
9779                         }
9780                     }else if(v.length == 7){
9781                         color += v.substr(1);
9782                     }
9783                 }
9784             }
9785             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9786         },
9787
9788         /**
9789          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9790          * gradient background, rounded corners and a 4-way shadow.
9791          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9792          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9793          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9794          * @return {Roo.Element} this
9795          */
9796         boxWrap : function(cls){
9797             cls = cls || 'x-box';
9798             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9799             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9800             return el;
9801         },
9802
9803         /**
9804          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9805          * @param {String} namespace The namespace in which to look for the attribute
9806          * @param {String} name The attribute name
9807          * @return {String} The attribute value
9808          */
9809         getAttributeNS : Roo.isIE ? function(ns, name){
9810             var d = this.dom;
9811             var type = typeof d[ns+":"+name];
9812             if(type != 'undefined' && type != 'unknown'){
9813                 return d[ns+":"+name];
9814             }
9815             return d[name];
9816         } : function(ns, name){
9817             var d = this.dom;
9818             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9819         },
9820         
9821         
9822         /**
9823          * Sets or Returns the value the dom attribute value
9824          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9825          * @param {String} value (optional) The value to set the attribute to
9826          * @return {String} The attribute value
9827          */
9828         attr : function(name){
9829             if (arguments.length > 1) {
9830                 this.dom.setAttribute(name, arguments[1]);
9831                 return arguments[1];
9832             }
9833             if (typeof(name) == 'object') {
9834                 for(var i in name) {
9835                     this.attr(i, name[i]);
9836                 }
9837                 return name;
9838             }
9839             
9840             
9841             if (!this.dom.hasAttribute(name)) {
9842                 return undefined;
9843             }
9844             return this.dom.getAttribute(name);
9845         }
9846         
9847         
9848         
9849     };
9850
9851     var ep = El.prototype;
9852
9853     /**
9854      * Appends an event handler (Shorthand for addListener)
9855      * @param {String}   eventName     The type of event to append
9856      * @param {Function} fn        The method the event invokes
9857      * @param {Object} scope       (optional) The scope (this object) of the fn
9858      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9859      * @method
9860      */
9861     ep.on = ep.addListener;
9862         // backwards compat
9863     ep.mon = ep.addListener;
9864
9865     /**
9866      * Removes an event handler from this element (shorthand for removeListener)
9867      * @param {String} eventName the type of event to remove
9868      * @param {Function} fn the method the event invokes
9869      * @return {Roo.Element} this
9870      * @method
9871      */
9872     ep.un = ep.removeListener;
9873
9874     /**
9875      * true to automatically adjust width and height settings for box-model issues (default to true)
9876      */
9877     ep.autoBoxAdjust = true;
9878
9879     // private
9880     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9881
9882     // private
9883     El.addUnits = function(v, defaultUnit){
9884         if(v === "" || v == "auto"){
9885             return v;
9886         }
9887         if(v === undefined){
9888             return '';
9889         }
9890         if(typeof v == "number" || !El.unitPattern.test(v)){
9891             return v + (defaultUnit || 'px');
9892         }
9893         return v;
9894     };
9895
9896     // special markup used throughout Roo when box wrapping elements
9897     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>';
9898     /**
9899      * Visibility mode constant - Use visibility to hide element
9900      * @static
9901      * @type Number
9902      */
9903     El.VISIBILITY = 1;
9904     /**
9905      * Visibility mode constant - Use display to hide element
9906      * @static
9907      * @type Number
9908      */
9909     El.DISPLAY = 2;
9910
9911     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9912     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9913     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9914
9915
9916
9917     /**
9918      * @private
9919      */
9920     El.cache = {};
9921
9922     var docEl;
9923
9924     /**
9925      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9926      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9927      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9928      * @return {Element} The Element object
9929      * @static
9930      */
9931     El.get = function(el){
9932         var ex, elm, id;
9933         if(!el){ return null; }
9934         if(typeof el == "string"){ // element id
9935             if(!(elm = document.getElementById(el))){
9936                 return null;
9937             }
9938             if(ex = El.cache[el]){
9939                 ex.dom = elm;
9940             }else{
9941                 ex = El.cache[el] = new El(elm);
9942             }
9943             return ex;
9944         }else if(el.tagName){ // dom element
9945             if(!(id = el.id)){
9946                 id = Roo.id(el);
9947             }
9948             if(ex = El.cache[id]){
9949                 ex.dom = el;
9950             }else{
9951                 ex = El.cache[id] = new El(el);
9952             }
9953             return ex;
9954         }else if(el instanceof El){
9955             if(el != docEl){
9956                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9957                                                               // catch case where it hasn't been appended
9958                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9959             }
9960             return el;
9961         }else if(el.isComposite){
9962             return el;
9963         }else if(el instanceof Array){
9964             return El.select(el);
9965         }else if(el == document){
9966             // create a bogus element object representing the document object
9967             if(!docEl){
9968                 var f = function(){};
9969                 f.prototype = El.prototype;
9970                 docEl = new f();
9971                 docEl.dom = document;
9972             }
9973             return docEl;
9974         }
9975         return null;
9976     };
9977
9978     // private
9979     El.uncache = function(el){
9980         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9981             if(a[i]){
9982                 delete El.cache[a[i].id || a[i]];
9983             }
9984         }
9985     };
9986
9987     // private
9988     // Garbage collection - uncache elements/purge listeners on orphaned elements
9989     // so we don't hold a reference and cause the browser to retain them
9990     El.garbageCollect = function(){
9991         if(!Roo.enableGarbageCollector){
9992             clearInterval(El.collectorThread);
9993             return;
9994         }
9995         for(var eid in El.cache){
9996             var el = El.cache[eid], d = el.dom;
9997             // -------------------------------------------------------
9998             // Determining what is garbage:
9999             // -------------------------------------------------------
10000             // !d
10001             // dom node is null, definitely garbage
10002             // -------------------------------------------------------
10003             // !d.parentNode
10004             // no parentNode == direct orphan, definitely garbage
10005             // -------------------------------------------------------
10006             // !d.offsetParent && !document.getElementById(eid)
10007             // display none elements have no offsetParent so we will
10008             // also try to look it up by it's id. However, check
10009             // offsetParent first so we don't do unneeded lookups.
10010             // This enables collection of elements that are not orphans
10011             // directly, but somewhere up the line they have an orphan
10012             // parent.
10013             // -------------------------------------------------------
10014             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10015                 delete El.cache[eid];
10016                 if(d && Roo.enableListenerCollection){
10017                     E.purgeElement(d);
10018                 }
10019             }
10020         }
10021     }
10022     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10023
10024
10025     // dom is optional
10026     El.Flyweight = function(dom){
10027         this.dom = dom;
10028     };
10029     El.Flyweight.prototype = El.prototype;
10030
10031     El._flyweights = {};
10032     /**
10033      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10034      * the dom node can be overwritten by other code.
10035      * @param {String/HTMLElement} el The dom node or id
10036      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10037      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10038      * @static
10039      * @return {Element} The shared Element object
10040      */
10041     El.fly = function(el, named){
10042         named = named || '_global';
10043         el = Roo.getDom(el);
10044         if(!el){
10045             return null;
10046         }
10047         if(!El._flyweights[named]){
10048             El._flyweights[named] = new El.Flyweight();
10049         }
10050         El._flyweights[named].dom = el;
10051         return El._flyweights[named];
10052     };
10053
10054     /**
10055      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10056      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10057      * Shorthand of {@link Roo.Element#get}
10058      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10059      * @return {Element} The Element object
10060      * @member Roo
10061      * @method get
10062      */
10063     Roo.get = El.get;
10064     /**
10065      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10066      * the dom node can be overwritten by other code.
10067      * Shorthand of {@link Roo.Element#fly}
10068      * @param {String/HTMLElement} el The dom node or id
10069      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10070      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10071      * @static
10072      * @return {Element} The shared Element object
10073      * @member Roo
10074      * @method fly
10075      */
10076     Roo.fly = El.fly;
10077
10078     // speedy lookup for elements never to box adjust
10079     var noBoxAdjust = Roo.isStrict ? {
10080         select:1
10081     } : {
10082         input:1, select:1, textarea:1
10083     };
10084     if(Roo.isIE || Roo.isGecko){
10085         noBoxAdjust['button'] = 1;
10086     }
10087
10088
10089     Roo.EventManager.on(window, 'unload', function(){
10090         delete El.cache;
10091         delete El._flyweights;
10092     });
10093 })();
10094
10095
10096
10097
10098 if(Roo.DomQuery){
10099     Roo.Element.selectorFunction = Roo.DomQuery.select;
10100 }
10101
10102 Roo.Element.select = function(selector, unique, root){
10103     var els;
10104     if(typeof selector == "string"){
10105         els = Roo.Element.selectorFunction(selector, root);
10106     }else if(selector.length !== undefined){
10107         els = selector;
10108     }else{
10109         throw "Invalid selector";
10110     }
10111     if(unique === true){
10112         return new Roo.CompositeElement(els);
10113     }else{
10114         return new Roo.CompositeElementLite(els);
10115     }
10116 };
10117 /**
10118  * Selects elements based on the passed CSS selector to enable working on them as 1.
10119  * @param {String/Array} selector The CSS selector or an array of elements
10120  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10121  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10122  * @return {CompositeElementLite/CompositeElement}
10123  * @member Roo
10124  * @method select
10125  */
10126 Roo.select = Roo.Element.select;
10127
10128
10129
10130
10131
10132
10133
10134
10135
10136
10137
10138
10139
10140
10141 /*
10142  * Based on:
10143  * Ext JS Library 1.1.1
10144  * Copyright(c) 2006-2007, Ext JS, LLC.
10145  *
10146  * Originally Released Under LGPL - original licence link has changed is not relivant.
10147  *
10148  * Fork - LGPL
10149  * <script type="text/javascript">
10150  */
10151
10152
10153
10154 //Notifies Element that fx methods are available
10155 Roo.enableFx = true;
10156
10157 /**
10158  * @class Roo.Fx
10159  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10160  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10161  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10162  * Element effects to work.</p><br/>
10163  *
10164  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10165  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10166  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10167  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10168  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10169  * expected results and should be done with care.</p><br/>
10170  *
10171  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10172  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10173 <pre>
10174 Value  Description
10175 -----  -----------------------------
10176 tl     The top left corner
10177 t      The center of the top edge
10178 tr     The top right corner
10179 l      The center of the left edge
10180 r      The center of the right edge
10181 bl     The bottom left corner
10182 b      The center of the bottom edge
10183 br     The bottom right corner
10184 </pre>
10185  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10186  * below are common options that can be passed to any Fx method.</b>
10187  * @cfg {Function} callback A function called when the effect is finished
10188  * @cfg {Object} scope The scope of the effect function
10189  * @cfg {String} easing A valid Easing value for the effect
10190  * @cfg {String} afterCls A css class to apply after the effect
10191  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10192  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10193  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10194  * effects that end with the element being visually hidden, ignored otherwise)
10195  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10196  * a function which returns such a specification that will be applied to the Element after the effect finishes
10197  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10198  * @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
10199  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10200  */
10201 Roo.Fx = {
10202         /**
10203          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10204          * origin for the slide effect.  This function automatically handles wrapping the element with
10205          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10206          * Usage:
10207          *<pre><code>
10208 // default: slide the element in from the top
10209 el.slideIn();
10210
10211 // custom: slide the element in from the right with a 2-second duration
10212 el.slideIn('r', { duration: 2 });
10213
10214 // common config options shown with default values
10215 el.slideIn('t', {
10216     easing: 'easeOut',
10217     duration: .5
10218 });
10219 </code></pre>
10220          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10221          * @param {Object} options (optional) Object literal with any of the Fx config options
10222          * @return {Roo.Element} The Element
10223          */
10224     slideIn : function(anchor, o){
10225         var el = this.getFxEl();
10226         o = o || {};
10227
10228         el.queueFx(o, function(){
10229
10230             anchor = anchor || "t";
10231
10232             // fix display to visibility
10233             this.fixDisplay();
10234
10235             // restore values after effect
10236             var r = this.getFxRestore();
10237             var b = this.getBox();
10238             // fixed size for slide
10239             this.setSize(b);
10240
10241             // wrap if needed
10242             var wrap = this.fxWrap(r.pos, o, "hidden");
10243
10244             var st = this.dom.style;
10245             st.visibility = "visible";
10246             st.position = "absolute";
10247
10248             // clear out temp styles after slide and unwrap
10249             var after = function(){
10250                 el.fxUnwrap(wrap, r.pos, o);
10251                 st.width = r.width;
10252                 st.height = r.height;
10253                 el.afterFx(o);
10254             };
10255             // time to calc the positions
10256             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10257
10258             switch(anchor.toLowerCase()){
10259                 case "t":
10260                     wrap.setSize(b.width, 0);
10261                     st.left = st.bottom = "0";
10262                     a = {height: bh};
10263                 break;
10264                 case "l":
10265                     wrap.setSize(0, b.height);
10266                     st.right = st.top = "0";
10267                     a = {width: bw};
10268                 break;
10269                 case "r":
10270                     wrap.setSize(0, b.height);
10271                     wrap.setX(b.right);
10272                     st.left = st.top = "0";
10273                     a = {width: bw, points: pt};
10274                 break;
10275                 case "b":
10276                     wrap.setSize(b.width, 0);
10277                     wrap.setY(b.bottom);
10278                     st.left = st.top = "0";
10279                     a = {height: bh, points: pt};
10280                 break;
10281                 case "tl":
10282                     wrap.setSize(0, 0);
10283                     st.right = st.bottom = "0";
10284                     a = {width: bw, height: bh};
10285                 break;
10286                 case "bl":
10287                     wrap.setSize(0, 0);
10288                     wrap.setY(b.y+b.height);
10289                     st.right = st.top = "0";
10290                     a = {width: bw, height: bh, points: pt};
10291                 break;
10292                 case "br":
10293                     wrap.setSize(0, 0);
10294                     wrap.setXY([b.right, b.bottom]);
10295                     st.left = st.top = "0";
10296                     a = {width: bw, height: bh, points: pt};
10297                 break;
10298                 case "tr":
10299                     wrap.setSize(0, 0);
10300                     wrap.setX(b.x+b.width);
10301                     st.left = st.bottom = "0";
10302                     a = {width: bw, height: bh, points: pt};
10303                 break;
10304             }
10305             this.dom.style.visibility = "visible";
10306             wrap.show();
10307
10308             arguments.callee.anim = wrap.fxanim(a,
10309                 o,
10310                 'motion',
10311                 .5,
10312                 'easeOut', after);
10313         });
10314         return this;
10315     },
10316     
10317         /**
10318          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10319          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10320          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10321          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10322          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10323          * Usage:
10324          *<pre><code>
10325 // default: slide the element out to the top
10326 el.slideOut();
10327
10328 // custom: slide the element out to the right with a 2-second duration
10329 el.slideOut('r', { duration: 2 });
10330
10331 // common config options shown with default values
10332 el.slideOut('t', {
10333     easing: 'easeOut',
10334     duration: .5,
10335     remove: false,
10336     useDisplay: false
10337 });
10338 </code></pre>
10339          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10340          * @param {Object} options (optional) Object literal with any of the Fx config options
10341          * @return {Roo.Element} The Element
10342          */
10343     slideOut : function(anchor, o){
10344         var el = this.getFxEl();
10345         o = o || {};
10346
10347         el.queueFx(o, function(){
10348
10349             anchor = anchor || "t";
10350
10351             // restore values after effect
10352             var r = this.getFxRestore();
10353             
10354             var b = this.getBox();
10355             // fixed size for slide
10356             this.setSize(b);
10357
10358             // wrap if needed
10359             var wrap = this.fxWrap(r.pos, o, "visible");
10360
10361             var st = this.dom.style;
10362             st.visibility = "visible";
10363             st.position = "absolute";
10364
10365             wrap.setSize(b);
10366
10367             var after = function(){
10368                 if(o.useDisplay){
10369                     el.setDisplayed(false);
10370                 }else{
10371                     el.hide();
10372                 }
10373
10374                 el.fxUnwrap(wrap, r.pos, o);
10375
10376                 st.width = r.width;
10377                 st.height = r.height;
10378
10379                 el.afterFx(o);
10380             };
10381
10382             var a, zero = {to: 0};
10383             switch(anchor.toLowerCase()){
10384                 case "t":
10385                     st.left = st.bottom = "0";
10386                     a = {height: zero};
10387                 break;
10388                 case "l":
10389                     st.right = st.top = "0";
10390                     a = {width: zero};
10391                 break;
10392                 case "r":
10393                     st.left = st.top = "0";
10394                     a = {width: zero, points: {to:[b.right, b.y]}};
10395                 break;
10396                 case "b":
10397                     st.left = st.top = "0";
10398                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10399                 break;
10400                 case "tl":
10401                     st.right = st.bottom = "0";
10402                     a = {width: zero, height: zero};
10403                 break;
10404                 case "bl":
10405                     st.right = st.top = "0";
10406                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10407                 break;
10408                 case "br":
10409                     st.left = st.top = "0";
10410                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10411                 break;
10412                 case "tr":
10413                     st.left = st.bottom = "0";
10414                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10415                 break;
10416             }
10417
10418             arguments.callee.anim = wrap.fxanim(a,
10419                 o,
10420                 'motion',
10421                 .5,
10422                 "easeOut", after);
10423         });
10424         return this;
10425     },
10426
10427         /**
10428          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10429          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10430          * The element must be removed from the DOM using the 'remove' config option if desired.
10431          * Usage:
10432          *<pre><code>
10433 // default
10434 el.puff();
10435
10436 // common config options shown with default values
10437 el.puff({
10438     easing: 'easeOut',
10439     duration: .5,
10440     remove: false,
10441     useDisplay: false
10442 });
10443 </code></pre>
10444          * @param {Object} options (optional) Object literal with any of the Fx config options
10445          * @return {Roo.Element} The Element
10446          */
10447     puff : function(o){
10448         var el = this.getFxEl();
10449         o = o || {};
10450
10451         el.queueFx(o, function(){
10452             this.clearOpacity();
10453             this.show();
10454
10455             // restore values after effect
10456             var r = this.getFxRestore();
10457             var st = this.dom.style;
10458
10459             var after = function(){
10460                 if(o.useDisplay){
10461                     el.setDisplayed(false);
10462                 }else{
10463                     el.hide();
10464                 }
10465
10466                 el.clearOpacity();
10467
10468                 el.setPositioning(r.pos);
10469                 st.width = r.width;
10470                 st.height = r.height;
10471                 st.fontSize = '';
10472                 el.afterFx(o);
10473             };
10474
10475             var width = this.getWidth();
10476             var height = this.getHeight();
10477
10478             arguments.callee.anim = this.fxanim({
10479                     width : {to: this.adjustWidth(width * 2)},
10480                     height : {to: this.adjustHeight(height * 2)},
10481                     points : {by: [-(width * .5), -(height * .5)]},
10482                     opacity : {to: 0},
10483                     fontSize: {to:200, unit: "%"}
10484                 },
10485                 o,
10486                 'motion',
10487                 .5,
10488                 "easeOut", after);
10489         });
10490         return this;
10491     },
10492
10493         /**
10494          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10495          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10496          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10497          * Usage:
10498          *<pre><code>
10499 // default
10500 el.switchOff();
10501
10502 // all config options shown with default values
10503 el.switchOff({
10504     easing: 'easeIn',
10505     duration: .3,
10506     remove: false,
10507     useDisplay: false
10508 });
10509 </code></pre>
10510          * @param {Object} options (optional) Object literal with any of the Fx config options
10511          * @return {Roo.Element} The Element
10512          */
10513     switchOff : function(o){
10514         var el = this.getFxEl();
10515         o = o || {};
10516
10517         el.queueFx(o, function(){
10518             this.clearOpacity();
10519             this.clip();
10520
10521             // restore values after effect
10522             var r = this.getFxRestore();
10523             var st = this.dom.style;
10524
10525             var after = function(){
10526                 if(o.useDisplay){
10527                     el.setDisplayed(false);
10528                 }else{
10529                     el.hide();
10530                 }
10531
10532                 el.clearOpacity();
10533                 el.setPositioning(r.pos);
10534                 st.width = r.width;
10535                 st.height = r.height;
10536
10537                 el.afterFx(o);
10538             };
10539
10540             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10541                 this.clearOpacity();
10542                 (function(){
10543                     this.fxanim({
10544                         height:{to:1},
10545                         points:{by:[0, this.getHeight() * .5]}
10546                     }, o, 'motion', 0.3, 'easeIn', after);
10547                 }).defer(100, this);
10548             });
10549         });
10550         return this;
10551     },
10552
10553     /**
10554      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10555      * changed using the "attr" config option) and then fading back to the original color. If no original
10556      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10557      * Usage:
10558 <pre><code>
10559 // default: highlight background to yellow
10560 el.highlight();
10561
10562 // custom: highlight foreground text to blue for 2 seconds
10563 el.highlight("0000ff", { attr: 'color', duration: 2 });
10564
10565 // common config options shown with default values
10566 el.highlight("ffff9c", {
10567     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10568     endColor: (current color) or "ffffff",
10569     easing: 'easeIn',
10570     duration: 1
10571 });
10572 </code></pre>
10573      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10574      * @param {Object} options (optional) Object literal with any of the Fx config options
10575      * @return {Roo.Element} The Element
10576      */ 
10577     highlight : function(color, o){
10578         var el = this.getFxEl();
10579         o = o || {};
10580
10581         el.queueFx(o, function(){
10582             color = color || "ffff9c";
10583             attr = o.attr || "backgroundColor";
10584
10585             this.clearOpacity();
10586             this.show();
10587
10588             var origColor = this.getColor(attr);
10589             var restoreColor = this.dom.style[attr];
10590             endColor = (o.endColor || origColor) || "ffffff";
10591
10592             var after = function(){
10593                 el.dom.style[attr] = restoreColor;
10594                 el.afterFx(o);
10595             };
10596
10597             var a = {};
10598             a[attr] = {from: color, to: endColor};
10599             arguments.callee.anim = this.fxanim(a,
10600                 o,
10601                 'color',
10602                 1,
10603                 'easeIn', after);
10604         });
10605         return this;
10606     },
10607
10608    /**
10609     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10610     * Usage:
10611 <pre><code>
10612 // default: a single light blue ripple
10613 el.frame();
10614
10615 // custom: 3 red ripples lasting 3 seconds total
10616 el.frame("ff0000", 3, { duration: 3 });
10617
10618 // common config options shown with default values
10619 el.frame("C3DAF9", 1, {
10620     duration: 1 //duration of entire animation (not each individual ripple)
10621     // Note: Easing is not configurable and will be ignored if included
10622 });
10623 </code></pre>
10624     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10625     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10626     * @param {Object} options (optional) Object literal with any of the Fx config options
10627     * @return {Roo.Element} The Element
10628     */
10629     frame : function(color, count, o){
10630         var el = this.getFxEl();
10631         o = o || {};
10632
10633         el.queueFx(o, function(){
10634             color = color || "#C3DAF9";
10635             if(color.length == 6){
10636                 color = "#" + color;
10637             }
10638             count = count || 1;
10639             duration = o.duration || 1;
10640             this.show();
10641
10642             var b = this.getBox();
10643             var animFn = function(){
10644                 var proxy = this.createProxy({
10645
10646                      style:{
10647                         visbility:"hidden",
10648                         position:"absolute",
10649                         "z-index":"35000", // yee haw
10650                         border:"0px solid " + color
10651                      }
10652                   });
10653                 var scale = Roo.isBorderBox ? 2 : 1;
10654                 proxy.animate({
10655                     top:{from:b.y, to:b.y - 20},
10656                     left:{from:b.x, to:b.x - 20},
10657                     borderWidth:{from:0, to:10},
10658                     opacity:{from:1, to:0},
10659                     height:{from:b.height, to:(b.height + (20*scale))},
10660                     width:{from:b.width, to:(b.width + (20*scale))}
10661                 }, duration, function(){
10662                     proxy.remove();
10663                 });
10664                 if(--count > 0){
10665                      animFn.defer((duration/2)*1000, this);
10666                 }else{
10667                     el.afterFx(o);
10668                 }
10669             };
10670             animFn.call(this);
10671         });
10672         return this;
10673     },
10674
10675    /**
10676     * Creates a pause before any subsequent queued effects begin.  If there are
10677     * no effects queued after the pause it will have no effect.
10678     * Usage:
10679 <pre><code>
10680 el.pause(1);
10681 </code></pre>
10682     * @param {Number} seconds The length of time to pause (in seconds)
10683     * @return {Roo.Element} The Element
10684     */
10685     pause : function(seconds){
10686         var el = this.getFxEl();
10687         var o = {};
10688
10689         el.queueFx(o, function(){
10690             setTimeout(function(){
10691                 el.afterFx(o);
10692             }, seconds * 1000);
10693         });
10694         return this;
10695     },
10696
10697    /**
10698     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10699     * using the "endOpacity" config option.
10700     * Usage:
10701 <pre><code>
10702 // default: fade in from opacity 0 to 100%
10703 el.fadeIn();
10704
10705 // custom: fade in from opacity 0 to 75% over 2 seconds
10706 el.fadeIn({ endOpacity: .75, duration: 2});
10707
10708 // common config options shown with default values
10709 el.fadeIn({
10710     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10711     easing: 'easeOut',
10712     duration: .5
10713 });
10714 </code></pre>
10715     * @param {Object} options (optional) Object literal with any of the Fx config options
10716     * @return {Roo.Element} The Element
10717     */
10718     fadeIn : function(o){
10719         var el = this.getFxEl();
10720         o = o || {};
10721         el.queueFx(o, function(){
10722             this.setOpacity(0);
10723             this.fixDisplay();
10724             this.dom.style.visibility = 'visible';
10725             var to = o.endOpacity || 1;
10726             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10727                 o, null, .5, "easeOut", function(){
10728                 if(to == 1){
10729                     this.clearOpacity();
10730                 }
10731                 el.afterFx(o);
10732             });
10733         });
10734         return this;
10735     },
10736
10737    /**
10738     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10739     * using the "endOpacity" config option.
10740     * Usage:
10741 <pre><code>
10742 // default: fade out from the element's current opacity to 0
10743 el.fadeOut();
10744
10745 // custom: fade out from the element's current opacity to 25% over 2 seconds
10746 el.fadeOut({ endOpacity: .25, duration: 2});
10747
10748 // common config options shown with default values
10749 el.fadeOut({
10750     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10751     easing: 'easeOut',
10752     duration: .5
10753     remove: false,
10754     useDisplay: false
10755 });
10756 </code></pre>
10757     * @param {Object} options (optional) Object literal with any of the Fx config options
10758     * @return {Roo.Element} The Element
10759     */
10760     fadeOut : function(o){
10761         var el = this.getFxEl();
10762         o = o || {};
10763         el.queueFx(o, function(){
10764             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10765                 o, null, .5, "easeOut", function(){
10766                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10767                      this.dom.style.display = "none";
10768                 }else{
10769                      this.dom.style.visibility = "hidden";
10770                 }
10771                 this.clearOpacity();
10772                 el.afterFx(o);
10773             });
10774         });
10775         return this;
10776     },
10777
10778    /**
10779     * Animates the transition of an element's dimensions from a starting height/width
10780     * to an ending height/width.
10781     * Usage:
10782 <pre><code>
10783 // change height and width to 100x100 pixels
10784 el.scale(100, 100);
10785
10786 // common config options shown with default values.  The height and width will default to
10787 // the element's existing values if passed as null.
10788 el.scale(
10789     [element's width],
10790     [element's height], {
10791     easing: 'easeOut',
10792     duration: .35
10793 });
10794 </code></pre>
10795     * @param {Number} width  The new width (pass undefined to keep the original width)
10796     * @param {Number} height  The new height (pass undefined to keep the original height)
10797     * @param {Object} options (optional) Object literal with any of the Fx config options
10798     * @return {Roo.Element} The Element
10799     */
10800     scale : function(w, h, o){
10801         this.shift(Roo.apply({}, o, {
10802             width: w,
10803             height: h
10804         }));
10805         return this;
10806     },
10807
10808    /**
10809     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10810     * Any of these properties not specified in the config object will not be changed.  This effect 
10811     * requires that at least one new dimension, position or opacity setting must be passed in on
10812     * the config object in order for the function to have any effect.
10813     * Usage:
10814 <pre><code>
10815 // slide the element horizontally to x position 200 while changing the height and opacity
10816 el.shift({ x: 200, height: 50, opacity: .8 });
10817
10818 // common config options shown with default values.
10819 el.shift({
10820     width: [element's width],
10821     height: [element's height],
10822     x: [element's x position],
10823     y: [element's y position],
10824     opacity: [element's opacity],
10825     easing: 'easeOut',
10826     duration: .35
10827 });
10828 </code></pre>
10829     * @param {Object} options  Object literal with any of the Fx config options
10830     * @return {Roo.Element} The Element
10831     */
10832     shift : function(o){
10833         var el = this.getFxEl();
10834         o = o || {};
10835         el.queueFx(o, function(){
10836             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10837             if(w !== undefined){
10838                 a.width = {to: this.adjustWidth(w)};
10839             }
10840             if(h !== undefined){
10841                 a.height = {to: this.adjustHeight(h)};
10842             }
10843             if(x !== undefined || y !== undefined){
10844                 a.points = {to: [
10845                     x !== undefined ? x : this.getX(),
10846                     y !== undefined ? y : this.getY()
10847                 ]};
10848             }
10849             if(op !== undefined){
10850                 a.opacity = {to: op};
10851             }
10852             if(o.xy !== undefined){
10853                 a.points = {to: o.xy};
10854             }
10855             arguments.callee.anim = this.fxanim(a,
10856                 o, 'motion', .35, "easeOut", function(){
10857                 el.afterFx(o);
10858             });
10859         });
10860         return this;
10861     },
10862
10863         /**
10864          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10865          * ending point of the effect.
10866          * Usage:
10867          *<pre><code>
10868 // default: slide the element downward while fading out
10869 el.ghost();
10870
10871 // custom: slide the element out to the right with a 2-second duration
10872 el.ghost('r', { duration: 2 });
10873
10874 // common config options shown with default values
10875 el.ghost('b', {
10876     easing: 'easeOut',
10877     duration: .5
10878     remove: false,
10879     useDisplay: false
10880 });
10881 </code></pre>
10882          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10883          * @param {Object} options (optional) Object literal with any of the Fx config options
10884          * @return {Roo.Element} The Element
10885          */
10886     ghost : function(anchor, o){
10887         var el = this.getFxEl();
10888         o = o || {};
10889
10890         el.queueFx(o, function(){
10891             anchor = anchor || "b";
10892
10893             // restore values after effect
10894             var r = this.getFxRestore();
10895             var w = this.getWidth(),
10896                 h = this.getHeight();
10897
10898             var st = this.dom.style;
10899
10900             var after = function(){
10901                 if(o.useDisplay){
10902                     el.setDisplayed(false);
10903                 }else{
10904                     el.hide();
10905                 }
10906
10907                 el.clearOpacity();
10908                 el.setPositioning(r.pos);
10909                 st.width = r.width;
10910                 st.height = r.height;
10911
10912                 el.afterFx(o);
10913             };
10914
10915             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10916             switch(anchor.toLowerCase()){
10917                 case "t":
10918                     pt.by = [0, -h];
10919                 break;
10920                 case "l":
10921                     pt.by = [-w, 0];
10922                 break;
10923                 case "r":
10924                     pt.by = [w, 0];
10925                 break;
10926                 case "b":
10927                     pt.by = [0, h];
10928                 break;
10929                 case "tl":
10930                     pt.by = [-w, -h];
10931                 break;
10932                 case "bl":
10933                     pt.by = [-w, h];
10934                 break;
10935                 case "br":
10936                     pt.by = [w, h];
10937                 break;
10938                 case "tr":
10939                     pt.by = [w, -h];
10940                 break;
10941             }
10942
10943             arguments.callee.anim = this.fxanim(a,
10944                 o,
10945                 'motion',
10946                 .5,
10947                 "easeOut", after);
10948         });
10949         return this;
10950     },
10951
10952         /**
10953          * Ensures that all effects queued after syncFx is called on the element are
10954          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10955          * @return {Roo.Element} The Element
10956          */
10957     syncFx : function(){
10958         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10959             block : false,
10960             concurrent : true,
10961             stopFx : false
10962         });
10963         return this;
10964     },
10965
10966         /**
10967          * Ensures that all effects queued after sequenceFx is called on the element are
10968          * run in sequence.  This is the opposite of {@link #syncFx}.
10969          * @return {Roo.Element} The Element
10970          */
10971     sequenceFx : function(){
10972         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10973             block : false,
10974             concurrent : false,
10975             stopFx : false
10976         });
10977         return this;
10978     },
10979
10980         /* @private */
10981     nextFx : function(){
10982         var ef = this.fxQueue[0];
10983         if(ef){
10984             ef.call(this);
10985         }
10986     },
10987
10988         /**
10989          * Returns true if the element has any effects actively running or queued, else returns false.
10990          * @return {Boolean} True if element has active effects, else false
10991          */
10992     hasActiveFx : function(){
10993         return this.fxQueue && this.fxQueue[0];
10994     },
10995
10996         /**
10997          * Stops any running effects and clears the element's internal effects queue if it contains
10998          * any additional effects that haven't started yet.
10999          * @return {Roo.Element} The Element
11000          */
11001     stopFx : function(){
11002         if(this.hasActiveFx()){
11003             var cur = this.fxQueue[0];
11004             if(cur && cur.anim && cur.anim.isAnimated()){
11005                 this.fxQueue = [cur]; // clear out others
11006                 cur.anim.stop(true);
11007             }
11008         }
11009         return this;
11010     },
11011
11012         /* @private */
11013     beforeFx : function(o){
11014         if(this.hasActiveFx() && !o.concurrent){
11015            if(o.stopFx){
11016                this.stopFx();
11017                return true;
11018            }
11019            return false;
11020         }
11021         return true;
11022     },
11023
11024         /**
11025          * Returns true if the element is currently blocking so that no other effect can be queued
11026          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11027          * used to ensure that an effect initiated by a user action runs to completion prior to the
11028          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11029          * @return {Boolean} True if blocking, else false
11030          */
11031     hasFxBlock : function(){
11032         var q = this.fxQueue;
11033         return q && q[0] && q[0].block;
11034     },
11035
11036         /* @private */
11037     queueFx : function(o, fn){
11038         if(!this.fxQueue){
11039             this.fxQueue = [];
11040         }
11041         if(!this.hasFxBlock()){
11042             Roo.applyIf(o, this.fxDefaults);
11043             if(!o.concurrent){
11044                 var run = this.beforeFx(o);
11045                 fn.block = o.block;
11046                 this.fxQueue.push(fn);
11047                 if(run){
11048                     this.nextFx();
11049                 }
11050             }else{
11051                 fn.call(this);
11052             }
11053         }
11054         return this;
11055     },
11056
11057         /* @private */
11058     fxWrap : function(pos, o, vis){
11059         var wrap;
11060         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11061             var wrapXY;
11062             if(o.fixPosition){
11063                 wrapXY = this.getXY();
11064             }
11065             var div = document.createElement("div");
11066             div.style.visibility = vis;
11067             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11068             wrap.setPositioning(pos);
11069             if(wrap.getStyle("position") == "static"){
11070                 wrap.position("relative");
11071             }
11072             this.clearPositioning('auto');
11073             wrap.clip();
11074             wrap.dom.appendChild(this.dom);
11075             if(wrapXY){
11076                 wrap.setXY(wrapXY);
11077             }
11078         }
11079         return wrap;
11080     },
11081
11082         /* @private */
11083     fxUnwrap : function(wrap, pos, o){
11084         this.clearPositioning();
11085         this.setPositioning(pos);
11086         if(!o.wrap){
11087             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11088             wrap.remove();
11089         }
11090     },
11091
11092         /* @private */
11093     getFxRestore : function(){
11094         var st = this.dom.style;
11095         return {pos: this.getPositioning(), width: st.width, height : st.height};
11096     },
11097
11098         /* @private */
11099     afterFx : function(o){
11100         if(o.afterStyle){
11101             this.applyStyles(o.afterStyle);
11102         }
11103         if(o.afterCls){
11104             this.addClass(o.afterCls);
11105         }
11106         if(o.remove === true){
11107             this.remove();
11108         }
11109         Roo.callback(o.callback, o.scope, [this]);
11110         if(!o.concurrent){
11111             this.fxQueue.shift();
11112             this.nextFx();
11113         }
11114     },
11115
11116         /* @private */
11117     getFxEl : function(){ // support for composite element fx
11118         return Roo.get(this.dom);
11119     },
11120
11121         /* @private */
11122     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11123         animType = animType || 'run';
11124         opt = opt || {};
11125         var anim = Roo.lib.Anim[animType](
11126             this.dom, args,
11127             (opt.duration || defaultDur) || .35,
11128             (opt.easing || defaultEase) || 'easeOut',
11129             function(){
11130                 Roo.callback(cb, this);
11131             },
11132             this
11133         );
11134         opt.anim = anim;
11135         return anim;
11136     }
11137 };
11138
11139 // backwords compat
11140 Roo.Fx.resize = Roo.Fx.scale;
11141
11142 //When included, Roo.Fx is automatically applied to Element so that all basic
11143 //effects are available directly via the Element API
11144 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11145  * Based on:
11146  * Ext JS Library 1.1.1
11147  * Copyright(c) 2006-2007, Ext JS, LLC.
11148  *
11149  * Originally Released Under LGPL - original licence link has changed is not relivant.
11150  *
11151  * Fork - LGPL
11152  * <script type="text/javascript">
11153  */
11154
11155
11156 /**
11157  * @class Roo.CompositeElement
11158  * Standard composite class. Creates a Roo.Element for every element in the collection.
11159  * <br><br>
11160  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11161  * actions will be performed on all the elements in this collection.</b>
11162  * <br><br>
11163  * All methods return <i>this</i> and can be chained.
11164  <pre><code>
11165  var els = Roo.select("#some-el div.some-class", true);
11166  // or select directly from an existing element
11167  var el = Roo.get('some-el');
11168  el.select('div.some-class', true);
11169
11170  els.setWidth(100); // all elements become 100 width
11171  els.hide(true); // all elements fade out and hide
11172  // or
11173  els.setWidth(100).hide(true);
11174  </code></pre>
11175  */
11176 Roo.CompositeElement = function(els){
11177     this.elements = [];
11178     this.addElements(els);
11179 };
11180 Roo.CompositeElement.prototype = {
11181     isComposite: true,
11182     addElements : function(els){
11183         if(!els) {
11184             return this;
11185         }
11186         if(typeof els == "string"){
11187             els = Roo.Element.selectorFunction(els);
11188         }
11189         var yels = this.elements;
11190         var index = yels.length-1;
11191         for(var i = 0, len = els.length; i < len; i++) {
11192                 yels[++index] = Roo.get(els[i]);
11193         }
11194         return this;
11195     },
11196
11197     /**
11198     * Clears this composite and adds the elements returned by the passed selector.
11199     * @param {String/Array} els A string CSS selector, an array of elements or an element
11200     * @return {CompositeElement} this
11201     */
11202     fill : function(els){
11203         this.elements = [];
11204         this.add(els);
11205         return this;
11206     },
11207
11208     /**
11209     * Filters this composite to only elements that match the passed selector.
11210     * @param {String} selector A string CSS selector
11211     * @param {Boolean} inverse return inverse filter (not matches)
11212     * @return {CompositeElement} this
11213     */
11214     filter : function(selector, inverse){
11215         var els = [];
11216         inverse = inverse || false;
11217         this.each(function(el){
11218             var match = inverse ? !el.is(selector) : el.is(selector);
11219             if(match){
11220                 els[els.length] = el.dom;
11221             }
11222         });
11223         this.fill(els);
11224         return this;
11225     },
11226
11227     invoke : function(fn, args){
11228         var els = this.elements;
11229         for(var i = 0, len = els.length; i < len; i++) {
11230                 Roo.Element.prototype[fn].apply(els[i], args);
11231         }
11232         return this;
11233     },
11234     /**
11235     * Adds elements to this composite.
11236     * @param {String/Array} els A string CSS selector, an array of elements or an element
11237     * @return {CompositeElement} this
11238     */
11239     add : function(els){
11240         if(typeof els == "string"){
11241             this.addElements(Roo.Element.selectorFunction(els));
11242         }else if(els.length !== undefined){
11243             this.addElements(els);
11244         }else{
11245             this.addElements([els]);
11246         }
11247         return this;
11248     },
11249     /**
11250     * Calls the passed function passing (el, this, index) for each element in this composite.
11251     * @param {Function} fn The function to call
11252     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11253     * @return {CompositeElement} this
11254     */
11255     each : function(fn, scope){
11256         var els = this.elements;
11257         for(var i = 0, len = els.length; i < len; i++){
11258             if(fn.call(scope || els[i], els[i], this, i) === false) {
11259                 break;
11260             }
11261         }
11262         return this;
11263     },
11264
11265     /**
11266      * Returns the Element object at the specified index
11267      * @param {Number} index
11268      * @return {Roo.Element}
11269      */
11270     item : function(index){
11271         return this.elements[index] || null;
11272     },
11273
11274     /**
11275      * Returns the first Element
11276      * @return {Roo.Element}
11277      */
11278     first : function(){
11279         return this.item(0);
11280     },
11281
11282     /**
11283      * Returns the last Element
11284      * @return {Roo.Element}
11285      */
11286     last : function(){
11287         return this.item(this.elements.length-1);
11288     },
11289
11290     /**
11291      * Returns the number of elements in this composite
11292      * @return Number
11293      */
11294     getCount : function(){
11295         return this.elements.length;
11296     },
11297
11298     /**
11299      * Returns true if this composite contains the passed element
11300      * @return Boolean
11301      */
11302     contains : function(el){
11303         return this.indexOf(el) !== -1;
11304     },
11305
11306     /**
11307      * Returns true if this composite contains the passed element
11308      * @return Boolean
11309      */
11310     indexOf : function(el){
11311         return this.elements.indexOf(Roo.get(el));
11312     },
11313
11314
11315     /**
11316     * Removes the specified element(s).
11317     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11318     * or an array of any of those.
11319     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11320     * @return {CompositeElement} this
11321     */
11322     removeElement : function(el, removeDom){
11323         if(el instanceof Array){
11324             for(var i = 0, len = el.length; i < len; i++){
11325                 this.removeElement(el[i]);
11326             }
11327             return this;
11328         }
11329         var index = typeof el == 'number' ? el : this.indexOf(el);
11330         if(index !== -1){
11331             if(removeDom){
11332                 var d = this.elements[index];
11333                 if(d.dom){
11334                     d.remove();
11335                 }else{
11336                     d.parentNode.removeChild(d);
11337                 }
11338             }
11339             this.elements.splice(index, 1);
11340         }
11341         return this;
11342     },
11343
11344     /**
11345     * Replaces the specified element with the passed element.
11346     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11347     * to replace.
11348     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11349     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11350     * @return {CompositeElement} this
11351     */
11352     replaceElement : function(el, replacement, domReplace){
11353         var index = typeof el == 'number' ? el : this.indexOf(el);
11354         if(index !== -1){
11355             if(domReplace){
11356                 this.elements[index].replaceWith(replacement);
11357             }else{
11358                 this.elements.splice(index, 1, Roo.get(replacement))
11359             }
11360         }
11361         return this;
11362     },
11363
11364     /**
11365      * Removes all elements.
11366      */
11367     clear : function(){
11368         this.elements = [];
11369     }
11370 };
11371 (function(){
11372     Roo.CompositeElement.createCall = function(proto, fnName){
11373         if(!proto[fnName]){
11374             proto[fnName] = function(){
11375                 return this.invoke(fnName, arguments);
11376             };
11377         }
11378     };
11379     for(var fnName in Roo.Element.prototype){
11380         if(typeof Roo.Element.prototype[fnName] == "function"){
11381             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11382         }
11383     };
11384 })();
11385 /*
11386  * Based on:
11387  * Ext JS Library 1.1.1
11388  * Copyright(c) 2006-2007, Ext JS, LLC.
11389  *
11390  * Originally Released Under LGPL - original licence link has changed is not relivant.
11391  *
11392  * Fork - LGPL
11393  * <script type="text/javascript">
11394  */
11395
11396 /**
11397  * @class Roo.CompositeElementLite
11398  * @extends Roo.CompositeElement
11399  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11400  <pre><code>
11401  var els = Roo.select("#some-el div.some-class");
11402  // or select directly from an existing element
11403  var el = Roo.get('some-el');
11404  el.select('div.some-class');
11405
11406  els.setWidth(100); // all elements become 100 width
11407  els.hide(true); // all elements fade out and hide
11408  // or
11409  els.setWidth(100).hide(true);
11410  </code></pre><br><br>
11411  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11412  * actions will be performed on all the elements in this collection.</b>
11413  */
11414 Roo.CompositeElementLite = function(els){
11415     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11416     this.el = new Roo.Element.Flyweight();
11417 };
11418 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11419     addElements : function(els){
11420         if(els){
11421             if(els instanceof Array){
11422                 this.elements = this.elements.concat(els);
11423             }else{
11424                 var yels = this.elements;
11425                 var index = yels.length-1;
11426                 for(var i = 0, len = els.length; i < len; i++) {
11427                     yels[++index] = els[i];
11428                 }
11429             }
11430         }
11431         return this;
11432     },
11433     invoke : function(fn, args){
11434         var els = this.elements;
11435         var el = this.el;
11436         for(var i = 0, len = els.length; i < len; i++) {
11437             el.dom = els[i];
11438                 Roo.Element.prototype[fn].apply(el, args);
11439         }
11440         return this;
11441     },
11442     /**
11443      * Returns a flyweight Element of the dom element object at the specified index
11444      * @param {Number} index
11445      * @return {Roo.Element}
11446      */
11447     item : function(index){
11448         if(!this.elements[index]){
11449             return null;
11450         }
11451         this.el.dom = this.elements[index];
11452         return this.el;
11453     },
11454
11455     // fixes scope with flyweight
11456     addListener : function(eventName, handler, scope, opt){
11457         var els = this.elements;
11458         for(var i = 0, len = els.length; i < len; i++) {
11459             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11460         }
11461         return this;
11462     },
11463
11464     /**
11465     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11466     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11467     * a reference to the dom node, use el.dom.</b>
11468     * @param {Function} fn The function to call
11469     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11470     * @return {CompositeElement} this
11471     */
11472     each : function(fn, scope){
11473         var els = this.elements;
11474         var el = this.el;
11475         for(var i = 0, len = els.length; i < len; i++){
11476             el.dom = els[i];
11477                 if(fn.call(scope || el, el, this, i) === false){
11478                 break;
11479             }
11480         }
11481         return this;
11482     },
11483
11484     indexOf : function(el){
11485         return this.elements.indexOf(Roo.getDom(el));
11486     },
11487
11488     replaceElement : function(el, replacement, domReplace){
11489         var index = typeof el == 'number' ? el : this.indexOf(el);
11490         if(index !== -1){
11491             replacement = Roo.getDom(replacement);
11492             if(domReplace){
11493                 var d = this.elements[index];
11494                 d.parentNode.insertBefore(replacement, d);
11495                 d.parentNode.removeChild(d);
11496             }
11497             this.elements.splice(index, 1, replacement);
11498         }
11499         return this;
11500     }
11501 });
11502 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11503
11504 /*
11505  * Based on:
11506  * Ext JS Library 1.1.1
11507  * Copyright(c) 2006-2007, Ext JS, LLC.
11508  *
11509  * Originally Released Under LGPL - original licence link has changed is not relivant.
11510  *
11511  * Fork - LGPL
11512  * <script type="text/javascript">
11513  */
11514
11515  
11516
11517 /**
11518  * @class Roo.data.Connection
11519  * @extends Roo.util.Observable
11520  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11521  * either to a configured URL, or to a URL specified at request time. 
11522  * 
11523  * Requests made by this class are asynchronous, and will return immediately. No data from
11524  * the server will be available to the statement immediately following the {@link #request} call.
11525  * To process returned data, use a callback in the request options object, or an event listener.
11526  * 
11527  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11528  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11529  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11530  * property and, if present, the IFRAME's XML document as the responseXML property.
11531  * 
11532  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11533  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11534  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11535  * standard DOM methods.
11536  * @constructor
11537  * @param {Object} config a configuration object.
11538  */
11539 Roo.data.Connection = function(config){
11540     Roo.apply(this, config);
11541     this.addEvents({
11542         /**
11543          * @event beforerequest
11544          * Fires before a network request is made to retrieve a data object.
11545          * @param {Connection} conn This Connection object.
11546          * @param {Object} options The options config object passed to the {@link #request} method.
11547          */
11548         "beforerequest" : true,
11549         /**
11550          * @event requestcomplete
11551          * Fires if the request was successfully completed.
11552          * @param {Connection} conn This Connection object.
11553          * @param {Object} response The XHR object containing the response data.
11554          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11555          * @param {Object} options The options config object passed to the {@link #request} method.
11556          */
11557         "requestcomplete" : true,
11558         /**
11559          * @event requestexception
11560          * Fires if an error HTTP status was returned from the server.
11561          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11562          * @param {Connection} conn This Connection object.
11563          * @param {Object} response The XHR object containing the response data.
11564          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11565          * @param {Object} options The options config object passed to the {@link #request} method.
11566          */
11567         "requestexception" : true
11568     });
11569     Roo.data.Connection.superclass.constructor.call(this);
11570 };
11571
11572 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11573     /**
11574      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11575      */
11576     /**
11577      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11578      * extra parameters to each request made by this object. (defaults to undefined)
11579      */
11580     /**
11581      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11582      *  to each request made by this object. (defaults to undefined)
11583      */
11584     /**
11585      * @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)
11586      */
11587     /**
11588      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11589      */
11590     timeout : 30000,
11591     /**
11592      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11593      * @type Boolean
11594      */
11595     autoAbort:false,
11596
11597     /**
11598      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11599      * @type Boolean
11600      */
11601     disableCaching: true,
11602
11603     /**
11604      * Sends an HTTP request to a remote server.
11605      * @param {Object} options An object which may contain the following properties:<ul>
11606      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11607      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11608      * request, a url encoded string or a function to call to get either.</li>
11609      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11610      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11611      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11612      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11613      * <li>options {Object} The parameter to the request call.</li>
11614      * <li>success {Boolean} True if the request succeeded.</li>
11615      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11616      * </ul></li>
11617      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11618      * The callback is passed the following parameters:<ul>
11619      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11620      * <li>options {Object} The parameter to the request call.</li>
11621      * </ul></li>
11622      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11623      * The callback is passed the following parameters:<ul>
11624      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11625      * <li>options {Object} The parameter to the request call.</li>
11626      * </ul></li>
11627      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11628      * for the callback function. Defaults to the browser window.</li>
11629      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11630      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11631      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11632      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11633      * params for the post data. Any params will be appended to the URL.</li>
11634      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11635      * </ul>
11636      * @return {Number} transactionId
11637      */
11638     request : function(o){
11639         if(this.fireEvent("beforerequest", this, o) !== false){
11640             var p = o.params;
11641
11642             if(typeof p == "function"){
11643                 p = p.call(o.scope||window, o);
11644             }
11645             if(typeof p == "object"){
11646                 p = Roo.urlEncode(o.params);
11647             }
11648             if(this.extraParams){
11649                 var extras = Roo.urlEncode(this.extraParams);
11650                 p = p ? (p + '&' + extras) : extras;
11651             }
11652
11653             var url = o.url || this.url;
11654             if(typeof url == 'function'){
11655                 url = url.call(o.scope||window, o);
11656             }
11657
11658             if(o.form){
11659                 var form = Roo.getDom(o.form);
11660                 url = url || form.action;
11661
11662                 var enctype = form.getAttribute("enctype");
11663                 
11664                 if (o.formData) {
11665                     return this.doFormDataUpload(o, url);
11666                 }
11667                 
11668                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11669                     return this.doFormUpload(o, p, url);
11670                 }
11671                 var f = Roo.lib.Ajax.serializeForm(form);
11672                 p = p ? (p + '&' + f) : f;
11673             }
11674             
11675             if (!o.form && o.formData) {
11676                 o.formData = o.formData === true ? new FormData() : o.formData;
11677                 for (var k in o.params) {
11678                     o.formData.append(k,o.params[k]);
11679                 }
11680                     
11681                 return this.doFormDataUpload(o, url);
11682             }
11683             
11684
11685             var hs = o.headers;
11686             if(this.defaultHeaders){
11687                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11688                 if(!o.headers){
11689                     o.headers = hs;
11690                 }
11691             }
11692
11693             var cb = {
11694                 success: this.handleResponse,
11695                 failure: this.handleFailure,
11696                 scope: this,
11697                 argument: {options: o},
11698                 timeout : o.timeout || this.timeout
11699             };
11700
11701             var method = o.method||this.method||(p ? "POST" : "GET");
11702
11703             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11704                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11705             }
11706
11707             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11708                 if(o.autoAbort){
11709                     this.abort();
11710                 }
11711             }else if(this.autoAbort !== false){
11712                 this.abort();
11713             }
11714
11715             if((method == 'GET' && p) || o.xmlData){
11716                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11717                 p = '';
11718             }
11719             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11720             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11721             Roo.lib.Ajax.useDefaultHeader == true;
11722             return this.transId;
11723         }else{
11724             Roo.callback(o.callback, o.scope, [o, null, null]);
11725             return null;
11726         }
11727     },
11728
11729     /**
11730      * Determine whether this object has a request outstanding.
11731      * @param {Number} transactionId (Optional) defaults to the last transaction
11732      * @return {Boolean} True if there is an outstanding request.
11733      */
11734     isLoading : function(transId){
11735         if(transId){
11736             return Roo.lib.Ajax.isCallInProgress(transId);
11737         }else{
11738             return this.transId ? true : false;
11739         }
11740     },
11741
11742     /**
11743      * Aborts any outstanding request.
11744      * @param {Number} transactionId (Optional) defaults to the last transaction
11745      */
11746     abort : function(transId){
11747         if(transId || this.isLoading()){
11748             Roo.lib.Ajax.abort(transId || this.transId);
11749         }
11750     },
11751
11752     // private
11753     handleResponse : function(response){
11754         this.transId = false;
11755         var options = response.argument.options;
11756         response.argument = options ? options.argument : null;
11757         this.fireEvent("requestcomplete", this, response, options);
11758         Roo.callback(options.success, options.scope, [response, options]);
11759         Roo.callback(options.callback, options.scope, [options, true, response]);
11760     },
11761
11762     // private
11763     handleFailure : function(response, e){
11764         this.transId = false;
11765         var options = response.argument.options;
11766         response.argument = options ? options.argument : null;
11767         this.fireEvent("requestexception", this, response, options, e);
11768         Roo.callback(options.failure, options.scope, [response, options]);
11769         Roo.callback(options.callback, options.scope, [options, false, response]);
11770     },
11771
11772     // private
11773     doFormUpload : function(o, ps, url){
11774         var id = Roo.id();
11775         var frame = document.createElement('iframe');
11776         frame.id = id;
11777         frame.name = id;
11778         frame.className = 'x-hidden';
11779         if(Roo.isIE){
11780             frame.src = Roo.SSL_SECURE_URL;
11781         }
11782         document.body.appendChild(frame);
11783
11784         if(Roo.isIE){
11785            document.frames[id].name = id;
11786         }
11787
11788         var form = Roo.getDom(o.form);
11789         form.target = id;
11790         form.method = 'POST';
11791         form.enctype = form.encoding = 'multipart/form-data';
11792         if(url){
11793             form.action = url;
11794         }
11795
11796         var hiddens, hd;
11797         if(ps){ // add dynamic params
11798             hiddens = [];
11799             ps = Roo.urlDecode(ps, false);
11800             for(var k in ps){
11801                 if(ps.hasOwnProperty(k)){
11802                     hd = document.createElement('input');
11803                     hd.type = 'hidden';
11804                     hd.name = k;
11805                     hd.value = ps[k];
11806                     form.appendChild(hd);
11807                     hiddens.push(hd);
11808                 }
11809             }
11810         }
11811
11812         function cb(){
11813             var r = {  // bogus response object
11814                 responseText : '',
11815                 responseXML : null
11816             };
11817
11818             r.argument = o ? o.argument : null;
11819
11820             try { //
11821                 var doc;
11822                 if(Roo.isIE){
11823                     doc = frame.contentWindow.document;
11824                 }else {
11825                     doc = (frame.contentDocument || window.frames[id].document);
11826                 }
11827                 if(doc && doc.body){
11828                     r.responseText = doc.body.innerHTML;
11829                 }
11830                 if(doc && doc.XMLDocument){
11831                     r.responseXML = doc.XMLDocument;
11832                 }else {
11833                     r.responseXML = doc;
11834                 }
11835             }
11836             catch(e) {
11837                 // ignore
11838             }
11839
11840             Roo.EventManager.removeListener(frame, 'load', cb, this);
11841
11842             this.fireEvent("requestcomplete", this, r, o);
11843             Roo.callback(o.success, o.scope, [r, o]);
11844             Roo.callback(o.callback, o.scope, [o, true, r]);
11845
11846             setTimeout(function(){document.body.removeChild(frame);}, 100);
11847         }
11848
11849         Roo.EventManager.on(frame, 'load', cb, this);
11850         form.submit();
11851
11852         if(hiddens){ // remove dynamic params
11853             for(var i = 0, len = hiddens.length; i < len; i++){
11854                 form.removeChild(hiddens[i]);
11855             }
11856         }
11857     },
11858     // this is a 'formdata version???'
11859     
11860     
11861     doFormDataUpload : function(o,  url)
11862     {
11863         var formData;
11864         if (o.form) {
11865             var form =  Roo.getDom(o.form);
11866             form.enctype = form.encoding = 'multipart/form-data';
11867             formData = o.formData === true ? new FormData(form) : o.formData;
11868         } else {
11869             formData = o.formData === true ? new FormData() : o.formData;
11870         }
11871         
11872       
11873         var cb = {
11874             success: this.handleResponse,
11875             failure: this.handleFailure,
11876             scope: this,
11877             argument: {options: o},
11878             timeout : o.timeout || this.timeout
11879         };
11880  
11881         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11882             if(o.autoAbort){
11883                 this.abort();
11884             }
11885         }else if(this.autoAbort !== false){
11886             this.abort();
11887         }
11888
11889         //Roo.lib.Ajax.defaultPostHeader = null;
11890         Roo.lib.Ajax.useDefaultHeader = false;
11891         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11892         Roo.lib.Ajax.useDefaultHeader = true;
11893  
11894          
11895     }
11896     
11897 });
11898 /*
11899  * Based on:
11900  * Ext JS Library 1.1.1
11901  * Copyright(c) 2006-2007, Ext JS, LLC.
11902  *
11903  * Originally Released Under LGPL - original licence link has changed is not relivant.
11904  *
11905  * Fork - LGPL
11906  * <script type="text/javascript">
11907  */
11908  
11909 /**
11910  * Global Ajax request class.
11911  * 
11912  * @class Roo.Ajax
11913  * @extends Roo.data.Connection
11914  * @static
11915  * 
11916  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11917  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11918  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11919  * @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)
11920  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11921  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11922  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11923  */
11924 Roo.Ajax = new Roo.data.Connection({
11925     // fix up the docs
11926     /**
11927      * @scope Roo.Ajax
11928      * @type {Boolear} 
11929      */
11930     autoAbort : false,
11931
11932     /**
11933      * Serialize the passed form into a url encoded string
11934      * @scope Roo.Ajax
11935      * @param {String/HTMLElement} form
11936      * @return {String}
11937      */
11938     serializeForm : function(form){
11939         return Roo.lib.Ajax.serializeForm(form);
11940     }
11941 });/*
11942  * Based on:
11943  * Ext JS Library 1.1.1
11944  * Copyright(c) 2006-2007, Ext JS, LLC.
11945  *
11946  * Originally Released Under LGPL - original licence link has changed is not relivant.
11947  *
11948  * Fork - LGPL
11949  * <script type="text/javascript">
11950  */
11951
11952  
11953 /**
11954  * @class Roo.UpdateManager
11955  * @extends Roo.util.Observable
11956  * Provides AJAX-style update for Element object.<br><br>
11957  * Usage:<br>
11958  * <pre><code>
11959  * // Get it from a Roo.Element object
11960  * var el = Roo.get("foo");
11961  * var mgr = el.getUpdateManager();
11962  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11963  * ...
11964  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11965  * <br>
11966  * // or directly (returns the same UpdateManager instance)
11967  * var mgr = new Roo.UpdateManager("myElementId");
11968  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11969  * mgr.on("update", myFcnNeedsToKnow);
11970  * <br>
11971    // short handed call directly from the element object
11972    Roo.get("foo").load({
11973         url: "bar.php",
11974         scripts:true,
11975         params: "for=bar",
11976         text: "Loading Foo..."
11977    });
11978  * </code></pre>
11979  * @constructor
11980  * Create new UpdateManager directly.
11981  * @param {String/HTMLElement/Roo.Element} el The element to update
11982  * @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).
11983  */
11984 Roo.UpdateManager = function(el, forceNew){
11985     el = Roo.get(el);
11986     if(!forceNew && el.updateManager){
11987         return el.updateManager;
11988     }
11989     /**
11990      * The Element object
11991      * @type Roo.Element
11992      */
11993     this.el = el;
11994     /**
11995      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11996      * @type String
11997      */
11998     this.defaultUrl = null;
11999
12000     this.addEvents({
12001         /**
12002          * @event beforeupdate
12003          * Fired before an update is made, return false from your handler and the update is cancelled.
12004          * @param {Roo.Element} el
12005          * @param {String/Object/Function} url
12006          * @param {String/Object} params
12007          */
12008         "beforeupdate": true,
12009         /**
12010          * @event update
12011          * Fired after successful update is made.
12012          * @param {Roo.Element} el
12013          * @param {Object} oResponseObject The response Object
12014          */
12015         "update": true,
12016         /**
12017          * @event failure
12018          * Fired on update failure.
12019          * @param {Roo.Element} el
12020          * @param {Object} oResponseObject The response Object
12021          */
12022         "failure": true
12023     });
12024     var d = Roo.UpdateManager.defaults;
12025     /**
12026      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12027      * @type String
12028      */
12029     this.sslBlankUrl = d.sslBlankUrl;
12030     /**
12031      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12032      * @type Boolean
12033      */
12034     this.disableCaching = d.disableCaching;
12035     /**
12036      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12037      * @type String
12038      */
12039     this.indicatorText = d.indicatorText;
12040     /**
12041      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12042      * @type String
12043      */
12044     this.showLoadIndicator = d.showLoadIndicator;
12045     /**
12046      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12047      * @type Number
12048      */
12049     this.timeout = d.timeout;
12050
12051     /**
12052      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12053      * @type Boolean
12054      */
12055     this.loadScripts = d.loadScripts;
12056
12057     /**
12058      * Transaction object of current executing transaction
12059      */
12060     this.transaction = null;
12061
12062     /**
12063      * @private
12064      */
12065     this.autoRefreshProcId = null;
12066     /**
12067      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12068      * @type Function
12069      */
12070     this.refreshDelegate = this.refresh.createDelegate(this);
12071     /**
12072      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12073      * @type Function
12074      */
12075     this.updateDelegate = this.update.createDelegate(this);
12076     /**
12077      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12078      * @type Function
12079      */
12080     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12081     /**
12082      * @private
12083      */
12084     this.successDelegate = this.processSuccess.createDelegate(this);
12085     /**
12086      * @private
12087      */
12088     this.failureDelegate = this.processFailure.createDelegate(this);
12089
12090     if(!this.renderer){
12091      /**
12092       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12093       */
12094     this.renderer = new Roo.UpdateManager.BasicRenderer();
12095     }
12096     
12097     Roo.UpdateManager.superclass.constructor.call(this);
12098 };
12099
12100 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12101     /**
12102      * Get the Element this UpdateManager is bound to
12103      * @return {Roo.Element} The element
12104      */
12105     getEl : function(){
12106         return this.el;
12107     },
12108     /**
12109      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12110      * @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:
12111 <pre><code>
12112 um.update({<br/>
12113     url: "your-url.php",<br/>
12114     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12115     callback: yourFunction,<br/>
12116     scope: yourObject, //(optional scope)  <br/>
12117     discardUrl: false, <br/>
12118     nocache: false,<br/>
12119     text: "Loading...",<br/>
12120     timeout: 30,<br/>
12121     scripts: false<br/>
12122 });
12123 </code></pre>
12124      * The only required property is url. The optional properties nocache, text and scripts
12125      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12126      * @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}
12127      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12128      * @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.
12129      */
12130     update : function(url, params, callback, discardUrl){
12131         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12132             var method = this.method,
12133                 cfg;
12134             if(typeof url == "object"){ // must be config object
12135                 cfg = url;
12136                 url = cfg.url;
12137                 params = params || cfg.params;
12138                 callback = callback || cfg.callback;
12139                 discardUrl = discardUrl || cfg.discardUrl;
12140                 if(callback && cfg.scope){
12141                     callback = callback.createDelegate(cfg.scope);
12142                 }
12143                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12144                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12145                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12146                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12147                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12148             }
12149             this.showLoading();
12150             if(!discardUrl){
12151                 this.defaultUrl = url;
12152             }
12153             if(typeof url == "function"){
12154                 url = url.call(this);
12155             }
12156
12157             method = method || (params ? "POST" : "GET");
12158             if(method == "GET"){
12159                 url = this.prepareUrl(url);
12160             }
12161
12162             var o = Roo.apply(cfg ||{}, {
12163                 url : url,
12164                 params: params,
12165                 success: this.successDelegate,
12166                 failure: this.failureDelegate,
12167                 callback: undefined,
12168                 timeout: (this.timeout*1000),
12169                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12170             });
12171             Roo.log("updated manager called with timeout of " + o.timeout);
12172             this.transaction = Roo.Ajax.request(o);
12173         }
12174     },
12175
12176     /**
12177      * 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.
12178      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12179      * @param {String/HTMLElement} form The form Id or form element
12180      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12181      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12182      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12183      */
12184     formUpdate : function(form, url, reset, callback){
12185         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12186             if(typeof url == "function"){
12187                 url = url.call(this);
12188             }
12189             form = Roo.getDom(form);
12190             this.transaction = Roo.Ajax.request({
12191                 form: form,
12192                 url:url,
12193                 success: this.successDelegate,
12194                 failure: this.failureDelegate,
12195                 timeout: (this.timeout*1000),
12196                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12197             });
12198             this.showLoading.defer(1, this);
12199         }
12200     },
12201
12202     /**
12203      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12204      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12205      */
12206     refresh : function(callback){
12207         if(this.defaultUrl == null){
12208             return;
12209         }
12210         this.update(this.defaultUrl, null, callback, true);
12211     },
12212
12213     /**
12214      * Set this element to auto refresh.
12215      * @param {Number} interval How often to update (in seconds).
12216      * @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)
12217      * @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}
12218      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12219      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12220      */
12221     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12222         if(refreshNow){
12223             this.update(url || this.defaultUrl, params, callback, true);
12224         }
12225         if(this.autoRefreshProcId){
12226             clearInterval(this.autoRefreshProcId);
12227         }
12228         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12229     },
12230
12231     /**
12232      * Stop auto refresh on this element.
12233      */
12234      stopAutoRefresh : function(){
12235         if(this.autoRefreshProcId){
12236             clearInterval(this.autoRefreshProcId);
12237             delete this.autoRefreshProcId;
12238         }
12239     },
12240
12241     isAutoRefreshing : function(){
12242        return this.autoRefreshProcId ? true : false;
12243     },
12244     /**
12245      * Called to update the element to "Loading" state. Override to perform custom action.
12246      */
12247     showLoading : function(){
12248         if(this.showLoadIndicator){
12249             this.el.update(this.indicatorText);
12250         }
12251     },
12252
12253     /**
12254      * Adds unique parameter to query string if disableCaching = true
12255      * @private
12256      */
12257     prepareUrl : function(url){
12258         if(this.disableCaching){
12259             var append = "_dc=" + (new Date().getTime());
12260             if(url.indexOf("?") !== -1){
12261                 url += "&" + append;
12262             }else{
12263                 url += "?" + append;
12264             }
12265         }
12266         return url;
12267     },
12268
12269     /**
12270      * @private
12271      */
12272     processSuccess : function(response){
12273         this.transaction = null;
12274         if(response.argument.form && response.argument.reset){
12275             try{ // put in try/catch since some older FF releases had problems with this
12276                 response.argument.form.reset();
12277             }catch(e){}
12278         }
12279         if(this.loadScripts){
12280             this.renderer.render(this.el, response, this,
12281                 this.updateComplete.createDelegate(this, [response]));
12282         }else{
12283             this.renderer.render(this.el, response, this);
12284             this.updateComplete(response);
12285         }
12286     },
12287
12288     updateComplete : function(response){
12289         this.fireEvent("update", this.el, response);
12290         if(typeof response.argument.callback == "function"){
12291             response.argument.callback(this.el, true, response);
12292         }
12293     },
12294
12295     /**
12296      * @private
12297      */
12298     processFailure : function(response){
12299         this.transaction = null;
12300         this.fireEvent("failure", this.el, response);
12301         if(typeof response.argument.callback == "function"){
12302             response.argument.callback(this.el, false, response);
12303         }
12304     },
12305
12306     /**
12307      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12308      * @param {Object} renderer The object implementing the render() method
12309      */
12310     setRenderer : function(renderer){
12311         this.renderer = renderer;
12312     },
12313
12314     getRenderer : function(){
12315        return this.renderer;
12316     },
12317
12318     /**
12319      * Set the defaultUrl used for updates
12320      * @param {String/Function} defaultUrl The url or a function to call to get the url
12321      */
12322     setDefaultUrl : function(defaultUrl){
12323         this.defaultUrl = defaultUrl;
12324     },
12325
12326     /**
12327      * Aborts the executing transaction
12328      */
12329     abort : function(){
12330         if(this.transaction){
12331             Roo.Ajax.abort(this.transaction);
12332         }
12333     },
12334
12335     /**
12336      * Returns true if an update is in progress
12337      * @return {Boolean}
12338      */
12339     isUpdating : function(){
12340         if(this.transaction){
12341             return Roo.Ajax.isLoading(this.transaction);
12342         }
12343         return false;
12344     }
12345 });
12346
12347 /**
12348  * @class Roo.UpdateManager.defaults
12349  * @static (not really - but it helps the doc tool)
12350  * The defaults collection enables customizing the default properties of UpdateManager
12351  */
12352    Roo.UpdateManager.defaults = {
12353        /**
12354          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12355          * @type Number
12356          */
12357          timeout : 30,
12358
12359          /**
12360          * True to process scripts by default (Defaults to false).
12361          * @type Boolean
12362          */
12363         loadScripts : false,
12364
12365         /**
12366         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12367         * @type String
12368         */
12369         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12370         /**
12371          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12372          * @type Boolean
12373          */
12374         disableCaching : false,
12375         /**
12376          * Whether to show indicatorText when loading (Defaults to true).
12377          * @type Boolean
12378          */
12379         showLoadIndicator : true,
12380         /**
12381          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12382          * @type String
12383          */
12384         indicatorText : '<div class="loading-indicator">Loading...</div>'
12385    };
12386
12387 /**
12388  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12389  *Usage:
12390  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12391  * @param {String/HTMLElement/Roo.Element} el The element to update
12392  * @param {String} url The url
12393  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12394  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12395  * @static
12396  * @deprecated
12397  * @member Roo.UpdateManager
12398  */
12399 Roo.UpdateManager.updateElement = function(el, url, params, options){
12400     var um = Roo.get(el, true).getUpdateManager();
12401     Roo.apply(um, options);
12402     um.update(url, params, options ? options.callback : null);
12403 };
12404 // alias for backwards compat
12405 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12406 /**
12407  * @class Roo.UpdateManager.BasicRenderer
12408  * Default Content renderer. Updates the elements innerHTML with the responseText.
12409  */
12410 Roo.UpdateManager.BasicRenderer = function(){};
12411
12412 Roo.UpdateManager.BasicRenderer.prototype = {
12413     /**
12414      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12415      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12416      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12417      * @param {Roo.Element} el The element being rendered
12418      * @param {Object} response The YUI Connect response object
12419      * @param {UpdateManager} updateManager The calling update manager
12420      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12421      */
12422      render : function(el, response, updateManager, callback){
12423         el.update(response.responseText, updateManager.loadScripts, callback);
12424     }
12425 };
12426 /*
12427  * Based on:
12428  * Roo JS
12429  * (c)) Alan Knowles
12430  * Licence : LGPL
12431  */
12432
12433
12434 /**
12435  * @class Roo.DomTemplate
12436  * @extends Roo.Template
12437  * An effort at a dom based template engine..
12438  *
12439  * Similar to XTemplate, except it uses dom parsing to create the template..
12440  *
12441  * Supported features:
12442  *
12443  *  Tags:
12444
12445 <pre><code>
12446       {a_variable} - output encoded.
12447       {a_variable.format:("Y-m-d")} - call a method on the variable
12448       {a_variable:raw} - unencoded output
12449       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12450       {a_variable:this.method_on_template(...)} - call a method on the template object.
12451  
12452 </code></pre>
12453  *  The tpl tag:
12454 <pre><code>
12455         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12456         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12457         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12458         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12459   
12460 </code></pre>
12461  *      
12462  */
12463 Roo.DomTemplate = function()
12464 {
12465      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12466      if (this.html) {
12467         this.compile();
12468      }
12469 };
12470
12471
12472 Roo.extend(Roo.DomTemplate, Roo.Template, {
12473     /**
12474      * id counter for sub templates.
12475      */
12476     id : 0,
12477     /**
12478      * flag to indicate if dom parser is inside a pre,
12479      * it will strip whitespace if not.
12480      */
12481     inPre : false,
12482     
12483     /**
12484      * The various sub templates
12485      */
12486     tpls : false,
12487     
12488     
12489     
12490     /**
12491      *
12492      * basic tag replacing syntax
12493      * WORD:WORD()
12494      *
12495      * // you can fake an object call by doing this
12496      *  x.t:(test,tesT) 
12497      * 
12498      */
12499     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12500     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12501     
12502     iterChild : function (node, method) {
12503         
12504         var oldPre = this.inPre;
12505         if (node.tagName == 'PRE') {
12506             this.inPre = true;
12507         }
12508         for( var i = 0; i < node.childNodes.length; i++) {
12509             method.call(this, node.childNodes[i]);
12510         }
12511         this.inPre = oldPre;
12512     },
12513     
12514     
12515     
12516     /**
12517      * compile the template
12518      *
12519      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12520      *
12521      */
12522     compile: function()
12523     {
12524         var s = this.html;
12525         
12526         // covert the html into DOM...
12527         var doc = false;
12528         var div =false;
12529         try {
12530             doc = document.implementation.createHTMLDocument("");
12531             doc.documentElement.innerHTML =   this.html  ;
12532             div = doc.documentElement;
12533         } catch (e) {
12534             // old IE... - nasty -- it causes all sorts of issues.. with
12535             // images getting pulled from server..
12536             div = document.createElement('div');
12537             div.innerHTML = this.html;
12538         }
12539         //doc.documentElement.innerHTML = htmlBody
12540          
12541         
12542         
12543         this.tpls = [];
12544         var _t = this;
12545         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12546         
12547         var tpls = this.tpls;
12548         
12549         // create a top level template from the snippet..
12550         
12551         //Roo.log(div.innerHTML);
12552         
12553         var tpl = {
12554             uid : 'master',
12555             id : this.id++,
12556             attr : false,
12557             value : false,
12558             body : div.innerHTML,
12559             
12560             forCall : false,
12561             execCall : false,
12562             dom : div,
12563             isTop : true
12564             
12565         };
12566         tpls.unshift(tpl);
12567         
12568         
12569         // compile them...
12570         this.tpls = [];
12571         Roo.each(tpls, function(tp){
12572             this.compileTpl(tp);
12573             this.tpls[tp.id] = tp;
12574         }, this);
12575         
12576         this.master = tpls[0];
12577         return this;
12578         
12579         
12580     },
12581     
12582     compileNode : function(node, istop) {
12583         // test for
12584         //Roo.log(node);
12585         
12586         
12587         // skip anything not a tag..
12588         if (node.nodeType != 1) {
12589             if (node.nodeType == 3 && !this.inPre) {
12590                 // reduce white space..
12591                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12592                 
12593             }
12594             return;
12595         }
12596         
12597         var tpl = {
12598             uid : false,
12599             id : false,
12600             attr : false,
12601             value : false,
12602             body : '',
12603             
12604             forCall : false,
12605             execCall : false,
12606             dom : false,
12607             isTop : istop
12608             
12609             
12610         };
12611         
12612         
12613         switch(true) {
12614             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12615             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12616             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12617             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12618             // no default..
12619         }
12620         
12621         
12622         if (!tpl.attr) {
12623             // just itterate children..
12624             this.iterChild(node,this.compileNode);
12625             return;
12626         }
12627         tpl.uid = this.id++;
12628         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12629         node.removeAttribute('roo-'+ tpl.attr);
12630         if (tpl.attr != 'name') {
12631             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12632             node.parentNode.replaceChild(placeholder,  node);
12633         } else {
12634             
12635             var placeholder =  document.createElement('span');
12636             placeholder.className = 'roo-tpl-' + tpl.value;
12637             node.parentNode.replaceChild(placeholder,  node);
12638         }
12639         
12640         // parent now sees '{domtplXXXX}
12641         this.iterChild(node,this.compileNode);
12642         
12643         // we should now have node body...
12644         var div = document.createElement('div');
12645         div.appendChild(node);
12646         tpl.dom = node;
12647         // this has the unfortunate side effect of converting tagged attributes
12648         // eg. href="{...}" into %7C...%7D
12649         // this has been fixed by searching for those combo's although it's a bit hacky..
12650         
12651         
12652         tpl.body = div.innerHTML;
12653         
12654         
12655          
12656         tpl.id = tpl.uid;
12657         switch(tpl.attr) {
12658             case 'for' :
12659                 switch (tpl.value) {
12660                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12661                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12662                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12663                 }
12664                 break;
12665             
12666             case 'exec':
12667                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12668                 break;
12669             
12670             case 'if':     
12671                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12672                 break;
12673             
12674             case 'name':
12675                 tpl.id  = tpl.value; // replace non characters???
12676                 break;
12677             
12678         }
12679         
12680         
12681         this.tpls.push(tpl);
12682         
12683         
12684         
12685     },
12686     
12687     
12688     
12689     
12690     /**
12691      * Compile a segment of the template into a 'sub-template'
12692      *
12693      * 
12694      * 
12695      *
12696      */
12697     compileTpl : function(tpl)
12698     {
12699         var fm = Roo.util.Format;
12700         var useF = this.disableFormats !== true;
12701         
12702         var sep = Roo.isGecko ? "+\n" : ",\n";
12703         
12704         var undef = function(str) {
12705             Roo.debug && Roo.log("Property not found :"  + str);
12706             return '';
12707         };
12708           
12709         //Roo.log(tpl.body);
12710         
12711         
12712         
12713         var fn = function(m, lbrace, name, format, args)
12714         {
12715             //Roo.log("ARGS");
12716             //Roo.log(arguments);
12717             args = args ? args.replace(/\\'/g,"'") : args;
12718             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12719             if (typeof(format) == 'undefined') {
12720                 format =  'htmlEncode'; 
12721             }
12722             if (format == 'raw' ) {
12723                 format = false;
12724             }
12725             
12726             if(name.substr(0, 6) == 'domtpl'){
12727                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12728             }
12729             
12730             // build an array of options to determine if value is undefined..
12731             
12732             // basically get 'xxxx.yyyy' then do
12733             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12734             //    (function () { Roo.log("Property not found"); return ''; })() :
12735             //    ......
12736             
12737             var udef_ar = [];
12738             var lookfor = '';
12739             Roo.each(name.split('.'), function(st) {
12740                 lookfor += (lookfor.length ? '.': '') + st;
12741                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12742             });
12743             
12744             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12745             
12746             
12747             if(format && useF){
12748                 
12749                 args = args ? ',' + args : "";
12750                  
12751                 if(format.substr(0, 5) != "this."){
12752                     format = "fm." + format + '(';
12753                 }else{
12754                     format = 'this.call("'+ format.substr(5) + '", ';
12755                     args = ", values";
12756                 }
12757                 
12758                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12759             }
12760              
12761             if (args && args.length) {
12762                 // called with xxyx.yuu:(test,test)
12763                 // change to ()
12764                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12765             }
12766             // raw.. - :raw modifier..
12767             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12768             
12769         };
12770         var body;
12771         // branched to use + in gecko and [].join() in others
12772         if(Roo.isGecko){
12773             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12774                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12775                     "';};};";
12776         }else{
12777             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12778             body.push(tpl.body.replace(/(\r\n|\n)/g,
12779                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12780             body.push("'].join('');};};");
12781             body = body.join('');
12782         }
12783         
12784         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12785        
12786         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12787         eval(body);
12788         
12789         return this;
12790     },
12791      
12792     /**
12793      * same as applyTemplate, except it's done to one of the subTemplates
12794      * when using named templates, you can do:
12795      *
12796      * var str = pl.applySubTemplate('your-name', values);
12797      *
12798      * 
12799      * @param {Number} id of the template
12800      * @param {Object} values to apply to template
12801      * @param {Object} parent (normaly the instance of this object)
12802      */
12803     applySubTemplate : function(id, values, parent)
12804     {
12805         
12806         
12807         var t = this.tpls[id];
12808         
12809         
12810         try { 
12811             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12812                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12813                 return '';
12814             }
12815         } catch(e) {
12816             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12817             Roo.log(values);
12818           
12819             return '';
12820         }
12821         try { 
12822             
12823             if(t.execCall && t.execCall.call(this, values, parent)){
12824                 return '';
12825             }
12826         } catch(e) {
12827             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12828             Roo.log(values);
12829             return '';
12830         }
12831         
12832         try {
12833             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12834             parent = t.target ? values : parent;
12835             if(t.forCall && vs instanceof Array){
12836                 var buf = [];
12837                 for(var i = 0, len = vs.length; i < len; i++){
12838                     try {
12839                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12840                     } catch (e) {
12841                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12842                         Roo.log(e.body);
12843                         //Roo.log(t.compiled);
12844                         Roo.log(vs[i]);
12845                     }   
12846                 }
12847                 return buf.join('');
12848             }
12849         } catch (e) {
12850             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12851             Roo.log(values);
12852             return '';
12853         }
12854         try {
12855             return t.compiled.call(this, vs, parent);
12856         } catch (e) {
12857             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12858             Roo.log(e.body);
12859             //Roo.log(t.compiled);
12860             Roo.log(values);
12861             return '';
12862         }
12863     },
12864
12865    
12866
12867     applyTemplate : function(values){
12868         return this.master.compiled.call(this, values, {});
12869         //var s = this.subs;
12870     },
12871
12872     apply : function(){
12873         return this.applyTemplate.apply(this, arguments);
12874     }
12875
12876  });
12877
12878 Roo.DomTemplate.from = function(el){
12879     el = Roo.getDom(el);
12880     return new Roo.Domtemplate(el.value || el.innerHTML);
12881 };/*
12882  * Based on:
12883  * Ext JS Library 1.1.1
12884  * Copyright(c) 2006-2007, Ext JS, LLC.
12885  *
12886  * Originally Released Under LGPL - original licence link has changed is not relivant.
12887  *
12888  * Fork - LGPL
12889  * <script type="text/javascript">
12890  */
12891
12892 /**
12893  * @class Roo.util.DelayedTask
12894  * Provides a convenient method of performing setTimeout where a new
12895  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12896  * You can use this class to buffer
12897  * the keypress events for a certain number of milliseconds, and perform only if they stop
12898  * for that amount of time.
12899  * @constructor The parameters to this constructor serve as defaults and are not required.
12900  * @param {Function} fn (optional) The default function to timeout
12901  * @param {Object} scope (optional) The default scope of that timeout
12902  * @param {Array} args (optional) The default Array of arguments
12903  */
12904 Roo.util.DelayedTask = function(fn, scope, args){
12905     var id = null, d, t;
12906
12907     var call = function(){
12908         var now = new Date().getTime();
12909         if(now - t >= d){
12910             clearInterval(id);
12911             id = null;
12912             fn.apply(scope, args || []);
12913         }
12914     };
12915     /**
12916      * Cancels any pending timeout and queues a new one
12917      * @param {Number} delay The milliseconds to delay
12918      * @param {Function} newFn (optional) Overrides function passed to constructor
12919      * @param {Object} newScope (optional) Overrides scope passed to constructor
12920      * @param {Array} newArgs (optional) Overrides args passed to constructor
12921      */
12922     this.delay = function(delay, newFn, newScope, newArgs){
12923         if(id && delay != d){
12924             this.cancel();
12925         }
12926         d = delay;
12927         t = new Date().getTime();
12928         fn = newFn || fn;
12929         scope = newScope || scope;
12930         args = newArgs || args;
12931         if(!id){
12932             id = setInterval(call, d);
12933         }
12934     };
12935
12936     /**
12937      * Cancel the last queued timeout
12938      */
12939     this.cancel = function(){
12940         if(id){
12941             clearInterval(id);
12942             id = null;
12943         }
12944     };
12945 };/*
12946  * Based on:
12947  * Ext JS Library 1.1.1
12948  * Copyright(c) 2006-2007, Ext JS, LLC.
12949  *
12950  * Originally Released Under LGPL - original licence link has changed is not relivant.
12951  *
12952  * Fork - LGPL
12953  * <script type="text/javascript">
12954  */
12955  
12956  
12957 Roo.util.TaskRunner = function(interval){
12958     interval = interval || 10;
12959     var tasks = [], removeQueue = [];
12960     var id = 0;
12961     var running = false;
12962
12963     var stopThread = function(){
12964         running = false;
12965         clearInterval(id);
12966         id = 0;
12967     };
12968
12969     var startThread = function(){
12970         if(!running){
12971             running = true;
12972             id = setInterval(runTasks, interval);
12973         }
12974     };
12975
12976     var removeTask = function(task){
12977         removeQueue.push(task);
12978         if(task.onStop){
12979             task.onStop();
12980         }
12981     };
12982
12983     var runTasks = function(){
12984         if(removeQueue.length > 0){
12985             for(var i = 0, len = removeQueue.length; i < len; i++){
12986                 tasks.remove(removeQueue[i]);
12987             }
12988             removeQueue = [];
12989             if(tasks.length < 1){
12990                 stopThread();
12991                 return;
12992             }
12993         }
12994         var now = new Date().getTime();
12995         for(var i = 0, len = tasks.length; i < len; ++i){
12996             var t = tasks[i];
12997             var itime = now - t.taskRunTime;
12998             if(t.interval <= itime){
12999                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13000                 t.taskRunTime = now;
13001                 if(rt === false || t.taskRunCount === t.repeat){
13002                     removeTask(t);
13003                     return;
13004                 }
13005             }
13006             if(t.duration && t.duration <= (now - t.taskStartTime)){
13007                 removeTask(t);
13008             }
13009         }
13010     };
13011
13012     /**
13013      * Queues a new task.
13014      * @param {Object} task
13015      */
13016     this.start = function(task){
13017         tasks.push(task);
13018         task.taskStartTime = new Date().getTime();
13019         task.taskRunTime = 0;
13020         task.taskRunCount = 0;
13021         startThread();
13022         return task;
13023     };
13024
13025     this.stop = function(task){
13026         removeTask(task);
13027         return task;
13028     };
13029
13030     this.stopAll = function(){
13031         stopThread();
13032         for(var i = 0, len = tasks.length; i < len; i++){
13033             if(tasks[i].onStop){
13034                 tasks[i].onStop();
13035             }
13036         }
13037         tasks = [];
13038         removeQueue = [];
13039     };
13040 };
13041
13042 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13043  * Based on:
13044  * Ext JS Library 1.1.1
13045  * Copyright(c) 2006-2007, Ext JS, LLC.
13046  *
13047  * Originally Released Under LGPL - original licence link has changed is not relivant.
13048  *
13049  * Fork - LGPL
13050  * <script type="text/javascript">
13051  */
13052
13053  
13054 /**
13055  * @class Roo.util.MixedCollection
13056  * @extends Roo.util.Observable
13057  * A Collection class that maintains both numeric indexes and keys and exposes events.
13058  * @constructor
13059  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13060  * collection (defaults to false)
13061  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13062  * and return the key value for that item.  This is used when available to look up the key on items that
13063  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13064  * equivalent to providing an implementation for the {@link #getKey} method.
13065  */
13066 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13067     this.items = [];
13068     this.map = {};
13069     this.keys = [];
13070     this.length = 0;
13071     this.addEvents({
13072         /**
13073          * @event clear
13074          * Fires when the collection is cleared.
13075          */
13076         "clear" : true,
13077         /**
13078          * @event add
13079          * Fires when an item is added to the collection.
13080          * @param {Number} index The index at which the item was added.
13081          * @param {Object} o The item added.
13082          * @param {String} key The key associated with the added item.
13083          */
13084         "add" : true,
13085         /**
13086          * @event replace
13087          * Fires when an item is replaced in the collection.
13088          * @param {String} key he key associated with the new added.
13089          * @param {Object} old The item being replaced.
13090          * @param {Object} new The new item.
13091          */
13092         "replace" : true,
13093         /**
13094          * @event remove
13095          * Fires when an item is removed from the collection.
13096          * @param {Object} o The item being removed.
13097          * @param {String} key (optional) The key associated with the removed item.
13098          */
13099         "remove" : true,
13100         "sort" : true
13101     });
13102     this.allowFunctions = allowFunctions === true;
13103     if(keyFn){
13104         this.getKey = keyFn;
13105     }
13106     Roo.util.MixedCollection.superclass.constructor.call(this);
13107 };
13108
13109 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13110     allowFunctions : false,
13111     
13112 /**
13113  * Adds an item to the collection.
13114  * @param {String} key The key to associate with the item
13115  * @param {Object} o The item to add.
13116  * @return {Object} The item added.
13117  */
13118     add : function(key, o){
13119         if(arguments.length == 1){
13120             o = arguments[0];
13121             key = this.getKey(o);
13122         }
13123         if(typeof key == "undefined" || key === null){
13124             this.length++;
13125             this.items.push(o);
13126             this.keys.push(null);
13127         }else{
13128             var old = this.map[key];
13129             if(old){
13130                 return this.replace(key, o);
13131             }
13132             this.length++;
13133             this.items.push(o);
13134             this.map[key] = o;
13135             this.keys.push(key);
13136         }
13137         this.fireEvent("add", this.length-1, o, key);
13138         return o;
13139     },
13140        
13141 /**
13142   * MixedCollection has a generic way to fetch keys if you implement getKey.
13143 <pre><code>
13144 // normal way
13145 var mc = new Roo.util.MixedCollection();
13146 mc.add(someEl.dom.id, someEl);
13147 mc.add(otherEl.dom.id, otherEl);
13148 //and so on
13149
13150 // using getKey
13151 var mc = new Roo.util.MixedCollection();
13152 mc.getKey = function(el){
13153    return el.dom.id;
13154 };
13155 mc.add(someEl);
13156 mc.add(otherEl);
13157
13158 // or via the constructor
13159 var mc = new Roo.util.MixedCollection(false, function(el){
13160    return el.dom.id;
13161 });
13162 mc.add(someEl);
13163 mc.add(otherEl);
13164 </code></pre>
13165  * @param o {Object} The item for which to find the key.
13166  * @return {Object} The key for the passed item.
13167  */
13168     getKey : function(o){
13169          return o.id; 
13170     },
13171    
13172 /**
13173  * Replaces an item in the collection.
13174  * @param {String} key The key associated with the item to replace, or the item to replace.
13175  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13176  * @return {Object}  The new item.
13177  */
13178     replace : function(key, o){
13179         if(arguments.length == 1){
13180             o = arguments[0];
13181             key = this.getKey(o);
13182         }
13183         var old = this.item(key);
13184         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13185              return this.add(key, o);
13186         }
13187         var index = this.indexOfKey(key);
13188         this.items[index] = o;
13189         this.map[key] = o;
13190         this.fireEvent("replace", key, old, o);
13191         return o;
13192     },
13193    
13194 /**
13195  * Adds all elements of an Array or an Object to the collection.
13196  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13197  * an Array of values, each of which are added to the collection.
13198  */
13199     addAll : function(objs){
13200         if(arguments.length > 1 || objs instanceof Array){
13201             var args = arguments.length > 1 ? arguments : objs;
13202             for(var i = 0, len = args.length; i < len; i++){
13203                 this.add(args[i]);
13204             }
13205         }else{
13206             for(var key in objs){
13207                 if(this.allowFunctions || typeof objs[key] != "function"){
13208                     this.add(key, objs[key]);
13209                 }
13210             }
13211         }
13212     },
13213    
13214 /**
13215  * Executes the specified function once for every item in the collection, passing each
13216  * item as the first and only parameter. returning false from the function will stop the iteration.
13217  * @param {Function} fn The function to execute for each item.
13218  * @param {Object} scope (optional) The scope in which to execute the function.
13219  */
13220     each : function(fn, scope){
13221         var items = [].concat(this.items); // each safe for removal
13222         for(var i = 0, len = items.length; i < len; i++){
13223             if(fn.call(scope || items[i], items[i], i, len) === false){
13224                 break;
13225             }
13226         }
13227     },
13228    
13229 /**
13230  * Executes the specified function once for every key in the collection, passing each
13231  * key, and its associated item as the first two parameters.
13232  * @param {Function} fn The function to execute for each item.
13233  * @param {Object} scope (optional) The scope in which to execute the function.
13234  */
13235     eachKey : function(fn, scope){
13236         for(var i = 0, len = this.keys.length; i < len; i++){
13237             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13238         }
13239     },
13240    
13241 /**
13242  * Returns the first item in the collection which elicits a true return value from the
13243  * passed selection function.
13244  * @param {Function} fn The selection function to execute for each item.
13245  * @param {Object} scope (optional) The scope in which to execute the function.
13246  * @return {Object} The first item in the collection which returned true from the selection function.
13247  */
13248     find : function(fn, scope){
13249         for(var i = 0, len = this.items.length; i < len; i++){
13250             if(fn.call(scope || window, this.items[i], this.keys[i])){
13251                 return this.items[i];
13252             }
13253         }
13254         return null;
13255     },
13256    
13257 /**
13258  * Inserts an item at the specified index in the collection.
13259  * @param {Number} index The index to insert the item at.
13260  * @param {String} key The key to associate with the new item, or the item itself.
13261  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13262  * @return {Object} The item inserted.
13263  */
13264     insert : function(index, key, o){
13265         if(arguments.length == 2){
13266             o = arguments[1];
13267             key = this.getKey(o);
13268         }
13269         if(index >= this.length){
13270             return this.add(key, o);
13271         }
13272         this.length++;
13273         this.items.splice(index, 0, o);
13274         if(typeof key != "undefined" && key != null){
13275             this.map[key] = o;
13276         }
13277         this.keys.splice(index, 0, key);
13278         this.fireEvent("add", index, o, key);
13279         return o;
13280     },
13281    
13282 /**
13283  * Removed an item from the collection.
13284  * @param {Object} o The item to remove.
13285  * @return {Object} The item removed.
13286  */
13287     remove : function(o){
13288         return this.removeAt(this.indexOf(o));
13289     },
13290    
13291 /**
13292  * Remove an item from a specified index in the collection.
13293  * @param {Number} index The index within the collection of the item to remove.
13294  */
13295     removeAt : function(index){
13296         if(index < this.length && index >= 0){
13297             this.length--;
13298             var o = this.items[index];
13299             this.items.splice(index, 1);
13300             var key = this.keys[index];
13301             if(typeof key != "undefined"){
13302                 delete this.map[key];
13303             }
13304             this.keys.splice(index, 1);
13305             this.fireEvent("remove", o, key);
13306         }
13307     },
13308    
13309 /**
13310  * Removed an item associated with the passed key fom the collection.
13311  * @param {String} key The key of the item to remove.
13312  */
13313     removeKey : function(key){
13314         return this.removeAt(this.indexOfKey(key));
13315     },
13316    
13317 /**
13318  * Returns the number of items in the collection.
13319  * @return {Number} the number of items in the collection.
13320  */
13321     getCount : function(){
13322         return this.length; 
13323     },
13324    
13325 /**
13326  * Returns index within the collection of the passed Object.
13327  * @param {Object} o The item to find the index of.
13328  * @return {Number} index of the item.
13329  */
13330     indexOf : function(o){
13331         if(!this.items.indexOf){
13332             for(var i = 0, len = this.items.length; i < len; i++){
13333                 if(this.items[i] == o) {
13334                     return i;
13335                 }
13336             }
13337             return -1;
13338         }else{
13339             return this.items.indexOf(o);
13340         }
13341     },
13342    
13343 /**
13344  * Returns index within the collection of the passed key.
13345  * @param {String} key The key to find the index of.
13346  * @return {Number} index of the key.
13347  */
13348     indexOfKey : function(key){
13349         if(!this.keys.indexOf){
13350             for(var i = 0, len = this.keys.length; i < len; i++){
13351                 if(this.keys[i] == key) {
13352                     return i;
13353                 }
13354             }
13355             return -1;
13356         }else{
13357             return this.keys.indexOf(key);
13358         }
13359     },
13360    
13361 /**
13362  * Returns the item associated with the passed key OR index. Key has priority over index.
13363  * @param {String/Number} key The key or index of the item.
13364  * @return {Object} The item associated with the passed key.
13365  */
13366     item : function(key){
13367         if (key === 'length') {
13368             return null;
13369         }
13370         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13371         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13372     },
13373     
13374 /**
13375  * Returns the item at the specified index.
13376  * @param {Number} index The index of the item.
13377  * @return {Object}
13378  */
13379     itemAt : function(index){
13380         return this.items[index];
13381     },
13382     
13383 /**
13384  * Returns the item associated with the passed key.
13385  * @param {String/Number} key The key of the item.
13386  * @return {Object} The item associated with the passed key.
13387  */
13388     key : function(key){
13389         return this.map[key];
13390     },
13391    
13392 /**
13393  * Returns true if the collection contains the passed Object as an item.
13394  * @param {Object} o  The Object to look for in the collection.
13395  * @return {Boolean} True if the collection contains the Object as an item.
13396  */
13397     contains : function(o){
13398         return this.indexOf(o) != -1;
13399     },
13400    
13401 /**
13402  * Returns true if the collection contains the passed Object as a key.
13403  * @param {String} key The key to look for in the collection.
13404  * @return {Boolean} True if the collection contains the Object as a key.
13405  */
13406     containsKey : function(key){
13407         return typeof this.map[key] != "undefined";
13408     },
13409    
13410 /**
13411  * Removes all items from the collection.
13412  */
13413     clear : function(){
13414         this.length = 0;
13415         this.items = [];
13416         this.keys = [];
13417         this.map = {};
13418         this.fireEvent("clear");
13419     },
13420    
13421 /**
13422  * Returns the first item in the collection.
13423  * @return {Object} the first item in the collection..
13424  */
13425     first : function(){
13426         return this.items[0]; 
13427     },
13428    
13429 /**
13430  * Returns the last item in the collection.
13431  * @return {Object} the last item in the collection..
13432  */
13433     last : function(){
13434         return this.items[this.length-1];   
13435     },
13436     
13437     _sort : function(property, dir, fn){
13438         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13439         fn = fn || function(a, b){
13440             return a-b;
13441         };
13442         var c = [], k = this.keys, items = this.items;
13443         for(var i = 0, len = items.length; i < len; i++){
13444             c[c.length] = {key: k[i], value: items[i], index: i};
13445         }
13446         c.sort(function(a, b){
13447             var v = fn(a[property], b[property]) * dsc;
13448             if(v == 0){
13449                 v = (a.index < b.index ? -1 : 1);
13450             }
13451             return v;
13452         });
13453         for(var i = 0, len = c.length; i < len; i++){
13454             items[i] = c[i].value;
13455             k[i] = c[i].key;
13456         }
13457         this.fireEvent("sort", this);
13458     },
13459     
13460     /**
13461      * Sorts this collection with the passed comparison function
13462      * @param {String} direction (optional) "ASC" or "DESC"
13463      * @param {Function} fn (optional) comparison function
13464      */
13465     sort : function(dir, fn){
13466         this._sort("value", dir, fn);
13467     },
13468     
13469     /**
13470      * Sorts this collection by keys
13471      * @param {String} direction (optional) "ASC" or "DESC"
13472      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13473      */
13474     keySort : function(dir, fn){
13475         this._sort("key", dir, fn || function(a, b){
13476             return String(a).toUpperCase()-String(b).toUpperCase();
13477         });
13478     },
13479     
13480     /**
13481      * Returns a range of items in this collection
13482      * @param {Number} startIndex (optional) defaults to 0
13483      * @param {Number} endIndex (optional) default to the last item
13484      * @return {Array} An array of items
13485      */
13486     getRange : function(start, end){
13487         var items = this.items;
13488         if(items.length < 1){
13489             return [];
13490         }
13491         start = start || 0;
13492         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13493         var r = [];
13494         if(start <= end){
13495             for(var i = start; i <= end; i++) {
13496                     r[r.length] = items[i];
13497             }
13498         }else{
13499             for(var i = start; i >= end; i--) {
13500                     r[r.length] = items[i];
13501             }
13502         }
13503         return r;
13504     },
13505         
13506     /**
13507      * Filter the <i>objects</i> in this collection by a specific property. 
13508      * Returns a new collection that has been filtered.
13509      * @param {String} property A property on your objects
13510      * @param {String/RegExp} value Either string that the property values 
13511      * should start with or a RegExp to test against the property
13512      * @return {MixedCollection} The new filtered collection
13513      */
13514     filter : function(property, value){
13515         if(!value.exec){ // not a regex
13516             value = String(value);
13517             if(value.length == 0){
13518                 return this.clone();
13519             }
13520             value = new RegExp("^" + Roo.escapeRe(value), "i");
13521         }
13522         return this.filterBy(function(o){
13523             return o && value.test(o[property]);
13524         });
13525         },
13526     
13527     /**
13528      * Filter by a function. * Returns a new collection that has been filtered.
13529      * The passed function will be called with each 
13530      * object in the collection. If the function returns true, the value is included 
13531      * otherwise it is filtered.
13532      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13533      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13534      * @return {MixedCollection} The new filtered collection
13535      */
13536     filterBy : function(fn, scope){
13537         var r = new Roo.util.MixedCollection();
13538         r.getKey = this.getKey;
13539         var k = this.keys, it = this.items;
13540         for(var i = 0, len = it.length; i < len; i++){
13541             if(fn.call(scope||this, it[i], k[i])){
13542                                 r.add(k[i], it[i]);
13543                         }
13544         }
13545         return r;
13546     },
13547     
13548     /**
13549      * Creates a duplicate of this collection
13550      * @return {MixedCollection}
13551      */
13552     clone : function(){
13553         var r = new Roo.util.MixedCollection();
13554         var k = this.keys, it = this.items;
13555         for(var i = 0, len = it.length; i < len; i++){
13556             r.add(k[i], it[i]);
13557         }
13558         r.getKey = this.getKey;
13559         return r;
13560     }
13561 });
13562 /**
13563  * Returns the item associated with the passed key or index.
13564  * @method
13565  * @param {String/Number} key The key or index of the item.
13566  * @return {Object} The item associated with the passed key.
13567  */
13568 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13569  * Based on:
13570  * Ext JS Library 1.1.1
13571  * Copyright(c) 2006-2007, Ext JS, LLC.
13572  *
13573  * Originally Released Under LGPL - original licence link has changed is not relivant.
13574  *
13575  * Fork - LGPL
13576  * <script type="text/javascript">
13577  */
13578 /**
13579  * @class Roo.util.JSON
13580  * Modified version of Douglas Crockford"s json.js that doesn"t
13581  * mess with the Object prototype 
13582  * http://www.json.org/js.html
13583  * @singleton
13584  */
13585 Roo.util.JSON = new (function(){
13586     var useHasOwn = {}.hasOwnProperty ? true : false;
13587     
13588     // crashes Safari in some instances
13589     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13590     
13591     var pad = function(n) {
13592         return n < 10 ? "0" + n : n;
13593     };
13594     
13595     var m = {
13596         "\b": '\\b',
13597         "\t": '\\t',
13598         "\n": '\\n',
13599         "\f": '\\f',
13600         "\r": '\\r',
13601         '"' : '\\"',
13602         "\\": '\\\\'
13603     };
13604
13605     var encodeString = function(s){
13606         if (/["\\\x00-\x1f]/.test(s)) {
13607             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13608                 var c = m[b];
13609                 if(c){
13610                     return c;
13611                 }
13612                 c = b.charCodeAt();
13613                 return "\\u00" +
13614                     Math.floor(c / 16).toString(16) +
13615                     (c % 16).toString(16);
13616             }) + '"';
13617         }
13618         return '"' + s + '"';
13619     };
13620     
13621     var encodeArray = function(o){
13622         var a = ["["], b, i, l = o.length, v;
13623             for (i = 0; i < l; i += 1) {
13624                 v = o[i];
13625                 switch (typeof v) {
13626                     case "undefined":
13627                     case "function":
13628                     case "unknown":
13629                         break;
13630                     default:
13631                         if (b) {
13632                             a.push(',');
13633                         }
13634                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13635                         b = true;
13636                 }
13637             }
13638             a.push("]");
13639             return a.join("");
13640     };
13641     
13642     var encodeDate = function(o){
13643         return '"' + o.getFullYear() + "-" +
13644                 pad(o.getMonth() + 1) + "-" +
13645                 pad(o.getDate()) + "T" +
13646                 pad(o.getHours()) + ":" +
13647                 pad(o.getMinutes()) + ":" +
13648                 pad(o.getSeconds()) + '"';
13649     };
13650     
13651     /**
13652      * Encodes an Object, Array or other value
13653      * @param {Mixed} o The variable to encode
13654      * @return {String} The JSON string
13655      */
13656     this.encode = function(o)
13657     {
13658         // should this be extended to fully wrap stringify..
13659         
13660         if(typeof o == "undefined" || o === null){
13661             return "null";
13662         }else if(o instanceof Array){
13663             return encodeArray(o);
13664         }else if(o instanceof Date){
13665             return encodeDate(o);
13666         }else if(typeof o == "string"){
13667             return encodeString(o);
13668         }else if(typeof o == "number"){
13669             return isFinite(o) ? String(o) : "null";
13670         }else if(typeof o == "boolean"){
13671             return String(o);
13672         }else {
13673             var a = ["{"], b, i, v;
13674             for (i in o) {
13675                 if(!useHasOwn || o.hasOwnProperty(i)) {
13676                     v = o[i];
13677                     switch (typeof v) {
13678                     case "undefined":
13679                     case "function":
13680                     case "unknown":
13681                         break;
13682                     default:
13683                         if(b){
13684                             a.push(',');
13685                         }
13686                         a.push(this.encode(i), ":",
13687                                 v === null ? "null" : this.encode(v));
13688                         b = true;
13689                     }
13690                 }
13691             }
13692             a.push("}");
13693             return a.join("");
13694         }
13695     };
13696     
13697     /**
13698      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13699      * @param {String} json The JSON string
13700      * @return {Object} The resulting object
13701      */
13702     this.decode = function(json){
13703         
13704         return  /** eval:var:json */ eval("(" + json + ')');
13705     };
13706 })();
13707 /** 
13708  * Shorthand for {@link Roo.util.JSON#encode}
13709  * @member Roo encode 
13710  * @method */
13711 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13712 /** 
13713  * Shorthand for {@link Roo.util.JSON#decode}
13714  * @member Roo decode 
13715  * @method */
13716 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13717 /*
13718  * Based on:
13719  * Ext JS Library 1.1.1
13720  * Copyright(c) 2006-2007, Ext JS, LLC.
13721  *
13722  * Originally Released Under LGPL - original licence link has changed is not relivant.
13723  *
13724  * Fork - LGPL
13725  * <script type="text/javascript">
13726  */
13727  
13728 /**
13729  * @class Roo.util.Format
13730  * Reusable data formatting functions
13731  * @singleton
13732  */
13733 Roo.util.Format = function(){
13734     var trimRe = /^\s+|\s+$/g;
13735     return {
13736         /**
13737          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13738          * @param {String} value The string to truncate
13739          * @param {Number} length The maximum length to allow before truncating
13740          * @return {String} The converted text
13741          */
13742         ellipsis : function(value, len){
13743             if(value && value.length > len){
13744                 return value.substr(0, len-3)+"...";
13745             }
13746             return value;
13747         },
13748
13749         /**
13750          * Checks a reference and converts it to empty string if it is undefined
13751          * @param {Mixed} value Reference to check
13752          * @return {Mixed} Empty string if converted, otherwise the original value
13753          */
13754         undef : function(value){
13755             return typeof value != "undefined" ? value : "";
13756         },
13757
13758         /**
13759          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13760          * @param {String} value The string to encode
13761          * @return {String} The encoded text
13762          */
13763         htmlEncode : function(value){
13764             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13765         },
13766
13767         /**
13768          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13769          * @param {String} value The string to decode
13770          * @return {String} The decoded text
13771          */
13772         htmlDecode : function(value){
13773             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13774         },
13775
13776         /**
13777          * Trims any whitespace from either side of a string
13778          * @param {String} value The text to trim
13779          * @return {String} The trimmed text
13780          */
13781         trim : function(value){
13782             return String(value).replace(trimRe, "");
13783         },
13784
13785         /**
13786          * Returns a substring from within an original string
13787          * @param {String} value The original text
13788          * @param {Number} start The start index of the substring
13789          * @param {Number} length The length of the substring
13790          * @return {String} The substring
13791          */
13792         substr : function(value, start, length){
13793             return String(value).substr(start, length);
13794         },
13795
13796         /**
13797          * Converts a string to all lower case letters
13798          * @param {String} value The text to convert
13799          * @return {String} The converted text
13800          */
13801         lowercase : function(value){
13802             return String(value).toLowerCase();
13803         },
13804
13805         /**
13806          * Converts a string to all upper case letters
13807          * @param {String} value The text to convert
13808          * @return {String} The converted text
13809          */
13810         uppercase : function(value){
13811             return String(value).toUpperCase();
13812         },
13813
13814         /**
13815          * Converts the first character only of a string to upper case
13816          * @param {String} value The text to convert
13817          * @return {String} The converted text
13818          */
13819         capitalize : function(value){
13820             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13821         },
13822
13823         // private
13824         call : function(value, fn){
13825             if(arguments.length > 2){
13826                 var args = Array.prototype.slice.call(arguments, 2);
13827                 args.unshift(value);
13828                  
13829                 return /** eval:var:value */  eval(fn).apply(window, args);
13830             }else{
13831                 /** eval:var:value */
13832                 return /** eval:var:value */ eval(fn).call(window, value);
13833             }
13834         },
13835
13836        
13837         /**
13838          * safer version of Math.toFixed..??/
13839          * @param {Number/String} value The numeric value to format
13840          * @param {Number/String} value Decimal places 
13841          * @return {String} The formatted currency string
13842          */
13843         toFixed : function(v, n)
13844         {
13845             // why not use to fixed - precision is buggered???
13846             if (!n) {
13847                 return Math.round(v-0);
13848             }
13849             var fact = Math.pow(10,n+1);
13850             v = (Math.round((v-0)*fact))/fact;
13851             var z = (''+fact).substring(2);
13852             if (v == Math.floor(v)) {
13853                 return Math.floor(v) + '.' + z;
13854             }
13855             
13856             // now just padd decimals..
13857             var ps = String(v).split('.');
13858             var fd = (ps[1] + z);
13859             var r = fd.substring(0,n); 
13860             var rm = fd.substring(n); 
13861             if (rm < 5) {
13862                 return ps[0] + '.' + r;
13863             }
13864             r*=1; // turn it into a number;
13865             r++;
13866             if (String(r).length != n) {
13867                 ps[0]*=1;
13868                 ps[0]++;
13869                 r = String(r).substring(1); // chop the end off.
13870             }
13871             
13872             return ps[0] + '.' + r;
13873              
13874         },
13875         
13876         /**
13877          * Format a number as US currency
13878          * @param {Number/String} value The numeric value to format
13879          * @return {String} The formatted currency string
13880          */
13881         usMoney : function(v){
13882             return '$' + Roo.util.Format.number(v);
13883         },
13884         
13885         /**
13886          * Format a number
13887          * eventually this should probably emulate php's number_format
13888          * @param {Number/String} value The numeric value to format
13889          * @param {Number} decimals number of decimal places
13890          * @param {String} delimiter for thousands (default comma)
13891          * @return {String} The formatted currency string
13892          */
13893         number : function(v, decimals, thousandsDelimiter)
13894         {
13895             // multiply and round.
13896             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13897             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13898             
13899             var mul = Math.pow(10, decimals);
13900             var zero = String(mul).substring(1);
13901             v = (Math.round((v-0)*mul))/mul;
13902             
13903             // if it's '0' number.. then
13904             
13905             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13906             v = String(v);
13907             var ps = v.split('.');
13908             var whole = ps[0];
13909             
13910             var r = /(\d+)(\d{3})/;
13911             // add comma's
13912             
13913             if(thousandsDelimiter.length != 0) {
13914                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13915             } 
13916             
13917             var sub = ps[1] ?
13918                     // has decimals..
13919                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13920                     // does not have decimals
13921                     (decimals ? ('.' + zero) : '');
13922             
13923             
13924             return whole + sub ;
13925         },
13926         
13927         /**
13928          * Parse a value into a formatted date using the specified format pattern.
13929          * @param {Mixed} value The value to format
13930          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13931          * @return {String} The formatted date string
13932          */
13933         date : function(v, format){
13934             if(!v){
13935                 return "";
13936             }
13937             if(!(v instanceof Date)){
13938                 v = new Date(Date.parse(v));
13939             }
13940             return v.dateFormat(format || Roo.util.Format.defaults.date);
13941         },
13942
13943         /**
13944          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13945          * @param {String} format Any valid date format string
13946          * @return {Function} The date formatting function
13947          */
13948         dateRenderer : function(format){
13949             return function(v){
13950                 return Roo.util.Format.date(v, format);  
13951             };
13952         },
13953
13954         // private
13955         stripTagsRE : /<\/?[^>]+>/gi,
13956         
13957         /**
13958          * Strips all HTML tags
13959          * @param {Mixed} value The text from which to strip tags
13960          * @return {String} The stripped text
13961          */
13962         stripTags : function(v){
13963             return !v ? v : String(v).replace(this.stripTagsRE, "");
13964         }
13965     };
13966 }();
13967 Roo.util.Format.defaults = {
13968     date : 'd/M/Y'
13969 };/*
13970  * Based on:
13971  * Ext JS Library 1.1.1
13972  * Copyright(c) 2006-2007, Ext JS, LLC.
13973  *
13974  * Originally Released Under LGPL - original licence link has changed is not relivant.
13975  *
13976  * Fork - LGPL
13977  * <script type="text/javascript">
13978  */
13979
13980
13981  
13982
13983 /**
13984  * @class Roo.MasterTemplate
13985  * @extends Roo.Template
13986  * Provides a template that can have child templates. The syntax is:
13987 <pre><code>
13988 var t = new Roo.MasterTemplate(
13989         '&lt;select name="{name}"&gt;',
13990                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13991         '&lt;/select&gt;'
13992 );
13993 t.add('options', {value: 'foo', text: 'bar'});
13994 // or you can add multiple child elements in one shot
13995 t.addAll('options', [
13996     {value: 'foo', text: 'bar'},
13997     {value: 'foo2', text: 'bar2'},
13998     {value: 'foo3', text: 'bar3'}
13999 ]);
14000 // then append, applying the master template values
14001 t.append('my-form', {name: 'my-select'});
14002 </code></pre>
14003 * A name attribute for the child template is not required if you have only one child
14004 * template or you want to refer to them by index.
14005  */
14006 Roo.MasterTemplate = function(){
14007     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14008     this.originalHtml = this.html;
14009     var st = {};
14010     var m, re = this.subTemplateRe;
14011     re.lastIndex = 0;
14012     var subIndex = 0;
14013     while(m = re.exec(this.html)){
14014         var name = m[1], content = m[2];
14015         st[subIndex] = {
14016             name: name,
14017             index: subIndex,
14018             buffer: [],
14019             tpl : new Roo.Template(content)
14020         };
14021         if(name){
14022             st[name] = st[subIndex];
14023         }
14024         st[subIndex].tpl.compile();
14025         st[subIndex].tpl.call = this.call.createDelegate(this);
14026         subIndex++;
14027     }
14028     this.subCount = subIndex;
14029     this.subs = st;
14030 };
14031 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14032     /**
14033     * The regular expression used to match sub templates
14034     * @type RegExp
14035     * @property
14036     */
14037     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14038
14039     /**
14040      * Applies the passed values to a child template.
14041      * @param {String/Number} name (optional) The name or index of the child template
14042      * @param {Array/Object} values The values to be applied to the template
14043      * @return {MasterTemplate} this
14044      */
14045      add : function(name, values){
14046         if(arguments.length == 1){
14047             values = arguments[0];
14048             name = 0;
14049         }
14050         var s = this.subs[name];
14051         s.buffer[s.buffer.length] = s.tpl.apply(values);
14052         return this;
14053     },
14054
14055     /**
14056      * Applies all the passed values to a child template.
14057      * @param {String/Number} name (optional) The name or index of the child template
14058      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14059      * @param {Boolean} reset (optional) True to reset the template first
14060      * @return {MasterTemplate} this
14061      */
14062     fill : function(name, values, reset){
14063         var a = arguments;
14064         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14065             values = a[0];
14066             name = 0;
14067             reset = a[1];
14068         }
14069         if(reset){
14070             this.reset();
14071         }
14072         for(var i = 0, len = values.length; i < len; i++){
14073             this.add(name, values[i]);
14074         }
14075         return this;
14076     },
14077
14078     /**
14079      * Resets the template for reuse
14080      * @return {MasterTemplate} this
14081      */
14082      reset : function(){
14083         var s = this.subs;
14084         for(var i = 0; i < this.subCount; i++){
14085             s[i].buffer = [];
14086         }
14087         return this;
14088     },
14089
14090     applyTemplate : function(values){
14091         var s = this.subs;
14092         var replaceIndex = -1;
14093         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14094             return s[++replaceIndex].buffer.join("");
14095         });
14096         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14097     },
14098
14099     apply : function(){
14100         return this.applyTemplate.apply(this, arguments);
14101     },
14102
14103     compile : function(){return this;}
14104 });
14105
14106 /**
14107  * Alias for fill().
14108  * @method
14109  */
14110 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14111  /**
14112  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14113  * var tpl = Roo.MasterTemplate.from('element-id');
14114  * @param {String/HTMLElement} el
14115  * @param {Object} config
14116  * @static
14117  */
14118 Roo.MasterTemplate.from = function(el, config){
14119     el = Roo.getDom(el);
14120     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14121 };/*
14122  * Based on:
14123  * Ext JS Library 1.1.1
14124  * Copyright(c) 2006-2007, Ext JS, LLC.
14125  *
14126  * Originally Released Under LGPL - original licence link has changed is not relivant.
14127  *
14128  * Fork - LGPL
14129  * <script type="text/javascript">
14130  */
14131
14132  
14133 /**
14134  * @class Roo.util.CSS
14135  * Utility class for manipulating CSS rules
14136  * @singleton
14137  */
14138 Roo.util.CSS = function(){
14139         var rules = null;
14140         var doc = document;
14141
14142     var camelRe = /(-[a-z])/gi;
14143     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14144
14145    return {
14146    /**
14147     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14148     * tag and appended to the HEAD of the document.
14149     * @param {String|Object} cssText The text containing the css rules
14150     * @param {String} id An id to add to the stylesheet for later removal
14151     * @return {StyleSheet}
14152     */
14153     createStyleSheet : function(cssText, id){
14154         var ss;
14155         var head = doc.getElementsByTagName("head")[0];
14156         var nrules = doc.createElement("style");
14157         nrules.setAttribute("type", "text/css");
14158         if(id){
14159             nrules.setAttribute("id", id);
14160         }
14161         if (typeof(cssText) != 'string') {
14162             // support object maps..
14163             // not sure if this a good idea.. 
14164             // perhaps it should be merged with the general css handling
14165             // and handle js style props.
14166             var cssTextNew = [];
14167             for(var n in cssText) {
14168                 var citems = [];
14169                 for(var k in cssText[n]) {
14170                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14171                 }
14172                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14173                 
14174             }
14175             cssText = cssTextNew.join("\n");
14176             
14177         }
14178        
14179        
14180        if(Roo.isIE){
14181            head.appendChild(nrules);
14182            ss = nrules.styleSheet;
14183            ss.cssText = cssText;
14184        }else{
14185            try{
14186                 nrules.appendChild(doc.createTextNode(cssText));
14187            }catch(e){
14188                nrules.cssText = cssText; 
14189            }
14190            head.appendChild(nrules);
14191            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14192        }
14193        this.cacheStyleSheet(ss);
14194        return ss;
14195    },
14196
14197    /**
14198     * Removes a style or link tag by id
14199     * @param {String} id The id of the tag
14200     */
14201    removeStyleSheet : function(id){
14202        var existing = doc.getElementById(id);
14203        if(existing){
14204            existing.parentNode.removeChild(existing);
14205        }
14206    },
14207
14208    /**
14209     * Dynamically swaps an existing stylesheet reference for a new one
14210     * @param {String} id The id of an existing link tag to remove
14211     * @param {String} url The href of the new stylesheet to include
14212     */
14213    swapStyleSheet : function(id, url){
14214        this.removeStyleSheet(id);
14215        var ss = doc.createElement("link");
14216        ss.setAttribute("rel", "stylesheet");
14217        ss.setAttribute("type", "text/css");
14218        ss.setAttribute("id", id);
14219        ss.setAttribute("href", url);
14220        doc.getElementsByTagName("head")[0].appendChild(ss);
14221    },
14222    
14223    /**
14224     * Refresh the rule cache if you have dynamically added stylesheets
14225     * @return {Object} An object (hash) of rules indexed by selector
14226     */
14227    refreshCache : function(){
14228        return this.getRules(true);
14229    },
14230
14231    // private
14232    cacheStyleSheet : function(stylesheet){
14233        if(!rules){
14234            rules = {};
14235        }
14236        try{// try catch for cross domain access issue
14237            var ssRules = stylesheet.cssRules || stylesheet.rules;
14238            for(var j = ssRules.length-1; j >= 0; --j){
14239                rules[ssRules[j].selectorText] = ssRules[j];
14240            }
14241        }catch(e){}
14242    },
14243    
14244    /**
14245     * Gets all css rules for the document
14246     * @param {Boolean} refreshCache true to refresh the internal cache
14247     * @return {Object} An object (hash) of rules indexed by selector
14248     */
14249    getRules : function(refreshCache){
14250                 if(rules == null || refreshCache){
14251                         rules = {};
14252                         var ds = doc.styleSheets;
14253                         for(var i =0, len = ds.length; i < len; i++){
14254                             try{
14255                         this.cacheStyleSheet(ds[i]);
14256                     }catch(e){} 
14257                 }
14258                 }
14259                 return rules;
14260         },
14261         
14262         /**
14263     * Gets an an individual CSS rule by selector(s)
14264     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14265     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14266     * @return {CSSRule} The CSS rule or null if one is not found
14267     */
14268    getRule : function(selector, refreshCache){
14269                 var rs = this.getRules(refreshCache);
14270                 if(!(selector instanceof Array)){
14271                     return rs[selector];
14272                 }
14273                 for(var i = 0; i < selector.length; i++){
14274                         if(rs[selector[i]]){
14275                                 return rs[selector[i]];
14276                         }
14277                 }
14278                 return null;
14279         },
14280         
14281         
14282         /**
14283     * Updates a rule property
14284     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14285     * @param {String} property The css property
14286     * @param {String} value The new value for the property
14287     * @return {Boolean} true If a rule was found and updated
14288     */
14289    updateRule : function(selector, property, value){
14290                 if(!(selector instanceof Array)){
14291                         var rule = this.getRule(selector);
14292                         if(rule){
14293                                 rule.style[property.replace(camelRe, camelFn)] = value;
14294                                 return true;
14295                         }
14296                 }else{
14297                         for(var i = 0; i < selector.length; i++){
14298                                 if(this.updateRule(selector[i], property, value)){
14299                                         return true;
14300                                 }
14301                         }
14302                 }
14303                 return false;
14304         }
14305    };   
14306 }();/*
14307  * Based on:
14308  * Ext JS Library 1.1.1
14309  * Copyright(c) 2006-2007, Ext JS, LLC.
14310  *
14311  * Originally Released Under LGPL - original licence link has changed is not relivant.
14312  *
14313  * Fork - LGPL
14314  * <script type="text/javascript">
14315  */
14316
14317  
14318
14319 /**
14320  * @class Roo.util.ClickRepeater
14321  * @extends Roo.util.Observable
14322  * 
14323  * A wrapper class which can be applied to any element. Fires a "click" event while the
14324  * mouse is pressed. The interval between firings may be specified in the config but
14325  * defaults to 10 milliseconds.
14326  * 
14327  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14328  * 
14329  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14330  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14331  * Similar to an autorepeat key delay.
14332  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14333  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14334  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14335  *           "interval" and "delay" are ignored. "immediate" is honored.
14336  * @cfg {Boolean} preventDefault True to prevent the default click event
14337  * @cfg {Boolean} stopDefault True to stop the default click event
14338  * 
14339  * @history
14340  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14341  *     2007-02-02 jvs Renamed to ClickRepeater
14342  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14343  *
14344  *  @constructor
14345  * @param {String/HTMLElement/Element} el The element to listen on
14346  * @param {Object} config
14347  **/
14348 Roo.util.ClickRepeater = function(el, config)
14349 {
14350     this.el = Roo.get(el);
14351     this.el.unselectable();
14352
14353     Roo.apply(this, config);
14354
14355     this.addEvents({
14356     /**
14357      * @event mousedown
14358      * Fires when the mouse button is depressed.
14359      * @param {Roo.util.ClickRepeater} this
14360      */
14361         "mousedown" : true,
14362     /**
14363      * @event click
14364      * Fires on a specified interval during the time the element is pressed.
14365      * @param {Roo.util.ClickRepeater} this
14366      */
14367         "click" : true,
14368     /**
14369      * @event mouseup
14370      * Fires when the mouse key is released.
14371      * @param {Roo.util.ClickRepeater} this
14372      */
14373         "mouseup" : true
14374     });
14375
14376     this.el.on("mousedown", this.handleMouseDown, this);
14377     if(this.preventDefault || this.stopDefault){
14378         this.el.on("click", function(e){
14379             if(this.preventDefault){
14380                 e.preventDefault();
14381             }
14382             if(this.stopDefault){
14383                 e.stopEvent();
14384             }
14385         }, this);
14386     }
14387
14388     // allow inline handler
14389     if(this.handler){
14390         this.on("click", this.handler,  this.scope || this);
14391     }
14392
14393     Roo.util.ClickRepeater.superclass.constructor.call(this);
14394 };
14395
14396 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14397     interval : 20,
14398     delay: 250,
14399     preventDefault : true,
14400     stopDefault : false,
14401     timer : 0,
14402
14403     // private
14404     handleMouseDown : function(){
14405         clearTimeout(this.timer);
14406         this.el.blur();
14407         if(this.pressClass){
14408             this.el.addClass(this.pressClass);
14409         }
14410         this.mousedownTime = new Date();
14411
14412         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14413         this.el.on("mouseout", this.handleMouseOut, this);
14414
14415         this.fireEvent("mousedown", this);
14416         this.fireEvent("click", this);
14417         
14418         this.timer = this.click.defer(this.delay || this.interval, this);
14419     },
14420
14421     // private
14422     click : function(){
14423         this.fireEvent("click", this);
14424         this.timer = this.click.defer(this.getInterval(), this);
14425     },
14426
14427     // private
14428     getInterval: function(){
14429         if(!this.accelerate){
14430             return this.interval;
14431         }
14432         var pressTime = this.mousedownTime.getElapsed();
14433         if(pressTime < 500){
14434             return 400;
14435         }else if(pressTime < 1700){
14436             return 320;
14437         }else if(pressTime < 2600){
14438             return 250;
14439         }else if(pressTime < 3500){
14440             return 180;
14441         }else if(pressTime < 4400){
14442             return 140;
14443         }else if(pressTime < 5300){
14444             return 80;
14445         }else if(pressTime < 6200){
14446             return 50;
14447         }else{
14448             return 10;
14449         }
14450     },
14451
14452     // private
14453     handleMouseOut : function(){
14454         clearTimeout(this.timer);
14455         if(this.pressClass){
14456             this.el.removeClass(this.pressClass);
14457         }
14458         this.el.on("mouseover", this.handleMouseReturn, this);
14459     },
14460
14461     // private
14462     handleMouseReturn : function(){
14463         this.el.un("mouseover", this.handleMouseReturn);
14464         if(this.pressClass){
14465             this.el.addClass(this.pressClass);
14466         }
14467         this.click();
14468     },
14469
14470     // private
14471     handleMouseUp : function(){
14472         clearTimeout(this.timer);
14473         this.el.un("mouseover", this.handleMouseReturn);
14474         this.el.un("mouseout", this.handleMouseOut);
14475         Roo.get(document).un("mouseup", this.handleMouseUp);
14476         this.el.removeClass(this.pressClass);
14477         this.fireEvent("mouseup", this);
14478     }
14479 });/*
14480  * Based on:
14481  * Ext JS Library 1.1.1
14482  * Copyright(c) 2006-2007, Ext JS, LLC.
14483  *
14484  * Originally Released Under LGPL - original licence link has changed is not relivant.
14485  *
14486  * Fork - LGPL
14487  * <script type="text/javascript">
14488  */
14489
14490  
14491 /**
14492  * @class Roo.KeyNav
14493  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14494  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14495  * way to implement custom navigation schemes for any UI component.</p>
14496  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14497  * pageUp, pageDown, del, home, end.  Usage:</p>
14498  <pre><code>
14499 var nav = new Roo.KeyNav("my-element", {
14500     "left" : function(e){
14501         this.moveLeft(e.ctrlKey);
14502     },
14503     "right" : function(e){
14504         this.moveRight(e.ctrlKey);
14505     },
14506     "enter" : function(e){
14507         this.save();
14508     },
14509     scope : this
14510 });
14511 </code></pre>
14512  * @constructor
14513  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14514  * @param {Object} config The config
14515  */
14516 Roo.KeyNav = function(el, config){
14517     this.el = Roo.get(el);
14518     Roo.apply(this, config);
14519     if(!this.disabled){
14520         this.disabled = true;
14521         this.enable();
14522     }
14523 };
14524
14525 Roo.KeyNav.prototype = {
14526     /**
14527      * @cfg {Boolean} disabled
14528      * True to disable this KeyNav instance (defaults to false)
14529      */
14530     disabled : false,
14531     /**
14532      * @cfg {String} defaultEventAction
14533      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14534      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14535      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14536      */
14537     defaultEventAction: "stopEvent",
14538     /**
14539      * @cfg {Boolean} forceKeyDown
14540      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14541      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14542      * handle keydown instead of keypress.
14543      */
14544     forceKeyDown : false,
14545
14546     // private
14547     prepareEvent : function(e){
14548         var k = e.getKey();
14549         var h = this.keyToHandler[k];
14550         //if(h && this[h]){
14551         //    e.stopPropagation();
14552         //}
14553         if(Roo.isSafari && h && k >= 37 && k <= 40){
14554             e.stopEvent();
14555         }
14556     },
14557
14558     // private
14559     relay : function(e){
14560         var k = e.getKey();
14561         var h = this.keyToHandler[k];
14562         if(h && this[h]){
14563             if(this.doRelay(e, this[h], h) !== true){
14564                 e[this.defaultEventAction]();
14565             }
14566         }
14567     },
14568
14569     // private
14570     doRelay : function(e, h, hname){
14571         return h.call(this.scope || this, e);
14572     },
14573
14574     // possible handlers
14575     enter : false,
14576     left : false,
14577     right : false,
14578     up : false,
14579     down : false,
14580     tab : false,
14581     esc : false,
14582     pageUp : false,
14583     pageDown : false,
14584     del : false,
14585     home : false,
14586     end : false,
14587
14588     // quick lookup hash
14589     keyToHandler : {
14590         37 : "left",
14591         39 : "right",
14592         38 : "up",
14593         40 : "down",
14594         33 : "pageUp",
14595         34 : "pageDown",
14596         46 : "del",
14597         36 : "home",
14598         35 : "end",
14599         13 : "enter",
14600         27 : "esc",
14601         9  : "tab"
14602     },
14603
14604         /**
14605          * Enable this KeyNav
14606          */
14607         enable: function(){
14608                 if(this.disabled){
14609             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14610             // the EventObject will normalize Safari automatically
14611             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14612                 this.el.on("keydown", this.relay,  this);
14613             }else{
14614                 this.el.on("keydown", this.prepareEvent,  this);
14615                 this.el.on("keypress", this.relay,  this);
14616             }
14617                     this.disabled = false;
14618                 }
14619         },
14620
14621         /**
14622          * Disable this KeyNav
14623          */
14624         disable: function(){
14625                 if(!this.disabled){
14626                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14627                 this.el.un("keydown", this.relay);
14628             }else{
14629                 this.el.un("keydown", this.prepareEvent);
14630                 this.el.un("keypress", this.relay);
14631             }
14632                     this.disabled = true;
14633                 }
14634         }
14635 };/*
14636  * Based on:
14637  * Ext JS Library 1.1.1
14638  * Copyright(c) 2006-2007, Ext JS, LLC.
14639  *
14640  * Originally Released Under LGPL - original licence link has changed is not relivant.
14641  *
14642  * Fork - LGPL
14643  * <script type="text/javascript">
14644  */
14645
14646  
14647 /**
14648  * @class Roo.KeyMap
14649  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14650  * The constructor accepts the same config object as defined by {@link #addBinding}.
14651  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14652  * combination it will call the function with this signature (if the match is a multi-key
14653  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14654  * A KeyMap can also handle a string representation of keys.<br />
14655  * Usage:
14656  <pre><code>
14657 // map one key by key code
14658 var map = new Roo.KeyMap("my-element", {
14659     key: 13, // or Roo.EventObject.ENTER
14660     fn: myHandler,
14661     scope: myObject
14662 });
14663
14664 // map multiple keys to one action by string
14665 var map = new Roo.KeyMap("my-element", {
14666     key: "a\r\n\t",
14667     fn: myHandler,
14668     scope: myObject
14669 });
14670
14671 // map multiple keys to multiple actions by strings and array of codes
14672 var map = new Roo.KeyMap("my-element", [
14673     {
14674         key: [10,13],
14675         fn: function(){ alert("Return was pressed"); }
14676     }, {
14677         key: "abc",
14678         fn: function(){ alert('a, b or c was pressed'); }
14679     }, {
14680         key: "\t",
14681         ctrl:true,
14682         shift:true,
14683         fn: function(){ alert('Control + shift + tab was pressed.'); }
14684     }
14685 ]);
14686 </code></pre>
14687  * <b>Note: A KeyMap starts enabled</b>
14688  * @constructor
14689  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14690  * @param {Object} config The config (see {@link #addBinding})
14691  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14692  */
14693 Roo.KeyMap = function(el, config, eventName){
14694     this.el  = Roo.get(el);
14695     this.eventName = eventName || "keydown";
14696     this.bindings = [];
14697     if(config){
14698         this.addBinding(config);
14699     }
14700     this.enable();
14701 };
14702
14703 Roo.KeyMap.prototype = {
14704     /**
14705      * True to stop the event from bubbling and prevent the default browser action if the
14706      * key was handled by the KeyMap (defaults to false)
14707      * @type Boolean
14708      */
14709     stopEvent : false,
14710
14711     /**
14712      * Add a new binding to this KeyMap. The following config object properties are supported:
14713      * <pre>
14714 Property    Type             Description
14715 ----------  ---------------  ----------------------------------------------------------------------
14716 key         String/Array     A single keycode or an array of keycodes to handle
14717 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14718 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14719 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14720 fn          Function         The function to call when KeyMap finds the expected key combination
14721 scope       Object           The scope of the callback function
14722 </pre>
14723      *
14724      * Usage:
14725      * <pre><code>
14726 // Create a KeyMap
14727 var map = new Roo.KeyMap(document, {
14728     key: Roo.EventObject.ENTER,
14729     fn: handleKey,
14730     scope: this
14731 });
14732
14733 //Add a new binding to the existing KeyMap later
14734 map.addBinding({
14735     key: 'abc',
14736     shift: true,
14737     fn: handleKey,
14738     scope: this
14739 });
14740 </code></pre>
14741      * @param {Object/Array} config A single KeyMap config or an array of configs
14742      */
14743         addBinding : function(config){
14744         if(config instanceof Array){
14745             for(var i = 0, len = config.length; i < len; i++){
14746                 this.addBinding(config[i]);
14747             }
14748             return;
14749         }
14750         var keyCode = config.key,
14751             shift = config.shift, 
14752             ctrl = config.ctrl, 
14753             alt = config.alt,
14754             fn = config.fn,
14755             scope = config.scope;
14756         if(typeof keyCode == "string"){
14757             var ks = [];
14758             var keyString = keyCode.toUpperCase();
14759             for(var j = 0, len = keyString.length; j < len; j++){
14760                 ks.push(keyString.charCodeAt(j));
14761             }
14762             keyCode = ks;
14763         }
14764         var keyArray = keyCode instanceof Array;
14765         var handler = function(e){
14766             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14767                 var k = e.getKey();
14768                 if(keyArray){
14769                     for(var i = 0, len = keyCode.length; i < len; i++){
14770                         if(keyCode[i] == k){
14771                           if(this.stopEvent){
14772                               e.stopEvent();
14773                           }
14774                           fn.call(scope || window, k, e);
14775                           return;
14776                         }
14777                     }
14778                 }else{
14779                     if(k == keyCode){
14780                         if(this.stopEvent){
14781                            e.stopEvent();
14782                         }
14783                         fn.call(scope || window, k, e);
14784                     }
14785                 }
14786             }
14787         };
14788         this.bindings.push(handler);  
14789         },
14790
14791     /**
14792      * Shorthand for adding a single key listener
14793      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14794      * following options:
14795      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14796      * @param {Function} fn The function to call
14797      * @param {Object} scope (optional) The scope of the function
14798      */
14799     on : function(key, fn, scope){
14800         var keyCode, shift, ctrl, alt;
14801         if(typeof key == "object" && !(key instanceof Array)){
14802             keyCode = key.key;
14803             shift = key.shift;
14804             ctrl = key.ctrl;
14805             alt = key.alt;
14806         }else{
14807             keyCode = key;
14808         }
14809         this.addBinding({
14810             key: keyCode,
14811             shift: shift,
14812             ctrl: ctrl,
14813             alt: alt,
14814             fn: fn,
14815             scope: scope
14816         })
14817     },
14818
14819     // private
14820     handleKeyDown : function(e){
14821             if(this.enabled){ //just in case
14822             var b = this.bindings;
14823             for(var i = 0, len = b.length; i < len; i++){
14824                 b[i].call(this, e);
14825             }
14826             }
14827         },
14828         
14829         /**
14830          * Returns true if this KeyMap is enabled
14831          * @return {Boolean} 
14832          */
14833         isEnabled : function(){
14834             return this.enabled;  
14835         },
14836         
14837         /**
14838          * Enables this KeyMap
14839          */
14840         enable: function(){
14841                 if(!this.enabled){
14842                     this.el.on(this.eventName, this.handleKeyDown, this);
14843                     this.enabled = true;
14844                 }
14845         },
14846
14847         /**
14848          * Disable this KeyMap
14849          */
14850         disable: function(){
14851                 if(this.enabled){
14852                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14853                     this.enabled = false;
14854                 }
14855         }
14856 };/*
14857  * Based on:
14858  * Ext JS Library 1.1.1
14859  * Copyright(c) 2006-2007, Ext JS, LLC.
14860  *
14861  * Originally Released Under LGPL - original licence link has changed is not relivant.
14862  *
14863  * Fork - LGPL
14864  * <script type="text/javascript">
14865  */
14866
14867  
14868 /**
14869  * @class Roo.util.TextMetrics
14870  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14871  * wide, in pixels, a given block of text will be.
14872  * @singleton
14873  */
14874 Roo.util.TextMetrics = function(){
14875     var shared;
14876     return {
14877         /**
14878          * Measures the size of the specified text
14879          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14880          * that can affect the size of the rendered text
14881          * @param {String} text The text to measure
14882          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14883          * in order to accurately measure the text height
14884          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14885          */
14886         measure : function(el, text, fixedWidth){
14887             if(!shared){
14888                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14889             }
14890             shared.bind(el);
14891             shared.setFixedWidth(fixedWidth || 'auto');
14892             return shared.getSize(text);
14893         },
14894
14895         /**
14896          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14897          * the overhead of multiple calls to initialize the style properties on each measurement.
14898          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14899          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14900          * in order to accurately measure the text height
14901          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14902          */
14903         createInstance : function(el, fixedWidth){
14904             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14905         }
14906     };
14907 }();
14908
14909  
14910
14911 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14912     var ml = new Roo.Element(document.createElement('div'));
14913     document.body.appendChild(ml.dom);
14914     ml.position('absolute');
14915     ml.setLeftTop(-1000, -1000);
14916     ml.hide();
14917
14918     if(fixedWidth){
14919         ml.setWidth(fixedWidth);
14920     }
14921      
14922     var instance = {
14923         /**
14924          * Returns the size of the specified text based on the internal element's style and width properties
14925          * @memberOf Roo.util.TextMetrics.Instance#
14926          * @param {String} text The text to measure
14927          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14928          */
14929         getSize : function(text){
14930             ml.update(text);
14931             var s = ml.getSize();
14932             ml.update('');
14933             return s;
14934         },
14935
14936         /**
14937          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14938          * that can affect the size of the rendered text
14939          * @memberOf Roo.util.TextMetrics.Instance#
14940          * @param {String/HTMLElement} el The element, dom node or id
14941          */
14942         bind : function(el){
14943             ml.setStyle(
14944                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14945             );
14946         },
14947
14948         /**
14949          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14950          * to set a fixed width in order to accurately measure the text height.
14951          * @memberOf Roo.util.TextMetrics.Instance#
14952          * @param {Number} width The width to set on the element
14953          */
14954         setFixedWidth : function(width){
14955             ml.setWidth(width);
14956         },
14957
14958         /**
14959          * Returns the measured width of the specified text
14960          * @memberOf Roo.util.TextMetrics.Instance#
14961          * @param {String} text The text to measure
14962          * @return {Number} width The width in pixels
14963          */
14964         getWidth : function(text){
14965             ml.dom.style.width = 'auto';
14966             return this.getSize(text).width;
14967         },
14968
14969         /**
14970          * Returns the measured height of the specified text.  For multiline text, be sure to call
14971          * {@link #setFixedWidth} if necessary.
14972          * @memberOf Roo.util.TextMetrics.Instance#
14973          * @param {String} text The text to measure
14974          * @return {Number} height The height in pixels
14975          */
14976         getHeight : function(text){
14977             return this.getSize(text).height;
14978         }
14979     };
14980
14981     instance.bind(bindTo);
14982
14983     return instance;
14984 };
14985
14986 // backwards compat
14987 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14988  * Based on:
14989  * Ext JS Library 1.1.1
14990  * Copyright(c) 2006-2007, Ext JS, LLC.
14991  *
14992  * Originally Released Under LGPL - original licence link has changed is not relivant.
14993  *
14994  * Fork - LGPL
14995  * <script type="text/javascript">
14996  */
14997
14998 /**
14999  * @class Roo.state.Provider
15000  * Abstract base class for state provider implementations. This class provides methods
15001  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15002  * Provider interface.
15003  */
15004 Roo.state.Provider = function(){
15005     /**
15006      * @event statechange
15007      * Fires when a state change occurs.
15008      * @param {Provider} this This state provider
15009      * @param {String} key The state key which was changed
15010      * @param {String} value The encoded value for the state
15011      */
15012     this.addEvents({
15013         "statechange": true
15014     });
15015     this.state = {};
15016     Roo.state.Provider.superclass.constructor.call(this);
15017 };
15018 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15019     /**
15020      * Returns the current value for a key
15021      * @param {String} name The key name
15022      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15023      * @return {Mixed} The state data
15024      */
15025     get : function(name, defaultValue){
15026         return typeof this.state[name] == "undefined" ?
15027             defaultValue : this.state[name];
15028     },
15029     
15030     /**
15031      * Clears a value from the state
15032      * @param {String} name The key name
15033      */
15034     clear : function(name){
15035         delete this.state[name];
15036         this.fireEvent("statechange", this, name, null);
15037     },
15038     
15039     /**
15040      * Sets the value for a key
15041      * @param {String} name The key name
15042      * @param {Mixed} value The value to set
15043      */
15044     set : function(name, value){
15045         this.state[name] = value;
15046         this.fireEvent("statechange", this, name, value);
15047     },
15048     
15049     /**
15050      * Decodes a string previously encoded with {@link #encodeValue}.
15051      * @param {String} value The value to decode
15052      * @return {Mixed} The decoded value
15053      */
15054     decodeValue : function(cookie){
15055         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15056         var matches = re.exec(unescape(cookie));
15057         if(!matches || !matches[1]) {
15058             return; // non state cookie
15059         }
15060         var type = matches[1];
15061         var v = matches[2];
15062         switch(type){
15063             case "n":
15064                 return parseFloat(v);
15065             case "d":
15066                 return new Date(Date.parse(v));
15067             case "b":
15068                 return (v == "1");
15069             case "a":
15070                 var all = [];
15071                 var values = v.split("^");
15072                 for(var i = 0, len = values.length; i < len; i++){
15073                     all.push(this.decodeValue(values[i]));
15074                 }
15075                 return all;
15076            case "o":
15077                 var all = {};
15078                 var values = v.split("^");
15079                 for(var i = 0, len = values.length; i < len; i++){
15080                     var kv = values[i].split("=");
15081                     all[kv[0]] = this.decodeValue(kv[1]);
15082                 }
15083                 return all;
15084            default:
15085                 return v;
15086         }
15087     },
15088     
15089     /**
15090      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15091      * @param {Mixed} value The value to encode
15092      * @return {String} The encoded value
15093      */
15094     encodeValue : function(v){
15095         var enc;
15096         if(typeof v == "number"){
15097             enc = "n:" + v;
15098         }else if(typeof v == "boolean"){
15099             enc = "b:" + (v ? "1" : "0");
15100         }else if(v instanceof Date){
15101             enc = "d:" + v.toGMTString();
15102         }else if(v instanceof Array){
15103             var flat = "";
15104             for(var i = 0, len = v.length; i < len; i++){
15105                 flat += this.encodeValue(v[i]);
15106                 if(i != len-1) {
15107                     flat += "^";
15108                 }
15109             }
15110             enc = "a:" + flat;
15111         }else if(typeof v == "object"){
15112             var flat = "";
15113             for(var key in v){
15114                 if(typeof v[key] != "function"){
15115                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15116                 }
15117             }
15118             enc = "o:" + flat.substring(0, flat.length-1);
15119         }else{
15120             enc = "s:" + v;
15121         }
15122         return escape(enc);        
15123     }
15124 });
15125
15126 /*
15127  * Based on:
15128  * Ext JS Library 1.1.1
15129  * Copyright(c) 2006-2007, Ext JS, LLC.
15130  *
15131  * Originally Released Under LGPL - original licence link has changed is not relivant.
15132  *
15133  * Fork - LGPL
15134  * <script type="text/javascript">
15135  */
15136 /**
15137  * @class Roo.state.Manager
15138  * This is the global state manager. By default all components that are "state aware" check this class
15139  * for state information if you don't pass them a custom state provider. In order for this class
15140  * to be useful, it must be initialized with a provider when your application initializes.
15141  <pre><code>
15142 // in your initialization function
15143 init : function(){
15144    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15145    ...
15146    // supposed you have a {@link Roo.BorderLayout}
15147    var layout = new Roo.BorderLayout(...);
15148    layout.restoreState();
15149    // or a {Roo.BasicDialog}
15150    var dialog = new Roo.BasicDialog(...);
15151    dialog.restoreState();
15152  </code></pre>
15153  * @singleton
15154  */
15155 Roo.state.Manager = function(){
15156     var provider = new Roo.state.Provider();
15157     
15158     return {
15159         /**
15160          * Configures the default state provider for your application
15161          * @param {Provider} stateProvider The state provider to set
15162          */
15163         setProvider : function(stateProvider){
15164             provider = stateProvider;
15165         },
15166         
15167         /**
15168          * Returns the current value for a key
15169          * @param {String} name The key name
15170          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15171          * @return {Mixed} The state data
15172          */
15173         get : function(key, defaultValue){
15174             return provider.get(key, defaultValue);
15175         },
15176         
15177         /**
15178          * Sets the value for a key
15179          * @param {String} name The key name
15180          * @param {Mixed} value The state data
15181          */
15182          set : function(key, value){
15183             provider.set(key, value);
15184         },
15185         
15186         /**
15187          * Clears a value from the state
15188          * @param {String} name The key name
15189          */
15190         clear : function(key){
15191             provider.clear(key);
15192         },
15193         
15194         /**
15195          * Gets the currently configured state provider
15196          * @return {Provider} The state provider
15197          */
15198         getProvider : function(){
15199             return provider;
15200         }
15201     };
15202 }();
15203 /*
15204  * Based on:
15205  * Ext JS Library 1.1.1
15206  * Copyright(c) 2006-2007, Ext JS, LLC.
15207  *
15208  * Originally Released Under LGPL - original licence link has changed is not relivant.
15209  *
15210  * Fork - LGPL
15211  * <script type="text/javascript">
15212  */
15213 /**
15214  * @class Roo.state.CookieProvider
15215  * @extends Roo.state.Provider
15216  * The default Provider implementation which saves state via cookies.
15217  * <br />Usage:
15218  <pre><code>
15219    var cp = new Roo.state.CookieProvider({
15220        path: "/cgi-bin/",
15221        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15222        domain: "roojs.com"
15223    })
15224    Roo.state.Manager.setProvider(cp);
15225  </code></pre>
15226  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15227  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15228  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15229  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15230  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15231  * domain the page is running on including the 'www' like 'www.roojs.com')
15232  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15233  * @constructor
15234  * Create a new CookieProvider
15235  * @param {Object} config The configuration object
15236  */
15237 Roo.state.CookieProvider = function(config){
15238     Roo.state.CookieProvider.superclass.constructor.call(this);
15239     this.path = "/";
15240     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15241     this.domain = null;
15242     this.secure = false;
15243     Roo.apply(this, config);
15244     this.state = this.readCookies();
15245 };
15246
15247 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15248     // private
15249     set : function(name, value){
15250         if(typeof value == "undefined" || value === null){
15251             this.clear(name);
15252             return;
15253         }
15254         this.setCookie(name, value);
15255         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15256     },
15257
15258     // private
15259     clear : function(name){
15260         this.clearCookie(name);
15261         Roo.state.CookieProvider.superclass.clear.call(this, name);
15262     },
15263
15264     // private
15265     readCookies : function(){
15266         var cookies = {};
15267         var c = document.cookie + ";";
15268         var re = /\s?(.*?)=(.*?);/g;
15269         var matches;
15270         while((matches = re.exec(c)) != null){
15271             var name = matches[1];
15272             var value = matches[2];
15273             if(name && name.substring(0,3) == "ys-"){
15274                 cookies[name.substr(3)] = this.decodeValue(value);
15275             }
15276         }
15277         return cookies;
15278     },
15279
15280     // private
15281     setCookie : function(name, value){
15282         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15283            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15284            ((this.path == null) ? "" : ("; path=" + this.path)) +
15285            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15286            ((this.secure == true) ? "; secure" : "");
15287     },
15288
15289     // private
15290     clearCookie : function(name){
15291         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15292            ((this.path == null) ? "" : ("; path=" + this.path)) +
15293            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15294            ((this.secure == true) ? "; secure" : "");
15295     }
15296 });/*
15297  * Based on:
15298  * Ext JS Library 1.1.1
15299  * Copyright(c) 2006-2007, Ext JS, LLC.
15300  *
15301  * Originally Released Under LGPL - original licence link has changed is not relivant.
15302  *
15303  * Fork - LGPL
15304  * <script type="text/javascript">
15305  */
15306  
15307
15308 /**
15309  * @class Roo.ComponentMgr
15310  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15311  * @singleton
15312  */
15313 Roo.ComponentMgr = function(){
15314     var all = new Roo.util.MixedCollection();
15315
15316     return {
15317         /**
15318          * Registers a component.
15319          * @param {Roo.Component} c The component
15320          */
15321         register : function(c){
15322             all.add(c);
15323         },
15324
15325         /**
15326          * Unregisters a component.
15327          * @param {Roo.Component} c The component
15328          */
15329         unregister : function(c){
15330             all.remove(c);
15331         },
15332
15333         /**
15334          * Returns a component by id
15335          * @param {String} id The component id
15336          */
15337         get : function(id){
15338             return all.get(id);
15339         },
15340
15341         /**
15342          * Registers a function that will be called when a specified component is added to ComponentMgr
15343          * @param {String} id The component id
15344          * @param {Funtction} fn The callback function
15345          * @param {Object} scope The scope of the callback
15346          */
15347         onAvailable : function(id, fn, scope){
15348             all.on("add", function(index, o){
15349                 if(o.id == id){
15350                     fn.call(scope || o, o);
15351                     all.un("add", fn, scope);
15352                 }
15353             });
15354         }
15355     };
15356 }();/*
15357  * Based on:
15358  * Ext JS Library 1.1.1
15359  * Copyright(c) 2006-2007, Ext JS, LLC.
15360  *
15361  * Originally Released Under LGPL - original licence link has changed is not relivant.
15362  *
15363  * Fork - LGPL
15364  * <script type="text/javascript">
15365  */
15366  
15367 /**
15368  * @class Roo.Component
15369  * @extends Roo.util.Observable
15370  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15371  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15372  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15373  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15374  * All visual components (widgets) that require rendering into a layout should subclass Component.
15375  * @constructor
15376  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15377  * 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
15378  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15379  */
15380 Roo.Component = function(config){
15381     config = config || {};
15382     if(config.tagName || config.dom || typeof config == "string"){ // element object
15383         config = {el: config, id: config.id || config};
15384     }
15385     this.initialConfig = config;
15386
15387     Roo.apply(this, config);
15388     this.addEvents({
15389         /**
15390          * @event disable
15391          * Fires after the component is disabled.
15392              * @param {Roo.Component} this
15393              */
15394         disable : true,
15395         /**
15396          * @event enable
15397          * Fires after the component is enabled.
15398              * @param {Roo.Component} this
15399              */
15400         enable : true,
15401         /**
15402          * @event beforeshow
15403          * Fires before the component is shown.  Return false to stop the show.
15404              * @param {Roo.Component} this
15405              */
15406         beforeshow : true,
15407         /**
15408          * @event show
15409          * Fires after the component is shown.
15410              * @param {Roo.Component} this
15411              */
15412         show : true,
15413         /**
15414          * @event beforehide
15415          * Fires before the component is hidden. Return false to stop the hide.
15416              * @param {Roo.Component} this
15417              */
15418         beforehide : true,
15419         /**
15420          * @event hide
15421          * Fires after the component is hidden.
15422              * @param {Roo.Component} this
15423              */
15424         hide : true,
15425         /**
15426          * @event beforerender
15427          * Fires before the component is rendered. Return false to stop the render.
15428              * @param {Roo.Component} this
15429              */
15430         beforerender : true,
15431         /**
15432          * @event render
15433          * Fires after the component is rendered.
15434              * @param {Roo.Component} this
15435              */
15436         render : true,
15437         /**
15438          * @event beforedestroy
15439          * Fires before the component is destroyed. Return false to stop the destroy.
15440              * @param {Roo.Component} this
15441              */
15442         beforedestroy : true,
15443         /**
15444          * @event destroy
15445          * Fires after the component is destroyed.
15446              * @param {Roo.Component} this
15447              */
15448         destroy : true
15449     });
15450     if(!this.id){
15451         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15452     }
15453     Roo.ComponentMgr.register(this);
15454     Roo.Component.superclass.constructor.call(this);
15455     this.initComponent();
15456     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15457         this.render(this.renderTo);
15458         delete this.renderTo;
15459     }
15460 };
15461
15462 /** @private */
15463 Roo.Component.AUTO_ID = 1000;
15464
15465 Roo.extend(Roo.Component, Roo.util.Observable, {
15466     /**
15467      * @scope Roo.Component.prototype
15468      * @type {Boolean}
15469      * true if this component is hidden. Read-only.
15470      */
15471     hidden : false,
15472     /**
15473      * @type {Boolean}
15474      * true if this component is disabled. Read-only.
15475      */
15476     disabled : false,
15477     /**
15478      * @type {Boolean}
15479      * true if this component has been rendered. Read-only.
15480      */
15481     rendered : false,
15482     
15483     /** @cfg {String} disableClass
15484      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15485      */
15486     disabledClass : "x-item-disabled",
15487         /** @cfg {Boolean} allowDomMove
15488          * Whether the component can move the Dom node when rendering (defaults to true).
15489          */
15490     allowDomMove : true,
15491     /** @cfg {String} hideMode (display|visibility)
15492      * How this component should hidden. Supported values are
15493      * "visibility" (css visibility), "offsets" (negative offset position) and
15494      * "display" (css display) - defaults to "display".
15495      */
15496     hideMode: 'display',
15497
15498     /** @private */
15499     ctype : "Roo.Component",
15500
15501     /**
15502      * @cfg {String} actionMode 
15503      * which property holds the element that used for  hide() / show() / disable() / enable()
15504      * default is 'el' for forms you probably want to set this to fieldEl 
15505      */
15506     actionMode : "el",
15507
15508     /** @private */
15509     getActionEl : function(){
15510         return this[this.actionMode];
15511     },
15512
15513     initComponent : Roo.emptyFn,
15514     /**
15515      * If this is a lazy rendering component, render it to its container element.
15516      * @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.
15517      */
15518     render : function(container, position){
15519         
15520         if(this.rendered){
15521             return this;
15522         }
15523         
15524         if(this.fireEvent("beforerender", this) === false){
15525             return false;
15526         }
15527         
15528         if(!container && this.el){
15529             this.el = Roo.get(this.el);
15530             container = this.el.dom.parentNode;
15531             this.allowDomMove = false;
15532         }
15533         this.container = Roo.get(container);
15534         this.rendered = true;
15535         if(position !== undefined){
15536             if(typeof position == 'number'){
15537                 position = this.container.dom.childNodes[position];
15538             }else{
15539                 position = Roo.getDom(position);
15540             }
15541         }
15542         this.onRender(this.container, position || null);
15543         if(this.cls){
15544             this.el.addClass(this.cls);
15545             delete this.cls;
15546         }
15547         if(this.style){
15548             this.el.applyStyles(this.style);
15549             delete this.style;
15550         }
15551         this.fireEvent("render", this);
15552         this.afterRender(this.container);
15553         if(this.hidden){
15554             this.hide();
15555         }
15556         if(this.disabled){
15557             this.disable();
15558         }
15559
15560         return this;
15561         
15562     },
15563
15564     /** @private */
15565     // default function is not really useful
15566     onRender : function(ct, position){
15567         if(this.el){
15568             this.el = Roo.get(this.el);
15569             if(this.allowDomMove !== false){
15570                 ct.dom.insertBefore(this.el.dom, position);
15571             }
15572         }
15573     },
15574
15575     /** @private */
15576     getAutoCreate : function(){
15577         var cfg = typeof this.autoCreate == "object" ?
15578                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15579         if(this.id && !cfg.id){
15580             cfg.id = this.id;
15581         }
15582         return cfg;
15583     },
15584
15585     /** @private */
15586     afterRender : Roo.emptyFn,
15587
15588     /**
15589      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15590      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15591      */
15592     destroy : function(){
15593         if(this.fireEvent("beforedestroy", this) !== false){
15594             this.purgeListeners();
15595             this.beforeDestroy();
15596             if(this.rendered){
15597                 this.el.removeAllListeners();
15598                 this.el.remove();
15599                 if(this.actionMode == "container"){
15600                     this.container.remove();
15601                 }
15602             }
15603             this.onDestroy();
15604             Roo.ComponentMgr.unregister(this);
15605             this.fireEvent("destroy", this);
15606         }
15607     },
15608
15609         /** @private */
15610     beforeDestroy : function(){
15611
15612     },
15613
15614         /** @private */
15615         onDestroy : function(){
15616
15617     },
15618
15619     /**
15620      * Returns the underlying {@link Roo.Element}.
15621      * @return {Roo.Element} The element
15622      */
15623     getEl : function(){
15624         return this.el;
15625     },
15626
15627     /**
15628      * Returns the id of this component.
15629      * @return {String}
15630      */
15631     getId : function(){
15632         return this.id;
15633     },
15634
15635     /**
15636      * Try to focus this component.
15637      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15638      * @return {Roo.Component} this
15639      */
15640     focus : function(selectText){
15641         if(this.rendered){
15642             this.el.focus();
15643             if(selectText === true){
15644                 this.el.dom.select();
15645             }
15646         }
15647         return this;
15648     },
15649
15650     /** @private */
15651     blur : function(){
15652         if(this.rendered){
15653             this.el.blur();
15654         }
15655         return this;
15656     },
15657
15658     /**
15659      * Disable this component.
15660      * @return {Roo.Component} this
15661      */
15662     disable : function(){
15663         if(this.rendered){
15664             this.onDisable();
15665         }
15666         this.disabled = true;
15667         this.fireEvent("disable", this);
15668         return this;
15669     },
15670
15671         // private
15672     onDisable : function(){
15673         this.getActionEl().addClass(this.disabledClass);
15674         this.el.dom.disabled = true;
15675     },
15676
15677     /**
15678      * Enable this component.
15679      * @return {Roo.Component} this
15680      */
15681     enable : function(){
15682         if(this.rendered){
15683             this.onEnable();
15684         }
15685         this.disabled = false;
15686         this.fireEvent("enable", this);
15687         return this;
15688     },
15689
15690         // private
15691     onEnable : function(){
15692         this.getActionEl().removeClass(this.disabledClass);
15693         this.el.dom.disabled = false;
15694     },
15695
15696     /**
15697      * Convenience function for setting disabled/enabled by boolean.
15698      * @param {Boolean} disabled
15699      */
15700     setDisabled : function(disabled){
15701         this[disabled ? "disable" : "enable"]();
15702     },
15703
15704     /**
15705      * Show this component.
15706      * @return {Roo.Component} this
15707      */
15708     show: function(){
15709         if(this.fireEvent("beforeshow", this) !== false){
15710             this.hidden = false;
15711             if(this.rendered){
15712                 this.onShow();
15713             }
15714             this.fireEvent("show", this);
15715         }
15716         return this;
15717     },
15718
15719     // private
15720     onShow : function(){
15721         var ae = this.getActionEl();
15722         if(this.hideMode == 'visibility'){
15723             ae.dom.style.visibility = "visible";
15724         }else if(this.hideMode == 'offsets'){
15725             ae.removeClass('x-hidden');
15726         }else{
15727             ae.dom.style.display = "";
15728         }
15729     },
15730
15731     /**
15732      * Hide this component.
15733      * @return {Roo.Component} this
15734      */
15735     hide: function(){
15736         if(this.fireEvent("beforehide", this) !== false){
15737             this.hidden = true;
15738             if(this.rendered){
15739                 this.onHide();
15740             }
15741             this.fireEvent("hide", this);
15742         }
15743         return this;
15744     },
15745
15746     // private
15747     onHide : function(){
15748         var ae = this.getActionEl();
15749         if(this.hideMode == 'visibility'){
15750             ae.dom.style.visibility = "hidden";
15751         }else if(this.hideMode == 'offsets'){
15752             ae.addClass('x-hidden');
15753         }else{
15754             ae.dom.style.display = "none";
15755         }
15756     },
15757
15758     /**
15759      * Convenience function to hide or show this component by boolean.
15760      * @param {Boolean} visible True to show, false to hide
15761      * @return {Roo.Component} this
15762      */
15763     setVisible: function(visible){
15764         if(visible) {
15765             this.show();
15766         }else{
15767             this.hide();
15768         }
15769         return this;
15770     },
15771
15772     /**
15773      * Returns true if this component is visible.
15774      */
15775     isVisible : function(){
15776         return this.getActionEl().isVisible();
15777     },
15778
15779     cloneConfig : function(overrides){
15780         overrides = overrides || {};
15781         var id = overrides.id || Roo.id();
15782         var cfg = Roo.applyIf(overrides, this.initialConfig);
15783         cfg.id = id; // prevent dup id
15784         return new this.constructor(cfg);
15785     }
15786 });/*
15787  * Based on:
15788  * Ext JS Library 1.1.1
15789  * Copyright(c) 2006-2007, Ext JS, LLC.
15790  *
15791  * Originally Released Under LGPL - original licence link has changed is not relivant.
15792  *
15793  * Fork - LGPL
15794  * <script type="text/javascript">
15795  */
15796
15797 /**
15798  * @class Roo.BoxComponent
15799  * @extends Roo.Component
15800  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15801  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15802  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15803  * layout containers.
15804  * @constructor
15805  * @param {Roo.Element/String/Object} config The configuration options.
15806  */
15807 Roo.BoxComponent = function(config){
15808     Roo.Component.call(this, config);
15809     this.addEvents({
15810         /**
15811          * @event resize
15812          * Fires after the component is resized.
15813              * @param {Roo.Component} this
15814              * @param {Number} adjWidth The box-adjusted width that was set
15815              * @param {Number} adjHeight The box-adjusted height that was set
15816              * @param {Number} rawWidth The width that was originally specified
15817              * @param {Number} rawHeight The height that was originally specified
15818              */
15819         resize : true,
15820         /**
15821          * @event move
15822          * Fires after the component is moved.
15823              * @param {Roo.Component} this
15824              * @param {Number} x The new x position
15825              * @param {Number} y The new y position
15826              */
15827         move : true
15828     });
15829 };
15830
15831 Roo.extend(Roo.BoxComponent, Roo.Component, {
15832     // private, set in afterRender to signify that the component has been rendered
15833     boxReady : false,
15834     // private, used to defer height settings to subclasses
15835     deferHeight: false,
15836     /** @cfg {Number} width
15837      * width (optional) size of component
15838      */
15839      /** @cfg {Number} height
15840      * height (optional) size of component
15841      */
15842      
15843     /**
15844      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15845      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15846      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15847      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15848      * @return {Roo.BoxComponent} this
15849      */
15850     setSize : function(w, h){
15851         // support for standard size objects
15852         if(typeof w == 'object'){
15853             h = w.height;
15854             w = w.width;
15855         }
15856         // not rendered
15857         if(!this.boxReady){
15858             this.width = w;
15859             this.height = h;
15860             return this;
15861         }
15862
15863         // prevent recalcs when not needed
15864         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15865             return this;
15866         }
15867         this.lastSize = {width: w, height: h};
15868
15869         var adj = this.adjustSize(w, h);
15870         var aw = adj.width, ah = adj.height;
15871         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15872             var rz = this.getResizeEl();
15873             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15874                 rz.setSize(aw, ah);
15875             }else if(!this.deferHeight && ah !== undefined){
15876                 rz.setHeight(ah);
15877             }else if(aw !== undefined){
15878                 rz.setWidth(aw);
15879             }
15880             this.onResize(aw, ah, w, h);
15881             this.fireEvent('resize', this, aw, ah, w, h);
15882         }
15883         return this;
15884     },
15885
15886     /**
15887      * Gets the current size of the component's underlying element.
15888      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15889      */
15890     getSize : function(){
15891         return this.el.getSize();
15892     },
15893
15894     /**
15895      * Gets the current XY position of the component's underlying element.
15896      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15897      * @return {Array} The XY position of the element (e.g., [100, 200])
15898      */
15899     getPosition : function(local){
15900         if(local === true){
15901             return [this.el.getLeft(true), this.el.getTop(true)];
15902         }
15903         return this.xy || this.el.getXY();
15904     },
15905
15906     /**
15907      * Gets the current box measurements of the component's underlying element.
15908      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15909      * @returns {Object} box An object in the format {x, y, width, height}
15910      */
15911     getBox : function(local){
15912         var s = this.el.getSize();
15913         if(local){
15914             s.x = this.el.getLeft(true);
15915             s.y = this.el.getTop(true);
15916         }else{
15917             var xy = this.xy || this.el.getXY();
15918             s.x = xy[0];
15919             s.y = xy[1];
15920         }
15921         return s;
15922     },
15923
15924     /**
15925      * Sets the current box measurements of the component's underlying element.
15926      * @param {Object} box An object in the format {x, y, width, height}
15927      * @returns {Roo.BoxComponent} this
15928      */
15929     updateBox : function(box){
15930         this.setSize(box.width, box.height);
15931         this.setPagePosition(box.x, box.y);
15932         return this;
15933     },
15934
15935     // protected
15936     getResizeEl : function(){
15937         return this.resizeEl || this.el;
15938     },
15939
15940     // protected
15941     getPositionEl : function(){
15942         return this.positionEl || this.el;
15943     },
15944
15945     /**
15946      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15947      * This method fires the move event.
15948      * @param {Number} left The new left
15949      * @param {Number} top The new top
15950      * @returns {Roo.BoxComponent} this
15951      */
15952     setPosition : function(x, y){
15953         this.x = x;
15954         this.y = y;
15955         if(!this.boxReady){
15956             return this;
15957         }
15958         var adj = this.adjustPosition(x, y);
15959         var ax = adj.x, ay = adj.y;
15960
15961         var el = this.getPositionEl();
15962         if(ax !== undefined || ay !== undefined){
15963             if(ax !== undefined && ay !== undefined){
15964                 el.setLeftTop(ax, ay);
15965             }else if(ax !== undefined){
15966                 el.setLeft(ax);
15967             }else if(ay !== undefined){
15968                 el.setTop(ay);
15969             }
15970             this.onPosition(ax, ay);
15971             this.fireEvent('move', this, ax, ay);
15972         }
15973         return this;
15974     },
15975
15976     /**
15977      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15978      * This method fires the move event.
15979      * @param {Number} x The new x position
15980      * @param {Number} y The new y position
15981      * @returns {Roo.BoxComponent} this
15982      */
15983     setPagePosition : function(x, y){
15984         this.pageX = x;
15985         this.pageY = y;
15986         if(!this.boxReady){
15987             return;
15988         }
15989         if(x === undefined || y === undefined){ // cannot translate undefined points
15990             return;
15991         }
15992         var p = this.el.translatePoints(x, y);
15993         this.setPosition(p.left, p.top);
15994         return this;
15995     },
15996
15997     // private
15998     onRender : function(ct, position){
15999         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16000         if(this.resizeEl){
16001             this.resizeEl = Roo.get(this.resizeEl);
16002         }
16003         if(this.positionEl){
16004             this.positionEl = Roo.get(this.positionEl);
16005         }
16006     },
16007
16008     // private
16009     afterRender : function(){
16010         Roo.BoxComponent.superclass.afterRender.call(this);
16011         this.boxReady = true;
16012         this.setSize(this.width, this.height);
16013         if(this.x || this.y){
16014             this.setPosition(this.x, this.y);
16015         }
16016         if(this.pageX || this.pageY){
16017             this.setPagePosition(this.pageX, this.pageY);
16018         }
16019     },
16020
16021     /**
16022      * Force the component's size to recalculate based on the underlying element's current height and width.
16023      * @returns {Roo.BoxComponent} this
16024      */
16025     syncSize : function(){
16026         delete this.lastSize;
16027         this.setSize(this.el.getWidth(), this.el.getHeight());
16028         return this;
16029     },
16030
16031     /**
16032      * Called after the component is resized, this method is empty by default but can be implemented by any
16033      * subclass that needs to perform custom logic after a resize occurs.
16034      * @param {Number} adjWidth The box-adjusted width that was set
16035      * @param {Number} adjHeight The box-adjusted height that was set
16036      * @param {Number} rawWidth The width that was originally specified
16037      * @param {Number} rawHeight The height that was originally specified
16038      */
16039     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16040
16041     },
16042
16043     /**
16044      * Called after the component is moved, this method is empty by default but can be implemented by any
16045      * subclass that needs to perform custom logic after a move occurs.
16046      * @param {Number} x The new x position
16047      * @param {Number} y The new y position
16048      */
16049     onPosition : function(x, y){
16050
16051     },
16052
16053     // private
16054     adjustSize : function(w, h){
16055         if(this.autoWidth){
16056             w = 'auto';
16057         }
16058         if(this.autoHeight){
16059             h = 'auto';
16060         }
16061         return {width : w, height: h};
16062     },
16063
16064     // private
16065     adjustPosition : function(x, y){
16066         return {x : x, y: y};
16067     }
16068 });/*
16069  * Based on:
16070  * Ext JS Library 1.1.1
16071  * Copyright(c) 2006-2007, Ext JS, LLC.
16072  *
16073  * Originally Released Under LGPL - original licence link has changed is not relivant.
16074  *
16075  * Fork - LGPL
16076  * <script type="text/javascript">
16077  */
16078  (function(){ 
16079 /**
16080  * @class Roo.Layer
16081  * @extends Roo.Element
16082  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16083  * automatic maintaining of shadow/shim positions.
16084  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16085  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16086  * you can pass a string with a CSS class name. False turns off the shadow.
16087  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16088  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16089  * @cfg {String} cls CSS class to add to the element
16090  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16091  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16092  * @constructor
16093  * @param {Object} config An object with config options.
16094  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16095  */
16096
16097 Roo.Layer = function(config, existingEl){
16098     config = config || {};
16099     var dh = Roo.DomHelper;
16100     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16101     if(existingEl){
16102         this.dom = Roo.getDom(existingEl);
16103     }
16104     if(!this.dom){
16105         var o = config.dh || {tag: "div", cls: "x-layer"};
16106         this.dom = dh.append(pel, o);
16107     }
16108     if(config.cls){
16109         this.addClass(config.cls);
16110     }
16111     this.constrain = config.constrain !== false;
16112     this.visibilityMode = Roo.Element.VISIBILITY;
16113     if(config.id){
16114         this.id = this.dom.id = config.id;
16115     }else{
16116         this.id = Roo.id(this.dom);
16117     }
16118     this.zindex = config.zindex || this.getZIndex();
16119     this.position("absolute", this.zindex);
16120     if(config.shadow){
16121         this.shadowOffset = config.shadowOffset || 4;
16122         this.shadow = new Roo.Shadow({
16123             offset : this.shadowOffset,
16124             mode : config.shadow
16125         });
16126     }else{
16127         this.shadowOffset = 0;
16128     }
16129     this.useShim = config.shim !== false && Roo.useShims;
16130     this.useDisplay = config.useDisplay;
16131     this.hide();
16132 };
16133
16134 var supr = Roo.Element.prototype;
16135
16136 // shims are shared among layer to keep from having 100 iframes
16137 var shims = [];
16138
16139 Roo.extend(Roo.Layer, Roo.Element, {
16140
16141     getZIndex : function(){
16142         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16143     },
16144
16145     getShim : function(){
16146         if(!this.useShim){
16147             return null;
16148         }
16149         if(this.shim){
16150             return this.shim;
16151         }
16152         var shim = shims.shift();
16153         if(!shim){
16154             shim = this.createShim();
16155             shim.enableDisplayMode('block');
16156             shim.dom.style.display = 'none';
16157             shim.dom.style.visibility = 'visible';
16158         }
16159         var pn = this.dom.parentNode;
16160         if(shim.dom.parentNode != pn){
16161             pn.insertBefore(shim.dom, this.dom);
16162         }
16163         shim.setStyle('z-index', this.getZIndex()-2);
16164         this.shim = shim;
16165         return shim;
16166     },
16167
16168     hideShim : function(){
16169         if(this.shim){
16170             this.shim.setDisplayed(false);
16171             shims.push(this.shim);
16172             delete this.shim;
16173         }
16174     },
16175
16176     disableShadow : function(){
16177         if(this.shadow){
16178             this.shadowDisabled = true;
16179             this.shadow.hide();
16180             this.lastShadowOffset = this.shadowOffset;
16181             this.shadowOffset = 0;
16182         }
16183     },
16184
16185     enableShadow : function(show){
16186         if(this.shadow){
16187             this.shadowDisabled = false;
16188             this.shadowOffset = this.lastShadowOffset;
16189             delete this.lastShadowOffset;
16190             if(show){
16191                 this.sync(true);
16192             }
16193         }
16194     },
16195
16196     // private
16197     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16198     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16199     sync : function(doShow){
16200         var sw = this.shadow;
16201         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16202             var sh = this.getShim();
16203
16204             var w = this.getWidth(),
16205                 h = this.getHeight();
16206
16207             var l = this.getLeft(true),
16208                 t = this.getTop(true);
16209
16210             if(sw && !this.shadowDisabled){
16211                 if(doShow && !sw.isVisible()){
16212                     sw.show(this);
16213                 }else{
16214                     sw.realign(l, t, w, h);
16215                 }
16216                 if(sh){
16217                     if(doShow){
16218                        sh.show();
16219                     }
16220                     // fit the shim behind the shadow, so it is shimmed too
16221                     var a = sw.adjusts, s = sh.dom.style;
16222                     s.left = (Math.min(l, l+a.l))+"px";
16223                     s.top = (Math.min(t, t+a.t))+"px";
16224                     s.width = (w+a.w)+"px";
16225                     s.height = (h+a.h)+"px";
16226                 }
16227             }else if(sh){
16228                 if(doShow){
16229                    sh.show();
16230                 }
16231                 sh.setSize(w, h);
16232                 sh.setLeftTop(l, t);
16233             }
16234             
16235         }
16236     },
16237
16238     // private
16239     destroy : function(){
16240         this.hideShim();
16241         if(this.shadow){
16242             this.shadow.hide();
16243         }
16244         this.removeAllListeners();
16245         var pn = this.dom.parentNode;
16246         if(pn){
16247             pn.removeChild(this.dom);
16248         }
16249         Roo.Element.uncache(this.id);
16250     },
16251
16252     remove : function(){
16253         this.destroy();
16254     },
16255
16256     // private
16257     beginUpdate : function(){
16258         this.updating = true;
16259     },
16260
16261     // private
16262     endUpdate : function(){
16263         this.updating = false;
16264         this.sync(true);
16265     },
16266
16267     // private
16268     hideUnders : function(negOffset){
16269         if(this.shadow){
16270             this.shadow.hide();
16271         }
16272         this.hideShim();
16273     },
16274
16275     // private
16276     constrainXY : function(){
16277         if(this.constrain){
16278             var vw = Roo.lib.Dom.getViewWidth(),
16279                 vh = Roo.lib.Dom.getViewHeight();
16280             var s = Roo.get(document).getScroll();
16281
16282             var xy = this.getXY();
16283             var x = xy[0], y = xy[1];   
16284             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16285             // only move it if it needs it
16286             var moved = false;
16287             // first validate right/bottom
16288             if((x + w) > vw+s.left){
16289                 x = vw - w - this.shadowOffset;
16290                 moved = true;
16291             }
16292             if((y + h) > vh+s.top){
16293                 y = vh - h - this.shadowOffset;
16294                 moved = true;
16295             }
16296             // then make sure top/left isn't negative
16297             if(x < s.left){
16298                 x = s.left;
16299                 moved = true;
16300             }
16301             if(y < s.top){
16302                 y = s.top;
16303                 moved = true;
16304             }
16305             if(moved){
16306                 if(this.avoidY){
16307                     var ay = this.avoidY;
16308                     if(y <= ay && (y+h) >= ay){
16309                         y = ay-h-5;   
16310                     }
16311                 }
16312                 xy = [x, y];
16313                 this.storeXY(xy);
16314                 supr.setXY.call(this, xy);
16315                 this.sync();
16316             }
16317         }
16318     },
16319
16320     isVisible : function(){
16321         return this.visible;    
16322     },
16323
16324     // private
16325     showAction : function(){
16326         this.visible = true; // track visibility to prevent getStyle calls
16327         if(this.useDisplay === true){
16328             this.setDisplayed("");
16329         }else if(this.lastXY){
16330             supr.setXY.call(this, this.lastXY);
16331         }else if(this.lastLT){
16332             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16333         }
16334     },
16335
16336     // private
16337     hideAction : function(){
16338         this.visible = false;
16339         if(this.useDisplay === true){
16340             this.setDisplayed(false);
16341         }else{
16342             this.setLeftTop(-10000,-10000);
16343         }
16344     },
16345
16346     // overridden Element method
16347     setVisible : function(v, a, d, c, e){
16348         if(v){
16349             this.showAction();
16350         }
16351         if(a && v){
16352             var cb = function(){
16353                 this.sync(true);
16354                 if(c){
16355                     c();
16356                 }
16357             }.createDelegate(this);
16358             supr.setVisible.call(this, true, true, d, cb, e);
16359         }else{
16360             if(!v){
16361                 this.hideUnders(true);
16362             }
16363             var cb = c;
16364             if(a){
16365                 cb = function(){
16366                     this.hideAction();
16367                     if(c){
16368                         c();
16369                     }
16370                 }.createDelegate(this);
16371             }
16372             supr.setVisible.call(this, v, a, d, cb, e);
16373             if(v){
16374                 this.sync(true);
16375             }else if(!a){
16376                 this.hideAction();
16377             }
16378         }
16379     },
16380
16381     storeXY : function(xy){
16382         delete this.lastLT;
16383         this.lastXY = xy;
16384     },
16385
16386     storeLeftTop : function(left, top){
16387         delete this.lastXY;
16388         this.lastLT = [left, top];
16389     },
16390
16391     // private
16392     beforeFx : function(){
16393         this.beforeAction();
16394         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16395     },
16396
16397     // private
16398     afterFx : function(){
16399         Roo.Layer.superclass.afterFx.apply(this, arguments);
16400         this.sync(this.isVisible());
16401     },
16402
16403     // private
16404     beforeAction : function(){
16405         if(!this.updating && this.shadow){
16406             this.shadow.hide();
16407         }
16408     },
16409
16410     // overridden Element method
16411     setLeft : function(left){
16412         this.storeLeftTop(left, this.getTop(true));
16413         supr.setLeft.apply(this, arguments);
16414         this.sync();
16415     },
16416
16417     setTop : function(top){
16418         this.storeLeftTop(this.getLeft(true), top);
16419         supr.setTop.apply(this, arguments);
16420         this.sync();
16421     },
16422
16423     setLeftTop : function(left, top){
16424         this.storeLeftTop(left, top);
16425         supr.setLeftTop.apply(this, arguments);
16426         this.sync();
16427     },
16428
16429     setXY : function(xy, a, d, c, e){
16430         this.fixDisplay();
16431         this.beforeAction();
16432         this.storeXY(xy);
16433         var cb = this.createCB(c);
16434         supr.setXY.call(this, xy, a, d, cb, e);
16435         if(!a){
16436             cb();
16437         }
16438     },
16439
16440     // private
16441     createCB : function(c){
16442         var el = this;
16443         return function(){
16444             el.constrainXY();
16445             el.sync(true);
16446             if(c){
16447                 c();
16448             }
16449         };
16450     },
16451
16452     // overridden Element method
16453     setX : function(x, a, d, c, e){
16454         this.setXY([x, this.getY()], a, d, c, e);
16455     },
16456
16457     // overridden Element method
16458     setY : function(y, a, d, c, e){
16459         this.setXY([this.getX(), y], a, d, c, e);
16460     },
16461
16462     // overridden Element method
16463     setSize : function(w, h, a, d, c, e){
16464         this.beforeAction();
16465         var cb = this.createCB(c);
16466         supr.setSize.call(this, w, h, a, d, cb, e);
16467         if(!a){
16468             cb();
16469         }
16470     },
16471
16472     // overridden Element method
16473     setWidth : function(w, a, d, c, e){
16474         this.beforeAction();
16475         var cb = this.createCB(c);
16476         supr.setWidth.call(this, w, a, d, cb, e);
16477         if(!a){
16478             cb();
16479         }
16480     },
16481
16482     // overridden Element method
16483     setHeight : function(h, a, d, c, e){
16484         this.beforeAction();
16485         var cb = this.createCB(c);
16486         supr.setHeight.call(this, h, a, d, cb, e);
16487         if(!a){
16488             cb();
16489         }
16490     },
16491
16492     // overridden Element method
16493     setBounds : function(x, y, w, h, a, d, c, e){
16494         this.beforeAction();
16495         var cb = this.createCB(c);
16496         if(!a){
16497             this.storeXY([x, y]);
16498             supr.setXY.call(this, [x, y]);
16499             supr.setSize.call(this, w, h, a, d, cb, e);
16500             cb();
16501         }else{
16502             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16503         }
16504         return this;
16505     },
16506     
16507     /**
16508      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16509      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16510      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16511      * @param {Number} zindex The new z-index to set
16512      * @return {this} The Layer
16513      */
16514     setZIndex : function(zindex){
16515         this.zindex = zindex;
16516         this.setStyle("z-index", zindex + 2);
16517         if(this.shadow){
16518             this.shadow.setZIndex(zindex + 1);
16519         }
16520         if(this.shim){
16521             this.shim.setStyle("z-index", zindex);
16522         }
16523     }
16524 });
16525 })();/*
16526  * Original code for Roojs - LGPL
16527  * <script type="text/javascript">
16528  */
16529  
16530 /**
16531  * @class Roo.XComponent
16532  * A delayed Element creator...
16533  * Or a way to group chunks of interface together.
16534  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16535  *  used in conjunction with XComponent.build() it will create an instance of each element,
16536  *  then call addxtype() to build the User interface.
16537  * 
16538  * Mypart.xyx = new Roo.XComponent({
16539
16540     parent : 'Mypart.xyz', // empty == document.element.!!
16541     order : '001',
16542     name : 'xxxx'
16543     region : 'xxxx'
16544     disabled : function() {} 
16545      
16546     tree : function() { // return an tree of xtype declared components
16547         var MODULE = this;
16548         return 
16549         {
16550             xtype : 'NestedLayoutPanel',
16551             // technicall
16552         }
16553      ]
16554  *})
16555  *
16556  *
16557  * It can be used to build a big heiracy, with parent etc.
16558  * or you can just use this to render a single compoent to a dom element
16559  * MYPART.render(Roo.Element | String(id) | dom_element )
16560  *
16561  *
16562  * Usage patterns.
16563  *
16564  * Classic Roo
16565  *
16566  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16567  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16568  *
16569  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16570  *
16571  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16572  * - if mulitple topModules exist, the last one is defined as the top module.
16573  *
16574  * Embeded Roo
16575  * 
16576  * When the top level or multiple modules are to embedded into a existing HTML page,
16577  * the parent element can container '#id' of the element where the module will be drawn.
16578  *
16579  * Bootstrap Roo
16580  *
16581  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16582  * it relies more on a include mechanism, where sub modules are included into an outer page.
16583  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16584  * 
16585  * Bootstrap Roo Included elements
16586  *
16587  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16588  * hence confusing the component builder as it thinks there are multiple top level elements. 
16589  *
16590  * String Over-ride & Translations
16591  *
16592  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16593  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16594  * are needed. @see Roo.XComponent.overlayString  
16595  * 
16596  * 
16597  * 
16598  * @extends Roo.util.Observable
16599  * @constructor
16600  * @param cfg {Object} configuration of component
16601  * 
16602  */
16603 Roo.XComponent = function(cfg) {
16604     Roo.apply(this, cfg);
16605     this.addEvents({ 
16606         /**
16607              * @event built
16608              * Fires when this the componnt is built
16609              * @param {Roo.XComponent} c the component
16610              */
16611         'built' : true
16612         
16613     });
16614     this.region = this.region || 'center'; // default..
16615     Roo.XComponent.register(this);
16616     this.modules = false;
16617     this.el = false; // where the layout goes..
16618     
16619     
16620 }
16621 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16622     /**
16623      * @property el
16624      * The created element (with Roo.factory())
16625      * @type {Roo.Layout}
16626      */
16627     el  : false,
16628     
16629     /**
16630      * @property el
16631      * for BC  - use el in new code
16632      * @type {Roo.Layout}
16633      */
16634     panel : false,
16635     
16636     /**
16637      * @property layout
16638      * for BC  - use el in new code
16639      * @type {Roo.Layout}
16640      */
16641     layout : false,
16642     
16643      /**
16644      * @cfg {Function|boolean} disabled
16645      * If this module is disabled by some rule, return true from the funtion
16646      */
16647     disabled : false,
16648     
16649     /**
16650      * @cfg {String} parent 
16651      * Name of parent element which it get xtype added to..
16652      */
16653     parent: false,
16654     
16655     /**
16656      * @cfg {String} order
16657      * Used to set the order in which elements are created (usefull for multiple tabs)
16658      */
16659     
16660     order : false,
16661     /**
16662      * @cfg {String} name
16663      * String to display while loading.
16664      */
16665     name : false,
16666     /**
16667      * @cfg {String} region
16668      * Region to render component to (defaults to center)
16669      */
16670     region : 'center',
16671     
16672     /**
16673      * @cfg {Array} items
16674      * A single item array - the first element is the root of the tree..
16675      * It's done this way to stay compatible with the Xtype system...
16676      */
16677     items : false,
16678     
16679     /**
16680      * @property _tree
16681      * The method that retuns the tree of parts that make up this compoennt 
16682      * @type {function}
16683      */
16684     _tree  : false,
16685     
16686      /**
16687      * render
16688      * render element to dom or tree
16689      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16690      */
16691     
16692     render : function(el)
16693     {
16694         
16695         el = el || false;
16696         var hp = this.parent ? 1 : 0;
16697         Roo.debug &&  Roo.log(this);
16698         
16699         var tree = this._tree ? this._tree() : this.tree();
16700
16701         
16702         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16703             // if parent is a '#.....' string, then let's use that..
16704             var ename = this.parent.substr(1);
16705             this.parent = false;
16706             Roo.debug && Roo.log(ename);
16707             switch (ename) {
16708                 case 'bootstrap-body':
16709                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16710                         // this is the BorderLayout standard?
16711                        this.parent = { el : true };
16712                        break;
16713                     }
16714                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16715                         // need to insert stuff...
16716                         this.parent =  {
16717                              el : new Roo.bootstrap.layout.Border({
16718                                  el : document.body, 
16719                      
16720                                  center: {
16721                                     titlebar: false,
16722                                     autoScroll:false,
16723                                     closeOnTab: true,
16724                                     tabPosition: 'top',
16725                                       //resizeTabs: true,
16726                                     alwaysShowTabs: true,
16727                                     hideTabs: false
16728                                      //minTabWidth: 140
16729                                  }
16730                              })
16731                         
16732                          };
16733                          break;
16734                     }
16735                          
16736                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16737                         this.parent = { el :  new  Roo.bootstrap.Body() };
16738                         Roo.debug && Roo.log("setting el to doc body");
16739                          
16740                     } else {
16741                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16742                     }
16743                     break;
16744                 case 'bootstrap':
16745                     this.parent = { el : true};
16746                     // fall through
16747                 default:
16748                     el = Roo.get(ename);
16749                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16750                         this.parent = { el : true};
16751                     }
16752                     
16753                     break;
16754             }
16755                 
16756             
16757             if (!el && !this.parent) {
16758                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16759                 return;
16760             }
16761         }
16762         
16763         Roo.debug && Roo.log("EL:");
16764         Roo.debug && Roo.log(el);
16765         Roo.debug && Roo.log("this.parent.el:");
16766         Roo.debug && Roo.log(this.parent.el);
16767         
16768
16769         // altertive root elements ??? - we need a better way to indicate these.
16770         var is_alt = Roo.XComponent.is_alt ||
16771                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16772                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16773                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16774         
16775         
16776         
16777         if (!this.parent && is_alt) {
16778             //el = Roo.get(document.body);
16779             this.parent = { el : true };
16780         }
16781             
16782             
16783         
16784         if (!this.parent) {
16785             
16786             Roo.debug && Roo.log("no parent - creating one");
16787             
16788             el = el ? Roo.get(el) : false;      
16789             
16790             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16791                 
16792                 this.parent =  {
16793                     el : new Roo.bootstrap.layout.Border({
16794                         el: el || document.body,
16795                     
16796                         center: {
16797                             titlebar: false,
16798                             autoScroll:false,
16799                             closeOnTab: true,
16800                             tabPosition: 'top',
16801                              //resizeTabs: true,
16802                             alwaysShowTabs: false,
16803                             hideTabs: true,
16804                             minTabWidth: 140,
16805                             overflow: 'visible'
16806                          }
16807                      })
16808                 };
16809             } else {
16810             
16811                 // it's a top level one..
16812                 this.parent =  {
16813                     el : new Roo.BorderLayout(el || document.body, {
16814                         center: {
16815                             titlebar: false,
16816                             autoScroll:false,
16817                             closeOnTab: true,
16818                             tabPosition: 'top',
16819                              //resizeTabs: true,
16820                             alwaysShowTabs: el && hp? false :  true,
16821                             hideTabs: el || !hp ? true :  false,
16822                             minTabWidth: 140
16823                          }
16824                     })
16825                 };
16826             }
16827         }
16828         
16829         if (!this.parent.el) {
16830                 // probably an old style ctor, which has been disabled.
16831                 return;
16832
16833         }
16834                 // The 'tree' method is  '_tree now' 
16835             
16836         tree.region = tree.region || this.region;
16837         var is_body = false;
16838         if (this.parent.el === true) {
16839             // bootstrap... - body..
16840             if (el) {
16841                 tree.el = el;
16842             }
16843             this.parent.el = Roo.factory(tree);
16844             is_body = true;
16845         }
16846         
16847         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16848         this.fireEvent('built', this);
16849         
16850         this.panel = this.el;
16851         this.layout = this.panel.layout;
16852         this.parentLayout = this.parent.layout  || false;  
16853          
16854     }
16855     
16856 });
16857
16858 Roo.apply(Roo.XComponent, {
16859     /**
16860      * @property  hideProgress
16861      * true to disable the building progress bar.. usefull on single page renders.
16862      * @type Boolean
16863      */
16864     hideProgress : false,
16865     /**
16866      * @property  buildCompleted
16867      * True when the builder has completed building the interface.
16868      * @type Boolean
16869      */
16870     buildCompleted : false,
16871      
16872     /**
16873      * @property  topModule
16874      * the upper most module - uses document.element as it's constructor.
16875      * @type Object
16876      */
16877      
16878     topModule  : false,
16879       
16880     /**
16881      * @property  modules
16882      * array of modules to be created by registration system.
16883      * @type {Array} of Roo.XComponent
16884      */
16885     
16886     modules : [],
16887     /**
16888      * @property  elmodules
16889      * array of modules to be created by which use #ID 
16890      * @type {Array} of Roo.XComponent
16891      */
16892      
16893     elmodules : [],
16894
16895      /**
16896      * @property  is_alt
16897      * Is an alternative Root - normally used by bootstrap or other systems,
16898      *    where the top element in the tree can wrap 'body' 
16899      * @type {boolean}  (default false)
16900      */
16901      
16902     is_alt : false,
16903     /**
16904      * @property  build_from_html
16905      * Build elements from html - used by bootstrap HTML stuff 
16906      *    - this is cleared after build is completed
16907      * @type {boolean}    (default false)
16908      */
16909      
16910     build_from_html : false,
16911     /**
16912      * Register components to be built later.
16913      *
16914      * This solves the following issues
16915      * - Building is not done on page load, but after an authentication process has occured.
16916      * - Interface elements are registered on page load
16917      * - Parent Interface elements may not be loaded before child, so this handles that..
16918      * 
16919      *
16920      * example:
16921      * 
16922      * MyApp.register({
16923           order : '000001',
16924           module : 'Pman.Tab.projectMgr',
16925           region : 'center',
16926           parent : 'Pman.layout',
16927           disabled : false,  // or use a function..
16928         })
16929      
16930      * * @param {Object} details about module
16931      */
16932     register : function(obj) {
16933                 
16934         Roo.XComponent.event.fireEvent('register', obj);
16935         switch(typeof(obj.disabled) ) {
16936                 
16937             case 'undefined':
16938                 break;
16939             
16940             case 'function':
16941                 if ( obj.disabled() ) {
16942                         return;
16943                 }
16944                 break;
16945             
16946             default:
16947                 if (obj.disabled || obj.region == '#disabled') {
16948                         return;
16949                 }
16950                 break;
16951         }
16952                 
16953         this.modules.push(obj);
16954          
16955     },
16956     /**
16957      * convert a string to an object..
16958      * eg. 'AAA.BBB' -> finds AAA.BBB
16959
16960      */
16961     
16962     toObject : function(str)
16963     {
16964         if (!str || typeof(str) == 'object') {
16965             return str;
16966         }
16967         if (str.substring(0,1) == '#') {
16968             return str;
16969         }
16970
16971         var ar = str.split('.');
16972         var rt, o;
16973         rt = ar.shift();
16974             /** eval:var:o */
16975         try {
16976             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16977         } catch (e) {
16978             throw "Module not found : " + str;
16979         }
16980         
16981         if (o === false) {
16982             throw "Module not found : " + str;
16983         }
16984         Roo.each(ar, function(e) {
16985             if (typeof(o[e]) == 'undefined') {
16986                 throw "Module not found : " + str;
16987             }
16988             o = o[e];
16989         });
16990         
16991         return o;
16992         
16993     },
16994     
16995     
16996     /**
16997      * move modules into their correct place in the tree..
16998      * 
16999      */
17000     preBuild : function ()
17001     {
17002         var _t = this;
17003         Roo.each(this.modules , function (obj)
17004         {
17005             Roo.XComponent.event.fireEvent('beforebuild', obj);
17006             
17007             var opar = obj.parent;
17008             try { 
17009                 obj.parent = this.toObject(opar);
17010             } catch(e) {
17011                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17012                 return;
17013             }
17014             
17015             if (!obj.parent) {
17016                 Roo.debug && Roo.log("GOT top level module");
17017                 Roo.debug && Roo.log(obj);
17018                 obj.modules = new Roo.util.MixedCollection(false, 
17019                     function(o) { return o.order + '' }
17020                 );
17021                 this.topModule = obj;
17022                 return;
17023             }
17024                         // parent is a string (usually a dom element name..)
17025             if (typeof(obj.parent) == 'string') {
17026                 this.elmodules.push(obj);
17027                 return;
17028             }
17029             if (obj.parent.constructor != Roo.XComponent) {
17030                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17031             }
17032             if (!obj.parent.modules) {
17033                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17034                     function(o) { return o.order + '' }
17035                 );
17036             }
17037             if (obj.parent.disabled) {
17038                 obj.disabled = true;
17039             }
17040             obj.parent.modules.add(obj);
17041         }, this);
17042     },
17043     
17044      /**
17045      * make a list of modules to build.
17046      * @return {Array} list of modules. 
17047      */ 
17048     
17049     buildOrder : function()
17050     {
17051         var _this = this;
17052         var cmp = function(a,b) {   
17053             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17054         };
17055         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17056             throw "No top level modules to build";
17057         }
17058         
17059         // make a flat list in order of modules to build.
17060         var mods = this.topModule ? [ this.topModule ] : [];
17061                 
17062         
17063         // elmodules (is a list of DOM based modules )
17064         Roo.each(this.elmodules, function(e) {
17065             mods.push(e);
17066             if (!this.topModule &&
17067                 typeof(e.parent) == 'string' &&
17068                 e.parent.substring(0,1) == '#' &&
17069                 Roo.get(e.parent.substr(1))
17070                ) {
17071                 
17072                 _this.topModule = e;
17073             }
17074             
17075         });
17076
17077         
17078         // add modules to their parents..
17079         var addMod = function(m) {
17080             Roo.debug && Roo.log("build Order: add: " + m.name);
17081                 
17082             mods.push(m);
17083             if (m.modules && !m.disabled) {
17084                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17085                 m.modules.keySort('ASC',  cmp );
17086                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17087     
17088                 m.modules.each(addMod);
17089             } else {
17090                 Roo.debug && Roo.log("build Order: no child modules");
17091             }
17092             // not sure if this is used any more..
17093             if (m.finalize) {
17094                 m.finalize.name = m.name + " (clean up) ";
17095                 mods.push(m.finalize);
17096             }
17097             
17098         }
17099         if (this.topModule && this.topModule.modules) { 
17100             this.topModule.modules.keySort('ASC',  cmp );
17101             this.topModule.modules.each(addMod);
17102         } 
17103         return mods;
17104     },
17105     
17106      /**
17107      * Build the registered modules.
17108      * @param {Object} parent element.
17109      * @param {Function} optional method to call after module has been added.
17110      * 
17111      */ 
17112    
17113     build : function(opts) 
17114     {
17115         
17116         if (typeof(opts) != 'undefined') {
17117             Roo.apply(this,opts);
17118         }
17119         
17120         this.preBuild();
17121         var mods = this.buildOrder();
17122       
17123         //this.allmods = mods;
17124         //Roo.debug && Roo.log(mods);
17125         //return;
17126         if (!mods.length) { // should not happen
17127             throw "NO modules!!!";
17128         }
17129         
17130         
17131         var msg = "Building Interface...";
17132         // flash it up as modal - so we store the mask!?
17133         if (!this.hideProgress && Roo.MessageBox) {
17134             Roo.MessageBox.show({ title: 'loading' });
17135             Roo.MessageBox.show({
17136                title: "Please wait...",
17137                msg: msg,
17138                width:450,
17139                progress:true,
17140                buttons : false,
17141                closable:false,
17142                modal: false
17143               
17144             });
17145         }
17146         var total = mods.length;
17147         
17148         var _this = this;
17149         var progressRun = function() {
17150             if (!mods.length) {
17151                 Roo.debug && Roo.log('hide?');
17152                 if (!this.hideProgress && Roo.MessageBox) {
17153                     Roo.MessageBox.hide();
17154                 }
17155                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17156                 
17157                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17158                 
17159                 // THE END...
17160                 return false;   
17161             }
17162             
17163             var m = mods.shift();
17164             
17165             
17166             Roo.debug && Roo.log(m);
17167             // not sure if this is supported any more.. - modules that are are just function
17168             if (typeof(m) == 'function') { 
17169                 m.call(this);
17170                 return progressRun.defer(10, _this);
17171             } 
17172             
17173             
17174             msg = "Building Interface " + (total  - mods.length) + 
17175                     " of " + total + 
17176                     (m.name ? (' - ' + m.name) : '');
17177                         Roo.debug && Roo.log(msg);
17178             if (!_this.hideProgress &&  Roo.MessageBox) { 
17179                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17180             }
17181             
17182          
17183             // is the module disabled?
17184             var disabled = (typeof(m.disabled) == 'function') ?
17185                 m.disabled.call(m.module.disabled) : m.disabled;    
17186             
17187             
17188             if (disabled) {
17189                 return progressRun(); // we do not update the display!
17190             }
17191             
17192             // now build 
17193             
17194                         
17195                         
17196             m.render();
17197             // it's 10 on top level, and 1 on others??? why...
17198             return progressRun.defer(10, _this);
17199              
17200         }
17201         progressRun.defer(1, _this);
17202      
17203         
17204         
17205     },
17206     /**
17207      * Overlay a set of modified strings onto a component
17208      * This is dependant on our builder exporting the strings and 'named strings' elements.
17209      * 
17210      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17211      * @param {Object} associative array of 'named' string and it's new value.
17212      * 
17213      */
17214         overlayStrings : function( component, strings )
17215     {
17216         if (typeof(component['_named_strings']) == 'undefined') {
17217             throw "ERROR: component does not have _named_strings";
17218         }
17219         for ( var k in strings ) {
17220             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17221             if (md !== false) {
17222                 component['_strings'][md] = strings[k];
17223             } else {
17224                 Roo.log('could not find named string: ' + k + ' in');
17225                 Roo.log(component);
17226             }
17227             
17228         }
17229         
17230     },
17231     
17232         
17233         /**
17234          * Event Object.
17235          *
17236          *
17237          */
17238         event: false, 
17239     /**
17240          * wrapper for event.on - aliased later..  
17241          * Typically use to register a event handler for register:
17242          *
17243          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17244          *
17245          */
17246     on : false
17247    
17248     
17249     
17250 });
17251
17252 Roo.XComponent.event = new Roo.util.Observable({
17253                 events : { 
17254                         /**
17255                          * @event register
17256                          * Fires when an Component is registered,
17257                          * set the disable property on the Component to stop registration.
17258                          * @param {Roo.XComponent} c the component being registerd.
17259                          * 
17260                          */
17261                         'register' : true,
17262             /**
17263                          * @event beforebuild
17264                          * Fires before each Component is built
17265                          * can be used to apply permissions.
17266                          * @param {Roo.XComponent} c the component being registerd.
17267                          * 
17268                          */
17269                         'beforebuild' : true,
17270                         /**
17271                          * @event buildcomplete
17272                          * Fires on the top level element when all elements have been built
17273                          * @param {Roo.XComponent} the top level component.
17274                          */
17275                         'buildcomplete' : true
17276                         
17277                 }
17278 });
17279
17280 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17281  //
17282  /**
17283  * marked - a markdown parser
17284  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17285  * https://github.com/chjj/marked
17286  */
17287
17288
17289 /**
17290  *
17291  * Roo.Markdown - is a very crude wrapper around marked..
17292  *
17293  * usage:
17294  * 
17295  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17296  * 
17297  * Note: move the sample code to the bottom of this
17298  * file before uncommenting it.
17299  *
17300  */
17301
17302 Roo.Markdown = {};
17303 Roo.Markdown.toHtml = function(text) {
17304     
17305     var c = new Roo.Markdown.marked.setOptions({
17306             renderer: new Roo.Markdown.marked.Renderer(),
17307             gfm: true,
17308             tables: true,
17309             breaks: false,
17310             pedantic: false,
17311             sanitize: false,
17312             smartLists: true,
17313             smartypants: false
17314           });
17315     // A FEW HACKS!!?
17316     
17317     text = text.replace(/\\\n/g,' ');
17318     return Roo.Markdown.marked(text);
17319 };
17320 //
17321 // converter
17322 //
17323 // Wraps all "globals" so that the only thing
17324 // exposed is makeHtml().
17325 //
17326 (function() {
17327     
17328      /**
17329          * eval:var:escape
17330          * eval:var:unescape
17331          * eval:var:replace
17332          */
17333       
17334     /**
17335      * Helpers
17336      */
17337     
17338     var escape = function (html, encode) {
17339       return html
17340         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17341         .replace(/</g, '&lt;')
17342         .replace(/>/g, '&gt;')
17343         .replace(/"/g, '&quot;')
17344         .replace(/'/g, '&#39;');
17345     }
17346     
17347     var unescape = function (html) {
17348         // explicitly match decimal, hex, and named HTML entities 
17349       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17350         n = n.toLowerCase();
17351         if (n === 'colon') { return ':'; }
17352         if (n.charAt(0) === '#') {
17353           return n.charAt(1) === 'x'
17354             ? String.fromCharCode(parseInt(n.substring(2), 16))
17355             : String.fromCharCode(+n.substring(1));
17356         }
17357         return '';
17358       });
17359     }
17360     
17361     var replace = function (regex, opt) {
17362       regex = regex.source;
17363       opt = opt || '';
17364       return function self(name, val) {
17365         if (!name) { return new RegExp(regex, opt); }
17366         val = val.source || val;
17367         val = val.replace(/(^|[^\[])\^/g, '$1');
17368         regex = regex.replace(name, val);
17369         return self;
17370       };
17371     }
17372
17373
17374          /**
17375          * eval:var:noop
17376     */
17377     var noop = function () {}
17378     noop.exec = noop;
17379     
17380          /**
17381          * eval:var:merge
17382     */
17383     var merge = function (obj) {
17384       var i = 1
17385         , target
17386         , key;
17387     
17388       for (; i < arguments.length; i++) {
17389         target = arguments[i];
17390         for (key in target) {
17391           if (Object.prototype.hasOwnProperty.call(target, key)) {
17392             obj[key] = target[key];
17393           }
17394         }
17395       }
17396     
17397       return obj;
17398     }
17399     
17400     
17401     /**
17402      * Block-Level Grammar
17403      */
17404     
17405     
17406     
17407     
17408     var block = {
17409       newline: /^\n+/,
17410       code: /^( {4}[^\n]+\n*)+/,
17411       fences: noop,
17412       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17413       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17414       nptable: noop,
17415       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17416       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17417       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17418       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17419       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17420       table: noop,
17421       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17422       text: /^[^\n]+/
17423     };
17424     
17425     block.bullet = /(?:[*+-]|\d+\.)/;
17426     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17427     block.item = replace(block.item, 'gm')
17428       (/bull/g, block.bullet)
17429       ();
17430     
17431     block.list = replace(block.list)
17432       (/bull/g, block.bullet)
17433       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17434       ('def', '\\n+(?=' + block.def.source + ')')
17435       ();
17436     
17437     block.blockquote = replace(block.blockquote)
17438       ('def', block.def)
17439       ();
17440     
17441     block._tag = '(?!(?:'
17442       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17443       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17444       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17445     
17446     block.html = replace(block.html)
17447       ('comment', /<!--[\s\S]*?-->/)
17448       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17449       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17450       (/tag/g, block._tag)
17451       ();
17452     
17453     block.paragraph = replace(block.paragraph)
17454       ('hr', block.hr)
17455       ('heading', block.heading)
17456       ('lheading', block.lheading)
17457       ('blockquote', block.blockquote)
17458       ('tag', '<' + block._tag)
17459       ('def', block.def)
17460       ();
17461     
17462     /**
17463      * Normal Block Grammar
17464      */
17465     
17466     block.normal = merge({}, block);
17467     
17468     /**
17469      * GFM Block Grammar
17470      */
17471     
17472     block.gfm = merge({}, block.normal, {
17473       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17474       paragraph: /^/,
17475       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17476     });
17477     
17478     block.gfm.paragraph = replace(block.paragraph)
17479       ('(?!', '(?!'
17480         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17481         + block.list.source.replace('\\1', '\\3') + '|')
17482       ();
17483     
17484     /**
17485      * GFM + Tables Block Grammar
17486      */
17487     
17488     block.tables = merge({}, block.gfm, {
17489       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17490       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17491     });
17492     
17493     /**
17494      * Block Lexer
17495      */
17496     
17497     var Lexer = function (options) {
17498       this.tokens = [];
17499       this.tokens.links = {};
17500       this.options = options || marked.defaults;
17501       this.rules = block.normal;
17502     
17503       if (this.options.gfm) {
17504         if (this.options.tables) {
17505           this.rules = block.tables;
17506         } else {
17507           this.rules = block.gfm;
17508         }
17509       }
17510     }
17511     
17512     /**
17513      * Expose Block Rules
17514      */
17515     
17516     Lexer.rules = block;
17517     
17518     /**
17519      * Static Lex Method
17520      */
17521     
17522     Lexer.lex = function(src, options) {
17523       var lexer = new Lexer(options);
17524       return lexer.lex(src);
17525     };
17526     
17527     /**
17528      * Preprocessing
17529      */
17530     
17531     Lexer.prototype.lex = function(src) {
17532       src = src
17533         .replace(/\r\n|\r/g, '\n')
17534         .replace(/\t/g, '    ')
17535         .replace(/\u00a0/g, ' ')
17536         .replace(/\u2424/g, '\n');
17537     
17538       return this.token(src, true);
17539     };
17540     
17541     /**
17542      * Lexing
17543      */
17544     
17545     Lexer.prototype.token = function(src, top, bq) {
17546       var src = src.replace(/^ +$/gm, '')
17547         , next
17548         , loose
17549         , cap
17550         , bull
17551         , b
17552         , item
17553         , space
17554         , i
17555         , l;
17556     
17557       while (src) {
17558         // newline
17559         if (cap = this.rules.newline.exec(src)) {
17560           src = src.substring(cap[0].length);
17561           if (cap[0].length > 1) {
17562             this.tokens.push({
17563               type: 'space'
17564             });
17565           }
17566         }
17567     
17568         // code
17569         if (cap = this.rules.code.exec(src)) {
17570           src = src.substring(cap[0].length);
17571           cap = cap[0].replace(/^ {4}/gm, '');
17572           this.tokens.push({
17573             type: 'code',
17574             text: !this.options.pedantic
17575               ? cap.replace(/\n+$/, '')
17576               : cap
17577           });
17578           continue;
17579         }
17580     
17581         // fences (gfm)
17582         if (cap = this.rules.fences.exec(src)) {
17583           src = src.substring(cap[0].length);
17584           this.tokens.push({
17585             type: 'code',
17586             lang: cap[2],
17587             text: cap[3] || ''
17588           });
17589           continue;
17590         }
17591     
17592         // heading
17593         if (cap = this.rules.heading.exec(src)) {
17594           src = src.substring(cap[0].length);
17595           this.tokens.push({
17596             type: 'heading',
17597             depth: cap[1].length,
17598             text: cap[2]
17599           });
17600           continue;
17601         }
17602     
17603         // table no leading pipe (gfm)
17604         if (top && (cap = this.rules.nptable.exec(src))) {
17605           src = src.substring(cap[0].length);
17606     
17607           item = {
17608             type: 'table',
17609             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17610             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17611             cells: cap[3].replace(/\n$/, '').split('\n')
17612           };
17613     
17614           for (i = 0; i < item.align.length; i++) {
17615             if (/^ *-+: *$/.test(item.align[i])) {
17616               item.align[i] = 'right';
17617             } else if (/^ *:-+: *$/.test(item.align[i])) {
17618               item.align[i] = 'center';
17619             } else if (/^ *:-+ *$/.test(item.align[i])) {
17620               item.align[i] = 'left';
17621             } else {
17622               item.align[i] = null;
17623             }
17624           }
17625     
17626           for (i = 0; i < item.cells.length; i++) {
17627             item.cells[i] = item.cells[i].split(/ *\| */);
17628           }
17629     
17630           this.tokens.push(item);
17631     
17632           continue;
17633         }
17634     
17635         // lheading
17636         if (cap = this.rules.lheading.exec(src)) {
17637           src = src.substring(cap[0].length);
17638           this.tokens.push({
17639             type: 'heading',
17640             depth: cap[2] === '=' ? 1 : 2,
17641             text: cap[1]
17642           });
17643           continue;
17644         }
17645     
17646         // hr
17647         if (cap = this.rules.hr.exec(src)) {
17648           src = src.substring(cap[0].length);
17649           this.tokens.push({
17650             type: 'hr'
17651           });
17652           continue;
17653         }
17654     
17655         // blockquote
17656         if (cap = this.rules.blockquote.exec(src)) {
17657           src = src.substring(cap[0].length);
17658     
17659           this.tokens.push({
17660             type: 'blockquote_start'
17661           });
17662     
17663           cap = cap[0].replace(/^ *> ?/gm, '');
17664     
17665           // Pass `top` to keep the current
17666           // "toplevel" state. This is exactly
17667           // how markdown.pl works.
17668           this.token(cap, top, true);
17669     
17670           this.tokens.push({
17671             type: 'blockquote_end'
17672           });
17673     
17674           continue;
17675         }
17676     
17677         // list
17678         if (cap = this.rules.list.exec(src)) {
17679           src = src.substring(cap[0].length);
17680           bull = cap[2];
17681     
17682           this.tokens.push({
17683             type: 'list_start',
17684             ordered: bull.length > 1
17685           });
17686     
17687           // Get each top-level item.
17688           cap = cap[0].match(this.rules.item);
17689     
17690           next = false;
17691           l = cap.length;
17692           i = 0;
17693     
17694           for (; i < l; i++) {
17695             item = cap[i];
17696     
17697             // Remove the list item's bullet
17698             // so it is seen as the next token.
17699             space = item.length;
17700             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17701     
17702             // Outdent whatever the
17703             // list item contains. Hacky.
17704             if (~item.indexOf('\n ')) {
17705               space -= item.length;
17706               item = !this.options.pedantic
17707                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17708                 : item.replace(/^ {1,4}/gm, '');
17709             }
17710     
17711             // Determine whether the next list item belongs here.
17712             // Backpedal if it does not belong in this list.
17713             if (this.options.smartLists && i !== l - 1) {
17714               b = block.bullet.exec(cap[i + 1])[0];
17715               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17716                 src = cap.slice(i + 1).join('\n') + src;
17717                 i = l - 1;
17718               }
17719             }
17720     
17721             // Determine whether item is loose or not.
17722             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17723             // for discount behavior.
17724             loose = next || /\n\n(?!\s*$)/.test(item);
17725             if (i !== l - 1) {
17726               next = item.charAt(item.length - 1) === '\n';
17727               if (!loose) { loose = next; }
17728             }
17729     
17730             this.tokens.push({
17731               type: loose
17732                 ? 'loose_item_start'
17733                 : 'list_item_start'
17734             });
17735     
17736             // Recurse.
17737             this.token(item, false, bq);
17738     
17739             this.tokens.push({
17740               type: 'list_item_end'
17741             });
17742           }
17743     
17744           this.tokens.push({
17745             type: 'list_end'
17746           });
17747     
17748           continue;
17749         }
17750     
17751         // html
17752         if (cap = this.rules.html.exec(src)) {
17753           src = src.substring(cap[0].length);
17754           this.tokens.push({
17755             type: this.options.sanitize
17756               ? 'paragraph'
17757               : 'html',
17758             pre: !this.options.sanitizer
17759               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17760             text: cap[0]
17761           });
17762           continue;
17763         }
17764     
17765         // def
17766         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17767           src = src.substring(cap[0].length);
17768           this.tokens.links[cap[1].toLowerCase()] = {
17769             href: cap[2],
17770             title: cap[3]
17771           };
17772           continue;
17773         }
17774     
17775         // table (gfm)
17776         if (top && (cap = this.rules.table.exec(src))) {
17777           src = src.substring(cap[0].length);
17778     
17779           item = {
17780             type: 'table',
17781             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17782             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17783             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17784           };
17785     
17786           for (i = 0; i < item.align.length; i++) {
17787             if (/^ *-+: *$/.test(item.align[i])) {
17788               item.align[i] = 'right';
17789             } else if (/^ *:-+: *$/.test(item.align[i])) {
17790               item.align[i] = 'center';
17791             } else if (/^ *:-+ *$/.test(item.align[i])) {
17792               item.align[i] = 'left';
17793             } else {
17794               item.align[i] = null;
17795             }
17796           }
17797     
17798           for (i = 0; i < item.cells.length; i++) {
17799             item.cells[i] = item.cells[i]
17800               .replace(/^ *\| *| *\| *$/g, '')
17801               .split(/ *\| */);
17802           }
17803     
17804           this.tokens.push(item);
17805     
17806           continue;
17807         }
17808     
17809         // top-level paragraph
17810         if (top && (cap = this.rules.paragraph.exec(src))) {
17811           src = src.substring(cap[0].length);
17812           this.tokens.push({
17813             type: 'paragraph',
17814             text: cap[1].charAt(cap[1].length - 1) === '\n'
17815               ? cap[1].slice(0, -1)
17816               : cap[1]
17817           });
17818           continue;
17819         }
17820     
17821         // text
17822         if (cap = this.rules.text.exec(src)) {
17823           // Top-level should never reach here.
17824           src = src.substring(cap[0].length);
17825           this.tokens.push({
17826             type: 'text',
17827             text: cap[0]
17828           });
17829           continue;
17830         }
17831     
17832         if (src) {
17833           throw new
17834             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17835         }
17836       }
17837     
17838       return this.tokens;
17839     };
17840     
17841     /**
17842      * Inline-Level Grammar
17843      */
17844     
17845     var inline = {
17846       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17847       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17848       url: noop,
17849       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17850       link: /^!?\[(inside)\]\(href\)/,
17851       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17852       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17853       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17854       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17855       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17856       br: /^ {2,}\n(?!\s*$)/,
17857       del: noop,
17858       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17859     };
17860     
17861     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17862     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17863     
17864     inline.link = replace(inline.link)
17865       ('inside', inline._inside)
17866       ('href', inline._href)
17867       ();
17868     
17869     inline.reflink = replace(inline.reflink)
17870       ('inside', inline._inside)
17871       ();
17872     
17873     /**
17874      * Normal Inline Grammar
17875      */
17876     
17877     inline.normal = merge({}, inline);
17878     
17879     /**
17880      * Pedantic Inline Grammar
17881      */
17882     
17883     inline.pedantic = merge({}, inline.normal, {
17884       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17885       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17886     });
17887     
17888     /**
17889      * GFM Inline Grammar
17890      */
17891     
17892     inline.gfm = merge({}, inline.normal, {
17893       escape: replace(inline.escape)('])', '~|])')(),
17894       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17895       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17896       text: replace(inline.text)
17897         (']|', '~]|')
17898         ('|', '|https?://|')
17899         ()
17900     });
17901     
17902     /**
17903      * GFM + Line Breaks Inline Grammar
17904      */
17905     
17906     inline.breaks = merge({}, inline.gfm, {
17907       br: replace(inline.br)('{2,}', '*')(),
17908       text: replace(inline.gfm.text)('{2,}', '*')()
17909     });
17910     
17911     /**
17912      * Inline Lexer & Compiler
17913      */
17914     
17915     var InlineLexer  = function (links, options) {
17916       this.options = options || marked.defaults;
17917       this.links = links;
17918       this.rules = inline.normal;
17919       this.renderer = this.options.renderer || new Renderer;
17920       this.renderer.options = this.options;
17921     
17922       if (!this.links) {
17923         throw new
17924           Error('Tokens array requires a `links` property.');
17925       }
17926     
17927       if (this.options.gfm) {
17928         if (this.options.breaks) {
17929           this.rules = inline.breaks;
17930         } else {
17931           this.rules = inline.gfm;
17932         }
17933       } else if (this.options.pedantic) {
17934         this.rules = inline.pedantic;
17935       }
17936     }
17937     
17938     /**
17939      * Expose Inline Rules
17940      */
17941     
17942     InlineLexer.rules = inline;
17943     
17944     /**
17945      * Static Lexing/Compiling Method
17946      */
17947     
17948     InlineLexer.output = function(src, links, options) {
17949       var inline = new InlineLexer(links, options);
17950       return inline.output(src);
17951     };
17952     
17953     /**
17954      * Lexing/Compiling
17955      */
17956     
17957     InlineLexer.prototype.output = function(src) {
17958       var out = ''
17959         , link
17960         , text
17961         , href
17962         , cap;
17963     
17964       while (src) {
17965         // escape
17966         if (cap = this.rules.escape.exec(src)) {
17967           src = src.substring(cap[0].length);
17968           out += cap[1];
17969           continue;
17970         }
17971     
17972         // autolink
17973         if (cap = this.rules.autolink.exec(src)) {
17974           src = src.substring(cap[0].length);
17975           if (cap[2] === '@') {
17976             text = cap[1].charAt(6) === ':'
17977               ? this.mangle(cap[1].substring(7))
17978               : this.mangle(cap[1]);
17979             href = this.mangle('mailto:') + text;
17980           } else {
17981             text = escape(cap[1]);
17982             href = text;
17983           }
17984           out += this.renderer.link(href, null, text);
17985           continue;
17986         }
17987     
17988         // url (gfm)
17989         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17990           src = src.substring(cap[0].length);
17991           text = escape(cap[1]);
17992           href = text;
17993           out += this.renderer.link(href, null, text);
17994           continue;
17995         }
17996     
17997         // tag
17998         if (cap = this.rules.tag.exec(src)) {
17999           if (!this.inLink && /^<a /i.test(cap[0])) {
18000             this.inLink = true;
18001           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18002             this.inLink = false;
18003           }
18004           src = src.substring(cap[0].length);
18005           out += this.options.sanitize
18006             ? this.options.sanitizer
18007               ? this.options.sanitizer(cap[0])
18008               : escape(cap[0])
18009             : cap[0];
18010           continue;
18011         }
18012     
18013         // link
18014         if (cap = this.rules.link.exec(src)) {
18015           src = src.substring(cap[0].length);
18016           this.inLink = true;
18017           out += this.outputLink(cap, {
18018             href: cap[2],
18019             title: cap[3]
18020           });
18021           this.inLink = false;
18022           continue;
18023         }
18024     
18025         // reflink, nolink
18026         if ((cap = this.rules.reflink.exec(src))
18027             || (cap = this.rules.nolink.exec(src))) {
18028           src = src.substring(cap[0].length);
18029           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18030           link = this.links[link.toLowerCase()];
18031           if (!link || !link.href) {
18032             out += cap[0].charAt(0);
18033             src = cap[0].substring(1) + src;
18034             continue;
18035           }
18036           this.inLink = true;
18037           out += this.outputLink(cap, link);
18038           this.inLink = false;
18039           continue;
18040         }
18041     
18042         // strong
18043         if (cap = this.rules.strong.exec(src)) {
18044           src = src.substring(cap[0].length);
18045           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18046           continue;
18047         }
18048     
18049         // em
18050         if (cap = this.rules.em.exec(src)) {
18051           src = src.substring(cap[0].length);
18052           out += this.renderer.em(this.output(cap[2] || cap[1]));
18053           continue;
18054         }
18055     
18056         // code
18057         if (cap = this.rules.code.exec(src)) {
18058           src = src.substring(cap[0].length);
18059           out += this.renderer.codespan(escape(cap[2], true));
18060           continue;
18061         }
18062     
18063         // br
18064         if (cap = this.rules.br.exec(src)) {
18065           src = src.substring(cap[0].length);
18066           out += this.renderer.br();
18067           continue;
18068         }
18069     
18070         // del (gfm)
18071         if (cap = this.rules.del.exec(src)) {
18072           src = src.substring(cap[0].length);
18073           out += this.renderer.del(this.output(cap[1]));
18074           continue;
18075         }
18076     
18077         // text
18078         if (cap = this.rules.text.exec(src)) {
18079           src = src.substring(cap[0].length);
18080           out += this.renderer.text(escape(this.smartypants(cap[0])));
18081           continue;
18082         }
18083     
18084         if (src) {
18085           throw new
18086             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18087         }
18088       }
18089     
18090       return out;
18091     };
18092     
18093     /**
18094      * Compile Link
18095      */
18096     
18097     InlineLexer.prototype.outputLink = function(cap, link) {
18098       var href = escape(link.href)
18099         , title = link.title ? escape(link.title) : null;
18100     
18101       return cap[0].charAt(0) !== '!'
18102         ? this.renderer.link(href, title, this.output(cap[1]))
18103         : this.renderer.image(href, title, escape(cap[1]));
18104     };
18105     
18106     /**
18107      * Smartypants Transformations
18108      */
18109     
18110     InlineLexer.prototype.smartypants = function(text) {
18111       if (!this.options.smartypants)  { return text; }
18112       return text
18113         // em-dashes
18114         .replace(/---/g, '\u2014')
18115         // en-dashes
18116         .replace(/--/g, '\u2013')
18117         // opening singles
18118         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18119         // closing singles & apostrophes
18120         .replace(/'/g, '\u2019')
18121         // opening doubles
18122         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18123         // closing doubles
18124         .replace(/"/g, '\u201d')
18125         // ellipses
18126         .replace(/\.{3}/g, '\u2026');
18127     };
18128     
18129     /**
18130      * Mangle Links
18131      */
18132     
18133     InlineLexer.prototype.mangle = function(text) {
18134       if (!this.options.mangle) { return text; }
18135       var out = ''
18136         , l = text.length
18137         , i = 0
18138         , ch;
18139     
18140       for (; i < l; i++) {
18141         ch = text.charCodeAt(i);
18142         if (Math.random() > 0.5) {
18143           ch = 'x' + ch.toString(16);
18144         }
18145         out += '&#' + ch + ';';
18146       }
18147     
18148       return out;
18149     };
18150     
18151     /**
18152      * Renderer
18153      */
18154     
18155      /**
18156          * eval:var:Renderer
18157     */
18158     
18159     var Renderer   = function (options) {
18160       this.options = options || {};
18161     }
18162     
18163     Renderer.prototype.code = function(code, lang, escaped) {
18164       if (this.options.highlight) {
18165         var out = this.options.highlight(code, lang);
18166         if (out != null && out !== code) {
18167           escaped = true;
18168           code = out;
18169         }
18170       } else {
18171             // hack!!! - it's already escapeD?
18172             escaped = true;
18173       }
18174     
18175       if (!lang) {
18176         return '<pre><code>'
18177           + (escaped ? code : escape(code, true))
18178           + '\n</code></pre>';
18179       }
18180     
18181       return '<pre><code class="'
18182         + this.options.langPrefix
18183         + escape(lang, true)
18184         + '">'
18185         + (escaped ? code : escape(code, true))
18186         + '\n</code></pre>\n';
18187     };
18188     
18189     Renderer.prototype.blockquote = function(quote) {
18190       return '<blockquote>\n' + quote + '</blockquote>\n';
18191     };
18192     
18193     Renderer.prototype.html = function(html) {
18194       return html;
18195     };
18196     
18197     Renderer.prototype.heading = function(text, level, raw) {
18198       return '<h'
18199         + level
18200         + ' id="'
18201         + this.options.headerPrefix
18202         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18203         + '">'
18204         + text
18205         + '</h'
18206         + level
18207         + '>\n';
18208     };
18209     
18210     Renderer.prototype.hr = function() {
18211       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18212     };
18213     
18214     Renderer.prototype.list = function(body, ordered) {
18215       var type = ordered ? 'ol' : 'ul';
18216       return '<' + type + '>\n' + body + '</' + type + '>\n';
18217     };
18218     
18219     Renderer.prototype.listitem = function(text) {
18220       return '<li>' + text + '</li>\n';
18221     };
18222     
18223     Renderer.prototype.paragraph = function(text) {
18224       return '<p>' + text + '</p>\n';
18225     };
18226     
18227     Renderer.prototype.table = function(header, body) {
18228       return '<table class="table table-striped">\n'
18229         + '<thead>\n'
18230         + header
18231         + '</thead>\n'
18232         + '<tbody>\n'
18233         + body
18234         + '</tbody>\n'
18235         + '</table>\n';
18236     };
18237     
18238     Renderer.prototype.tablerow = function(content) {
18239       return '<tr>\n' + content + '</tr>\n';
18240     };
18241     
18242     Renderer.prototype.tablecell = function(content, flags) {
18243       var type = flags.header ? 'th' : 'td';
18244       var tag = flags.align
18245         ? '<' + type + ' style="text-align:' + flags.align + '">'
18246         : '<' + type + '>';
18247       return tag + content + '</' + type + '>\n';
18248     };
18249     
18250     // span level renderer
18251     Renderer.prototype.strong = function(text) {
18252       return '<strong>' + text + '</strong>';
18253     };
18254     
18255     Renderer.prototype.em = function(text) {
18256       return '<em>' + text + '</em>';
18257     };
18258     
18259     Renderer.prototype.codespan = function(text) {
18260       return '<code>' + text + '</code>';
18261     };
18262     
18263     Renderer.prototype.br = function() {
18264       return this.options.xhtml ? '<br/>' : '<br>';
18265     };
18266     
18267     Renderer.prototype.del = function(text) {
18268       return '<del>' + text + '</del>';
18269     };
18270     
18271     Renderer.prototype.link = function(href, title, text) {
18272       if (this.options.sanitize) {
18273         try {
18274           var prot = decodeURIComponent(unescape(href))
18275             .replace(/[^\w:]/g, '')
18276             .toLowerCase();
18277         } catch (e) {
18278           return '';
18279         }
18280         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18281           return '';
18282         }
18283       }
18284       var out = '<a href="' + href + '"';
18285       if (title) {
18286         out += ' title="' + title + '"';
18287       }
18288       out += '>' + text + '</a>';
18289       return out;
18290     };
18291     
18292     Renderer.prototype.image = function(href, title, text) {
18293       var out = '<img src="' + href + '" alt="' + text + '"';
18294       if (title) {
18295         out += ' title="' + title + '"';
18296       }
18297       out += this.options.xhtml ? '/>' : '>';
18298       return out;
18299     };
18300     
18301     Renderer.prototype.text = function(text) {
18302       return text;
18303     };
18304     
18305     /**
18306      * Parsing & Compiling
18307      */
18308          /**
18309          * eval:var:Parser
18310     */
18311     
18312     var Parser= function (options) {
18313       this.tokens = [];
18314       this.token = null;
18315       this.options = options || marked.defaults;
18316       this.options.renderer = this.options.renderer || new Renderer;
18317       this.renderer = this.options.renderer;
18318       this.renderer.options = this.options;
18319     }
18320     
18321     /**
18322      * Static Parse Method
18323      */
18324     
18325     Parser.parse = function(src, options, renderer) {
18326       var parser = new Parser(options, renderer);
18327       return parser.parse(src);
18328     };
18329     
18330     /**
18331      * Parse Loop
18332      */
18333     
18334     Parser.prototype.parse = function(src) {
18335       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18336       this.tokens = src.reverse();
18337     
18338       var out = '';
18339       while (this.next()) {
18340         out += this.tok();
18341       }
18342     
18343       return out;
18344     };
18345     
18346     /**
18347      * Next Token
18348      */
18349     
18350     Parser.prototype.next = function() {
18351       return this.token = this.tokens.pop();
18352     };
18353     
18354     /**
18355      * Preview Next Token
18356      */
18357     
18358     Parser.prototype.peek = function() {
18359       return this.tokens[this.tokens.length - 1] || 0;
18360     };
18361     
18362     /**
18363      * Parse Text Tokens
18364      */
18365     
18366     Parser.prototype.parseText = function() {
18367       var body = this.token.text;
18368     
18369       while (this.peek().type === 'text') {
18370         body += '\n' + this.next().text;
18371       }
18372     
18373       return this.inline.output(body);
18374     };
18375     
18376     /**
18377      * Parse Current Token
18378      */
18379     
18380     Parser.prototype.tok = function() {
18381       switch (this.token.type) {
18382         case 'space': {
18383           return '';
18384         }
18385         case 'hr': {
18386           return this.renderer.hr();
18387         }
18388         case 'heading': {
18389           return this.renderer.heading(
18390             this.inline.output(this.token.text),
18391             this.token.depth,
18392             this.token.text);
18393         }
18394         case 'code': {
18395           return this.renderer.code(this.token.text,
18396             this.token.lang,
18397             this.token.escaped);
18398         }
18399         case 'table': {
18400           var header = ''
18401             , body = ''
18402             , i
18403             , row
18404             , cell
18405             , flags
18406             , j;
18407     
18408           // header
18409           cell = '';
18410           for (i = 0; i < this.token.header.length; i++) {
18411             flags = { header: true, align: this.token.align[i] };
18412             cell += this.renderer.tablecell(
18413               this.inline.output(this.token.header[i]),
18414               { header: true, align: this.token.align[i] }
18415             );
18416           }
18417           header += this.renderer.tablerow(cell);
18418     
18419           for (i = 0; i < this.token.cells.length; i++) {
18420             row = this.token.cells[i];
18421     
18422             cell = '';
18423             for (j = 0; j < row.length; j++) {
18424               cell += this.renderer.tablecell(
18425                 this.inline.output(row[j]),
18426                 { header: false, align: this.token.align[j] }
18427               );
18428             }
18429     
18430             body += this.renderer.tablerow(cell);
18431           }
18432           return this.renderer.table(header, body);
18433         }
18434         case 'blockquote_start': {
18435           var body = '';
18436     
18437           while (this.next().type !== 'blockquote_end') {
18438             body += this.tok();
18439           }
18440     
18441           return this.renderer.blockquote(body);
18442         }
18443         case 'list_start': {
18444           var body = ''
18445             , ordered = this.token.ordered;
18446     
18447           while (this.next().type !== 'list_end') {
18448             body += this.tok();
18449           }
18450     
18451           return this.renderer.list(body, ordered);
18452         }
18453         case 'list_item_start': {
18454           var body = '';
18455     
18456           while (this.next().type !== 'list_item_end') {
18457             body += this.token.type === 'text'
18458               ? this.parseText()
18459               : this.tok();
18460           }
18461     
18462           return this.renderer.listitem(body);
18463         }
18464         case 'loose_item_start': {
18465           var body = '';
18466     
18467           while (this.next().type !== 'list_item_end') {
18468             body += this.tok();
18469           }
18470     
18471           return this.renderer.listitem(body);
18472         }
18473         case 'html': {
18474           var html = !this.token.pre && !this.options.pedantic
18475             ? this.inline.output(this.token.text)
18476             : this.token.text;
18477           return this.renderer.html(html);
18478         }
18479         case 'paragraph': {
18480           return this.renderer.paragraph(this.inline.output(this.token.text));
18481         }
18482         case 'text': {
18483           return this.renderer.paragraph(this.parseText());
18484         }
18485       }
18486     };
18487   
18488     
18489     /**
18490      * Marked
18491      */
18492          /**
18493          * eval:var:marked
18494     */
18495     var marked = function (src, opt, callback) {
18496       if (callback || typeof opt === 'function') {
18497         if (!callback) {
18498           callback = opt;
18499           opt = null;
18500         }
18501     
18502         opt = merge({}, marked.defaults, opt || {});
18503     
18504         var highlight = opt.highlight
18505           , tokens
18506           , pending
18507           , i = 0;
18508     
18509         try {
18510           tokens = Lexer.lex(src, opt)
18511         } catch (e) {
18512           return callback(e);
18513         }
18514     
18515         pending = tokens.length;
18516          /**
18517          * eval:var:done
18518     */
18519         var done = function(err) {
18520           if (err) {
18521             opt.highlight = highlight;
18522             return callback(err);
18523           }
18524     
18525           var out;
18526     
18527           try {
18528             out = Parser.parse(tokens, opt);
18529           } catch (e) {
18530             err = e;
18531           }
18532     
18533           opt.highlight = highlight;
18534     
18535           return err
18536             ? callback(err)
18537             : callback(null, out);
18538         };
18539     
18540         if (!highlight || highlight.length < 3) {
18541           return done();
18542         }
18543     
18544         delete opt.highlight;
18545     
18546         if (!pending) { return done(); }
18547     
18548         for (; i < tokens.length; i++) {
18549           (function(token) {
18550             if (token.type !== 'code') {
18551               return --pending || done();
18552             }
18553             return highlight(token.text, token.lang, function(err, code) {
18554               if (err) { return done(err); }
18555               if (code == null || code === token.text) {
18556                 return --pending || done();
18557               }
18558               token.text = code;
18559               token.escaped = true;
18560               --pending || done();
18561             });
18562           })(tokens[i]);
18563         }
18564     
18565         return;
18566       }
18567       try {
18568         if (opt) { opt = merge({}, marked.defaults, opt); }
18569         return Parser.parse(Lexer.lex(src, opt), opt);
18570       } catch (e) {
18571         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18572         if ((opt || marked.defaults).silent) {
18573           return '<p>An error occured:</p><pre>'
18574             + escape(e.message + '', true)
18575             + '</pre>';
18576         }
18577         throw e;
18578       }
18579     }
18580     
18581     /**
18582      * Options
18583      */
18584     
18585     marked.options =
18586     marked.setOptions = function(opt) {
18587       merge(marked.defaults, opt);
18588       return marked;
18589     };
18590     
18591     marked.defaults = {
18592       gfm: true,
18593       tables: true,
18594       breaks: false,
18595       pedantic: false,
18596       sanitize: false,
18597       sanitizer: null,
18598       mangle: true,
18599       smartLists: false,
18600       silent: false,
18601       highlight: null,
18602       langPrefix: 'lang-',
18603       smartypants: false,
18604       headerPrefix: '',
18605       renderer: new Renderer,
18606       xhtml: false
18607     };
18608     
18609     /**
18610      * Expose
18611      */
18612     
18613     marked.Parser = Parser;
18614     marked.parser = Parser.parse;
18615     
18616     marked.Renderer = Renderer;
18617     
18618     marked.Lexer = Lexer;
18619     marked.lexer = Lexer.lex;
18620     
18621     marked.InlineLexer = InlineLexer;
18622     marked.inlineLexer = InlineLexer.output;
18623     
18624     marked.parse = marked;
18625     
18626     Roo.Markdown.marked = marked;
18627
18628 })();/*
18629  * Based on:
18630  * Ext JS Library 1.1.1
18631  * Copyright(c) 2006-2007, Ext JS, LLC.
18632  *
18633  * Originally Released Under LGPL - original licence link has changed is not relivant.
18634  *
18635  * Fork - LGPL
18636  * <script type="text/javascript">
18637  */
18638
18639
18640
18641 /*
18642  * These classes are derivatives of the similarly named classes in the YUI Library.
18643  * The original license:
18644  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18645  * Code licensed under the BSD License:
18646  * http://developer.yahoo.net/yui/license.txt
18647  */
18648
18649 (function() {
18650
18651 var Event=Roo.EventManager;
18652 var Dom=Roo.lib.Dom;
18653
18654 /**
18655  * @class Roo.dd.DragDrop
18656  * @extends Roo.util.Observable
18657  * Defines the interface and base operation of items that that can be
18658  * dragged or can be drop targets.  It was designed to be extended, overriding
18659  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18660  * Up to three html elements can be associated with a DragDrop instance:
18661  * <ul>
18662  * <li>linked element: the element that is passed into the constructor.
18663  * This is the element which defines the boundaries for interaction with
18664  * other DragDrop objects.</li>
18665  * <li>handle element(s): The drag operation only occurs if the element that
18666  * was clicked matches a handle element.  By default this is the linked
18667  * element, but there are times that you will want only a portion of the
18668  * linked element to initiate the drag operation, and the setHandleElId()
18669  * method provides a way to define this.</li>
18670  * <li>drag element: this represents the element that would be moved along
18671  * with the cursor during a drag operation.  By default, this is the linked
18672  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18673  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18674  * </li>
18675  * </ul>
18676  * This class should not be instantiated until the onload event to ensure that
18677  * the associated elements are available.
18678  * The following would define a DragDrop obj that would interact with any
18679  * other DragDrop obj in the "group1" group:
18680  * <pre>
18681  *  dd = new Roo.dd.DragDrop("div1", "group1");
18682  * </pre>
18683  * Since none of the event handlers have been implemented, nothing would
18684  * actually happen if you were to run the code above.  Normally you would
18685  * override this class or one of the default implementations, but you can
18686  * also override the methods you want on an instance of the class...
18687  * <pre>
18688  *  dd.onDragDrop = function(e, id) {
18689  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18690  *  }
18691  * </pre>
18692  * @constructor
18693  * @param {String} id of the element that is linked to this instance
18694  * @param {String} sGroup the group of related DragDrop objects
18695  * @param {object} config an object containing configurable attributes
18696  *                Valid properties for DragDrop:
18697  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18698  */
18699 Roo.dd.DragDrop = function(id, sGroup, config) {
18700     if (id) {
18701         this.init(id, sGroup, config);
18702     }
18703     
18704 };
18705
18706 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18707
18708     /**
18709      * The id of the element associated with this object.  This is what we
18710      * refer to as the "linked element" because the size and position of
18711      * this element is used to determine when the drag and drop objects have
18712      * interacted.
18713      * @property id
18714      * @type String
18715      */
18716     id: null,
18717
18718     /**
18719      * Configuration attributes passed into the constructor
18720      * @property config
18721      * @type object
18722      */
18723     config: null,
18724
18725     /**
18726      * The id of the element that will be dragged.  By default this is same
18727      * as the linked element , but could be changed to another element. Ex:
18728      * Roo.dd.DDProxy
18729      * @property dragElId
18730      * @type String
18731      * @private
18732      */
18733     dragElId: null,
18734
18735     /**
18736      * the id of the element that initiates the drag operation.  By default
18737      * this is the linked element, but could be changed to be a child of this
18738      * element.  This lets us do things like only starting the drag when the
18739      * header element within the linked html element is clicked.
18740      * @property handleElId
18741      * @type String
18742      * @private
18743      */
18744     handleElId: null,
18745
18746     /**
18747      * An associative array of HTML tags that will be ignored if clicked.
18748      * @property invalidHandleTypes
18749      * @type {string: string}
18750      */
18751     invalidHandleTypes: null,
18752
18753     /**
18754      * An associative array of ids for elements that will be ignored if clicked
18755      * @property invalidHandleIds
18756      * @type {string: string}
18757      */
18758     invalidHandleIds: null,
18759
18760     /**
18761      * An indexted array of css class names for elements that will be ignored
18762      * if clicked.
18763      * @property invalidHandleClasses
18764      * @type string[]
18765      */
18766     invalidHandleClasses: null,
18767
18768     /**
18769      * The linked element's absolute X position at the time the drag was
18770      * started
18771      * @property startPageX
18772      * @type int
18773      * @private
18774      */
18775     startPageX: 0,
18776
18777     /**
18778      * The linked element's absolute X position at the time the drag was
18779      * started
18780      * @property startPageY
18781      * @type int
18782      * @private
18783      */
18784     startPageY: 0,
18785
18786     /**
18787      * The group defines a logical collection of DragDrop objects that are
18788      * related.  Instances only get events when interacting with other
18789      * DragDrop object in the same group.  This lets us define multiple
18790      * groups using a single DragDrop subclass if we want.
18791      * @property groups
18792      * @type {string: string}
18793      */
18794     groups: null,
18795
18796     /**
18797      * Individual drag/drop instances can be locked.  This will prevent
18798      * onmousedown start drag.
18799      * @property locked
18800      * @type boolean
18801      * @private
18802      */
18803     locked: false,
18804
18805     /**
18806      * Lock this instance
18807      * @method lock
18808      */
18809     lock: function() { this.locked = true; },
18810
18811     /**
18812      * Unlock this instace
18813      * @method unlock
18814      */
18815     unlock: function() { this.locked = false; },
18816
18817     /**
18818      * By default, all insances can be a drop target.  This can be disabled by
18819      * setting isTarget to false.
18820      * @method isTarget
18821      * @type boolean
18822      */
18823     isTarget: true,
18824
18825     /**
18826      * The padding configured for this drag and drop object for calculating
18827      * the drop zone intersection with this object.
18828      * @method padding
18829      * @type int[]
18830      */
18831     padding: null,
18832
18833     /**
18834      * Cached reference to the linked element
18835      * @property _domRef
18836      * @private
18837      */
18838     _domRef: null,
18839
18840     /**
18841      * Internal typeof flag
18842      * @property __ygDragDrop
18843      * @private
18844      */
18845     __ygDragDrop: true,
18846
18847     /**
18848      * Set to true when horizontal contraints are applied
18849      * @property constrainX
18850      * @type boolean
18851      * @private
18852      */
18853     constrainX: false,
18854
18855     /**
18856      * Set to true when vertical contraints are applied
18857      * @property constrainY
18858      * @type boolean
18859      * @private
18860      */
18861     constrainY: false,
18862
18863     /**
18864      * The left constraint
18865      * @property minX
18866      * @type int
18867      * @private
18868      */
18869     minX: 0,
18870
18871     /**
18872      * The right constraint
18873      * @property maxX
18874      * @type int
18875      * @private
18876      */
18877     maxX: 0,
18878
18879     /**
18880      * The up constraint
18881      * @property minY
18882      * @type int
18883      * @type int
18884      * @private
18885      */
18886     minY: 0,
18887
18888     /**
18889      * The down constraint
18890      * @property maxY
18891      * @type int
18892      * @private
18893      */
18894     maxY: 0,
18895
18896     /**
18897      * Maintain offsets when we resetconstraints.  Set to true when you want
18898      * the position of the element relative to its parent to stay the same
18899      * when the page changes
18900      *
18901      * @property maintainOffset
18902      * @type boolean
18903      */
18904     maintainOffset: false,
18905
18906     /**
18907      * Array of pixel locations the element will snap to if we specified a
18908      * horizontal graduation/interval.  This array is generated automatically
18909      * when you define a tick interval.
18910      * @property xTicks
18911      * @type int[]
18912      */
18913     xTicks: null,
18914
18915     /**
18916      * Array of pixel locations the element will snap to if we specified a
18917      * vertical graduation/interval.  This array is generated automatically
18918      * when you define a tick interval.
18919      * @property yTicks
18920      * @type int[]
18921      */
18922     yTicks: null,
18923
18924     /**
18925      * By default the drag and drop instance will only respond to the primary
18926      * button click (left button for a right-handed mouse).  Set to true to
18927      * allow drag and drop to start with any mouse click that is propogated
18928      * by the browser
18929      * @property primaryButtonOnly
18930      * @type boolean
18931      */
18932     primaryButtonOnly: true,
18933
18934     /**
18935      * The availabe property is false until the linked dom element is accessible.
18936      * @property available
18937      * @type boolean
18938      */
18939     available: false,
18940
18941     /**
18942      * By default, drags can only be initiated if the mousedown occurs in the
18943      * region the linked element is.  This is done in part to work around a
18944      * bug in some browsers that mis-report the mousedown if the previous
18945      * mouseup happened outside of the window.  This property is set to true
18946      * if outer handles are defined.
18947      *
18948      * @property hasOuterHandles
18949      * @type boolean
18950      * @default false
18951      */
18952     hasOuterHandles: false,
18953
18954     /**
18955      * Code that executes immediately before the startDrag event
18956      * @method b4StartDrag
18957      * @private
18958      */
18959     b4StartDrag: function(x, y) { },
18960
18961     /**
18962      * Abstract method called after a drag/drop object is clicked
18963      * and the drag or mousedown time thresholds have beeen met.
18964      * @method startDrag
18965      * @param {int} X click location
18966      * @param {int} Y click location
18967      */
18968     startDrag: function(x, y) { /* override this */ },
18969
18970     /**
18971      * Code that executes immediately before the onDrag event
18972      * @method b4Drag
18973      * @private
18974      */
18975     b4Drag: function(e) { },
18976
18977     /**
18978      * Abstract method called during the onMouseMove event while dragging an
18979      * object.
18980      * @method onDrag
18981      * @param {Event} e the mousemove event
18982      */
18983     onDrag: function(e) { /* override this */ },
18984
18985     /**
18986      * Abstract method called when this element fist begins hovering over
18987      * another DragDrop obj
18988      * @method onDragEnter
18989      * @param {Event} e the mousemove event
18990      * @param {String|DragDrop[]} id In POINT mode, the element
18991      * id this is hovering over.  In INTERSECT mode, an array of one or more
18992      * dragdrop items being hovered over.
18993      */
18994     onDragEnter: function(e, id) { /* override this */ },
18995
18996     /**
18997      * Code that executes immediately before the onDragOver event
18998      * @method b4DragOver
18999      * @private
19000      */
19001     b4DragOver: function(e) { },
19002
19003     /**
19004      * Abstract method called when this element is hovering over another
19005      * DragDrop obj
19006      * @method onDragOver
19007      * @param {Event} e the mousemove event
19008      * @param {String|DragDrop[]} id In POINT mode, the element
19009      * id this is hovering over.  In INTERSECT mode, an array of dd items
19010      * being hovered over.
19011      */
19012     onDragOver: function(e, id) { /* override this */ },
19013
19014     /**
19015      * Code that executes immediately before the onDragOut event
19016      * @method b4DragOut
19017      * @private
19018      */
19019     b4DragOut: function(e) { },
19020
19021     /**
19022      * Abstract method called when we are no longer hovering over an element
19023      * @method onDragOut
19024      * @param {Event} e the mousemove event
19025      * @param {String|DragDrop[]} id In POINT mode, the element
19026      * id this was hovering over.  In INTERSECT mode, an array of dd items
19027      * that the mouse is no longer over.
19028      */
19029     onDragOut: function(e, id) { /* override this */ },
19030
19031     /**
19032      * Code that executes immediately before the onDragDrop event
19033      * @method b4DragDrop
19034      * @private
19035      */
19036     b4DragDrop: function(e) { },
19037
19038     /**
19039      * Abstract method called when this item is dropped on another DragDrop
19040      * obj
19041      * @method onDragDrop
19042      * @param {Event} e the mouseup event
19043      * @param {String|DragDrop[]} id In POINT mode, the element
19044      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19045      * was dropped on.
19046      */
19047     onDragDrop: function(e, id) { /* override this */ },
19048
19049     /**
19050      * Abstract method called when this item is dropped on an area with no
19051      * drop target
19052      * @method onInvalidDrop
19053      * @param {Event} e the mouseup event
19054      */
19055     onInvalidDrop: function(e) { /* override this */ },
19056
19057     /**
19058      * Code that executes immediately before the endDrag event
19059      * @method b4EndDrag
19060      * @private
19061      */
19062     b4EndDrag: function(e) { },
19063
19064     /**
19065      * Fired when we are done dragging the object
19066      * @method endDrag
19067      * @param {Event} e the mouseup event
19068      */
19069     endDrag: function(e) { /* override this */ },
19070
19071     /**
19072      * Code executed immediately before the onMouseDown event
19073      * @method b4MouseDown
19074      * @param {Event} e the mousedown event
19075      * @private
19076      */
19077     b4MouseDown: function(e) {  },
19078
19079     /**
19080      * Event handler that fires when a drag/drop obj gets a mousedown
19081      * @method onMouseDown
19082      * @param {Event} e the mousedown event
19083      */
19084     onMouseDown: function(e) { /* override this */ },
19085
19086     /**
19087      * Event handler that fires when a drag/drop obj gets a mouseup
19088      * @method onMouseUp
19089      * @param {Event} e the mouseup event
19090      */
19091     onMouseUp: function(e) { /* override this */ },
19092
19093     /**
19094      * Override the onAvailable method to do what is needed after the initial
19095      * position was determined.
19096      * @method onAvailable
19097      */
19098     onAvailable: function () {
19099     },
19100
19101     /*
19102      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19103      * @type Object
19104      */
19105     defaultPadding : {left:0, right:0, top:0, bottom:0},
19106
19107     /*
19108      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19109  *
19110  * Usage:
19111  <pre><code>
19112  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19113                 { dragElId: "existingProxyDiv" });
19114  dd.startDrag = function(){
19115      this.constrainTo("parent-id");
19116  };
19117  </code></pre>
19118  * Or you can initalize it using the {@link Roo.Element} object:
19119  <pre><code>
19120  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19121      startDrag : function(){
19122          this.constrainTo("parent-id");
19123      }
19124  });
19125  </code></pre>
19126      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19127      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19128      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19129      * an object containing the sides to pad. For example: {right:10, bottom:10}
19130      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19131      */
19132     constrainTo : function(constrainTo, pad, inContent){
19133         if(typeof pad == "number"){
19134             pad = {left: pad, right:pad, top:pad, bottom:pad};
19135         }
19136         pad = pad || this.defaultPadding;
19137         var b = Roo.get(this.getEl()).getBox();
19138         var ce = Roo.get(constrainTo);
19139         var s = ce.getScroll();
19140         var c, cd = ce.dom;
19141         if(cd == document.body){
19142             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19143         }else{
19144             xy = ce.getXY();
19145             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19146         }
19147
19148
19149         var topSpace = b.y - c.y;
19150         var leftSpace = b.x - c.x;
19151
19152         this.resetConstraints();
19153         this.setXConstraint(leftSpace - (pad.left||0), // left
19154                 c.width - leftSpace - b.width - (pad.right||0) //right
19155         );
19156         this.setYConstraint(topSpace - (pad.top||0), //top
19157                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19158         );
19159     },
19160
19161     /**
19162      * Returns a reference to the linked element
19163      * @method getEl
19164      * @return {HTMLElement} the html element
19165      */
19166     getEl: function() {
19167         if (!this._domRef) {
19168             this._domRef = Roo.getDom(this.id);
19169         }
19170
19171         return this._domRef;
19172     },
19173
19174     /**
19175      * Returns a reference to the actual element to drag.  By default this is
19176      * the same as the html element, but it can be assigned to another
19177      * element. An example of this can be found in Roo.dd.DDProxy
19178      * @method getDragEl
19179      * @return {HTMLElement} the html element
19180      */
19181     getDragEl: function() {
19182         return Roo.getDom(this.dragElId);
19183     },
19184
19185     /**
19186      * Sets up the DragDrop object.  Must be called in the constructor of any
19187      * Roo.dd.DragDrop subclass
19188      * @method init
19189      * @param id the id of the linked element
19190      * @param {String} sGroup the group of related items
19191      * @param {object} config configuration attributes
19192      */
19193     init: function(id, sGroup, config) {
19194         this.initTarget(id, sGroup, config);
19195         if (!Roo.isTouch) {
19196             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19197         }
19198         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19199         // Event.on(this.id, "selectstart", Event.preventDefault);
19200     },
19201
19202     /**
19203      * Initializes Targeting functionality only... the object does not
19204      * get a mousedown handler.
19205      * @method initTarget
19206      * @param id the id of the linked element
19207      * @param {String} sGroup the group of related items
19208      * @param {object} config configuration attributes
19209      */
19210     initTarget: function(id, sGroup, config) {
19211
19212         // configuration attributes
19213         this.config = config || {};
19214
19215         // create a local reference to the drag and drop manager
19216         this.DDM = Roo.dd.DDM;
19217         // initialize the groups array
19218         this.groups = {};
19219
19220         // assume that we have an element reference instead of an id if the
19221         // parameter is not a string
19222         if (typeof id !== "string") {
19223             id = Roo.id(id);
19224         }
19225
19226         // set the id
19227         this.id = id;
19228
19229         // add to an interaction group
19230         this.addToGroup((sGroup) ? sGroup : "default");
19231
19232         // We don't want to register this as the handle with the manager
19233         // so we just set the id rather than calling the setter.
19234         this.handleElId = id;
19235
19236         // the linked element is the element that gets dragged by default
19237         this.setDragElId(id);
19238
19239         // by default, clicked anchors will not start drag operations.
19240         this.invalidHandleTypes = { A: "A" };
19241         this.invalidHandleIds = {};
19242         this.invalidHandleClasses = [];
19243
19244         this.applyConfig();
19245
19246         this.handleOnAvailable();
19247     },
19248
19249     /**
19250      * Applies the configuration parameters that were passed into the constructor.
19251      * This is supposed to happen at each level through the inheritance chain.  So
19252      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19253      * DragDrop in order to get all of the parameters that are available in
19254      * each object.
19255      * @method applyConfig
19256      */
19257     applyConfig: function() {
19258
19259         // configurable properties:
19260         //    padding, isTarget, maintainOffset, primaryButtonOnly
19261         this.padding           = this.config.padding || [0, 0, 0, 0];
19262         this.isTarget          = (this.config.isTarget !== false);
19263         this.maintainOffset    = (this.config.maintainOffset);
19264         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19265
19266     },
19267
19268     /**
19269      * Executed when the linked element is available
19270      * @method handleOnAvailable
19271      * @private
19272      */
19273     handleOnAvailable: function() {
19274         this.available = true;
19275         this.resetConstraints();
19276         this.onAvailable();
19277     },
19278
19279      /**
19280      * Configures the padding for the target zone in px.  Effectively expands
19281      * (or reduces) the virtual object size for targeting calculations.
19282      * Supports css-style shorthand; if only one parameter is passed, all sides
19283      * will have that padding, and if only two are passed, the top and bottom
19284      * will have the first param, the left and right the second.
19285      * @method setPadding
19286      * @param {int} iTop    Top pad
19287      * @param {int} iRight  Right pad
19288      * @param {int} iBot    Bot pad
19289      * @param {int} iLeft   Left pad
19290      */
19291     setPadding: function(iTop, iRight, iBot, iLeft) {
19292         // this.padding = [iLeft, iRight, iTop, iBot];
19293         if (!iRight && 0 !== iRight) {
19294             this.padding = [iTop, iTop, iTop, iTop];
19295         } else if (!iBot && 0 !== iBot) {
19296             this.padding = [iTop, iRight, iTop, iRight];
19297         } else {
19298             this.padding = [iTop, iRight, iBot, iLeft];
19299         }
19300     },
19301
19302     /**
19303      * Stores the initial placement of the linked element.
19304      * @method setInitialPosition
19305      * @param {int} diffX   the X offset, default 0
19306      * @param {int} diffY   the Y offset, default 0
19307      */
19308     setInitPosition: function(diffX, diffY) {
19309         var el = this.getEl();
19310
19311         if (!this.DDM.verifyEl(el)) {
19312             return;
19313         }
19314
19315         var dx = diffX || 0;
19316         var dy = diffY || 0;
19317
19318         var p = Dom.getXY( el );
19319
19320         this.initPageX = p[0] - dx;
19321         this.initPageY = p[1] - dy;
19322
19323         this.lastPageX = p[0];
19324         this.lastPageY = p[1];
19325
19326
19327         this.setStartPosition(p);
19328     },
19329
19330     /**
19331      * Sets the start position of the element.  This is set when the obj
19332      * is initialized, the reset when a drag is started.
19333      * @method setStartPosition
19334      * @param pos current position (from previous lookup)
19335      * @private
19336      */
19337     setStartPosition: function(pos) {
19338         var p = pos || Dom.getXY( this.getEl() );
19339         this.deltaSetXY = null;
19340
19341         this.startPageX = p[0];
19342         this.startPageY = p[1];
19343     },
19344
19345     /**
19346      * Add this instance to a group of related drag/drop objects.  All
19347      * instances belong to at least one group, and can belong to as many
19348      * groups as needed.
19349      * @method addToGroup
19350      * @param sGroup {string} the name of the group
19351      */
19352     addToGroup: function(sGroup) {
19353         this.groups[sGroup] = true;
19354         this.DDM.regDragDrop(this, sGroup);
19355     },
19356
19357     /**
19358      * Remove's this instance from the supplied interaction group
19359      * @method removeFromGroup
19360      * @param {string}  sGroup  The group to drop
19361      */
19362     removeFromGroup: function(sGroup) {
19363         if (this.groups[sGroup]) {
19364             delete this.groups[sGroup];
19365         }
19366
19367         this.DDM.removeDDFromGroup(this, sGroup);
19368     },
19369
19370     /**
19371      * Allows you to specify that an element other than the linked element
19372      * will be moved with the cursor during a drag
19373      * @method setDragElId
19374      * @param id {string} the id of the element that will be used to initiate the drag
19375      */
19376     setDragElId: function(id) {
19377         this.dragElId = id;
19378     },
19379
19380     /**
19381      * Allows you to specify a child of the linked element that should be
19382      * used to initiate the drag operation.  An example of this would be if
19383      * you have a content div with text and links.  Clicking anywhere in the
19384      * content area would normally start the drag operation.  Use this method
19385      * to specify that an element inside of the content div is the element
19386      * that starts the drag operation.
19387      * @method setHandleElId
19388      * @param id {string} the id of the element that will be used to
19389      * initiate the drag.
19390      */
19391     setHandleElId: function(id) {
19392         if (typeof id !== "string") {
19393             id = Roo.id(id);
19394         }
19395         this.handleElId = id;
19396         this.DDM.regHandle(this.id, id);
19397     },
19398
19399     /**
19400      * Allows you to set an element outside of the linked element as a drag
19401      * handle
19402      * @method setOuterHandleElId
19403      * @param id the id of the element that will be used to initiate the drag
19404      */
19405     setOuterHandleElId: function(id) {
19406         if (typeof id !== "string") {
19407             id = Roo.id(id);
19408         }
19409         Event.on(id, "mousedown",
19410                 this.handleMouseDown, this);
19411         this.setHandleElId(id);
19412
19413         this.hasOuterHandles = true;
19414     },
19415
19416     /**
19417      * Remove all drag and drop hooks for this element
19418      * @method unreg
19419      */
19420     unreg: function() {
19421         Event.un(this.id, "mousedown",
19422                 this.handleMouseDown);
19423         Event.un(this.id, "touchstart",
19424                 this.handleMouseDown);
19425         this._domRef = null;
19426         this.DDM._remove(this);
19427     },
19428
19429     destroy : function(){
19430         this.unreg();
19431     },
19432
19433     /**
19434      * Returns true if this instance is locked, or the drag drop mgr is locked
19435      * (meaning that all drag/drop is disabled on the page.)
19436      * @method isLocked
19437      * @return {boolean} true if this obj or all drag/drop is locked, else
19438      * false
19439      */
19440     isLocked: function() {
19441         return (this.DDM.isLocked() || this.locked);
19442     },
19443
19444     /**
19445      * Fired when this object is clicked
19446      * @method handleMouseDown
19447      * @param {Event} e
19448      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19449      * @private
19450      */
19451     handleMouseDown: function(e, oDD){
19452      
19453         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19454             //Roo.log('not touch/ button !=0');
19455             return;
19456         }
19457         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19458             return; // double touch..
19459         }
19460         
19461
19462         if (this.isLocked()) {
19463             //Roo.log('locked');
19464             return;
19465         }
19466
19467         this.DDM.refreshCache(this.groups);
19468 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19469         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19470         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19471             //Roo.log('no outer handes or not over target');
19472                 // do nothing.
19473         } else {
19474 //            Roo.log('check validator');
19475             if (this.clickValidator(e)) {
19476 //                Roo.log('validate success');
19477                 // set the initial element position
19478                 this.setStartPosition();
19479
19480
19481                 this.b4MouseDown(e);
19482                 this.onMouseDown(e);
19483
19484                 this.DDM.handleMouseDown(e, this);
19485
19486                 this.DDM.stopEvent(e);
19487             } else {
19488
19489
19490             }
19491         }
19492     },
19493
19494     clickValidator: function(e) {
19495         var target = e.getTarget();
19496         return ( this.isValidHandleChild(target) &&
19497                     (this.id == this.handleElId ||
19498                         this.DDM.handleWasClicked(target, this.id)) );
19499     },
19500
19501     /**
19502      * Allows you to specify a tag name that should not start a drag operation
19503      * when clicked.  This is designed to facilitate embedding links within a
19504      * drag handle that do something other than start the drag.
19505      * @method addInvalidHandleType
19506      * @param {string} tagName the type of element to exclude
19507      */
19508     addInvalidHandleType: function(tagName) {
19509         var type = tagName.toUpperCase();
19510         this.invalidHandleTypes[type] = type;
19511     },
19512
19513     /**
19514      * Lets you to specify an element id for a child of a drag handle
19515      * that should not initiate a drag
19516      * @method addInvalidHandleId
19517      * @param {string} id the element id of the element you wish to ignore
19518      */
19519     addInvalidHandleId: function(id) {
19520         if (typeof id !== "string") {
19521             id = Roo.id(id);
19522         }
19523         this.invalidHandleIds[id] = id;
19524     },
19525
19526     /**
19527      * Lets you specify a css class of elements that will not initiate a drag
19528      * @method addInvalidHandleClass
19529      * @param {string} cssClass the class of the elements you wish to ignore
19530      */
19531     addInvalidHandleClass: function(cssClass) {
19532         this.invalidHandleClasses.push(cssClass);
19533     },
19534
19535     /**
19536      * Unsets an excluded tag name set by addInvalidHandleType
19537      * @method removeInvalidHandleType
19538      * @param {string} tagName the type of element to unexclude
19539      */
19540     removeInvalidHandleType: function(tagName) {
19541         var type = tagName.toUpperCase();
19542         // this.invalidHandleTypes[type] = null;
19543         delete this.invalidHandleTypes[type];
19544     },
19545
19546     /**
19547      * Unsets an invalid handle id
19548      * @method removeInvalidHandleId
19549      * @param {string} id the id of the element to re-enable
19550      */
19551     removeInvalidHandleId: function(id) {
19552         if (typeof id !== "string") {
19553             id = Roo.id(id);
19554         }
19555         delete this.invalidHandleIds[id];
19556     },
19557
19558     /**
19559      * Unsets an invalid css class
19560      * @method removeInvalidHandleClass
19561      * @param {string} cssClass the class of the element(s) you wish to
19562      * re-enable
19563      */
19564     removeInvalidHandleClass: function(cssClass) {
19565         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19566             if (this.invalidHandleClasses[i] == cssClass) {
19567                 delete this.invalidHandleClasses[i];
19568             }
19569         }
19570     },
19571
19572     /**
19573      * Checks the tag exclusion list to see if this click should be ignored
19574      * @method isValidHandleChild
19575      * @param {HTMLElement} node the HTMLElement to evaluate
19576      * @return {boolean} true if this is a valid tag type, false if not
19577      */
19578     isValidHandleChild: function(node) {
19579
19580         var valid = true;
19581         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19582         var nodeName;
19583         try {
19584             nodeName = node.nodeName.toUpperCase();
19585         } catch(e) {
19586             nodeName = node.nodeName;
19587         }
19588         valid = valid && !this.invalidHandleTypes[nodeName];
19589         valid = valid && !this.invalidHandleIds[node.id];
19590
19591         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19592             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19593         }
19594
19595
19596         return valid;
19597
19598     },
19599
19600     /**
19601      * Create the array of horizontal tick marks if an interval was specified
19602      * in setXConstraint().
19603      * @method setXTicks
19604      * @private
19605      */
19606     setXTicks: function(iStartX, iTickSize) {
19607         this.xTicks = [];
19608         this.xTickSize = iTickSize;
19609
19610         var tickMap = {};
19611
19612         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19613             if (!tickMap[i]) {
19614                 this.xTicks[this.xTicks.length] = i;
19615                 tickMap[i] = true;
19616             }
19617         }
19618
19619         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19620             if (!tickMap[i]) {
19621                 this.xTicks[this.xTicks.length] = i;
19622                 tickMap[i] = true;
19623             }
19624         }
19625
19626         this.xTicks.sort(this.DDM.numericSort) ;
19627     },
19628
19629     /**
19630      * Create the array of vertical tick marks if an interval was specified in
19631      * setYConstraint().
19632      * @method setYTicks
19633      * @private
19634      */
19635     setYTicks: function(iStartY, iTickSize) {
19636         this.yTicks = [];
19637         this.yTickSize = iTickSize;
19638
19639         var tickMap = {};
19640
19641         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19642             if (!tickMap[i]) {
19643                 this.yTicks[this.yTicks.length] = i;
19644                 tickMap[i] = true;
19645             }
19646         }
19647
19648         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19649             if (!tickMap[i]) {
19650                 this.yTicks[this.yTicks.length] = i;
19651                 tickMap[i] = true;
19652             }
19653         }
19654
19655         this.yTicks.sort(this.DDM.numericSort) ;
19656     },
19657
19658     /**
19659      * By default, the element can be dragged any place on the screen.  Use
19660      * this method to limit the horizontal travel of the element.  Pass in
19661      * 0,0 for the parameters if you want to lock the drag to the y axis.
19662      * @method setXConstraint
19663      * @param {int} iLeft the number of pixels the element can move to the left
19664      * @param {int} iRight the number of pixels the element can move to the
19665      * right
19666      * @param {int} iTickSize optional parameter for specifying that the
19667      * element
19668      * should move iTickSize pixels at a time.
19669      */
19670     setXConstraint: function(iLeft, iRight, iTickSize) {
19671         this.leftConstraint = iLeft;
19672         this.rightConstraint = iRight;
19673
19674         this.minX = this.initPageX - iLeft;
19675         this.maxX = this.initPageX + iRight;
19676         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19677
19678         this.constrainX = true;
19679     },
19680
19681     /**
19682      * Clears any constraints applied to this instance.  Also clears ticks
19683      * since they can't exist independent of a constraint at this time.
19684      * @method clearConstraints
19685      */
19686     clearConstraints: function() {
19687         this.constrainX = false;
19688         this.constrainY = false;
19689         this.clearTicks();
19690     },
19691
19692     /**
19693      * Clears any tick interval defined for this instance
19694      * @method clearTicks
19695      */
19696     clearTicks: function() {
19697         this.xTicks = null;
19698         this.yTicks = null;
19699         this.xTickSize = 0;
19700         this.yTickSize = 0;
19701     },
19702
19703     /**
19704      * By default, the element can be dragged any place on the screen.  Set
19705      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19706      * parameters if you want to lock the drag to the x axis.
19707      * @method setYConstraint
19708      * @param {int} iUp the number of pixels the element can move up
19709      * @param {int} iDown the number of pixels the element can move down
19710      * @param {int} iTickSize optional parameter for specifying that the
19711      * element should move iTickSize pixels at a time.
19712      */
19713     setYConstraint: function(iUp, iDown, iTickSize) {
19714         this.topConstraint = iUp;
19715         this.bottomConstraint = iDown;
19716
19717         this.minY = this.initPageY - iUp;
19718         this.maxY = this.initPageY + iDown;
19719         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19720
19721         this.constrainY = true;
19722
19723     },
19724
19725     /**
19726      * resetConstraints must be called if you manually reposition a dd element.
19727      * @method resetConstraints
19728      * @param {boolean} maintainOffset
19729      */
19730     resetConstraints: function() {
19731
19732
19733         // Maintain offsets if necessary
19734         if (this.initPageX || this.initPageX === 0) {
19735             // figure out how much this thing has moved
19736             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19737             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19738
19739             this.setInitPosition(dx, dy);
19740
19741         // This is the first time we have detected the element's position
19742         } else {
19743             this.setInitPosition();
19744         }
19745
19746         if (this.constrainX) {
19747             this.setXConstraint( this.leftConstraint,
19748                                  this.rightConstraint,
19749                                  this.xTickSize        );
19750         }
19751
19752         if (this.constrainY) {
19753             this.setYConstraint( this.topConstraint,
19754                                  this.bottomConstraint,
19755                                  this.yTickSize         );
19756         }
19757     },
19758
19759     /**
19760      * Normally the drag element is moved pixel by pixel, but we can specify
19761      * that it move a number of pixels at a time.  This method resolves the
19762      * location when we have it set up like this.
19763      * @method getTick
19764      * @param {int} val where we want to place the object
19765      * @param {int[]} tickArray sorted array of valid points
19766      * @return {int} the closest tick
19767      * @private
19768      */
19769     getTick: function(val, tickArray) {
19770
19771         if (!tickArray) {
19772             // If tick interval is not defined, it is effectively 1 pixel,
19773             // so we return the value passed to us.
19774             return val;
19775         } else if (tickArray[0] >= val) {
19776             // The value is lower than the first tick, so we return the first
19777             // tick.
19778             return tickArray[0];
19779         } else {
19780             for (var i=0, len=tickArray.length; i<len; ++i) {
19781                 var next = i + 1;
19782                 if (tickArray[next] && tickArray[next] >= val) {
19783                     var diff1 = val - tickArray[i];
19784                     var diff2 = tickArray[next] - val;
19785                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19786                 }
19787             }
19788
19789             // The value is larger than the last tick, so we return the last
19790             // tick.
19791             return tickArray[tickArray.length - 1];
19792         }
19793     },
19794
19795     /**
19796      * toString method
19797      * @method toString
19798      * @return {string} string representation of the dd obj
19799      */
19800     toString: function() {
19801         return ("DragDrop " + this.id);
19802     }
19803
19804 });
19805
19806 })();
19807 /*
19808  * Based on:
19809  * Ext JS Library 1.1.1
19810  * Copyright(c) 2006-2007, Ext JS, LLC.
19811  *
19812  * Originally Released Under LGPL - original licence link has changed is not relivant.
19813  *
19814  * Fork - LGPL
19815  * <script type="text/javascript">
19816  */
19817
19818
19819 /**
19820  * The drag and drop utility provides a framework for building drag and drop
19821  * applications.  In addition to enabling drag and drop for specific elements,
19822  * the drag and drop elements are tracked by the manager class, and the
19823  * interactions between the various elements are tracked during the drag and
19824  * the implementing code is notified about these important moments.
19825  */
19826
19827 // Only load the library once.  Rewriting the manager class would orphan
19828 // existing drag and drop instances.
19829 if (!Roo.dd.DragDropMgr) {
19830
19831 /**
19832  * @class Roo.dd.DragDropMgr
19833  * DragDropMgr is a singleton that tracks the element interaction for
19834  * all DragDrop items in the window.  Generally, you will not call
19835  * this class directly, but it does have helper methods that could
19836  * be useful in your DragDrop implementations.
19837  * @singleton
19838  */
19839 Roo.dd.DragDropMgr = function() {
19840
19841     var Event = Roo.EventManager;
19842
19843     return {
19844
19845         /**
19846          * Two dimensional Array of registered DragDrop objects.  The first
19847          * dimension is the DragDrop item group, the second the DragDrop
19848          * object.
19849          * @property ids
19850          * @type {string: string}
19851          * @private
19852          * @static
19853          */
19854         ids: {},
19855
19856         /**
19857          * Array of element ids defined as drag handles.  Used to determine
19858          * if the element that generated the mousedown event is actually the
19859          * handle and not the html element itself.
19860          * @property handleIds
19861          * @type {string: string}
19862          * @private
19863          * @static
19864          */
19865         handleIds: {},
19866
19867         /**
19868          * the DragDrop object that is currently being dragged
19869          * @property dragCurrent
19870          * @type DragDrop
19871          * @private
19872          * @static
19873          **/
19874         dragCurrent: null,
19875
19876         /**
19877          * the DragDrop object(s) that are being hovered over
19878          * @property dragOvers
19879          * @type Array
19880          * @private
19881          * @static
19882          */
19883         dragOvers: {},
19884
19885         /**
19886          * the X distance between the cursor and the object being dragged
19887          * @property deltaX
19888          * @type int
19889          * @private
19890          * @static
19891          */
19892         deltaX: 0,
19893
19894         /**
19895          * the Y distance between the cursor and the object being dragged
19896          * @property deltaY
19897          * @type int
19898          * @private
19899          * @static
19900          */
19901         deltaY: 0,
19902
19903         /**
19904          * Flag to determine if we should prevent the default behavior of the
19905          * events we define. By default this is true, but this can be set to
19906          * false if you need the default behavior (not recommended)
19907          * @property preventDefault
19908          * @type boolean
19909          * @static
19910          */
19911         preventDefault: true,
19912
19913         /**
19914          * Flag to determine if we should stop the propagation of the events
19915          * we generate. This is true by default but you may want to set it to
19916          * false if the html element contains other features that require the
19917          * mouse click.
19918          * @property stopPropagation
19919          * @type boolean
19920          * @static
19921          */
19922         stopPropagation: true,
19923
19924         /**
19925          * Internal flag that is set to true when drag and drop has been
19926          * intialized
19927          * @property initialized
19928          * @private
19929          * @static
19930          */
19931         initalized: false,
19932
19933         /**
19934          * All drag and drop can be disabled.
19935          * @property locked
19936          * @private
19937          * @static
19938          */
19939         locked: false,
19940
19941         /**
19942          * Called the first time an element is registered.
19943          * @method init
19944          * @private
19945          * @static
19946          */
19947         init: function() {
19948             this.initialized = true;
19949         },
19950
19951         /**
19952          * In point mode, drag and drop interaction is defined by the
19953          * location of the cursor during the drag/drop
19954          * @property POINT
19955          * @type int
19956          * @static
19957          */
19958         POINT: 0,
19959
19960         /**
19961          * In intersect mode, drag and drop interactio nis defined by the
19962          * overlap of two or more drag and drop objects.
19963          * @property INTERSECT
19964          * @type int
19965          * @static
19966          */
19967         INTERSECT: 1,
19968
19969         /**
19970          * The current drag and drop mode.  Default: POINT
19971          * @property mode
19972          * @type int
19973          * @static
19974          */
19975         mode: 0,
19976
19977         /**
19978          * Runs method on all drag and drop objects
19979          * @method _execOnAll
19980          * @private
19981          * @static
19982          */
19983         _execOnAll: function(sMethod, args) {
19984             for (var i in this.ids) {
19985                 for (var j in this.ids[i]) {
19986                     var oDD = this.ids[i][j];
19987                     if (! this.isTypeOfDD(oDD)) {
19988                         continue;
19989                     }
19990                     oDD[sMethod].apply(oDD, args);
19991                 }
19992             }
19993         },
19994
19995         /**
19996          * Drag and drop initialization.  Sets up the global event handlers
19997          * @method _onLoad
19998          * @private
19999          * @static
20000          */
20001         _onLoad: function() {
20002
20003             this.init();
20004
20005             if (!Roo.isTouch) {
20006                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20007                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20008             }
20009             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20010             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20011             
20012             Event.on(window,   "unload",    this._onUnload, this, true);
20013             Event.on(window,   "resize",    this._onResize, this, true);
20014             // Event.on(window,   "mouseout",    this._test);
20015
20016         },
20017
20018         /**
20019          * Reset constraints on all drag and drop objs
20020          * @method _onResize
20021          * @private
20022          * @static
20023          */
20024         _onResize: function(e) {
20025             this._execOnAll("resetConstraints", []);
20026         },
20027
20028         /**
20029          * Lock all drag and drop functionality
20030          * @method lock
20031          * @static
20032          */
20033         lock: function() { this.locked = true; },
20034
20035         /**
20036          * Unlock all drag and drop functionality
20037          * @method unlock
20038          * @static
20039          */
20040         unlock: function() { this.locked = false; },
20041
20042         /**
20043          * Is drag and drop locked?
20044          * @method isLocked
20045          * @return {boolean} True if drag and drop is locked, false otherwise.
20046          * @static
20047          */
20048         isLocked: function() { return this.locked; },
20049
20050         /**
20051          * Location cache that is set for all drag drop objects when a drag is
20052          * initiated, cleared when the drag is finished.
20053          * @property locationCache
20054          * @private
20055          * @static
20056          */
20057         locationCache: {},
20058
20059         /**
20060          * Set useCache to false if you want to force object the lookup of each
20061          * drag and drop linked element constantly during a drag.
20062          * @property useCache
20063          * @type boolean
20064          * @static
20065          */
20066         useCache: true,
20067
20068         /**
20069          * The number of pixels that the mouse needs to move after the
20070          * mousedown before the drag is initiated.  Default=3;
20071          * @property clickPixelThresh
20072          * @type int
20073          * @static
20074          */
20075         clickPixelThresh: 3,
20076
20077         /**
20078          * The number of milliseconds after the mousedown event to initiate the
20079          * drag if we don't get a mouseup event. Default=1000
20080          * @property clickTimeThresh
20081          * @type int
20082          * @static
20083          */
20084         clickTimeThresh: 350,
20085
20086         /**
20087          * Flag that indicates that either the drag pixel threshold or the
20088          * mousdown time threshold has been met
20089          * @property dragThreshMet
20090          * @type boolean
20091          * @private
20092          * @static
20093          */
20094         dragThreshMet: false,
20095
20096         /**
20097          * Timeout used for the click time threshold
20098          * @property clickTimeout
20099          * @type Object
20100          * @private
20101          * @static
20102          */
20103         clickTimeout: null,
20104
20105         /**
20106          * The X position of the mousedown event stored for later use when a
20107          * drag threshold is met.
20108          * @property startX
20109          * @type int
20110          * @private
20111          * @static
20112          */
20113         startX: 0,
20114
20115         /**
20116          * The Y position of the mousedown event stored for later use when a
20117          * drag threshold is met.
20118          * @property startY
20119          * @type int
20120          * @private
20121          * @static
20122          */
20123         startY: 0,
20124
20125         /**
20126          * Each DragDrop instance must be registered with the DragDropMgr.
20127          * This is executed in DragDrop.init()
20128          * @method regDragDrop
20129          * @param {DragDrop} oDD the DragDrop object to register
20130          * @param {String} sGroup the name of the group this element belongs to
20131          * @static
20132          */
20133         regDragDrop: function(oDD, sGroup) {
20134             if (!this.initialized) { this.init(); }
20135
20136             if (!this.ids[sGroup]) {
20137                 this.ids[sGroup] = {};
20138             }
20139             this.ids[sGroup][oDD.id] = oDD;
20140         },
20141
20142         /**
20143          * Removes the supplied dd instance from the supplied group. Executed
20144          * by DragDrop.removeFromGroup, so don't call this function directly.
20145          * @method removeDDFromGroup
20146          * @private
20147          * @static
20148          */
20149         removeDDFromGroup: function(oDD, sGroup) {
20150             if (!this.ids[sGroup]) {
20151                 this.ids[sGroup] = {};
20152             }
20153
20154             var obj = this.ids[sGroup];
20155             if (obj && obj[oDD.id]) {
20156                 delete obj[oDD.id];
20157             }
20158         },
20159
20160         /**
20161          * Unregisters a drag and drop item.  This is executed in
20162          * DragDrop.unreg, use that method instead of calling this directly.
20163          * @method _remove
20164          * @private
20165          * @static
20166          */
20167         _remove: function(oDD) {
20168             for (var g in oDD.groups) {
20169                 if (g && this.ids[g][oDD.id]) {
20170                     delete this.ids[g][oDD.id];
20171                 }
20172             }
20173             delete this.handleIds[oDD.id];
20174         },
20175
20176         /**
20177          * Each DragDrop handle element must be registered.  This is done
20178          * automatically when executing DragDrop.setHandleElId()
20179          * @method regHandle
20180          * @param {String} sDDId the DragDrop id this element is a handle for
20181          * @param {String} sHandleId the id of the element that is the drag
20182          * handle
20183          * @static
20184          */
20185         regHandle: function(sDDId, sHandleId) {
20186             if (!this.handleIds[sDDId]) {
20187                 this.handleIds[sDDId] = {};
20188             }
20189             this.handleIds[sDDId][sHandleId] = sHandleId;
20190         },
20191
20192         /**
20193          * Utility function to determine if a given element has been
20194          * registered as a drag drop item.
20195          * @method isDragDrop
20196          * @param {String} id the element id to check
20197          * @return {boolean} true if this element is a DragDrop item,
20198          * false otherwise
20199          * @static
20200          */
20201         isDragDrop: function(id) {
20202             return ( this.getDDById(id) ) ? true : false;
20203         },
20204
20205         /**
20206          * Returns the drag and drop instances that are in all groups the
20207          * passed in instance belongs to.
20208          * @method getRelated
20209          * @param {DragDrop} p_oDD the obj to get related data for
20210          * @param {boolean} bTargetsOnly if true, only return targetable objs
20211          * @return {DragDrop[]} the related instances
20212          * @static
20213          */
20214         getRelated: function(p_oDD, bTargetsOnly) {
20215             var oDDs = [];
20216             for (var i in p_oDD.groups) {
20217                 for (j in this.ids[i]) {
20218                     var dd = this.ids[i][j];
20219                     if (! this.isTypeOfDD(dd)) {
20220                         continue;
20221                     }
20222                     if (!bTargetsOnly || dd.isTarget) {
20223                         oDDs[oDDs.length] = dd;
20224                     }
20225                 }
20226             }
20227
20228             return oDDs;
20229         },
20230
20231         /**
20232          * Returns true if the specified dd target is a legal target for
20233          * the specifice drag obj
20234          * @method isLegalTarget
20235          * @param {DragDrop} the drag obj
20236          * @param {DragDrop} the target
20237          * @return {boolean} true if the target is a legal target for the
20238          * dd obj
20239          * @static
20240          */
20241         isLegalTarget: function (oDD, oTargetDD) {
20242             var targets = this.getRelated(oDD, true);
20243             for (var i=0, len=targets.length;i<len;++i) {
20244                 if (targets[i].id == oTargetDD.id) {
20245                     return true;
20246                 }
20247             }
20248
20249             return false;
20250         },
20251
20252         /**
20253          * My goal is to be able to transparently determine if an object is
20254          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20255          * returns "object", oDD.constructor.toString() always returns
20256          * "DragDrop" and not the name of the subclass.  So for now it just
20257          * evaluates a well-known variable in DragDrop.
20258          * @method isTypeOfDD
20259          * @param {Object} the object to evaluate
20260          * @return {boolean} true if typeof oDD = DragDrop
20261          * @static
20262          */
20263         isTypeOfDD: function (oDD) {
20264             return (oDD && oDD.__ygDragDrop);
20265         },
20266
20267         /**
20268          * Utility function to determine if a given element has been
20269          * registered as a drag drop handle for the given Drag Drop object.
20270          * @method isHandle
20271          * @param {String} id the element id to check
20272          * @return {boolean} true if this element is a DragDrop handle, false
20273          * otherwise
20274          * @static
20275          */
20276         isHandle: function(sDDId, sHandleId) {
20277             return ( this.handleIds[sDDId] &&
20278                             this.handleIds[sDDId][sHandleId] );
20279         },
20280
20281         /**
20282          * Returns the DragDrop instance for a given id
20283          * @method getDDById
20284          * @param {String} id the id of the DragDrop object
20285          * @return {DragDrop} the drag drop object, null if it is not found
20286          * @static
20287          */
20288         getDDById: function(id) {
20289             for (var i in this.ids) {
20290                 if (this.ids[i][id]) {
20291                     return this.ids[i][id];
20292                 }
20293             }
20294             return null;
20295         },
20296
20297         /**
20298          * Fired after a registered DragDrop object gets the mousedown event.
20299          * Sets up the events required to track the object being dragged
20300          * @method handleMouseDown
20301          * @param {Event} e the event
20302          * @param oDD the DragDrop object being dragged
20303          * @private
20304          * @static
20305          */
20306         handleMouseDown: function(e, oDD) {
20307             if(Roo.QuickTips){
20308                 Roo.QuickTips.disable();
20309             }
20310             this.currentTarget = e.getTarget();
20311
20312             this.dragCurrent = oDD;
20313
20314             var el = oDD.getEl();
20315
20316             // track start position
20317             this.startX = e.getPageX();
20318             this.startY = e.getPageY();
20319
20320             this.deltaX = this.startX - el.offsetLeft;
20321             this.deltaY = this.startY - el.offsetTop;
20322
20323             this.dragThreshMet = false;
20324
20325             this.clickTimeout = setTimeout(
20326                     function() {
20327                         var DDM = Roo.dd.DDM;
20328                         DDM.startDrag(DDM.startX, DDM.startY);
20329                     },
20330                     this.clickTimeThresh );
20331         },
20332
20333         /**
20334          * Fired when either the drag pixel threshol or the mousedown hold
20335          * time threshold has been met.
20336          * @method startDrag
20337          * @param x {int} the X position of the original mousedown
20338          * @param y {int} the Y position of the original mousedown
20339          * @static
20340          */
20341         startDrag: function(x, y) {
20342             clearTimeout(this.clickTimeout);
20343             if (this.dragCurrent) {
20344                 this.dragCurrent.b4StartDrag(x, y);
20345                 this.dragCurrent.startDrag(x, y);
20346             }
20347             this.dragThreshMet = true;
20348         },
20349
20350         /**
20351          * Internal function to handle the mouseup event.  Will be invoked
20352          * from the context of the document.
20353          * @method handleMouseUp
20354          * @param {Event} e the event
20355          * @private
20356          * @static
20357          */
20358         handleMouseUp: function(e) {
20359
20360             if(Roo.QuickTips){
20361                 Roo.QuickTips.enable();
20362             }
20363             if (! this.dragCurrent) {
20364                 return;
20365             }
20366
20367             clearTimeout(this.clickTimeout);
20368
20369             if (this.dragThreshMet) {
20370                 this.fireEvents(e, true);
20371             } else {
20372             }
20373
20374             this.stopDrag(e);
20375
20376             this.stopEvent(e);
20377         },
20378
20379         /**
20380          * Utility to stop event propagation and event default, if these
20381          * features are turned on.
20382          * @method stopEvent
20383          * @param {Event} e the event as returned by this.getEvent()
20384          * @static
20385          */
20386         stopEvent: function(e){
20387             if(this.stopPropagation) {
20388                 e.stopPropagation();
20389             }
20390
20391             if (this.preventDefault) {
20392                 e.preventDefault();
20393             }
20394         },
20395
20396         /**
20397          * Internal function to clean up event handlers after the drag
20398          * operation is complete
20399          * @method stopDrag
20400          * @param {Event} e the event
20401          * @private
20402          * @static
20403          */
20404         stopDrag: function(e) {
20405             // Fire the drag end event for the item that was dragged
20406             if (this.dragCurrent) {
20407                 if (this.dragThreshMet) {
20408                     this.dragCurrent.b4EndDrag(e);
20409                     this.dragCurrent.endDrag(e);
20410                 }
20411
20412                 this.dragCurrent.onMouseUp(e);
20413             }
20414
20415             this.dragCurrent = null;
20416             this.dragOvers = {};
20417         },
20418
20419         /**
20420          * Internal function to handle the mousemove event.  Will be invoked
20421          * from the context of the html element.
20422          *
20423          * @TODO figure out what we can do about mouse events lost when the
20424          * user drags objects beyond the window boundary.  Currently we can
20425          * detect this in internet explorer by verifying that the mouse is
20426          * down during the mousemove event.  Firefox doesn't give us the
20427          * button state on the mousemove event.
20428          * @method handleMouseMove
20429          * @param {Event} e the event
20430          * @private
20431          * @static
20432          */
20433         handleMouseMove: function(e) {
20434             if (! this.dragCurrent) {
20435                 return true;
20436             }
20437
20438             // var button = e.which || e.button;
20439
20440             // check for IE mouseup outside of page boundary
20441             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20442                 this.stopEvent(e);
20443                 return this.handleMouseUp(e);
20444             }
20445
20446             if (!this.dragThreshMet) {
20447                 var diffX = Math.abs(this.startX - e.getPageX());
20448                 var diffY = Math.abs(this.startY - e.getPageY());
20449                 if (diffX > this.clickPixelThresh ||
20450                             diffY > this.clickPixelThresh) {
20451                     this.startDrag(this.startX, this.startY);
20452                 }
20453             }
20454
20455             if (this.dragThreshMet) {
20456                 this.dragCurrent.b4Drag(e);
20457                 this.dragCurrent.onDrag(e);
20458                 if(!this.dragCurrent.moveOnly){
20459                     this.fireEvents(e, false);
20460                 }
20461             }
20462
20463             this.stopEvent(e);
20464
20465             return true;
20466         },
20467
20468         /**
20469          * Iterates over all of the DragDrop elements to find ones we are
20470          * hovering over or dropping on
20471          * @method fireEvents
20472          * @param {Event} e the event
20473          * @param {boolean} isDrop is this a drop op or a mouseover op?
20474          * @private
20475          * @static
20476          */
20477         fireEvents: function(e, isDrop) {
20478             var dc = this.dragCurrent;
20479
20480             // If the user did the mouse up outside of the window, we could
20481             // get here even though we have ended the drag.
20482             if (!dc || dc.isLocked()) {
20483                 return;
20484             }
20485
20486             var pt = e.getPoint();
20487
20488             // cache the previous dragOver array
20489             var oldOvers = [];
20490
20491             var outEvts   = [];
20492             var overEvts  = [];
20493             var dropEvts  = [];
20494             var enterEvts = [];
20495
20496             // Check to see if the object(s) we were hovering over is no longer
20497             // being hovered over so we can fire the onDragOut event
20498             for (var i in this.dragOvers) {
20499
20500                 var ddo = this.dragOvers[i];
20501
20502                 if (! this.isTypeOfDD(ddo)) {
20503                     continue;
20504                 }
20505
20506                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20507                     outEvts.push( ddo );
20508                 }
20509
20510                 oldOvers[i] = true;
20511                 delete this.dragOvers[i];
20512             }
20513
20514             for (var sGroup in dc.groups) {
20515
20516                 if ("string" != typeof sGroup) {
20517                     continue;
20518                 }
20519
20520                 for (i in this.ids[sGroup]) {
20521                     var oDD = this.ids[sGroup][i];
20522                     if (! this.isTypeOfDD(oDD)) {
20523                         continue;
20524                     }
20525
20526                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20527                         if (this.isOverTarget(pt, oDD, this.mode)) {
20528                             // look for drop interactions
20529                             if (isDrop) {
20530                                 dropEvts.push( oDD );
20531                             // look for drag enter and drag over interactions
20532                             } else {
20533
20534                                 // initial drag over: dragEnter fires
20535                                 if (!oldOvers[oDD.id]) {
20536                                     enterEvts.push( oDD );
20537                                 // subsequent drag overs: dragOver fires
20538                                 } else {
20539                                     overEvts.push( oDD );
20540                                 }
20541
20542                                 this.dragOvers[oDD.id] = oDD;
20543                             }
20544                         }
20545                     }
20546                 }
20547             }
20548
20549             if (this.mode) {
20550                 if (outEvts.length) {
20551                     dc.b4DragOut(e, outEvts);
20552                     dc.onDragOut(e, outEvts);
20553                 }
20554
20555                 if (enterEvts.length) {
20556                     dc.onDragEnter(e, enterEvts);
20557                 }
20558
20559                 if (overEvts.length) {
20560                     dc.b4DragOver(e, overEvts);
20561                     dc.onDragOver(e, overEvts);
20562                 }
20563
20564                 if (dropEvts.length) {
20565                     dc.b4DragDrop(e, dropEvts);
20566                     dc.onDragDrop(e, dropEvts);
20567                 }
20568
20569             } else {
20570                 // fire dragout events
20571                 var len = 0;
20572                 for (i=0, len=outEvts.length; i<len; ++i) {
20573                     dc.b4DragOut(e, outEvts[i].id);
20574                     dc.onDragOut(e, outEvts[i].id);
20575                 }
20576
20577                 // fire enter events
20578                 for (i=0,len=enterEvts.length; i<len; ++i) {
20579                     // dc.b4DragEnter(e, oDD.id);
20580                     dc.onDragEnter(e, enterEvts[i].id);
20581                 }
20582
20583                 // fire over events
20584                 for (i=0,len=overEvts.length; i<len; ++i) {
20585                     dc.b4DragOver(e, overEvts[i].id);
20586                     dc.onDragOver(e, overEvts[i].id);
20587                 }
20588
20589                 // fire drop events
20590                 for (i=0, len=dropEvts.length; i<len; ++i) {
20591                     dc.b4DragDrop(e, dropEvts[i].id);
20592                     dc.onDragDrop(e, dropEvts[i].id);
20593                 }
20594
20595             }
20596
20597             // notify about a drop that did not find a target
20598             if (isDrop && !dropEvts.length) {
20599                 dc.onInvalidDrop(e);
20600             }
20601
20602         },
20603
20604         /**
20605          * Helper function for getting the best match from the list of drag
20606          * and drop objects returned by the drag and drop events when we are
20607          * in INTERSECT mode.  It returns either the first object that the
20608          * cursor is over, or the object that has the greatest overlap with
20609          * the dragged element.
20610          * @method getBestMatch
20611          * @param  {DragDrop[]} dds The array of drag and drop objects
20612          * targeted
20613          * @return {DragDrop}       The best single match
20614          * @static
20615          */
20616         getBestMatch: function(dds) {
20617             var winner = null;
20618             // Return null if the input is not what we expect
20619             //if (!dds || !dds.length || dds.length == 0) {
20620                // winner = null;
20621             // If there is only one item, it wins
20622             //} else if (dds.length == 1) {
20623
20624             var len = dds.length;
20625
20626             if (len == 1) {
20627                 winner = dds[0];
20628             } else {
20629                 // Loop through the targeted items
20630                 for (var i=0; i<len; ++i) {
20631                     var dd = dds[i];
20632                     // If the cursor is over the object, it wins.  If the
20633                     // cursor is over multiple matches, the first one we come
20634                     // to wins.
20635                     if (dd.cursorIsOver) {
20636                         winner = dd;
20637                         break;
20638                     // Otherwise the object with the most overlap wins
20639                     } else {
20640                         if (!winner ||
20641                             winner.overlap.getArea() < dd.overlap.getArea()) {
20642                             winner = dd;
20643                         }
20644                     }
20645                 }
20646             }
20647
20648             return winner;
20649         },
20650
20651         /**
20652          * Refreshes the cache of the top-left and bottom-right points of the
20653          * drag and drop objects in the specified group(s).  This is in the
20654          * format that is stored in the drag and drop instance, so typical
20655          * usage is:
20656          * <code>
20657          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20658          * </code>
20659          * Alternatively:
20660          * <code>
20661          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20662          * </code>
20663          * @TODO this really should be an indexed array.  Alternatively this
20664          * method could accept both.
20665          * @method refreshCache
20666          * @param {Object} groups an associative array of groups to refresh
20667          * @static
20668          */
20669         refreshCache: function(groups) {
20670             for (var sGroup in groups) {
20671                 if ("string" != typeof sGroup) {
20672                     continue;
20673                 }
20674                 for (var i in this.ids[sGroup]) {
20675                     var oDD = this.ids[sGroup][i];
20676
20677                     if (this.isTypeOfDD(oDD)) {
20678                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20679                         var loc = this.getLocation(oDD);
20680                         if (loc) {
20681                             this.locationCache[oDD.id] = loc;
20682                         } else {
20683                             delete this.locationCache[oDD.id];
20684                             // this will unregister the drag and drop object if
20685                             // the element is not in a usable state
20686                             // oDD.unreg();
20687                         }
20688                     }
20689                 }
20690             }
20691         },
20692
20693         /**
20694          * This checks to make sure an element exists and is in the DOM.  The
20695          * main purpose is to handle cases where innerHTML is used to remove
20696          * drag and drop objects from the DOM.  IE provides an 'unspecified
20697          * error' when trying to access the offsetParent of such an element
20698          * @method verifyEl
20699          * @param {HTMLElement} el the element to check
20700          * @return {boolean} true if the element looks usable
20701          * @static
20702          */
20703         verifyEl: function(el) {
20704             if (el) {
20705                 var parent;
20706                 if(Roo.isIE){
20707                     try{
20708                         parent = el.offsetParent;
20709                     }catch(e){}
20710                 }else{
20711                     parent = el.offsetParent;
20712                 }
20713                 if (parent) {
20714                     return true;
20715                 }
20716             }
20717
20718             return false;
20719         },
20720
20721         /**
20722          * Returns a Region object containing the drag and drop element's position
20723          * and size, including the padding configured for it
20724          * @method getLocation
20725          * @param {DragDrop} oDD the drag and drop object to get the
20726          *                       location for
20727          * @return {Roo.lib.Region} a Region object representing the total area
20728          *                             the element occupies, including any padding
20729          *                             the instance is configured for.
20730          * @static
20731          */
20732         getLocation: function(oDD) {
20733             if (! this.isTypeOfDD(oDD)) {
20734                 return null;
20735             }
20736
20737             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20738
20739             try {
20740                 pos= Roo.lib.Dom.getXY(el);
20741             } catch (e) { }
20742
20743             if (!pos) {
20744                 return null;
20745             }
20746
20747             x1 = pos[0];
20748             x2 = x1 + el.offsetWidth;
20749             y1 = pos[1];
20750             y2 = y1 + el.offsetHeight;
20751
20752             t = y1 - oDD.padding[0];
20753             r = x2 + oDD.padding[1];
20754             b = y2 + oDD.padding[2];
20755             l = x1 - oDD.padding[3];
20756
20757             return new Roo.lib.Region( t, r, b, l );
20758         },
20759
20760         /**
20761          * Checks the cursor location to see if it over the target
20762          * @method isOverTarget
20763          * @param {Roo.lib.Point} pt The point to evaluate
20764          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20765          * @return {boolean} true if the mouse is over the target
20766          * @private
20767          * @static
20768          */
20769         isOverTarget: function(pt, oTarget, intersect) {
20770             // use cache if available
20771             var loc = this.locationCache[oTarget.id];
20772             if (!loc || !this.useCache) {
20773                 loc = this.getLocation(oTarget);
20774                 this.locationCache[oTarget.id] = loc;
20775
20776             }
20777
20778             if (!loc) {
20779                 return false;
20780             }
20781
20782             oTarget.cursorIsOver = loc.contains( pt );
20783
20784             // DragDrop is using this as a sanity check for the initial mousedown
20785             // in this case we are done.  In POINT mode, if the drag obj has no
20786             // contraints, we are also done. Otherwise we need to evaluate the
20787             // location of the target as related to the actual location of the
20788             // dragged element.
20789             var dc = this.dragCurrent;
20790             if (!dc || !dc.getTargetCoord ||
20791                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20792                 return oTarget.cursorIsOver;
20793             }
20794
20795             oTarget.overlap = null;
20796
20797             // Get the current location of the drag element, this is the
20798             // location of the mouse event less the delta that represents
20799             // where the original mousedown happened on the element.  We
20800             // need to consider constraints and ticks as well.
20801             var pos = dc.getTargetCoord(pt.x, pt.y);
20802
20803             var el = dc.getDragEl();
20804             var curRegion = new Roo.lib.Region( pos.y,
20805                                                    pos.x + el.offsetWidth,
20806                                                    pos.y + el.offsetHeight,
20807                                                    pos.x );
20808
20809             var overlap = curRegion.intersect(loc);
20810
20811             if (overlap) {
20812                 oTarget.overlap = overlap;
20813                 return (intersect) ? true : oTarget.cursorIsOver;
20814             } else {
20815                 return false;
20816             }
20817         },
20818
20819         /**
20820          * unload event handler
20821          * @method _onUnload
20822          * @private
20823          * @static
20824          */
20825         _onUnload: function(e, me) {
20826             Roo.dd.DragDropMgr.unregAll();
20827         },
20828
20829         /**
20830          * Cleans up the drag and drop events and objects.
20831          * @method unregAll
20832          * @private
20833          * @static
20834          */
20835         unregAll: function() {
20836
20837             if (this.dragCurrent) {
20838                 this.stopDrag();
20839                 this.dragCurrent = null;
20840             }
20841
20842             this._execOnAll("unreg", []);
20843
20844             for (i in this.elementCache) {
20845                 delete this.elementCache[i];
20846             }
20847
20848             this.elementCache = {};
20849             this.ids = {};
20850         },
20851
20852         /**
20853          * A cache of DOM elements
20854          * @property elementCache
20855          * @private
20856          * @static
20857          */
20858         elementCache: {},
20859
20860         /**
20861          * Get the wrapper for the DOM element specified
20862          * @method getElWrapper
20863          * @param {String} id the id of the element to get
20864          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20865          * @private
20866          * @deprecated This wrapper isn't that useful
20867          * @static
20868          */
20869         getElWrapper: function(id) {
20870             var oWrapper = this.elementCache[id];
20871             if (!oWrapper || !oWrapper.el) {
20872                 oWrapper = this.elementCache[id] =
20873                     new this.ElementWrapper(Roo.getDom(id));
20874             }
20875             return oWrapper;
20876         },
20877
20878         /**
20879          * Returns the actual DOM element
20880          * @method getElement
20881          * @param {String} id the id of the elment to get
20882          * @return {Object} The element
20883          * @deprecated use Roo.getDom instead
20884          * @static
20885          */
20886         getElement: function(id) {
20887             return Roo.getDom(id);
20888         },
20889
20890         /**
20891          * Returns the style property for the DOM element (i.e.,
20892          * document.getElById(id).style)
20893          * @method getCss
20894          * @param {String} id the id of the elment to get
20895          * @return {Object} The style property of the element
20896          * @deprecated use Roo.getDom instead
20897          * @static
20898          */
20899         getCss: function(id) {
20900             var el = Roo.getDom(id);
20901             return (el) ? el.style : null;
20902         },
20903
20904         /**
20905          * Inner class for cached elements
20906          * @class DragDropMgr.ElementWrapper
20907          * @for DragDropMgr
20908          * @private
20909          * @deprecated
20910          */
20911         ElementWrapper: function(el) {
20912                 /**
20913                  * The element
20914                  * @property el
20915                  */
20916                 this.el = el || null;
20917                 /**
20918                  * The element id
20919                  * @property id
20920                  */
20921                 this.id = this.el && el.id;
20922                 /**
20923                  * A reference to the style property
20924                  * @property css
20925                  */
20926                 this.css = this.el && el.style;
20927             },
20928
20929         /**
20930          * Returns the X position of an html element
20931          * @method getPosX
20932          * @param el the element for which to get the position
20933          * @return {int} the X coordinate
20934          * @for DragDropMgr
20935          * @deprecated use Roo.lib.Dom.getX instead
20936          * @static
20937          */
20938         getPosX: function(el) {
20939             return Roo.lib.Dom.getX(el);
20940         },
20941
20942         /**
20943          * Returns the Y position of an html element
20944          * @method getPosY
20945          * @param el the element for which to get the position
20946          * @return {int} the Y coordinate
20947          * @deprecated use Roo.lib.Dom.getY instead
20948          * @static
20949          */
20950         getPosY: function(el) {
20951             return Roo.lib.Dom.getY(el);
20952         },
20953
20954         /**
20955          * Swap two nodes.  In IE, we use the native method, for others we
20956          * emulate the IE behavior
20957          * @method swapNode
20958          * @param n1 the first node to swap
20959          * @param n2 the other node to swap
20960          * @static
20961          */
20962         swapNode: function(n1, n2) {
20963             if (n1.swapNode) {
20964                 n1.swapNode(n2);
20965             } else {
20966                 var p = n2.parentNode;
20967                 var s = n2.nextSibling;
20968
20969                 if (s == n1) {
20970                     p.insertBefore(n1, n2);
20971                 } else if (n2 == n1.nextSibling) {
20972                     p.insertBefore(n2, n1);
20973                 } else {
20974                     n1.parentNode.replaceChild(n2, n1);
20975                     p.insertBefore(n1, s);
20976                 }
20977             }
20978         },
20979
20980         /**
20981          * Returns the current scroll position
20982          * @method getScroll
20983          * @private
20984          * @static
20985          */
20986         getScroll: function () {
20987             var t, l, dde=document.documentElement, db=document.body;
20988             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20989                 t = dde.scrollTop;
20990                 l = dde.scrollLeft;
20991             } else if (db) {
20992                 t = db.scrollTop;
20993                 l = db.scrollLeft;
20994             } else {
20995
20996             }
20997             return { top: t, left: l };
20998         },
20999
21000         /**
21001          * Returns the specified element style property
21002          * @method getStyle
21003          * @param {HTMLElement} el          the element
21004          * @param {string}      styleProp   the style property
21005          * @return {string} The value of the style property
21006          * @deprecated use Roo.lib.Dom.getStyle
21007          * @static
21008          */
21009         getStyle: function(el, styleProp) {
21010             return Roo.fly(el).getStyle(styleProp);
21011         },
21012
21013         /**
21014          * Gets the scrollTop
21015          * @method getScrollTop
21016          * @return {int} the document's scrollTop
21017          * @static
21018          */
21019         getScrollTop: function () { return this.getScroll().top; },
21020
21021         /**
21022          * Gets the scrollLeft
21023          * @method getScrollLeft
21024          * @return {int} the document's scrollTop
21025          * @static
21026          */
21027         getScrollLeft: function () { return this.getScroll().left; },
21028
21029         /**
21030          * Sets the x/y position of an element to the location of the
21031          * target element.
21032          * @method moveToEl
21033          * @param {HTMLElement} moveEl      The element to move
21034          * @param {HTMLElement} targetEl    The position reference element
21035          * @static
21036          */
21037         moveToEl: function (moveEl, targetEl) {
21038             var aCoord = Roo.lib.Dom.getXY(targetEl);
21039             Roo.lib.Dom.setXY(moveEl, aCoord);
21040         },
21041
21042         /**
21043          * Numeric array sort function
21044          * @method numericSort
21045          * @static
21046          */
21047         numericSort: function(a, b) { return (a - b); },
21048
21049         /**
21050          * Internal counter
21051          * @property _timeoutCount
21052          * @private
21053          * @static
21054          */
21055         _timeoutCount: 0,
21056
21057         /**
21058          * Trying to make the load order less important.  Without this we get
21059          * an error if this file is loaded before the Event Utility.
21060          * @method _addListeners
21061          * @private
21062          * @static
21063          */
21064         _addListeners: function() {
21065             var DDM = Roo.dd.DDM;
21066             if ( Roo.lib.Event && document ) {
21067                 DDM._onLoad();
21068             } else {
21069                 if (DDM._timeoutCount > 2000) {
21070                 } else {
21071                     setTimeout(DDM._addListeners, 10);
21072                     if (document && document.body) {
21073                         DDM._timeoutCount += 1;
21074                     }
21075                 }
21076             }
21077         },
21078
21079         /**
21080          * Recursively searches the immediate parent and all child nodes for
21081          * the handle element in order to determine wheter or not it was
21082          * clicked.
21083          * @method handleWasClicked
21084          * @param node the html element to inspect
21085          * @static
21086          */
21087         handleWasClicked: function(node, id) {
21088             if (this.isHandle(id, node.id)) {
21089                 return true;
21090             } else {
21091                 // check to see if this is a text node child of the one we want
21092                 var p = node.parentNode;
21093
21094                 while (p) {
21095                     if (this.isHandle(id, p.id)) {
21096                         return true;
21097                     } else {
21098                         p = p.parentNode;
21099                     }
21100                 }
21101             }
21102
21103             return false;
21104         }
21105
21106     };
21107
21108 }();
21109
21110 // shorter alias, save a few bytes
21111 Roo.dd.DDM = Roo.dd.DragDropMgr;
21112 Roo.dd.DDM._addListeners();
21113
21114 }/*
21115  * Based on:
21116  * Ext JS Library 1.1.1
21117  * Copyright(c) 2006-2007, Ext JS, LLC.
21118  *
21119  * Originally Released Under LGPL - original licence link has changed is not relivant.
21120  *
21121  * Fork - LGPL
21122  * <script type="text/javascript">
21123  */
21124
21125 /**
21126  * @class Roo.dd.DD
21127  * A DragDrop implementation where the linked element follows the
21128  * mouse cursor during a drag.
21129  * @extends Roo.dd.DragDrop
21130  * @constructor
21131  * @param {String} id the id of the linked element
21132  * @param {String} sGroup the group of related DragDrop items
21133  * @param {object} config an object containing configurable attributes
21134  *                Valid properties for DD:
21135  *                    scroll
21136  */
21137 Roo.dd.DD = function(id, sGroup, config) {
21138     if (id) {
21139         this.init(id, sGroup, config);
21140     }
21141 };
21142
21143 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21144
21145     /**
21146      * When set to true, the utility automatically tries to scroll the browser
21147      * window wehn a drag and drop element is dragged near the viewport boundary.
21148      * Defaults to true.
21149      * @property scroll
21150      * @type boolean
21151      */
21152     scroll: true,
21153
21154     /**
21155      * Sets the pointer offset to the distance between the linked element's top
21156      * left corner and the location the element was clicked
21157      * @method autoOffset
21158      * @param {int} iPageX the X coordinate of the click
21159      * @param {int} iPageY the Y coordinate of the click
21160      */
21161     autoOffset: function(iPageX, iPageY) {
21162         var x = iPageX - this.startPageX;
21163         var y = iPageY - this.startPageY;
21164         this.setDelta(x, y);
21165     },
21166
21167     /**
21168      * Sets the pointer offset.  You can call this directly to force the
21169      * offset to be in a particular location (e.g., pass in 0,0 to set it
21170      * to the center of the object)
21171      * @method setDelta
21172      * @param {int} iDeltaX the distance from the left
21173      * @param {int} iDeltaY the distance from the top
21174      */
21175     setDelta: function(iDeltaX, iDeltaY) {
21176         this.deltaX = iDeltaX;
21177         this.deltaY = iDeltaY;
21178     },
21179
21180     /**
21181      * Sets the drag element to the location of the mousedown or click event,
21182      * maintaining the cursor location relative to the location on the element
21183      * that was clicked.  Override this if you want to place the element in a
21184      * location other than where the cursor is.
21185      * @method setDragElPos
21186      * @param {int} iPageX the X coordinate of the mousedown or drag event
21187      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21188      */
21189     setDragElPos: function(iPageX, iPageY) {
21190         // the first time we do this, we are going to check to make sure
21191         // the element has css positioning
21192
21193         var el = this.getDragEl();
21194         this.alignElWithMouse(el, iPageX, iPageY);
21195     },
21196
21197     /**
21198      * Sets the element to the location of the mousedown or click event,
21199      * maintaining the cursor location relative to the location on the element
21200      * that was clicked.  Override this if you want to place the element in a
21201      * location other than where the cursor is.
21202      * @method alignElWithMouse
21203      * @param {HTMLElement} el the element to move
21204      * @param {int} iPageX the X coordinate of the mousedown or drag event
21205      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21206      */
21207     alignElWithMouse: function(el, iPageX, iPageY) {
21208         var oCoord = this.getTargetCoord(iPageX, iPageY);
21209         var fly = el.dom ? el : Roo.fly(el);
21210         if (!this.deltaSetXY) {
21211             var aCoord = [oCoord.x, oCoord.y];
21212             fly.setXY(aCoord);
21213             var newLeft = fly.getLeft(true);
21214             var newTop  = fly.getTop(true);
21215             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21216         } else {
21217             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21218         }
21219
21220         this.cachePosition(oCoord.x, oCoord.y);
21221         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21222         return oCoord;
21223     },
21224
21225     /**
21226      * Saves the most recent position so that we can reset the constraints and
21227      * tick marks on-demand.  We need to know this so that we can calculate the
21228      * number of pixels the element is offset from its original position.
21229      * @method cachePosition
21230      * @param iPageX the current x position (optional, this just makes it so we
21231      * don't have to look it up again)
21232      * @param iPageY the current y position (optional, this just makes it so we
21233      * don't have to look it up again)
21234      */
21235     cachePosition: function(iPageX, iPageY) {
21236         if (iPageX) {
21237             this.lastPageX = iPageX;
21238             this.lastPageY = iPageY;
21239         } else {
21240             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21241             this.lastPageX = aCoord[0];
21242             this.lastPageY = aCoord[1];
21243         }
21244     },
21245
21246     /**
21247      * Auto-scroll the window if the dragged object has been moved beyond the
21248      * visible window boundary.
21249      * @method autoScroll
21250      * @param {int} x the drag element's x position
21251      * @param {int} y the drag element's y position
21252      * @param {int} h the height of the drag element
21253      * @param {int} w the width of the drag element
21254      * @private
21255      */
21256     autoScroll: function(x, y, h, w) {
21257
21258         if (this.scroll) {
21259             // The client height
21260             var clientH = Roo.lib.Dom.getViewWidth();
21261
21262             // The client width
21263             var clientW = Roo.lib.Dom.getViewHeight();
21264
21265             // The amt scrolled down
21266             var st = this.DDM.getScrollTop();
21267
21268             // The amt scrolled right
21269             var sl = this.DDM.getScrollLeft();
21270
21271             // Location of the bottom of the element
21272             var bot = h + y;
21273
21274             // Location of the right of the element
21275             var right = w + x;
21276
21277             // The distance from the cursor to the bottom of the visible area,
21278             // adjusted so that we don't scroll if the cursor is beyond the
21279             // element drag constraints
21280             var toBot = (clientH + st - y - this.deltaY);
21281
21282             // The distance from the cursor to the right of the visible area
21283             var toRight = (clientW + sl - x - this.deltaX);
21284
21285
21286             // How close to the edge the cursor must be before we scroll
21287             // var thresh = (document.all) ? 100 : 40;
21288             var thresh = 40;
21289
21290             // How many pixels to scroll per autoscroll op.  This helps to reduce
21291             // clunky scrolling. IE is more sensitive about this ... it needs this
21292             // value to be higher.
21293             var scrAmt = (document.all) ? 80 : 30;
21294
21295             // Scroll down if we are near the bottom of the visible page and the
21296             // obj extends below the crease
21297             if ( bot > clientH && toBot < thresh ) {
21298                 window.scrollTo(sl, st + scrAmt);
21299             }
21300
21301             // Scroll up if the window is scrolled down and the top of the object
21302             // goes above the top border
21303             if ( y < st && st > 0 && y - st < thresh ) {
21304                 window.scrollTo(sl, st - scrAmt);
21305             }
21306
21307             // Scroll right if the obj is beyond the right border and the cursor is
21308             // near the border.
21309             if ( right > clientW && toRight < thresh ) {
21310                 window.scrollTo(sl + scrAmt, st);
21311             }
21312
21313             // Scroll left if the window has been scrolled to the right and the obj
21314             // extends past the left border
21315             if ( x < sl && sl > 0 && x - sl < thresh ) {
21316                 window.scrollTo(sl - scrAmt, st);
21317             }
21318         }
21319     },
21320
21321     /**
21322      * Finds the location the element should be placed if we want to move
21323      * it to where the mouse location less the click offset would place us.
21324      * @method getTargetCoord
21325      * @param {int} iPageX the X coordinate of the click
21326      * @param {int} iPageY the Y coordinate of the click
21327      * @return an object that contains the coordinates (Object.x and Object.y)
21328      * @private
21329      */
21330     getTargetCoord: function(iPageX, iPageY) {
21331
21332
21333         var x = iPageX - this.deltaX;
21334         var y = iPageY - this.deltaY;
21335
21336         if (this.constrainX) {
21337             if (x < this.minX) { x = this.minX; }
21338             if (x > this.maxX) { x = this.maxX; }
21339         }
21340
21341         if (this.constrainY) {
21342             if (y < this.minY) { y = this.minY; }
21343             if (y > this.maxY) { y = this.maxY; }
21344         }
21345
21346         x = this.getTick(x, this.xTicks);
21347         y = this.getTick(y, this.yTicks);
21348
21349
21350         return {x:x, y:y};
21351     },
21352
21353     /*
21354      * Sets up config options specific to this class. Overrides
21355      * Roo.dd.DragDrop, but all versions of this method through the
21356      * inheritance chain are called
21357      */
21358     applyConfig: function() {
21359         Roo.dd.DD.superclass.applyConfig.call(this);
21360         this.scroll = (this.config.scroll !== false);
21361     },
21362
21363     /*
21364      * Event that fires prior to the onMouseDown event.  Overrides
21365      * Roo.dd.DragDrop.
21366      */
21367     b4MouseDown: function(e) {
21368         // this.resetConstraints();
21369         this.autoOffset(e.getPageX(),
21370                             e.getPageY());
21371     },
21372
21373     /*
21374      * Event that fires prior to the onDrag event.  Overrides
21375      * Roo.dd.DragDrop.
21376      */
21377     b4Drag: function(e) {
21378         this.setDragElPos(e.getPageX(),
21379                             e.getPageY());
21380     },
21381
21382     toString: function() {
21383         return ("DD " + this.id);
21384     }
21385
21386     //////////////////////////////////////////////////////////////////////////
21387     // Debugging ygDragDrop events that can be overridden
21388     //////////////////////////////////////////////////////////////////////////
21389     /*
21390     startDrag: function(x, y) {
21391     },
21392
21393     onDrag: function(e) {
21394     },
21395
21396     onDragEnter: function(e, id) {
21397     },
21398
21399     onDragOver: function(e, id) {
21400     },
21401
21402     onDragOut: function(e, id) {
21403     },
21404
21405     onDragDrop: function(e, id) {
21406     },
21407
21408     endDrag: function(e) {
21409     }
21410
21411     */
21412
21413 });/*
21414  * Based on:
21415  * Ext JS Library 1.1.1
21416  * Copyright(c) 2006-2007, Ext JS, LLC.
21417  *
21418  * Originally Released Under LGPL - original licence link has changed is not relivant.
21419  *
21420  * Fork - LGPL
21421  * <script type="text/javascript">
21422  */
21423
21424 /**
21425  * @class Roo.dd.DDProxy
21426  * A DragDrop implementation that inserts an empty, bordered div into
21427  * the document that follows the cursor during drag operations.  At the time of
21428  * the click, the frame div is resized to the dimensions of the linked html
21429  * element, and moved to the exact location of the linked element.
21430  *
21431  * References to the "frame" element refer to the single proxy element that
21432  * was created to be dragged in place of all DDProxy elements on the
21433  * page.
21434  *
21435  * @extends Roo.dd.DD
21436  * @constructor
21437  * @param {String} id the id of the linked html element
21438  * @param {String} sGroup the group of related DragDrop objects
21439  * @param {object} config an object containing configurable attributes
21440  *                Valid properties for DDProxy in addition to those in DragDrop:
21441  *                   resizeFrame, centerFrame, dragElId
21442  */
21443 Roo.dd.DDProxy = function(id, sGroup, config) {
21444     if (id) {
21445         this.init(id, sGroup, config);
21446         this.initFrame();
21447     }
21448 };
21449
21450 /**
21451  * The default drag frame div id
21452  * @property Roo.dd.DDProxy.dragElId
21453  * @type String
21454  * @static
21455  */
21456 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21457
21458 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21459
21460     /**
21461      * By default we resize the drag frame to be the same size as the element
21462      * we want to drag (this is to get the frame effect).  We can turn it off
21463      * if we want a different behavior.
21464      * @property resizeFrame
21465      * @type boolean
21466      */
21467     resizeFrame: true,
21468
21469     /**
21470      * By default the frame is positioned exactly where the drag element is, so
21471      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21472      * you do not have constraints on the obj is to have the drag frame centered
21473      * around the cursor.  Set centerFrame to true for this effect.
21474      * @property centerFrame
21475      * @type boolean
21476      */
21477     centerFrame: false,
21478
21479     /**
21480      * Creates the proxy element if it does not yet exist
21481      * @method createFrame
21482      */
21483     createFrame: function() {
21484         var self = this;
21485         var body = document.body;
21486
21487         if (!body || !body.firstChild) {
21488             setTimeout( function() { self.createFrame(); }, 50 );
21489             return;
21490         }
21491
21492         var div = this.getDragEl();
21493
21494         if (!div) {
21495             div    = document.createElement("div");
21496             div.id = this.dragElId;
21497             var s  = div.style;
21498
21499             s.position   = "absolute";
21500             s.visibility = "hidden";
21501             s.cursor     = "move";
21502             s.border     = "2px solid #aaa";
21503             s.zIndex     = 999;
21504
21505             // appendChild can blow up IE if invoked prior to the window load event
21506             // while rendering a table.  It is possible there are other scenarios
21507             // that would cause this to happen as well.
21508             body.insertBefore(div, body.firstChild);
21509         }
21510     },
21511
21512     /**
21513      * Initialization for the drag frame element.  Must be called in the
21514      * constructor of all subclasses
21515      * @method initFrame
21516      */
21517     initFrame: function() {
21518         this.createFrame();
21519     },
21520
21521     applyConfig: function() {
21522         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21523
21524         this.resizeFrame = (this.config.resizeFrame !== false);
21525         this.centerFrame = (this.config.centerFrame);
21526         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21527     },
21528
21529     /**
21530      * Resizes the drag frame to the dimensions of the clicked object, positions
21531      * it over the object, and finally displays it
21532      * @method showFrame
21533      * @param {int} iPageX X click position
21534      * @param {int} iPageY Y click position
21535      * @private
21536      */
21537     showFrame: function(iPageX, iPageY) {
21538         var el = this.getEl();
21539         var dragEl = this.getDragEl();
21540         var s = dragEl.style;
21541
21542         this._resizeProxy();
21543
21544         if (this.centerFrame) {
21545             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21546                            Math.round(parseInt(s.height, 10)/2) );
21547         }
21548
21549         this.setDragElPos(iPageX, iPageY);
21550
21551         Roo.fly(dragEl).show();
21552     },
21553
21554     /**
21555      * The proxy is automatically resized to the dimensions of the linked
21556      * element when a drag is initiated, unless resizeFrame is set to false
21557      * @method _resizeProxy
21558      * @private
21559      */
21560     _resizeProxy: function() {
21561         if (this.resizeFrame) {
21562             var el = this.getEl();
21563             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21564         }
21565     },
21566
21567     // overrides Roo.dd.DragDrop
21568     b4MouseDown: function(e) {
21569         var x = e.getPageX();
21570         var y = e.getPageY();
21571         this.autoOffset(x, y);
21572         this.setDragElPos(x, y);
21573     },
21574
21575     // overrides Roo.dd.DragDrop
21576     b4StartDrag: function(x, y) {
21577         // show the drag frame
21578         this.showFrame(x, y);
21579     },
21580
21581     // overrides Roo.dd.DragDrop
21582     b4EndDrag: function(e) {
21583         Roo.fly(this.getDragEl()).hide();
21584     },
21585
21586     // overrides Roo.dd.DragDrop
21587     // By default we try to move the element to the last location of the frame.
21588     // This is so that the default behavior mirrors that of Roo.dd.DD.
21589     endDrag: function(e) {
21590
21591         var lel = this.getEl();
21592         var del = this.getDragEl();
21593
21594         // Show the drag frame briefly so we can get its position
21595         del.style.visibility = "";
21596
21597         this.beforeMove();
21598         // Hide the linked element before the move to get around a Safari
21599         // rendering bug.
21600         lel.style.visibility = "hidden";
21601         Roo.dd.DDM.moveToEl(lel, del);
21602         del.style.visibility = "hidden";
21603         lel.style.visibility = "";
21604
21605         this.afterDrag();
21606     },
21607
21608     beforeMove : function(){
21609
21610     },
21611
21612     afterDrag : function(){
21613
21614     },
21615
21616     toString: function() {
21617         return ("DDProxy " + this.id);
21618     }
21619
21620 });
21621 /*
21622  * Based on:
21623  * Ext JS Library 1.1.1
21624  * Copyright(c) 2006-2007, Ext JS, LLC.
21625  *
21626  * Originally Released Under LGPL - original licence link has changed is not relivant.
21627  *
21628  * Fork - LGPL
21629  * <script type="text/javascript">
21630  */
21631
21632  /**
21633  * @class Roo.dd.DDTarget
21634  * A DragDrop implementation that does not move, but can be a drop
21635  * target.  You would get the same result by simply omitting implementation
21636  * for the event callbacks, but this way we reduce the processing cost of the
21637  * event listener and the callbacks.
21638  * @extends Roo.dd.DragDrop
21639  * @constructor
21640  * @param {String} id the id of the element that is a drop target
21641  * @param {String} sGroup the group of related DragDrop objects
21642  * @param {object} config an object containing configurable attributes
21643  *                 Valid properties for DDTarget in addition to those in
21644  *                 DragDrop:
21645  *                    none
21646  */
21647 Roo.dd.DDTarget = function(id, sGroup, config) {
21648     if (id) {
21649         this.initTarget(id, sGroup, config);
21650     }
21651     if (config && (config.listeners || config.events)) { 
21652         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21653             listeners : config.listeners || {}, 
21654             events : config.events || {} 
21655         });    
21656     }
21657 };
21658
21659 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21660 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21661     toString: function() {
21662         return ("DDTarget " + this.id);
21663     }
21664 });
21665 /*
21666  * Based on:
21667  * Ext JS Library 1.1.1
21668  * Copyright(c) 2006-2007, Ext JS, LLC.
21669  *
21670  * Originally Released Under LGPL - original licence link has changed is not relivant.
21671  *
21672  * Fork - LGPL
21673  * <script type="text/javascript">
21674  */
21675  
21676
21677 /**
21678  * @class Roo.dd.ScrollManager
21679  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21680  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21681  * @singleton
21682  */
21683 Roo.dd.ScrollManager = function(){
21684     var ddm = Roo.dd.DragDropMgr;
21685     var els = {};
21686     var dragEl = null;
21687     var proc = {};
21688     
21689     
21690     
21691     var onStop = function(e){
21692         dragEl = null;
21693         clearProc();
21694     };
21695     
21696     var triggerRefresh = function(){
21697         if(ddm.dragCurrent){
21698              ddm.refreshCache(ddm.dragCurrent.groups);
21699         }
21700     };
21701     
21702     var doScroll = function(){
21703         if(ddm.dragCurrent){
21704             var dds = Roo.dd.ScrollManager;
21705             if(!dds.animate){
21706                 if(proc.el.scroll(proc.dir, dds.increment)){
21707                     triggerRefresh();
21708                 }
21709             }else{
21710                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21711             }
21712         }
21713     };
21714     
21715     var clearProc = function(){
21716         if(proc.id){
21717             clearInterval(proc.id);
21718         }
21719         proc.id = 0;
21720         proc.el = null;
21721         proc.dir = "";
21722     };
21723     
21724     var startProc = function(el, dir){
21725          Roo.log('scroll startproc');
21726         clearProc();
21727         proc.el = el;
21728         proc.dir = dir;
21729         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21730     };
21731     
21732     var onFire = function(e, isDrop){
21733        
21734         if(isDrop || !ddm.dragCurrent){ return; }
21735         var dds = Roo.dd.ScrollManager;
21736         if(!dragEl || dragEl != ddm.dragCurrent){
21737             dragEl = ddm.dragCurrent;
21738             // refresh regions on drag start
21739             dds.refreshCache();
21740         }
21741         
21742         var xy = Roo.lib.Event.getXY(e);
21743         var pt = new Roo.lib.Point(xy[0], xy[1]);
21744         for(var id in els){
21745             var el = els[id], r = el._region;
21746             if(r && r.contains(pt) && el.isScrollable()){
21747                 if(r.bottom - pt.y <= dds.thresh){
21748                     if(proc.el != el){
21749                         startProc(el, "down");
21750                     }
21751                     return;
21752                 }else if(r.right - pt.x <= dds.thresh){
21753                     if(proc.el != el){
21754                         startProc(el, "left");
21755                     }
21756                     return;
21757                 }else if(pt.y - r.top <= dds.thresh){
21758                     if(proc.el != el){
21759                         startProc(el, "up");
21760                     }
21761                     return;
21762                 }else if(pt.x - r.left <= dds.thresh){
21763                     if(proc.el != el){
21764                         startProc(el, "right");
21765                     }
21766                     return;
21767                 }
21768             }
21769         }
21770         clearProc();
21771     };
21772     
21773     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21774     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21775     
21776     return {
21777         /**
21778          * Registers new overflow element(s) to auto scroll
21779          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21780          */
21781         register : function(el){
21782             if(el instanceof Array){
21783                 for(var i = 0, len = el.length; i < len; i++) {
21784                         this.register(el[i]);
21785                 }
21786             }else{
21787                 el = Roo.get(el);
21788                 els[el.id] = el;
21789             }
21790             Roo.dd.ScrollManager.els = els;
21791         },
21792         
21793         /**
21794          * Unregisters overflow element(s) so they are no longer scrolled
21795          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21796          */
21797         unregister : function(el){
21798             if(el instanceof Array){
21799                 for(var i = 0, len = el.length; i < len; i++) {
21800                         this.unregister(el[i]);
21801                 }
21802             }else{
21803                 el = Roo.get(el);
21804                 delete els[el.id];
21805             }
21806         },
21807         
21808         /**
21809          * The number of pixels from the edge of a container the pointer needs to be to 
21810          * trigger scrolling (defaults to 25)
21811          * @type Number
21812          */
21813         thresh : 25,
21814         
21815         /**
21816          * The number of pixels to scroll in each scroll increment (defaults to 50)
21817          * @type Number
21818          */
21819         increment : 100,
21820         
21821         /**
21822          * The frequency of scrolls in milliseconds (defaults to 500)
21823          * @type Number
21824          */
21825         frequency : 500,
21826         
21827         /**
21828          * True to animate the scroll (defaults to true)
21829          * @type Boolean
21830          */
21831         animate: true,
21832         
21833         /**
21834          * The animation duration in seconds - 
21835          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21836          * @type Number
21837          */
21838         animDuration: .4,
21839         
21840         /**
21841          * Manually trigger a cache refresh.
21842          */
21843         refreshCache : function(){
21844             for(var id in els){
21845                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21846                     els[id]._region = els[id].getRegion();
21847                 }
21848             }
21849         }
21850     };
21851 }();/*
21852  * Based on:
21853  * Ext JS Library 1.1.1
21854  * Copyright(c) 2006-2007, Ext JS, LLC.
21855  *
21856  * Originally Released Under LGPL - original licence link has changed is not relivant.
21857  *
21858  * Fork - LGPL
21859  * <script type="text/javascript">
21860  */
21861  
21862
21863 /**
21864  * @class Roo.dd.Registry
21865  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21866  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21867  * @singleton
21868  */
21869 Roo.dd.Registry = function(){
21870     var elements = {}; 
21871     var handles = {}; 
21872     var autoIdSeed = 0;
21873
21874     var getId = function(el, autogen){
21875         if(typeof el == "string"){
21876             return el;
21877         }
21878         var id = el.id;
21879         if(!id && autogen !== false){
21880             id = "roodd-" + (++autoIdSeed);
21881             el.id = id;
21882         }
21883         return id;
21884     };
21885     
21886     return {
21887     /**
21888      * Register a drag drop element
21889      * @param {String|HTMLElement} element The id or DOM node to register
21890      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21891      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21892      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21893      * populated in the data object (if applicable):
21894      * <pre>
21895 Value      Description<br />
21896 ---------  ------------------------------------------<br />
21897 handles    Array of DOM nodes that trigger dragging<br />
21898            for the element being registered<br />
21899 isHandle   True if the element passed in triggers<br />
21900            dragging itself, else false
21901 </pre>
21902      */
21903         register : function(el, data){
21904             data = data || {};
21905             if(typeof el == "string"){
21906                 el = document.getElementById(el);
21907             }
21908             data.ddel = el;
21909             elements[getId(el)] = data;
21910             if(data.isHandle !== false){
21911                 handles[data.ddel.id] = data;
21912             }
21913             if(data.handles){
21914                 var hs = data.handles;
21915                 for(var i = 0, len = hs.length; i < len; i++){
21916                         handles[getId(hs[i])] = data;
21917                 }
21918             }
21919         },
21920
21921     /**
21922      * Unregister a drag drop element
21923      * @param {String|HTMLElement}  element The id or DOM node to unregister
21924      */
21925         unregister : function(el){
21926             var id = getId(el, false);
21927             var data = elements[id];
21928             if(data){
21929                 delete elements[id];
21930                 if(data.handles){
21931                     var hs = data.handles;
21932                     for(var i = 0, len = hs.length; i < len; i++){
21933                         delete handles[getId(hs[i], false)];
21934                     }
21935                 }
21936             }
21937         },
21938
21939     /**
21940      * Returns the handle registered for a DOM Node by id
21941      * @param {String|HTMLElement} id The DOM node or id to look up
21942      * @return {Object} handle The custom handle data
21943      */
21944         getHandle : function(id){
21945             if(typeof id != "string"){ // must be element?
21946                 id = id.id;
21947             }
21948             return handles[id];
21949         },
21950
21951     /**
21952      * Returns the handle that is registered for the DOM node that is the target of the event
21953      * @param {Event} e The event
21954      * @return {Object} handle The custom handle data
21955      */
21956         getHandleFromEvent : function(e){
21957             var t = Roo.lib.Event.getTarget(e);
21958             return t ? handles[t.id] : null;
21959         },
21960
21961     /**
21962      * Returns a custom data object that is registered for a DOM node by id
21963      * @param {String|HTMLElement} id The DOM node or id to look up
21964      * @return {Object} data The custom data
21965      */
21966         getTarget : function(id){
21967             if(typeof id != "string"){ // must be element?
21968                 id = id.id;
21969             }
21970             return elements[id];
21971         },
21972
21973     /**
21974      * Returns a custom data object that is registered for the DOM node that is the target of the event
21975      * @param {Event} e The event
21976      * @return {Object} data The custom data
21977      */
21978         getTargetFromEvent : function(e){
21979             var t = Roo.lib.Event.getTarget(e);
21980             return t ? elements[t.id] || handles[t.id] : null;
21981         }
21982     };
21983 }();/*
21984  * Based on:
21985  * Ext JS Library 1.1.1
21986  * Copyright(c) 2006-2007, Ext JS, LLC.
21987  *
21988  * Originally Released Under LGPL - original licence link has changed is not relivant.
21989  *
21990  * Fork - LGPL
21991  * <script type="text/javascript">
21992  */
21993  
21994
21995 /**
21996  * @class Roo.dd.StatusProxy
21997  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
21998  * default drag proxy used by all Roo.dd components.
21999  * @constructor
22000  * @param {Object} config
22001  */
22002 Roo.dd.StatusProxy = function(config){
22003     Roo.apply(this, config);
22004     this.id = this.id || Roo.id();
22005     this.el = new Roo.Layer({
22006         dh: {
22007             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22008                 {tag: "div", cls: "x-dd-drop-icon"},
22009                 {tag: "div", cls: "x-dd-drag-ghost"}
22010             ]
22011         }, 
22012         shadow: !config || config.shadow !== false
22013     });
22014     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22015     this.dropStatus = this.dropNotAllowed;
22016 };
22017
22018 Roo.dd.StatusProxy.prototype = {
22019     /**
22020      * @cfg {String} dropAllowed
22021      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22022      */
22023     dropAllowed : "x-dd-drop-ok",
22024     /**
22025      * @cfg {String} dropNotAllowed
22026      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22027      */
22028     dropNotAllowed : "x-dd-drop-nodrop",
22029
22030     /**
22031      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22032      * over the current target element.
22033      * @param {String} cssClass The css class for the new drop status indicator image
22034      */
22035     setStatus : function(cssClass){
22036         cssClass = cssClass || this.dropNotAllowed;
22037         if(this.dropStatus != cssClass){
22038             this.el.replaceClass(this.dropStatus, cssClass);
22039             this.dropStatus = cssClass;
22040         }
22041     },
22042
22043     /**
22044      * Resets the status indicator to the default dropNotAllowed value
22045      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22046      */
22047     reset : function(clearGhost){
22048         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22049         this.dropStatus = this.dropNotAllowed;
22050         if(clearGhost){
22051             this.ghost.update("");
22052         }
22053     },
22054
22055     /**
22056      * Updates the contents of the ghost element
22057      * @param {String} html The html that will replace the current innerHTML of the ghost element
22058      */
22059     update : function(html){
22060         if(typeof html == "string"){
22061             this.ghost.update(html);
22062         }else{
22063             this.ghost.update("");
22064             html.style.margin = "0";
22065             this.ghost.dom.appendChild(html);
22066         }
22067         // ensure float = none set?? cant remember why though.
22068         var el = this.ghost.dom.firstChild;
22069                 if(el){
22070                         Roo.fly(el).setStyle('float', 'none');
22071                 }
22072     },
22073     
22074     /**
22075      * Returns the underlying proxy {@link Roo.Layer}
22076      * @return {Roo.Layer} el
22077     */
22078     getEl : function(){
22079         return this.el;
22080     },
22081
22082     /**
22083      * Returns the ghost element
22084      * @return {Roo.Element} el
22085      */
22086     getGhost : function(){
22087         return this.ghost;
22088     },
22089
22090     /**
22091      * Hides the proxy
22092      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22093      */
22094     hide : function(clear){
22095         this.el.hide();
22096         if(clear){
22097             this.reset(true);
22098         }
22099     },
22100
22101     /**
22102      * Stops the repair animation if it's currently running
22103      */
22104     stop : function(){
22105         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22106             this.anim.stop();
22107         }
22108     },
22109
22110     /**
22111      * Displays this proxy
22112      */
22113     show : function(){
22114         this.el.show();
22115     },
22116
22117     /**
22118      * Force the Layer to sync its shadow and shim positions to the element
22119      */
22120     sync : function(){
22121         this.el.sync();
22122     },
22123
22124     /**
22125      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22126      * invalid drop operation by the item being dragged.
22127      * @param {Array} xy The XY position of the element ([x, y])
22128      * @param {Function} callback The function to call after the repair is complete
22129      * @param {Object} scope The scope in which to execute the callback
22130      */
22131     repair : function(xy, callback, scope){
22132         this.callback = callback;
22133         this.scope = scope;
22134         if(xy && this.animRepair !== false){
22135             this.el.addClass("x-dd-drag-repair");
22136             this.el.hideUnders(true);
22137             this.anim = this.el.shift({
22138                 duration: this.repairDuration || .5,
22139                 easing: 'easeOut',
22140                 xy: xy,
22141                 stopFx: true,
22142                 callback: this.afterRepair,
22143                 scope: this
22144             });
22145         }else{
22146             this.afterRepair();
22147         }
22148     },
22149
22150     // private
22151     afterRepair : function(){
22152         this.hide(true);
22153         if(typeof this.callback == "function"){
22154             this.callback.call(this.scope || this);
22155         }
22156         this.callback = null;
22157         this.scope = null;
22158     }
22159 };/*
22160  * Based on:
22161  * Ext JS Library 1.1.1
22162  * Copyright(c) 2006-2007, Ext JS, LLC.
22163  *
22164  * Originally Released Under LGPL - original licence link has changed is not relivant.
22165  *
22166  * Fork - LGPL
22167  * <script type="text/javascript">
22168  */
22169
22170 /**
22171  * @class Roo.dd.DragSource
22172  * @extends Roo.dd.DDProxy
22173  * A simple class that provides the basic implementation needed to make any element draggable.
22174  * @constructor
22175  * @param {String/HTMLElement/Element} el The container element
22176  * @param {Object} config
22177  */
22178 Roo.dd.DragSource = function(el, config){
22179     this.el = Roo.get(el);
22180     this.dragData = {};
22181     
22182     Roo.apply(this, config);
22183     
22184     if(!this.proxy){
22185         this.proxy = new Roo.dd.StatusProxy();
22186     }
22187
22188     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22189           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22190     
22191     this.dragging = false;
22192 };
22193
22194 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22195     /**
22196      * @cfg {String} dropAllowed
22197      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22198      */
22199     dropAllowed : "x-dd-drop-ok",
22200     /**
22201      * @cfg {String} dropNotAllowed
22202      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22203      */
22204     dropNotAllowed : "x-dd-drop-nodrop",
22205
22206     /**
22207      * Returns the data object associated with this drag source
22208      * @return {Object} data An object containing arbitrary data
22209      */
22210     getDragData : function(e){
22211         return this.dragData;
22212     },
22213
22214     // private
22215     onDragEnter : function(e, id){
22216         var target = Roo.dd.DragDropMgr.getDDById(id);
22217         this.cachedTarget = target;
22218         if(this.beforeDragEnter(target, e, id) !== false){
22219             if(target.isNotifyTarget){
22220                 var status = target.notifyEnter(this, e, this.dragData);
22221                 this.proxy.setStatus(status);
22222             }else{
22223                 this.proxy.setStatus(this.dropAllowed);
22224             }
22225             
22226             if(this.afterDragEnter){
22227                 /**
22228                  * An empty function by default, but provided so that you can perform a custom action
22229                  * when the dragged item enters the drop target by providing an implementation.
22230                  * @param {Roo.dd.DragDrop} target The drop target
22231                  * @param {Event} e The event object
22232                  * @param {String} id The id of the dragged element
22233                  * @method afterDragEnter
22234                  */
22235                 this.afterDragEnter(target, e, id);
22236             }
22237         }
22238     },
22239
22240     /**
22241      * An empty function by default, but provided so that you can perform a custom action
22242      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22243      * @param {Roo.dd.DragDrop} target The drop target
22244      * @param {Event} e The event object
22245      * @param {String} id The id of the dragged element
22246      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22247      */
22248     beforeDragEnter : function(target, e, id){
22249         return true;
22250     },
22251
22252     // private
22253     alignElWithMouse: function() {
22254         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22255         this.proxy.sync();
22256     },
22257
22258     // private
22259     onDragOver : function(e, id){
22260         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22261         if(this.beforeDragOver(target, e, id) !== false){
22262             if(target.isNotifyTarget){
22263                 var status = target.notifyOver(this, e, this.dragData);
22264                 this.proxy.setStatus(status);
22265             }
22266
22267             if(this.afterDragOver){
22268                 /**
22269                  * An empty function by default, but provided so that you can perform a custom action
22270                  * while the dragged item is over the drop target by providing an implementation.
22271                  * @param {Roo.dd.DragDrop} target The drop target
22272                  * @param {Event} e The event object
22273                  * @param {String} id The id of the dragged element
22274                  * @method afterDragOver
22275                  */
22276                 this.afterDragOver(target, e, id);
22277             }
22278         }
22279     },
22280
22281     /**
22282      * An empty function by default, but provided so that you can perform a custom action
22283      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22284      * @param {Roo.dd.DragDrop} target The drop target
22285      * @param {Event} e The event object
22286      * @param {String} id The id of the dragged element
22287      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22288      */
22289     beforeDragOver : function(target, e, id){
22290         return true;
22291     },
22292
22293     // private
22294     onDragOut : function(e, id){
22295         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22296         if(this.beforeDragOut(target, e, id) !== false){
22297             if(target.isNotifyTarget){
22298                 target.notifyOut(this, e, this.dragData);
22299             }
22300             this.proxy.reset();
22301             if(this.afterDragOut){
22302                 /**
22303                  * An empty function by default, but provided so that you can perform a custom action
22304                  * after the dragged item is dragged out of the target without dropping.
22305                  * @param {Roo.dd.DragDrop} target The drop target
22306                  * @param {Event} e The event object
22307                  * @param {String} id The id of the dragged element
22308                  * @method afterDragOut
22309                  */
22310                 this.afterDragOut(target, e, id);
22311             }
22312         }
22313         this.cachedTarget = null;
22314     },
22315
22316     /**
22317      * An empty function by default, but provided so that you can perform a custom action before the dragged
22318      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22319      * @param {Roo.dd.DragDrop} target The drop target
22320      * @param {Event} e The event object
22321      * @param {String} id The id of the dragged element
22322      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22323      */
22324     beforeDragOut : function(target, e, id){
22325         return true;
22326     },
22327     
22328     // private
22329     onDragDrop : function(e, id){
22330         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22331         if(this.beforeDragDrop(target, e, id) !== false){
22332             if(target.isNotifyTarget){
22333                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22334                     this.onValidDrop(target, e, id);
22335                 }else{
22336                     this.onInvalidDrop(target, e, id);
22337                 }
22338             }else{
22339                 this.onValidDrop(target, e, id);
22340             }
22341             
22342             if(this.afterDragDrop){
22343                 /**
22344                  * An empty function by default, but provided so that you can perform a custom action
22345                  * after a valid drag drop has occurred by providing an implementation.
22346                  * @param {Roo.dd.DragDrop} target The drop target
22347                  * @param {Event} e The event object
22348                  * @param {String} id The id of the dropped element
22349                  * @method afterDragDrop
22350                  */
22351                 this.afterDragDrop(target, e, id);
22352             }
22353         }
22354         delete this.cachedTarget;
22355     },
22356
22357     /**
22358      * An empty function by default, but provided so that you can perform a custom action before the dragged
22359      * item is dropped onto the target and optionally cancel the onDragDrop.
22360      * @param {Roo.dd.DragDrop} target The drop target
22361      * @param {Event} e The event object
22362      * @param {String} id The id of the dragged element
22363      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22364      */
22365     beforeDragDrop : function(target, e, id){
22366         return true;
22367     },
22368
22369     // private
22370     onValidDrop : function(target, e, id){
22371         this.hideProxy();
22372         if(this.afterValidDrop){
22373             /**
22374              * An empty function by default, but provided so that you can perform a custom action
22375              * after a valid drop has occurred by providing an implementation.
22376              * @param {Object} target The target DD 
22377              * @param {Event} e The event object
22378              * @param {String} id The id of the dropped element
22379              * @method afterInvalidDrop
22380              */
22381             this.afterValidDrop(target, e, id);
22382         }
22383     },
22384
22385     // private
22386     getRepairXY : function(e, data){
22387         return this.el.getXY();  
22388     },
22389
22390     // private
22391     onInvalidDrop : function(target, e, id){
22392         this.beforeInvalidDrop(target, e, id);
22393         if(this.cachedTarget){
22394             if(this.cachedTarget.isNotifyTarget){
22395                 this.cachedTarget.notifyOut(this, e, this.dragData);
22396             }
22397             this.cacheTarget = null;
22398         }
22399         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22400
22401         if(this.afterInvalidDrop){
22402             /**
22403              * An empty function by default, but provided so that you can perform a custom action
22404              * after an invalid drop has occurred by providing an implementation.
22405              * @param {Event} e The event object
22406              * @param {String} id The id of the dropped element
22407              * @method afterInvalidDrop
22408              */
22409             this.afterInvalidDrop(e, id);
22410         }
22411     },
22412
22413     // private
22414     afterRepair : function(){
22415         if(Roo.enableFx){
22416             this.el.highlight(this.hlColor || "c3daf9");
22417         }
22418         this.dragging = false;
22419     },
22420
22421     /**
22422      * An empty function by default, but provided so that you can perform a custom action after an invalid
22423      * drop has occurred.
22424      * @param {Roo.dd.DragDrop} target The drop target
22425      * @param {Event} e The event object
22426      * @param {String} id The id of the dragged element
22427      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22428      */
22429     beforeInvalidDrop : function(target, e, id){
22430         return true;
22431     },
22432
22433     // private
22434     handleMouseDown : function(e){
22435         if(this.dragging) {
22436             return;
22437         }
22438         var data = this.getDragData(e);
22439         if(data && this.onBeforeDrag(data, e) !== false){
22440             this.dragData = data;
22441             this.proxy.stop();
22442             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22443         } 
22444     },
22445
22446     /**
22447      * An empty function by default, but provided so that you can perform a custom action before the initial
22448      * drag event begins and optionally cancel it.
22449      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22450      * @param {Event} e The event object
22451      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22452      */
22453     onBeforeDrag : function(data, e){
22454         return true;
22455     },
22456
22457     /**
22458      * An empty function by default, but provided so that you can perform a custom action once the initial
22459      * drag event has begun.  The drag cannot be canceled from this function.
22460      * @param {Number} x The x position of the click on the dragged object
22461      * @param {Number} y The y position of the click on the dragged object
22462      */
22463     onStartDrag : Roo.emptyFn,
22464
22465     // private - YUI override
22466     startDrag : function(x, y){
22467         this.proxy.reset();
22468         this.dragging = true;
22469         this.proxy.update("");
22470         this.onInitDrag(x, y);
22471         this.proxy.show();
22472     },
22473
22474     // private
22475     onInitDrag : function(x, y){
22476         var clone = this.el.dom.cloneNode(true);
22477         clone.id = Roo.id(); // prevent duplicate ids
22478         this.proxy.update(clone);
22479         this.onStartDrag(x, y);
22480         return true;
22481     },
22482
22483     /**
22484      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22485      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22486      */
22487     getProxy : function(){
22488         return this.proxy;  
22489     },
22490
22491     /**
22492      * Hides the drag source's {@link Roo.dd.StatusProxy}
22493      */
22494     hideProxy : function(){
22495         this.proxy.hide();  
22496         this.proxy.reset(true);
22497         this.dragging = false;
22498     },
22499
22500     // private
22501     triggerCacheRefresh : function(){
22502         Roo.dd.DDM.refreshCache(this.groups);
22503     },
22504
22505     // private - override to prevent hiding
22506     b4EndDrag: function(e) {
22507     },
22508
22509     // private - override to prevent moving
22510     endDrag : function(e){
22511         this.onEndDrag(this.dragData, e);
22512     },
22513
22514     // private
22515     onEndDrag : function(data, e){
22516     },
22517     
22518     // private - pin to cursor
22519     autoOffset : function(x, y) {
22520         this.setDelta(-12, -20);
22521     }    
22522 });/*
22523  * Based on:
22524  * Ext JS Library 1.1.1
22525  * Copyright(c) 2006-2007, Ext JS, LLC.
22526  *
22527  * Originally Released Under LGPL - original licence link has changed is not relivant.
22528  *
22529  * Fork - LGPL
22530  * <script type="text/javascript">
22531  */
22532
22533
22534 /**
22535  * @class Roo.dd.DropTarget
22536  * @extends Roo.dd.DDTarget
22537  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22538  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22539  * @constructor
22540  * @param {String/HTMLElement/Element} el The container element
22541  * @param {Object} config
22542  */
22543 Roo.dd.DropTarget = function(el, config){
22544     this.el = Roo.get(el);
22545     
22546     var listeners = false; ;
22547     if (config && config.listeners) {
22548         listeners= config.listeners;
22549         delete config.listeners;
22550     }
22551     Roo.apply(this, config);
22552     
22553     if(this.containerScroll){
22554         Roo.dd.ScrollManager.register(this.el);
22555     }
22556     this.addEvents( {
22557          /**
22558          * @scope Roo.dd.DropTarget
22559          */
22560          
22561          /**
22562          * @event enter
22563          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22564          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22565          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22566          * 
22567          * IMPORTANT : it should set  this.valid to true|false
22568          * 
22569          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22570          * @param {Event} e The event
22571          * @param {Object} data An object containing arbitrary data supplied by the drag source
22572          */
22573         "enter" : true,
22574         
22575          /**
22576          * @event over
22577          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22578          * This method will be called on every mouse movement while the drag source is over the drop target.
22579          * This default implementation simply returns the dropAllowed config value.
22580          * 
22581          * IMPORTANT : it should set  this.valid to true|false
22582          * 
22583          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22584          * @param {Event} e The event
22585          * @param {Object} data An object containing arbitrary data supplied by the drag source
22586          
22587          */
22588         "over" : true,
22589         /**
22590          * @event out
22591          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22592          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22593          * overClass (if any) from the drop element.
22594          * 
22595          * 
22596          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22597          * @param {Event} e The event
22598          * @param {Object} data An object containing arbitrary data supplied by the drag source
22599          */
22600          "out" : true,
22601          
22602         /**
22603          * @event drop
22604          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22605          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22606          * implementation that does something to process the drop event and returns true so that the drag source's
22607          * repair action does not run.
22608          * 
22609          * IMPORTANT : it should set this.success
22610          * 
22611          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22612          * @param {Event} e The event
22613          * @param {Object} data An object containing arbitrary data supplied by the drag source
22614         */
22615          "drop" : true
22616     });
22617             
22618      
22619     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22620         this.el.dom, 
22621         this.ddGroup || this.group,
22622         {
22623             isTarget: true,
22624             listeners : listeners || {} 
22625            
22626         
22627         }
22628     );
22629
22630 };
22631
22632 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22633     /**
22634      * @cfg {String} overClass
22635      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22636      */
22637      /**
22638      * @cfg {String} ddGroup
22639      * The drag drop group to handle drop events for
22640      */
22641      
22642     /**
22643      * @cfg {String} dropAllowed
22644      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22645      */
22646     dropAllowed : "x-dd-drop-ok",
22647     /**
22648      * @cfg {String} dropNotAllowed
22649      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22650      */
22651     dropNotAllowed : "x-dd-drop-nodrop",
22652     /**
22653      * @cfg {boolean} success
22654      * set this after drop listener.. 
22655      */
22656     success : false,
22657     /**
22658      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22659      * if the drop point is valid for over/enter..
22660      */
22661     valid : false,
22662     // private
22663     isTarget : true,
22664
22665     // private
22666     isNotifyTarget : true,
22667     
22668     /**
22669      * @hide
22670      */
22671     notifyEnter : function(dd, e, data)
22672     {
22673         this.valid = true;
22674         this.fireEvent('enter', dd, e, data);
22675         if(this.overClass){
22676             this.el.addClass(this.overClass);
22677         }
22678         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22679             this.valid ? this.dropAllowed : this.dropNotAllowed
22680         );
22681     },
22682
22683     /**
22684      * @hide
22685      */
22686     notifyOver : function(dd, e, data)
22687     {
22688         this.valid = true;
22689         this.fireEvent('over', dd, e, data);
22690         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22691             this.valid ? this.dropAllowed : this.dropNotAllowed
22692         );
22693     },
22694
22695     /**
22696      * @hide
22697      */
22698     notifyOut : function(dd, e, data)
22699     {
22700         this.fireEvent('out', dd, e, data);
22701         if(this.overClass){
22702             this.el.removeClass(this.overClass);
22703         }
22704     },
22705
22706     /**
22707      * @hide
22708      */
22709     notifyDrop : function(dd, e, data)
22710     {
22711         this.success = false;
22712         this.fireEvent('drop', dd, e, data);
22713         return this.success;
22714     }
22715 });/*
22716  * Based on:
22717  * Ext JS Library 1.1.1
22718  * Copyright(c) 2006-2007, Ext JS, LLC.
22719  *
22720  * Originally Released Under LGPL - original licence link has changed is not relivant.
22721  *
22722  * Fork - LGPL
22723  * <script type="text/javascript">
22724  */
22725
22726
22727 /**
22728  * @class Roo.dd.DragZone
22729  * @extends Roo.dd.DragSource
22730  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22731  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22732  * @constructor
22733  * @param {String/HTMLElement/Element} el The container element
22734  * @param {Object} config
22735  */
22736 Roo.dd.DragZone = function(el, config){
22737     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22738     if(this.containerScroll){
22739         Roo.dd.ScrollManager.register(this.el);
22740     }
22741 };
22742
22743 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22744     /**
22745      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22746      * for auto scrolling during drag operations.
22747      */
22748     /**
22749      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22750      * method after a failed drop (defaults to "c3daf9" - light blue)
22751      */
22752
22753     /**
22754      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22755      * for a valid target to drag based on the mouse down. Override this method
22756      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22757      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22758      * @param {EventObject} e The mouse down event
22759      * @return {Object} The dragData
22760      */
22761     getDragData : function(e){
22762         return Roo.dd.Registry.getHandleFromEvent(e);
22763     },
22764     
22765     /**
22766      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22767      * this.dragData.ddel
22768      * @param {Number} x The x position of the click on the dragged object
22769      * @param {Number} y The y position of the click on the dragged object
22770      * @return {Boolean} true to continue the drag, false to cancel
22771      */
22772     onInitDrag : function(x, y){
22773         this.proxy.update(this.dragData.ddel.cloneNode(true));
22774         this.onStartDrag(x, y);
22775         return true;
22776     },
22777     
22778     /**
22779      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22780      */
22781     afterRepair : function(){
22782         if(Roo.enableFx){
22783             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22784         }
22785         this.dragging = false;
22786     },
22787
22788     /**
22789      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22790      * the XY of this.dragData.ddel
22791      * @param {EventObject} e The mouse up event
22792      * @return {Array} The xy location (e.g. [100, 200])
22793      */
22794     getRepairXY : function(e){
22795         return Roo.Element.fly(this.dragData.ddel).getXY();  
22796     }
22797 });/*
22798  * Based on:
22799  * Ext JS Library 1.1.1
22800  * Copyright(c) 2006-2007, Ext JS, LLC.
22801  *
22802  * Originally Released Under LGPL - original licence link has changed is not relivant.
22803  *
22804  * Fork - LGPL
22805  * <script type="text/javascript">
22806  */
22807 /**
22808  * @class Roo.dd.DropZone
22809  * @extends Roo.dd.DropTarget
22810  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22811  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22812  * @constructor
22813  * @param {String/HTMLElement/Element} el The container element
22814  * @param {Object} config
22815  */
22816 Roo.dd.DropZone = function(el, config){
22817     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22818 };
22819
22820 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22821     /**
22822      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22823      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22824      * provide your own custom lookup.
22825      * @param {Event} e The event
22826      * @return {Object} data The custom data
22827      */
22828     getTargetFromEvent : function(e){
22829         return Roo.dd.Registry.getTargetFromEvent(e);
22830     },
22831
22832     /**
22833      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22834      * that it has registered.  This method has no default implementation and should be overridden to provide
22835      * node-specific processing if necessary.
22836      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22837      * {@link #getTargetFromEvent} for this node)
22838      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22839      * @param {Event} e The event
22840      * @param {Object} data An object containing arbitrary data supplied by the drag source
22841      */
22842     onNodeEnter : function(n, dd, e, data){
22843         
22844     },
22845
22846     /**
22847      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22848      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22849      * overridden to provide the proper feedback.
22850      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22851      * {@link #getTargetFromEvent} for this node)
22852      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22853      * @param {Event} e The event
22854      * @param {Object} data An object containing arbitrary data supplied by the drag source
22855      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22856      * underlying {@link Roo.dd.StatusProxy} can be updated
22857      */
22858     onNodeOver : function(n, dd, e, data){
22859         return this.dropAllowed;
22860     },
22861
22862     /**
22863      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22864      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22865      * node-specific processing if necessary.
22866      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22867      * {@link #getTargetFromEvent} for this node)
22868      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22869      * @param {Event} e The event
22870      * @param {Object} data An object containing arbitrary data supplied by the drag source
22871      */
22872     onNodeOut : function(n, dd, e, data){
22873         
22874     },
22875
22876     /**
22877      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22878      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22879      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22880      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22881      * {@link #getTargetFromEvent} for this node)
22882      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22883      * @param {Event} e The event
22884      * @param {Object} data An object containing arbitrary data supplied by the drag source
22885      * @return {Boolean} True if the drop was valid, else false
22886      */
22887     onNodeDrop : function(n, dd, e, data){
22888         return false;
22889     },
22890
22891     /**
22892      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22893      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22894      * it should be overridden to provide the proper feedback if necessary.
22895      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22896      * @param {Event} e The event
22897      * @param {Object} data An object containing arbitrary data supplied by the drag source
22898      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22899      * underlying {@link Roo.dd.StatusProxy} can be updated
22900      */
22901     onContainerOver : function(dd, e, data){
22902         return this.dropNotAllowed;
22903     },
22904
22905     /**
22906      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22907      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22908      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22909      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22910      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22911      * @param {Event} e The event
22912      * @param {Object} data An object containing arbitrary data supplied by the drag source
22913      * @return {Boolean} True if the drop was valid, else false
22914      */
22915     onContainerDrop : function(dd, e, data){
22916         return false;
22917     },
22918
22919     /**
22920      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22921      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22922      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22923      * you should override this method and provide a custom implementation.
22924      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22925      * @param {Event} e The event
22926      * @param {Object} data An object containing arbitrary data supplied by the drag source
22927      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22928      * underlying {@link Roo.dd.StatusProxy} can be updated
22929      */
22930     notifyEnter : function(dd, e, data){
22931         return this.dropNotAllowed;
22932     },
22933
22934     /**
22935      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22936      * This method will be called on every mouse movement while the drag source is over the drop zone.
22937      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22938      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22939      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22940      * registered node, it will call {@link #onContainerOver}.
22941      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22942      * @param {Event} e The event
22943      * @param {Object} data An object containing arbitrary data supplied by the drag source
22944      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22945      * underlying {@link Roo.dd.StatusProxy} can be updated
22946      */
22947     notifyOver : function(dd, e, data){
22948         var n = this.getTargetFromEvent(e);
22949         if(!n){ // not over valid drop target
22950             if(this.lastOverNode){
22951                 this.onNodeOut(this.lastOverNode, dd, e, data);
22952                 this.lastOverNode = null;
22953             }
22954             return this.onContainerOver(dd, e, data);
22955         }
22956         if(this.lastOverNode != n){
22957             if(this.lastOverNode){
22958                 this.onNodeOut(this.lastOverNode, dd, e, data);
22959             }
22960             this.onNodeEnter(n, dd, e, data);
22961             this.lastOverNode = n;
22962         }
22963         return this.onNodeOver(n, dd, e, data);
22964     },
22965
22966     /**
22967      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22968      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22969      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22970      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22971      * @param {Event} e The event
22972      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22973      */
22974     notifyOut : function(dd, e, data){
22975         if(this.lastOverNode){
22976             this.onNodeOut(this.lastOverNode, dd, e, data);
22977             this.lastOverNode = null;
22978         }
22979     },
22980
22981     /**
22982      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22983      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22984      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22985      * otherwise it will call {@link #onContainerDrop}.
22986      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22987      * @param {Event} e The event
22988      * @param {Object} data An object containing arbitrary data supplied by the drag source
22989      * @return {Boolean} True if the drop was valid, else false
22990      */
22991     notifyDrop : function(dd, e, data){
22992         if(this.lastOverNode){
22993             this.onNodeOut(this.lastOverNode, dd, e, data);
22994             this.lastOverNode = null;
22995         }
22996         var n = this.getTargetFromEvent(e);
22997         return n ?
22998             this.onNodeDrop(n, dd, e, data) :
22999             this.onContainerDrop(dd, e, data);
23000     },
23001
23002     // private
23003     triggerCacheRefresh : function(){
23004         Roo.dd.DDM.refreshCache(this.groups);
23005     }  
23006 });/*
23007  * Based on:
23008  * Ext JS Library 1.1.1
23009  * Copyright(c) 2006-2007, Ext JS, LLC.
23010  *
23011  * Originally Released Under LGPL - original licence link has changed is not relivant.
23012  *
23013  * Fork - LGPL
23014  * <script type="text/javascript">
23015  */
23016
23017
23018 /**
23019  * @class Roo.data.SortTypes
23020  * @singleton
23021  * Defines the default sorting (casting?) comparison functions used when sorting data.
23022  */
23023 Roo.data.SortTypes = {
23024     /**
23025      * Default sort that does nothing
23026      * @param {Mixed} s The value being converted
23027      * @return {Mixed} The comparison value
23028      */
23029     none : function(s){
23030         return s;
23031     },
23032     
23033     /**
23034      * The regular expression used to strip tags
23035      * @type {RegExp}
23036      * @property
23037      */
23038     stripTagsRE : /<\/?[^>]+>/gi,
23039     
23040     /**
23041      * Strips all HTML tags to sort on text only
23042      * @param {Mixed} s The value being converted
23043      * @return {String} The comparison value
23044      */
23045     asText : function(s){
23046         return String(s).replace(this.stripTagsRE, "");
23047     },
23048     
23049     /**
23050      * Strips all HTML tags to sort on text only - Case insensitive
23051      * @param {Mixed} s The value being converted
23052      * @return {String} The comparison value
23053      */
23054     asUCText : function(s){
23055         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23056     },
23057     
23058     /**
23059      * Case insensitive string
23060      * @param {Mixed} s The value being converted
23061      * @return {String} The comparison value
23062      */
23063     asUCString : function(s) {
23064         return String(s).toUpperCase();
23065     },
23066     
23067     /**
23068      * Date sorting
23069      * @param {Mixed} s The value being converted
23070      * @return {Number} The comparison value
23071      */
23072     asDate : function(s) {
23073         if(!s){
23074             return 0;
23075         }
23076         if(s instanceof Date){
23077             return s.getTime();
23078         }
23079         return Date.parse(String(s));
23080     },
23081     
23082     /**
23083      * Float sorting
23084      * @param {Mixed} s The value being converted
23085      * @return {Float} The comparison value
23086      */
23087     asFloat : function(s) {
23088         var val = parseFloat(String(s).replace(/,/g, ""));
23089         if(isNaN(val)) {
23090             val = 0;
23091         }
23092         return val;
23093     },
23094     
23095     /**
23096      * Integer sorting
23097      * @param {Mixed} s The value being converted
23098      * @return {Number} The comparison value
23099      */
23100     asInt : function(s) {
23101         var val = parseInt(String(s).replace(/,/g, ""));
23102         if(isNaN(val)) {
23103             val = 0;
23104         }
23105         return val;
23106     }
23107 };/*
23108  * Based on:
23109  * Ext JS Library 1.1.1
23110  * Copyright(c) 2006-2007, Ext JS, LLC.
23111  *
23112  * Originally Released Under LGPL - original licence link has changed is not relivant.
23113  *
23114  * Fork - LGPL
23115  * <script type="text/javascript">
23116  */
23117
23118 /**
23119 * @class Roo.data.Record
23120  * Instances of this class encapsulate both record <em>definition</em> information, and record
23121  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23122  * to access Records cached in an {@link Roo.data.Store} object.<br>
23123  * <p>
23124  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23125  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23126  * objects.<br>
23127  * <p>
23128  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23129  * @constructor
23130  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23131  * {@link #create}. The parameters are the same.
23132  * @param {Array} data An associative Array of data values keyed by the field name.
23133  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23134  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23135  * not specified an integer id is generated.
23136  */
23137 Roo.data.Record = function(data, id){
23138     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23139     this.data = data;
23140 };
23141
23142 /**
23143  * Generate a constructor for a specific record layout.
23144  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23145  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23146  * Each field definition object may contain the following properties: <ul>
23147  * <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,
23148  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23149  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23150  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23151  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23152  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23153  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23154  * this may be omitted.</p></li>
23155  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23156  * <ul><li>auto (Default, implies no conversion)</li>
23157  * <li>string</li>
23158  * <li>int</li>
23159  * <li>float</li>
23160  * <li>boolean</li>
23161  * <li>date</li></ul></p></li>
23162  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23163  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23164  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23165  * by the Reader into an object that will be stored in the Record. It is passed the
23166  * following parameters:<ul>
23167  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23168  * </ul></p></li>
23169  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23170  * </ul>
23171  * <br>usage:<br><pre><code>
23172 var TopicRecord = Roo.data.Record.create(
23173     {name: 'title', mapping: 'topic_title'},
23174     {name: 'author', mapping: 'username'},
23175     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23176     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23177     {name: 'lastPoster', mapping: 'user2'},
23178     {name: 'excerpt', mapping: 'post_text'}
23179 );
23180
23181 var myNewRecord = new TopicRecord({
23182     title: 'Do my job please',
23183     author: 'noobie',
23184     totalPosts: 1,
23185     lastPost: new Date(),
23186     lastPoster: 'Animal',
23187     excerpt: 'No way dude!'
23188 });
23189 myStore.add(myNewRecord);
23190 </code></pre>
23191  * @method create
23192  * @static
23193  */
23194 Roo.data.Record.create = function(o){
23195     var f = function(){
23196         f.superclass.constructor.apply(this, arguments);
23197     };
23198     Roo.extend(f, Roo.data.Record);
23199     var p = f.prototype;
23200     p.fields = new Roo.util.MixedCollection(false, function(field){
23201         return field.name;
23202     });
23203     for(var i = 0, len = o.length; i < len; i++){
23204         p.fields.add(new Roo.data.Field(o[i]));
23205     }
23206     f.getField = function(name){
23207         return p.fields.get(name);  
23208     };
23209     return f;
23210 };
23211
23212 Roo.data.Record.AUTO_ID = 1000;
23213 Roo.data.Record.EDIT = 'edit';
23214 Roo.data.Record.REJECT = 'reject';
23215 Roo.data.Record.COMMIT = 'commit';
23216
23217 Roo.data.Record.prototype = {
23218     /**
23219      * Readonly flag - true if this record has been modified.
23220      * @type Boolean
23221      */
23222     dirty : false,
23223     editing : false,
23224     error: null,
23225     modified: null,
23226
23227     // private
23228     join : function(store){
23229         this.store = store;
23230     },
23231
23232     /**
23233      * Set the named field to the specified value.
23234      * @param {String} name The name of the field to set.
23235      * @param {Object} value The value to set the field to.
23236      */
23237     set : function(name, value){
23238         if(this.data[name] == value){
23239             return;
23240         }
23241         this.dirty = true;
23242         if(!this.modified){
23243             this.modified = {};
23244         }
23245         if(typeof this.modified[name] == 'undefined'){
23246             this.modified[name] = this.data[name];
23247         }
23248         this.data[name] = value;
23249         if(!this.editing && this.store){
23250             this.store.afterEdit(this);
23251         }       
23252     },
23253
23254     /**
23255      * Get the value of the named field.
23256      * @param {String} name The name of the field to get the value of.
23257      * @return {Object} The value of the field.
23258      */
23259     get : function(name){
23260         return this.data[name]; 
23261     },
23262
23263     // private
23264     beginEdit : function(){
23265         this.editing = true;
23266         this.modified = {}; 
23267     },
23268
23269     // private
23270     cancelEdit : function(){
23271         this.editing = false;
23272         delete this.modified;
23273     },
23274
23275     // private
23276     endEdit : function(){
23277         this.editing = false;
23278         if(this.dirty && this.store){
23279             this.store.afterEdit(this);
23280         }
23281     },
23282
23283     /**
23284      * Usually called by the {@link Roo.data.Store} which owns the Record.
23285      * Rejects all changes made to the Record since either creation, or the last commit operation.
23286      * Modified fields are reverted to their original values.
23287      * <p>
23288      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23289      * of reject operations.
23290      */
23291     reject : function(){
23292         var m = this.modified;
23293         for(var n in m){
23294             if(typeof m[n] != "function"){
23295                 this.data[n] = m[n];
23296             }
23297         }
23298         this.dirty = false;
23299         delete this.modified;
23300         this.editing = false;
23301         if(this.store){
23302             this.store.afterReject(this);
23303         }
23304     },
23305
23306     /**
23307      * Usually called by the {@link Roo.data.Store} which owns the Record.
23308      * Commits all changes made to the Record since either creation, or the last commit operation.
23309      * <p>
23310      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23311      * of commit operations.
23312      */
23313     commit : function(){
23314         this.dirty = false;
23315         delete this.modified;
23316         this.editing = false;
23317         if(this.store){
23318             this.store.afterCommit(this);
23319         }
23320     },
23321
23322     // private
23323     hasError : function(){
23324         return this.error != null;
23325     },
23326
23327     // private
23328     clearError : function(){
23329         this.error = null;
23330     },
23331
23332     /**
23333      * Creates a copy of this record.
23334      * @param {String} id (optional) A new record id if you don't want to use this record's id
23335      * @return {Record}
23336      */
23337     copy : function(newId) {
23338         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23339     }
23340 };/*
23341  * Based on:
23342  * Ext JS Library 1.1.1
23343  * Copyright(c) 2006-2007, Ext JS, LLC.
23344  *
23345  * Originally Released Under LGPL - original licence link has changed is not relivant.
23346  *
23347  * Fork - LGPL
23348  * <script type="text/javascript">
23349  */
23350
23351
23352
23353 /**
23354  * @class Roo.data.Store
23355  * @extends Roo.util.Observable
23356  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23357  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23358  * <p>
23359  * 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
23360  * has no knowledge of the format of the data returned by the Proxy.<br>
23361  * <p>
23362  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23363  * instances from the data object. These records are cached and made available through accessor functions.
23364  * @constructor
23365  * Creates a new Store.
23366  * @param {Object} config A config object containing the objects needed for the Store to access data,
23367  * and read the data into Records.
23368  */
23369 Roo.data.Store = function(config){
23370     this.data = new Roo.util.MixedCollection(false);
23371     this.data.getKey = function(o){
23372         return o.id;
23373     };
23374     this.baseParams = {};
23375     // private
23376     this.paramNames = {
23377         "start" : "start",
23378         "limit" : "limit",
23379         "sort" : "sort",
23380         "dir" : "dir",
23381         "multisort" : "_multisort"
23382     };
23383
23384     if(config && config.data){
23385         this.inlineData = config.data;
23386         delete config.data;
23387     }
23388
23389     Roo.apply(this, config);
23390     
23391     if(this.reader){ // reader passed
23392         this.reader = Roo.factory(this.reader, Roo.data);
23393         this.reader.xmodule = this.xmodule || false;
23394         if(!this.recordType){
23395             this.recordType = this.reader.recordType;
23396         }
23397         if(this.reader.onMetaChange){
23398             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23399         }
23400     }
23401
23402     if(this.recordType){
23403         this.fields = this.recordType.prototype.fields;
23404     }
23405     this.modified = [];
23406
23407     this.addEvents({
23408         /**
23409          * @event datachanged
23410          * Fires when the data cache has changed, and a widget which is using this Store
23411          * as a Record cache should refresh its view.
23412          * @param {Store} this
23413          */
23414         datachanged : true,
23415         /**
23416          * @event metachange
23417          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23418          * @param {Store} this
23419          * @param {Object} meta The JSON metadata
23420          */
23421         metachange : true,
23422         /**
23423          * @event add
23424          * Fires when Records have been added to the Store
23425          * @param {Store} this
23426          * @param {Roo.data.Record[]} records The array of Records added
23427          * @param {Number} index The index at which the record(s) were added
23428          */
23429         add : true,
23430         /**
23431          * @event remove
23432          * Fires when a Record has been removed from the Store
23433          * @param {Store} this
23434          * @param {Roo.data.Record} record The Record that was removed
23435          * @param {Number} index The index at which the record was removed
23436          */
23437         remove : true,
23438         /**
23439          * @event update
23440          * Fires when a Record has been updated
23441          * @param {Store} this
23442          * @param {Roo.data.Record} record The Record that was updated
23443          * @param {String} operation The update operation being performed.  Value may be one of:
23444          * <pre><code>
23445  Roo.data.Record.EDIT
23446  Roo.data.Record.REJECT
23447  Roo.data.Record.COMMIT
23448          * </code></pre>
23449          */
23450         update : true,
23451         /**
23452          * @event clear
23453          * Fires when the data cache has been cleared.
23454          * @param {Store} this
23455          */
23456         clear : true,
23457         /**
23458          * @event beforeload
23459          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23460          * the load action will be canceled.
23461          * @param {Store} this
23462          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23463          */
23464         beforeload : true,
23465         /**
23466          * @event beforeloadadd
23467          * Fires after a new set of Records has been loaded.
23468          * @param {Store} this
23469          * @param {Roo.data.Record[]} records The Records that were loaded
23470          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23471          */
23472         beforeloadadd : true,
23473         /**
23474          * @event load
23475          * Fires after a new set of Records has been loaded, before they are added to the store.
23476          * @param {Store} this
23477          * @param {Roo.data.Record[]} records The Records that were loaded
23478          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23479          * @params {Object} return from reader
23480          */
23481         load : true,
23482         /**
23483          * @event loadexception
23484          * Fires if an exception occurs in the Proxy during loading.
23485          * Called with the signature of the Proxy's "loadexception" event.
23486          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23487          * 
23488          * @param {Proxy} 
23489          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23490          * @param {Object} load options 
23491          * @param {Object} jsonData from your request (normally this contains the Exception)
23492          */
23493         loadexception : true
23494     });
23495     
23496     if(this.proxy){
23497         this.proxy = Roo.factory(this.proxy, Roo.data);
23498         this.proxy.xmodule = this.xmodule || false;
23499         this.relayEvents(this.proxy,  ["loadexception"]);
23500     }
23501     this.sortToggle = {};
23502     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23503
23504     Roo.data.Store.superclass.constructor.call(this);
23505
23506     if(this.inlineData){
23507         this.loadData(this.inlineData);
23508         delete this.inlineData;
23509     }
23510 };
23511
23512 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23513      /**
23514     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23515     * without a remote query - used by combo/forms at present.
23516     */
23517     
23518     /**
23519     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23520     */
23521     /**
23522     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23523     */
23524     /**
23525     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23526     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23527     */
23528     /**
23529     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23530     * on any HTTP request
23531     */
23532     /**
23533     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23534     */
23535     /**
23536     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23537     */
23538     multiSort: false,
23539     /**
23540     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23541     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23542     */
23543     remoteSort : false,
23544
23545     /**
23546     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23547      * loaded or when a record is removed. (defaults to false).
23548     */
23549     pruneModifiedRecords : false,
23550
23551     // private
23552     lastOptions : null,
23553
23554     /**
23555      * Add Records to the Store and fires the add event.
23556      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23557      */
23558     add : function(records){
23559         records = [].concat(records);
23560         for(var i = 0, len = records.length; i < len; i++){
23561             records[i].join(this);
23562         }
23563         var index = this.data.length;
23564         this.data.addAll(records);
23565         this.fireEvent("add", this, records, index);
23566     },
23567
23568     /**
23569      * Remove a Record from the Store and fires the remove event.
23570      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23571      */
23572     remove : function(record){
23573         var index = this.data.indexOf(record);
23574         this.data.removeAt(index);
23575  
23576         if(this.pruneModifiedRecords){
23577             this.modified.remove(record);
23578         }
23579         this.fireEvent("remove", this, record, index);
23580     },
23581
23582     /**
23583      * Remove all Records from the Store and fires the clear event.
23584      */
23585     removeAll : function(){
23586         this.data.clear();
23587         if(this.pruneModifiedRecords){
23588             this.modified = [];
23589         }
23590         this.fireEvent("clear", this);
23591     },
23592
23593     /**
23594      * Inserts Records to the Store at the given index and fires the add event.
23595      * @param {Number} index The start index at which to insert the passed Records.
23596      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23597      */
23598     insert : function(index, records){
23599         records = [].concat(records);
23600         for(var i = 0, len = records.length; i < len; i++){
23601             this.data.insert(index, records[i]);
23602             records[i].join(this);
23603         }
23604         this.fireEvent("add", this, records, index);
23605     },
23606
23607     /**
23608      * Get the index within the cache of the passed Record.
23609      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23610      * @return {Number} The index of the passed Record. Returns -1 if not found.
23611      */
23612     indexOf : function(record){
23613         return this.data.indexOf(record);
23614     },
23615
23616     /**
23617      * Get the index within the cache of the Record with the passed id.
23618      * @param {String} id The id of the Record to find.
23619      * @return {Number} The index of the Record. Returns -1 if not found.
23620      */
23621     indexOfId : function(id){
23622         return this.data.indexOfKey(id);
23623     },
23624
23625     /**
23626      * Get the Record with the specified id.
23627      * @param {String} id The id of the Record to find.
23628      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23629      */
23630     getById : function(id){
23631         return this.data.key(id);
23632     },
23633
23634     /**
23635      * Get the Record at the specified index.
23636      * @param {Number} index The index of the Record to find.
23637      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23638      */
23639     getAt : function(index){
23640         return this.data.itemAt(index);
23641     },
23642
23643     /**
23644      * Returns a range of Records between specified indices.
23645      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23646      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23647      * @return {Roo.data.Record[]} An array of Records
23648      */
23649     getRange : function(start, end){
23650         return this.data.getRange(start, end);
23651     },
23652
23653     // private
23654     storeOptions : function(o){
23655         o = Roo.apply({}, o);
23656         delete o.callback;
23657         delete o.scope;
23658         this.lastOptions = o;
23659     },
23660
23661     /**
23662      * Loads the Record cache from the configured Proxy using the configured Reader.
23663      * <p>
23664      * If using remote paging, then the first load call must specify the <em>start</em>
23665      * and <em>limit</em> properties in the options.params property to establish the initial
23666      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23667      * <p>
23668      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23669      * and this call will return before the new data has been loaded. Perform any post-processing
23670      * in a callback function, or in a "load" event handler.</strong>
23671      * <p>
23672      * @param {Object} options An object containing properties which control loading options:<ul>
23673      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23674      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23675      * passed the following arguments:<ul>
23676      * <li>r : Roo.data.Record[]</li>
23677      * <li>options: Options object from the load call</li>
23678      * <li>success: Boolean success indicator</li></ul></li>
23679      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23680      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23681      * </ul>
23682      */
23683     load : function(options){
23684         options = options || {};
23685         if(this.fireEvent("beforeload", this, options) !== false){
23686             this.storeOptions(options);
23687             var p = Roo.apply(options.params || {}, this.baseParams);
23688             // if meta was not loaded from remote source.. try requesting it.
23689             if (!this.reader.metaFromRemote) {
23690                 p._requestMeta = 1;
23691             }
23692             if(this.sortInfo && this.remoteSort){
23693                 var pn = this.paramNames;
23694                 p[pn["sort"]] = this.sortInfo.field;
23695                 p[pn["dir"]] = this.sortInfo.direction;
23696             }
23697             if (this.multiSort) {
23698                 var pn = this.paramNames;
23699                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23700             }
23701             
23702             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23703         }
23704     },
23705
23706     /**
23707      * Reloads the Record cache from the configured Proxy using the configured Reader and
23708      * the options from the last load operation performed.
23709      * @param {Object} options (optional) An object containing properties which may override the options
23710      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23711      * the most recently used options are reused).
23712      */
23713     reload : function(options){
23714         this.load(Roo.applyIf(options||{}, this.lastOptions));
23715     },
23716
23717     // private
23718     // Called as a callback by the Reader during a load operation.
23719     loadRecords : function(o, options, success){
23720         if(!o || success === false){
23721             if(success !== false){
23722                 this.fireEvent("load", this, [], options, o);
23723             }
23724             if(options.callback){
23725                 options.callback.call(options.scope || this, [], options, false);
23726             }
23727             return;
23728         }
23729         // if data returned failure - throw an exception.
23730         if (o.success === false) {
23731             // show a message if no listener is registered.
23732             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23733                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23734             }
23735             // loadmask wil be hooked into this..
23736             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23737             return;
23738         }
23739         var r = o.records, t = o.totalRecords || r.length;
23740         
23741         this.fireEvent("beforeloadadd", this, r, options, o);
23742         
23743         if(!options || options.add !== true){
23744             if(this.pruneModifiedRecords){
23745                 this.modified = [];
23746             }
23747             for(var i = 0, len = r.length; i < len; i++){
23748                 r[i].join(this);
23749             }
23750             if(this.snapshot){
23751                 this.data = this.snapshot;
23752                 delete this.snapshot;
23753             }
23754             this.data.clear();
23755             this.data.addAll(r);
23756             this.totalLength = t;
23757             this.applySort();
23758             this.fireEvent("datachanged", this);
23759         }else{
23760             this.totalLength = Math.max(t, this.data.length+r.length);
23761             this.add(r);
23762         }
23763         
23764         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23765                 
23766             var e = new Roo.data.Record({});
23767
23768             e.set(this.parent.displayField, this.parent.emptyTitle);
23769             e.set(this.parent.valueField, '');
23770
23771             this.insert(0, e);
23772         }
23773             
23774         this.fireEvent("load", this, r, options, o);
23775         if(options.callback){
23776             options.callback.call(options.scope || this, r, options, true);
23777         }
23778     },
23779
23780
23781     /**
23782      * Loads data from a passed data block. A Reader which understands the format of the data
23783      * must have been configured in the constructor.
23784      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23785      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23786      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23787      */
23788     loadData : function(o, append){
23789         var r = this.reader.readRecords(o);
23790         this.loadRecords(r, {add: append}, true);
23791     },
23792     
23793      /**
23794      * using 'cn' the nested child reader read the child array into it's child stores.
23795      * @param {Object} rec The record with a 'children array
23796      */
23797     loadDataFromChildren : function(rec)
23798     {
23799         this.loadData(this.reader.toLoadData(rec));
23800     },
23801     
23802
23803     /**
23804      * Gets the number of cached records.
23805      * <p>
23806      * <em>If using paging, this may not be the total size of the dataset. If the data object
23807      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23808      * the data set size</em>
23809      */
23810     getCount : function(){
23811         return this.data.length || 0;
23812     },
23813
23814     /**
23815      * Gets the total number of records in the dataset as returned by the server.
23816      * <p>
23817      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23818      * the dataset size</em>
23819      */
23820     getTotalCount : function(){
23821         return this.totalLength || 0;
23822     },
23823
23824     /**
23825      * Returns the sort state of the Store as an object with two properties:
23826      * <pre><code>
23827  field {String} The name of the field by which the Records are sorted
23828  direction {String} The sort order, "ASC" or "DESC"
23829      * </code></pre>
23830      */
23831     getSortState : function(){
23832         return this.sortInfo;
23833     },
23834
23835     // private
23836     applySort : function(){
23837         if(this.sortInfo && !this.remoteSort){
23838             var s = this.sortInfo, f = s.field;
23839             var st = this.fields.get(f).sortType;
23840             var fn = function(r1, r2){
23841                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23842                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23843             };
23844             this.data.sort(s.direction, fn);
23845             if(this.snapshot && this.snapshot != this.data){
23846                 this.snapshot.sort(s.direction, fn);
23847             }
23848         }
23849     },
23850
23851     /**
23852      * Sets the default sort column and order to be used by the next load operation.
23853      * @param {String} fieldName The name of the field to sort by.
23854      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23855      */
23856     setDefaultSort : function(field, dir){
23857         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23858     },
23859
23860     /**
23861      * Sort the Records.
23862      * If remote sorting is used, the sort is performed on the server, and the cache is
23863      * reloaded. If local sorting is used, the cache is sorted internally.
23864      * @param {String} fieldName The name of the field to sort by.
23865      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23866      */
23867     sort : function(fieldName, dir){
23868         var f = this.fields.get(fieldName);
23869         if(!dir){
23870             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23871             
23872             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23873                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23874             }else{
23875                 dir = f.sortDir;
23876             }
23877         }
23878         this.sortToggle[f.name] = dir;
23879         this.sortInfo = {field: f.name, direction: dir};
23880         if(!this.remoteSort){
23881             this.applySort();
23882             this.fireEvent("datachanged", this);
23883         }else{
23884             this.load(this.lastOptions);
23885         }
23886     },
23887
23888     /**
23889      * Calls the specified function for each of the Records in the cache.
23890      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23891      * Returning <em>false</em> aborts and exits the iteration.
23892      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23893      */
23894     each : function(fn, scope){
23895         this.data.each(fn, scope);
23896     },
23897
23898     /**
23899      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23900      * (e.g., during paging).
23901      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23902      */
23903     getModifiedRecords : function(){
23904         return this.modified;
23905     },
23906
23907     // private
23908     createFilterFn : function(property, value, anyMatch){
23909         if(!value.exec){ // not a regex
23910             value = String(value);
23911             if(value.length == 0){
23912                 return false;
23913             }
23914             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
23915         }
23916         return function(r){
23917             return value.test(r.data[property]);
23918         };
23919     },
23920
23921     /**
23922      * Sums the value of <i>property</i> for each record between start and end and returns the result.
23923      * @param {String} property A field on your records
23924      * @param {Number} start The record index to start at (defaults to 0)
23925      * @param {Number} end The last record index to include (defaults to length - 1)
23926      * @return {Number} The sum
23927      */
23928     sum : function(property, start, end){
23929         var rs = this.data.items, v = 0;
23930         start = start || 0;
23931         end = (end || end === 0) ? end : rs.length-1;
23932
23933         for(var i = start; i <= end; i++){
23934             v += (rs[i].data[property] || 0);
23935         }
23936         return v;
23937     },
23938
23939     /**
23940      * Filter the records by a specified property.
23941      * @param {String} field A field on your records
23942      * @param {String/RegExp} value Either a string that the field
23943      * should start with or a RegExp to test against the field
23944      * @param {Boolean} anyMatch True to match any part not just the beginning
23945      */
23946     filter : function(property, value, anyMatch){
23947         var fn = this.createFilterFn(property, value, anyMatch);
23948         return fn ? this.filterBy(fn) : this.clearFilter();
23949     },
23950
23951     /**
23952      * Filter by a function. The specified function will be called with each
23953      * record in this data source. If the function returns true the record is included,
23954      * otherwise it is filtered.
23955      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23956      * @param {Object} scope (optional) The scope of the function (defaults to this)
23957      */
23958     filterBy : function(fn, scope){
23959         this.snapshot = this.snapshot || this.data;
23960         this.data = this.queryBy(fn, scope||this);
23961         this.fireEvent("datachanged", this);
23962     },
23963
23964     /**
23965      * Query the records by a specified property.
23966      * @param {String} field A field on your records
23967      * @param {String/RegExp} value Either a string that the field
23968      * should start with or a RegExp to test against the field
23969      * @param {Boolean} anyMatch True to match any part not just the beginning
23970      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23971      */
23972     query : function(property, value, anyMatch){
23973         var fn = this.createFilterFn(property, value, anyMatch);
23974         return fn ? this.queryBy(fn) : this.data.clone();
23975     },
23976
23977     /**
23978      * Query by a function. The specified function will be called with each
23979      * record in this data source. If the function returns true the record is included
23980      * in the results.
23981      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23982      * @param {Object} scope (optional) The scope of the function (defaults to this)
23983       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23984      **/
23985     queryBy : function(fn, scope){
23986         var data = this.snapshot || this.data;
23987         return data.filterBy(fn, scope||this);
23988     },
23989
23990     /**
23991      * Collects unique values for a particular dataIndex from this store.
23992      * @param {String} dataIndex The property to collect
23993      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
23994      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
23995      * @return {Array} An array of the unique values
23996      **/
23997     collect : function(dataIndex, allowNull, bypassFilter){
23998         var d = (bypassFilter === true && this.snapshot) ?
23999                 this.snapshot.items : this.data.items;
24000         var v, sv, r = [], l = {};
24001         for(var i = 0, len = d.length; i < len; i++){
24002             v = d[i].data[dataIndex];
24003             sv = String(v);
24004             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24005                 l[sv] = true;
24006                 r[r.length] = v;
24007             }
24008         }
24009         return r;
24010     },
24011
24012     /**
24013      * Revert to a view of the Record cache with no filtering applied.
24014      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24015      */
24016     clearFilter : function(suppressEvent){
24017         if(this.snapshot && this.snapshot != this.data){
24018             this.data = this.snapshot;
24019             delete this.snapshot;
24020             if(suppressEvent !== true){
24021                 this.fireEvent("datachanged", this);
24022             }
24023         }
24024     },
24025
24026     // private
24027     afterEdit : function(record){
24028         if(this.modified.indexOf(record) == -1){
24029             this.modified.push(record);
24030         }
24031         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24032     },
24033     
24034     // private
24035     afterReject : function(record){
24036         this.modified.remove(record);
24037         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24038     },
24039
24040     // private
24041     afterCommit : function(record){
24042         this.modified.remove(record);
24043         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24044     },
24045
24046     /**
24047      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24048      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24049      */
24050     commitChanges : function(){
24051         var m = this.modified.slice(0);
24052         this.modified = [];
24053         for(var i = 0, len = m.length; i < len; i++){
24054             m[i].commit();
24055         }
24056     },
24057
24058     /**
24059      * Cancel outstanding changes on all changed records.
24060      */
24061     rejectChanges : function(){
24062         var m = this.modified.slice(0);
24063         this.modified = [];
24064         for(var i = 0, len = m.length; i < len; i++){
24065             m[i].reject();
24066         }
24067     },
24068
24069     onMetaChange : function(meta, rtype, o){
24070         this.recordType = rtype;
24071         this.fields = rtype.prototype.fields;
24072         delete this.snapshot;
24073         this.sortInfo = meta.sortInfo || this.sortInfo;
24074         this.modified = [];
24075         this.fireEvent('metachange', this, this.reader.meta);
24076     },
24077     
24078     moveIndex : function(data, type)
24079     {
24080         var index = this.indexOf(data);
24081         
24082         var newIndex = index + type;
24083         
24084         this.remove(data);
24085         
24086         this.insert(newIndex, data);
24087         
24088     }
24089 });/*
24090  * Based on:
24091  * Ext JS Library 1.1.1
24092  * Copyright(c) 2006-2007, Ext JS, LLC.
24093  *
24094  * Originally Released Under LGPL - original licence link has changed is not relivant.
24095  *
24096  * Fork - LGPL
24097  * <script type="text/javascript">
24098  */
24099
24100 /**
24101  * @class Roo.data.SimpleStore
24102  * @extends Roo.data.Store
24103  * Small helper class to make creating Stores from Array data easier.
24104  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24105  * @cfg {Array} fields An array of field definition objects, or field name strings.
24106  * @cfg {Object} an existing reader (eg. copied from another store)
24107  * @cfg {Array} data The multi-dimensional array of data
24108  * @constructor
24109  * @param {Object} config
24110  */
24111 Roo.data.SimpleStore = function(config)
24112 {
24113     Roo.data.SimpleStore.superclass.constructor.call(this, {
24114         isLocal : true,
24115         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24116                 id: config.id
24117             },
24118             Roo.data.Record.create(config.fields)
24119         ),
24120         proxy : new Roo.data.MemoryProxy(config.data)
24121     });
24122     this.load();
24123 };
24124 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24125  * Based on:
24126  * Ext JS Library 1.1.1
24127  * Copyright(c) 2006-2007, Ext JS, LLC.
24128  *
24129  * Originally Released Under LGPL - original licence link has changed is not relivant.
24130  *
24131  * Fork - LGPL
24132  * <script type="text/javascript">
24133  */
24134
24135 /**
24136 /**
24137  * @extends Roo.data.Store
24138  * @class Roo.data.JsonStore
24139  * Small helper class to make creating Stores for JSON data easier. <br/>
24140 <pre><code>
24141 var store = new Roo.data.JsonStore({
24142     url: 'get-images.php',
24143     root: 'images',
24144     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24145 });
24146 </code></pre>
24147  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24148  * JsonReader and HttpProxy (unless inline data is provided).</b>
24149  * @cfg {Array} fields An array of field definition objects, or field name strings.
24150  * @constructor
24151  * @param {Object} config
24152  */
24153 Roo.data.JsonStore = function(c){
24154     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24155         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24156         reader: new Roo.data.JsonReader(c, c.fields)
24157     }));
24158 };
24159 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24160  * Based on:
24161  * Ext JS Library 1.1.1
24162  * Copyright(c) 2006-2007, Ext JS, LLC.
24163  *
24164  * Originally Released Under LGPL - original licence link has changed is not relivant.
24165  *
24166  * Fork - LGPL
24167  * <script type="text/javascript">
24168  */
24169
24170  
24171 Roo.data.Field = function(config){
24172     if(typeof config == "string"){
24173         config = {name: config};
24174     }
24175     Roo.apply(this, config);
24176     
24177     if(!this.type){
24178         this.type = "auto";
24179     }
24180     
24181     var st = Roo.data.SortTypes;
24182     // named sortTypes are supported, here we look them up
24183     if(typeof this.sortType == "string"){
24184         this.sortType = st[this.sortType];
24185     }
24186     
24187     // set default sortType for strings and dates
24188     if(!this.sortType){
24189         switch(this.type){
24190             case "string":
24191                 this.sortType = st.asUCString;
24192                 break;
24193             case "date":
24194                 this.sortType = st.asDate;
24195                 break;
24196             default:
24197                 this.sortType = st.none;
24198         }
24199     }
24200
24201     // define once
24202     var stripRe = /[\$,%]/g;
24203
24204     // prebuilt conversion function for this field, instead of
24205     // switching every time we're reading a value
24206     if(!this.convert){
24207         var cv, dateFormat = this.dateFormat;
24208         switch(this.type){
24209             case "":
24210             case "auto":
24211             case undefined:
24212                 cv = function(v){ return v; };
24213                 break;
24214             case "string":
24215                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24216                 break;
24217             case "int":
24218                 cv = function(v){
24219                     return v !== undefined && v !== null && v !== '' ?
24220                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24221                     };
24222                 break;
24223             case "float":
24224                 cv = function(v){
24225                     return v !== undefined && v !== null && v !== '' ?
24226                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24227                     };
24228                 break;
24229             case "bool":
24230             case "boolean":
24231                 cv = function(v){ return v === true || v === "true" || v == 1; };
24232                 break;
24233             case "date":
24234                 cv = function(v){
24235                     if(!v){
24236                         return '';
24237                     }
24238                     if(v instanceof Date){
24239                         return v;
24240                     }
24241                     if(dateFormat){
24242                         if(dateFormat == "timestamp"){
24243                             return new Date(v*1000);
24244                         }
24245                         return Date.parseDate(v, dateFormat);
24246                     }
24247                     var parsed = Date.parse(v);
24248                     return parsed ? new Date(parsed) : null;
24249                 };
24250              break;
24251             
24252         }
24253         this.convert = cv;
24254     }
24255 };
24256
24257 Roo.data.Field.prototype = {
24258     dateFormat: null,
24259     defaultValue: "",
24260     mapping: null,
24261     sortType : null,
24262     sortDir : "ASC"
24263 };/*
24264  * Based on:
24265  * Ext JS Library 1.1.1
24266  * Copyright(c) 2006-2007, Ext JS, LLC.
24267  *
24268  * Originally Released Under LGPL - original licence link has changed is not relivant.
24269  *
24270  * Fork - LGPL
24271  * <script type="text/javascript">
24272  */
24273  
24274 // Base class for reading structured data from a data source.  This class is intended to be
24275 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24276
24277 /**
24278  * @class Roo.data.DataReader
24279  * Base class for reading structured data from a data source.  This class is intended to be
24280  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24281  */
24282
24283 Roo.data.DataReader = function(meta, recordType){
24284     
24285     this.meta = meta;
24286     
24287     this.recordType = recordType instanceof Array ? 
24288         Roo.data.Record.create(recordType) : recordType;
24289 };
24290
24291 Roo.data.DataReader.prototype = {
24292     
24293     
24294     readerType : 'Data',
24295      /**
24296      * Create an empty record
24297      * @param {Object} data (optional) - overlay some values
24298      * @return {Roo.data.Record} record created.
24299      */
24300     newRow :  function(d) {
24301         var da =  {};
24302         this.recordType.prototype.fields.each(function(c) {
24303             switch( c.type) {
24304                 case 'int' : da[c.name] = 0; break;
24305                 case 'date' : da[c.name] = new Date(); break;
24306                 case 'float' : da[c.name] = 0.0; break;
24307                 case 'boolean' : da[c.name] = false; break;
24308                 default : da[c.name] = ""; break;
24309             }
24310             
24311         });
24312         return new this.recordType(Roo.apply(da, d));
24313     }
24314     
24315     
24316 };/*
24317  * Based on:
24318  * Ext JS Library 1.1.1
24319  * Copyright(c) 2006-2007, Ext JS, LLC.
24320  *
24321  * Originally Released Under LGPL - original licence link has changed is not relivant.
24322  *
24323  * Fork - LGPL
24324  * <script type="text/javascript">
24325  */
24326
24327 /**
24328  * @class Roo.data.DataProxy
24329  * @extends Roo.data.Observable
24330  * This class is an abstract base class for implementations which provide retrieval of
24331  * unformatted data objects.<br>
24332  * <p>
24333  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24334  * (of the appropriate type which knows how to parse the data object) to provide a block of
24335  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24336  * <p>
24337  * Custom implementations must implement the load method as described in
24338  * {@link Roo.data.HttpProxy#load}.
24339  */
24340 Roo.data.DataProxy = function(){
24341     this.addEvents({
24342         /**
24343          * @event beforeload
24344          * Fires before a network request is made to retrieve a data object.
24345          * @param {Object} This DataProxy object.
24346          * @param {Object} params The params parameter to the load function.
24347          */
24348         beforeload : true,
24349         /**
24350          * @event load
24351          * Fires before the load method's callback is called.
24352          * @param {Object} This DataProxy object.
24353          * @param {Object} o The data object.
24354          * @param {Object} arg The callback argument object passed to the load function.
24355          */
24356         load : true,
24357         /**
24358          * @event loadexception
24359          * Fires if an Exception occurs during data retrieval.
24360          * @param {Object} This DataProxy object.
24361          * @param {Object} o The data object.
24362          * @param {Object} arg The callback argument object passed to the load function.
24363          * @param {Object} e The Exception.
24364          */
24365         loadexception : true
24366     });
24367     Roo.data.DataProxy.superclass.constructor.call(this);
24368 };
24369
24370 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24371
24372     /**
24373      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24374      */
24375 /*
24376  * Based on:
24377  * Ext JS Library 1.1.1
24378  * Copyright(c) 2006-2007, Ext JS, LLC.
24379  *
24380  * Originally Released Under LGPL - original licence link has changed is not relivant.
24381  *
24382  * Fork - LGPL
24383  * <script type="text/javascript">
24384  */
24385 /**
24386  * @class Roo.data.MemoryProxy
24387  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24388  * to the Reader when its load method is called.
24389  * @constructor
24390  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24391  */
24392 Roo.data.MemoryProxy = function(data){
24393     if (data.data) {
24394         data = data.data;
24395     }
24396     Roo.data.MemoryProxy.superclass.constructor.call(this);
24397     this.data = data;
24398 };
24399
24400 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24401     
24402     /**
24403      * Load data from the requested source (in this case an in-memory
24404      * data object passed to the constructor), read the data object into
24405      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24406      * process that block using the passed callback.
24407      * @param {Object} params This parameter is not used by the MemoryProxy class.
24408      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24409      * object into a block of Roo.data.Records.
24410      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24411      * The function must be passed <ul>
24412      * <li>The Record block object</li>
24413      * <li>The "arg" argument from the load function</li>
24414      * <li>A boolean success indicator</li>
24415      * </ul>
24416      * @param {Object} scope The scope in which to call the callback
24417      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24418      */
24419     load : function(params, reader, callback, scope, arg){
24420         params = params || {};
24421         var result;
24422         try {
24423             result = reader.readRecords(params.data ? params.data :this.data);
24424         }catch(e){
24425             this.fireEvent("loadexception", this, arg, null, e);
24426             callback.call(scope, null, arg, false);
24427             return;
24428         }
24429         callback.call(scope, result, arg, true);
24430     },
24431     
24432     // private
24433     update : function(params, records){
24434         
24435     }
24436 });/*
24437  * Based on:
24438  * Ext JS Library 1.1.1
24439  * Copyright(c) 2006-2007, Ext JS, LLC.
24440  *
24441  * Originally Released Under LGPL - original licence link has changed is not relivant.
24442  *
24443  * Fork - LGPL
24444  * <script type="text/javascript">
24445  */
24446 /**
24447  * @class Roo.data.HttpProxy
24448  * @extends Roo.data.DataProxy
24449  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24450  * configured to reference a certain URL.<br><br>
24451  * <p>
24452  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24453  * from which the running page was served.<br><br>
24454  * <p>
24455  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24456  * <p>
24457  * Be aware that to enable the browser to parse an XML document, the server must set
24458  * the Content-Type header in the HTTP response to "text/xml".
24459  * @constructor
24460  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24461  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24462  * will be used to make the request.
24463  */
24464 Roo.data.HttpProxy = function(conn){
24465     Roo.data.HttpProxy.superclass.constructor.call(this);
24466     // is conn a conn config or a real conn?
24467     this.conn = conn;
24468     this.useAjax = !conn || !conn.events;
24469   
24470 };
24471
24472 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24473     // thse are take from connection...
24474     
24475     /**
24476      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24477      */
24478     /**
24479      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24480      * extra parameters to each request made by this object. (defaults to undefined)
24481      */
24482     /**
24483      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24484      *  to each request made by this object. (defaults to undefined)
24485      */
24486     /**
24487      * @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)
24488      */
24489     /**
24490      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24491      */
24492      /**
24493      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24494      * @type Boolean
24495      */
24496   
24497
24498     /**
24499      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24500      * @type Boolean
24501      */
24502     /**
24503      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24504      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24505      * a finer-grained basis than the DataProxy events.
24506      */
24507     getConnection : function(){
24508         return this.useAjax ? Roo.Ajax : this.conn;
24509     },
24510
24511     /**
24512      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24513      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24514      * process that block using the passed callback.
24515      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24516      * for the request to the remote server.
24517      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24518      * object into a block of Roo.data.Records.
24519      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24520      * The function must be passed <ul>
24521      * <li>The Record block object</li>
24522      * <li>The "arg" argument from the load function</li>
24523      * <li>A boolean success indicator</li>
24524      * </ul>
24525      * @param {Object} scope The scope in which to call the callback
24526      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24527      */
24528     load : function(params, reader, callback, scope, arg){
24529         if(this.fireEvent("beforeload", this, params) !== false){
24530             var  o = {
24531                 params : params || {},
24532                 request: {
24533                     callback : callback,
24534                     scope : scope,
24535                     arg : arg
24536                 },
24537                 reader: reader,
24538                 callback : this.loadResponse,
24539                 scope: this
24540             };
24541             if(this.useAjax){
24542                 Roo.applyIf(o, this.conn);
24543                 if(this.activeRequest){
24544                     Roo.Ajax.abort(this.activeRequest);
24545                 }
24546                 this.activeRequest = Roo.Ajax.request(o);
24547             }else{
24548                 this.conn.request(o);
24549             }
24550         }else{
24551             callback.call(scope||this, null, arg, false);
24552         }
24553     },
24554
24555     // private
24556     loadResponse : function(o, success, response){
24557         delete this.activeRequest;
24558         if(!success){
24559             this.fireEvent("loadexception", this, o, response);
24560             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24561             return;
24562         }
24563         var result;
24564         try {
24565             result = o.reader.read(response);
24566         }catch(e){
24567             this.fireEvent("loadexception", this, o, response, e);
24568             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24569             return;
24570         }
24571         
24572         this.fireEvent("load", this, o, o.request.arg);
24573         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24574     },
24575
24576     // private
24577     update : function(dataSet){
24578
24579     },
24580
24581     // private
24582     updateResponse : function(dataSet){
24583
24584     }
24585 });/*
24586  * Based on:
24587  * Ext JS Library 1.1.1
24588  * Copyright(c) 2006-2007, Ext JS, LLC.
24589  *
24590  * Originally Released Under LGPL - original licence link has changed is not relivant.
24591  *
24592  * Fork - LGPL
24593  * <script type="text/javascript">
24594  */
24595
24596 /**
24597  * @class Roo.data.ScriptTagProxy
24598  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24599  * other than the originating domain of the running page.<br><br>
24600  * <p>
24601  * <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
24602  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24603  * <p>
24604  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24605  * source code that is used as the source inside a &lt;script> tag.<br><br>
24606  * <p>
24607  * In order for the browser to process the returned data, the server must wrap the data object
24608  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24609  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24610  * depending on whether the callback name was passed:
24611  * <p>
24612  * <pre><code>
24613 boolean scriptTag = false;
24614 String cb = request.getParameter("callback");
24615 if (cb != null) {
24616     scriptTag = true;
24617     response.setContentType("text/javascript");
24618 } else {
24619     response.setContentType("application/x-json");
24620 }
24621 Writer out = response.getWriter();
24622 if (scriptTag) {
24623     out.write(cb + "(");
24624 }
24625 out.print(dataBlock.toJsonString());
24626 if (scriptTag) {
24627     out.write(");");
24628 }
24629 </pre></code>
24630  *
24631  * @constructor
24632  * @param {Object} config A configuration object.
24633  */
24634 Roo.data.ScriptTagProxy = function(config){
24635     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24636     Roo.apply(this, config);
24637     this.head = document.getElementsByTagName("head")[0];
24638 };
24639
24640 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24641
24642 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24643     /**
24644      * @cfg {String} url The URL from which to request the data object.
24645      */
24646     /**
24647      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24648      */
24649     timeout : 30000,
24650     /**
24651      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24652      * the server the name of the callback function set up by the load call to process the returned data object.
24653      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24654      * javascript output which calls this named function passing the data object as its only parameter.
24655      */
24656     callbackParam : "callback",
24657     /**
24658      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24659      * name to the request.
24660      */
24661     nocache : true,
24662
24663     /**
24664      * Load data from the configured URL, read the data object into
24665      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24666      * process that block using the passed callback.
24667      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24668      * for the request to the remote server.
24669      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24670      * object into a block of Roo.data.Records.
24671      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24672      * The function must be passed <ul>
24673      * <li>The Record block object</li>
24674      * <li>The "arg" argument from the load function</li>
24675      * <li>A boolean success indicator</li>
24676      * </ul>
24677      * @param {Object} scope The scope in which to call the callback
24678      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24679      */
24680     load : function(params, reader, callback, scope, arg){
24681         if(this.fireEvent("beforeload", this, params) !== false){
24682
24683             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24684
24685             var url = this.url;
24686             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24687             if(this.nocache){
24688                 url += "&_dc=" + (new Date().getTime());
24689             }
24690             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24691             var trans = {
24692                 id : transId,
24693                 cb : "stcCallback"+transId,
24694                 scriptId : "stcScript"+transId,
24695                 params : params,
24696                 arg : arg,
24697                 url : url,
24698                 callback : callback,
24699                 scope : scope,
24700                 reader : reader
24701             };
24702             var conn = this;
24703
24704             window[trans.cb] = function(o){
24705                 conn.handleResponse(o, trans);
24706             };
24707
24708             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24709
24710             if(this.autoAbort !== false){
24711                 this.abort();
24712             }
24713
24714             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24715
24716             var script = document.createElement("script");
24717             script.setAttribute("src", url);
24718             script.setAttribute("type", "text/javascript");
24719             script.setAttribute("id", trans.scriptId);
24720             this.head.appendChild(script);
24721
24722             this.trans = trans;
24723         }else{
24724             callback.call(scope||this, null, arg, false);
24725         }
24726     },
24727
24728     // private
24729     isLoading : function(){
24730         return this.trans ? true : false;
24731     },
24732
24733     /**
24734      * Abort the current server request.
24735      */
24736     abort : function(){
24737         if(this.isLoading()){
24738             this.destroyTrans(this.trans);
24739         }
24740     },
24741
24742     // private
24743     destroyTrans : function(trans, isLoaded){
24744         this.head.removeChild(document.getElementById(trans.scriptId));
24745         clearTimeout(trans.timeoutId);
24746         if(isLoaded){
24747             window[trans.cb] = undefined;
24748             try{
24749                 delete window[trans.cb];
24750             }catch(e){}
24751         }else{
24752             // if hasn't been loaded, wait for load to remove it to prevent script error
24753             window[trans.cb] = function(){
24754                 window[trans.cb] = undefined;
24755                 try{
24756                     delete window[trans.cb];
24757                 }catch(e){}
24758             };
24759         }
24760     },
24761
24762     // private
24763     handleResponse : function(o, trans){
24764         this.trans = false;
24765         this.destroyTrans(trans, true);
24766         var result;
24767         try {
24768             result = trans.reader.readRecords(o);
24769         }catch(e){
24770             this.fireEvent("loadexception", this, o, trans.arg, e);
24771             trans.callback.call(trans.scope||window, null, trans.arg, false);
24772             return;
24773         }
24774         this.fireEvent("load", this, o, trans.arg);
24775         trans.callback.call(trans.scope||window, result, trans.arg, true);
24776     },
24777
24778     // private
24779     handleFailure : function(trans){
24780         this.trans = false;
24781         this.destroyTrans(trans, false);
24782         this.fireEvent("loadexception", this, null, trans.arg);
24783         trans.callback.call(trans.scope||window, null, trans.arg, false);
24784     }
24785 });/*
24786  * Based on:
24787  * Ext JS Library 1.1.1
24788  * Copyright(c) 2006-2007, Ext JS, LLC.
24789  *
24790  * Originally Released Under LGPL - original licence link has changed is not relivant.
24791  *
24792  * Fork - LGPL
24793  * <script type="text/javascript">
24794  */
24795
24796 /**
24797  * @class Roo.data.JsonReader
24798  * @extends Roo.data.DataReader
24799  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24800  * based on mappings in a provided Roo.data.Record constructor.
24801  * 
24802  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24803  * in the reply previously. 
24804  * 
24805  * <p>
24806  * Example code:
24807  * <pre><code>
24808 var RecordDef = Roo.data.Record.create([
24809     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24810     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24811 ]);
24812 var myReader = new Roo.data.JsonReader({
24813     totalProperty: "results",    // The property which contains the total dataset size (optional)
24814     root: "rows",                // The property which contains an Array of row objects
24815     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24816 }, RecordDef);
24817 </code></pre>
24818  * <p>
24819  * This would consume a JSON file like this:
24820  * <pre><code>
24821 { 'results': 2, 'rows': [
24822     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24823     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24824 }
24825 </code></pre>
24826  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24827  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24828  * paged from the remote server.
24829  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24830  * @cfg {String} root name of the property which contains the Array of row objects.
24831  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24832  * @cfg {Array} fields Array of field definition objects
24833  * @constructor
24834  * Create a new JsonReader
24835  * @param {Object} meta Metadata configuration options
24836  * @param {Object} recordType Either an Array of field definition objects,
24837  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24838  */
24839 Roo.data.JsonReader = function(meta, recordType){
24840     
24841     meta = meta || {};
24842     // set some defaults:
24843     Roo.applyIf(meta, {
24844         totalProperty: 'total',
24845         successProperty : 'success',
24846         root : 'data',
24847         id : 'id'
24848     });
24849     
24850     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24851 };
24852 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24853     
24854     readerType : 'Json',
24855     
24856     /**
24857      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24858      * Used by Store query builder to append _requestMeta to params.
24859      * 
24860      */
24861     metaFromRemote : false,
24862     /**
24863      * This method is only used by a DataProxy which has retrieved data from a remote server.
24864      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24865      * @return {Object} data A data block which is used by an Roo.data.Store object as
24866      * a cache of Roo.data.Records.
24867      */
24868     read : function(response){
24869         var json = response.responseText;
24870        
24871         var o = /* eval:var:o */ eval("("+json+")");
24872         if(!o) {
24873             throw {message: "JsonReader.read: Json object not found"};
24874         }
24875         
24876         if(o.metaData){
24877             
24878             delete this.ef;
24879             this.metaFromRemote = true;
24880             this.meta = o.metaData;
24881             this.recordType = Roo.data.Record.create(o.metaData.fields);
24882             this.onMetaChange(this.meta, this.recordType, o);
24883         }
24884         return this.readRecords(o);
24885     },
24886
24887     // private function a store will implement
24888     onMetaChange : function(meta, recordType, o){
24889
24890     },
24891
24892     /**
24893          * @ignore
24894          */
24895     simpleAccess: function(obj, subsc) {
24896         return obj[subsc];
24897     },
24898
24899         /**
24900          * @ignore
24901          */
24902     getJsonAccessor: function(){
24903         var re = /[\[\.]/;
24904         return function(expr) {
24905             try {
24906                 return(re.test(expr))
24907                     ? new Function("obj", "return obj." + expr)
24908                     : function(obj){
24909                         return obj[expr];
24910                     };
24911             } catch(e){}
24912             return Roo.emptyFn;
24913         };
24914     }(),
24915
24916     /**
24917      * Create a data block containing Roo.data.Records from an XML document.
24918      * @param {Object} o An object which contains an Array of row objects in the property specified
24919      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
24920      * which contains the total size of the dataset.
24921      * @return {Object} data A data block which is used by an Roo.data.Store object as
24922      * a cache of Roo.data.Records.
24923      */
24924     readRecords : function(o){
24925         /**
24926          * After any data loads, the raw JSON data is available for further custom processing.
24927          * @type Object
24928          */
24929         this.o = o;
24930         var s = this.meta, Record = this.recordType,
24931             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
24932
24933 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
24934         if (!this.ef) {
24935             if(s.totalProperty) {
24936                     this.getTotal = this.getJsonAccessor(s.totalProperty);
24937                 }
24938                 if(s.successProperty) {
24939                     this.getSuccess = this.getJsonAccessor(s.successProperty);
24940                 }
24941                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
24942                 if (s.id) {
24943                         var g = this.getJsonAccessor(s.id);
24944                         this.getId = function(rec) {
24945                                 var r = g(rec);  
24946                                 return (r === undefined || r === "") ? null : r;
24947                         };
24948                 } else {
24949                         this.getId = function(){return null;};
24950                 }
24951             this.ef = [];
24952             for(var jj = 0; jj < fl; jj++){
24953                 f = fi[jj];
24954                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
24955                 this.ef[jj] = this.getJsonAccessor(map);
24956             }
24957         }
24958
24959         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
24960         if(s.totalProperty){
24961             var vt = parseInt(this.getTotal(o), 10);
24962             if(!isNaN(vt)){
24963                 totalRecords = vt;
24964             }
24965         }
24966         if(s.successProperty){
24967             var vs = this.getSuccess(o);
24968             if(vs === false || vs === 'false'){
24969                 success = false;
24970             }
24971         }
24972         var records = [];
24973         for(var i = 0; i < c; i++){
24974                 var n = root[i];
24975             var values = {};
24976             var id = this.getId(n);
24977             for(var j = 0; j < fl; j++){
24978                 f = fi[j];
24979             var v = this.ef[j](n);
24980             if (!f.convert) {
24981                 Roo.log('missing convert for ' + f.name);
24982                 Roo.log(f);
24983                 continue;
24984             }
24985             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
24986             }
24987             var record = new Record(values, id);
24988             record.json = n;
24989             records[i] = record;
24990         }
24991         return {
24992             raw : o,
24993             success : success,
24994             records : records,
24995             totalRecords : totalRecords
24996         };
24997     },
24998     // used when loading children.. @see loadDataFromChildren
24999     toLoadData: function(rec)
25000     {
25001         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25002         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25003         return { data : data, total : data.length };
25004         
25005     }
25006 });/*
25007  * Based on:
25008  * Ext JS Library 1.1.1
25009  * Copyright(c) 2006-2007, Ext JS, LLC.
25010  *
25011  * Originally Released Under LGPL - original licence link has changed is not relivant.
25012  *
25013  * Fork - LGPL
25014  * <script type="text/javascript">
25015  */
25016
25017 /**
25018  * @class Roo.data.XmlReader
25019  * @extends Roo.data.DataReader
25020  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25021  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25022  * <p>
25023  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25024  * header in the HTTP response must be set to "text/xml".</em>
25025  * <p>
25026  * Example code:
25027  * <pre><code>
25028 var RecordDef = Roo.data.Record.create([
25029    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25030    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25031 ]);
25032 var myReader = new Roo.data.XmlReader({
25033    totalRecords: "results", // The element which contains the total dataset size (optional)
25034    record: "row",           // The repeated element which contains row information
25035    id: "id"                 // The element within the row that provides an ID for the record (optional)
25036 }, RecordDef);
25037 </code></pre>
25038  * <p>
25039  * This would consume an XML file like this:
25040  * <pre><code>
25041 &lt;?xml?>
25042 &lt;dataset>
25043  &lt;results>2&lt;/results>
25044  &lt;row>
25045    &lt;id>1&lt;/id>
25046    &lt;name>Bill&lt;/name>
25047    &lt;occupation>Gardener&lt;/occupation>
25048  &lt;/row>
25049  &lt;row>
25050    &lt;id>2&lt;/id>
25051    &lt;name>Ben&lt;/name>
25052    &lt;occupation>Horticulturalist&lt;/occupation>
25053  &lt;/row>
25054 &lt;/dataset>
25055 </code></pre>
25056  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25057  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25058  * paged from the remote server.
25059  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25060  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25061  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25062  * a record identifier value.
25063  * @constructor
25064  * Create a new XmlReader
25065  * @param {Object} meta Metadata configuration options
25066  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25067  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25068  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25069  */
25070 Roo.data.XmlReader = function(meta, recordType){
25071     meta = meta || {};
25072     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25073 };
25074 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25075     
25076     readerType : 'Xml',
25077     
25078     /**
25079      * This method is only used by a DataProxy which has retrieved data from a remote server.
25080          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25081          * to contain a method called 'responseXML' that returns an XML document object.
25082      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25083      * a cache of Roo.data.Records.
25084      */
25085     read : function(response){
25086         var doc = response.responseXML;
25087         if(!doc) {
25088             throw {message: "XmlReader.read: XML Document not available"};
25089         }
25090         return this.readRecords(doc);
25091     },
25092
25093     /**
25094      * Create a data block containing Roo.data.Records from an XML document.
25095          * @param {Object} doc A parsed XML document.
25096      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25097      * a cache of Roo.data.Records.
25098      */
25099     readRecords : function(doc){
25100         /**
25101          * After any data loads/reads, the raw XML Document is available for further custom processing.
25102          * @type XMLDocument
25103          */
25104         this.xmlData = doc;
25105         var root = doc.documentElement || doc;
25106         var q = Roo.DomQuery;
25107         var recordType = this.recordType, fields = recordType.prototype.fields;
25108         var sid = this.meta.id;
25109         var totalRecords = 0, success = true;
25110         if(this.meta.totalRecords){
25111             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25112         }
25113         
25114         if(this.meta.success){
25115             var sv = q.selectValue(this.meta.success, root, true);
25116             success = sv !== false && sv !== 'false';
25117         }
25118         var records = [];
25119         var ns = q.select(this.meta.record, root);
25120         for(var i = 0, len = ns.length; i < len; i++) {
25121                 var n = ns[i];
25122                 var values = {};
25123                 var id = sid ? q.selectValue(sid, n) : undefined;
25124                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25125                     var f = fields.items[j];
25126                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25127                     v = f.convert(v);
25128                     values[f.name] = v;
25129                 }
25130                 var record = new recordType(values, id);
25131                 record.node = n;
25132                 records[records.length] = record;
25133             }
25134
25135             return {
25136                 success : success,
25137                 records : records,
25138                 totalRecords : totalRecords || records.length
25139             };
25140     }
25141 });/*
25142  * Based on:
25143  * Ext JS Library 1.1.1
25144  * Copyright(c) 2006-2007, Ext JS, LLC.
25145  *
25146  * Originally Released Under LGPL - original licence link has changed is not relivant.
25147  *
25148  * Fork - LGPL
25149  * <script type="text/javascript">
25150  */
25151
25152 /**
25153  * @class Roo.data.ArrayReader
25154  * @extends Roo.data.DataReader
25155  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25156  * Each element of that Array represents a row of data fields. The
25157  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25158  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25159  * <p>
25160  * Example code:.
25161  * <pre><code>
25162 var RecordDef = Roo.data.Record.create([
25163     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25164     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25165 ]);
25166 var myReader = new Roo.data.ArrayReader({
25167     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25168 }, RecordDef);
25169 </code></pre>
25170  * <p>
25171  * This would consume an Array like this:
25172  * <pre><code>
25173 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25174   </code></pre>
25175  
25176  * @constructor
25177  * Create a new JsonReader
25178  * @param {Object} meta Metadata configuration options.
25179  * @param {Object|Array} recordType Either an Array of field definition objects
25180  * 
25181  * @cfg {Array} fields Array of field definition objects
25182  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25183  * as specified to {@link Roo.data.Record#create},
25184  * or an {@link Roo.data.Record} object
25185  *
25186  * 
25187  * created using {@link Roo.data.Record#create}.
25188  */
25189 Roo.data.ArrayReader = function(meta, recordType)
25190 {    
25191     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25192 };
25193
25194 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25195     
25196       /**
25197      * Create a data block containing Roo.data.Records from an XML document.
25198      * @param {Object} o An Array of row objects which represents the dataset.
25199      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25200      * a cache of Roo.data.Records.
25201      */
25202     readRecords : function(o)
25203     {
25204         var sid = this.meta ? this.meta.id : null;
25205         var recordType = this.recordType, fields = recordType.prototype.fields;
25206         var records = [];
25207         var root = o;
25208         for(var i = 0; i < root.length; i++){
25209                 var n = root[i];
25210             var values = {};
25211             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25212             for(var j = 0, jlen = fields.length; j < jlen; j++){
25213                 var f = fields.items[j];
25214                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25215                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25216                 v = f.convert(v);
25217                 values[f.name] = v;
25218             }
25219             var record = new recordType(values, id);
25220             record.json = n;
25221             records[records.length] = record;
25222         }
25223         return {
25224             records : records,
25225             totalRecords : records.length
25226         };
25227     },
25228     // used when loading children.. @see loadDataFromChildren
25229     toLoadData: function(rec)
25230     {
25231         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25232         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25233         
25234     }
25235     
25236     
25237 });/*
25238  * Based on:
25239  * Ext JS Library 1.1.1
25240  * Copyright(c) 2006-2007, Ext JS, LLC.
25241  *
25242  * Originally Released Under LGPL - original licence link has changed is not relivant.
25243  *
25244  * Fork - LGPL
25245  * <script type="text/javascript">
25246  */
25247
25248
25249 /**
25250  * @class Roo.data.Tree
25251  * @extends Roo.util.Observable
25252  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25253  * in the tree have most standard DOM functionality.
25254  * @constructor
25255  * @param {Node} root (optional) The root node
25256  */
25257 Roo.data.Tree = function(root){
25258    this.nodeHash = {};
25259    /**
25260     * The root node for this tree
25261     * @type Node
25262     */
25263    this.root = null;
25264    if(root){
25265        this.setRootNode(root);
25266    }
25267    this.addEvents({
25268        /**
25269         * @event append
25270         * Fires when a new child node is appended to a node in this tree.
25271         * @param {Tree} tree The owner tree
25272         * @param {Node} parent The parent node
25273         * @param {Node} node The newly appended node
25274         * @param {Number} index The index of the newly appended node
25275         */
25276        "append" : true,
25277        /**
25278         * @event remove
25279         * Fires when a child node is removed from a node in this tree.
25280         * @param {Tree} tree The owner tree
25281         * @param {Node} parent The parent node
25282         * @param {Node} node The child node removed
25283         */
25284        "remove" : true,
25285        /**
25286         * @event move
25287         * Fires when a node is moved to a new location in the tree
25288         * @param {Tree} tree The owner tree
25289         * @param {Node} node The node moved
25290         * @param {Node} oldParent The old parent of this node
25291         * @param {Node} newParent The new parent of this node
25292         * @param {Number} index The index it was moved to
25293         */
25294        "move" : true,
25295        /**
25296         * @event insert
25297         * Fires when a new child node is inserted in a node in this tree.
25298         * @param {Tree} tree The owner tree
25299         * @param {Node} parent The parent node
25300         * @param {Node} node The child node inserted
25301         * @param {Node} refNode The child node the node was inserted before
25302         */
25303        "insert" : true,
25304        /**
25305         * @event beforeappend
25306         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25307         * @param {Tree} tree The owner tree
25308         * @param {Node} parent The parent node
25309         * @param {Node} node The child node to be appended
25310         */
25311        "beforeappend" : true,
25312        /**
25313         * @event beforeremove
25314         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25315         * @param {Tree} tree The owner tree
25316         * @param {Node} parent The parent node
25317         * @param {Node} node The child node to be removed
25318         */
25319        "beforeremove" : true,
25320        /**
25321         * @event beforemove
25322         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25323         * @param {Tree} tree The owner tree
25324         * @param {Node} node The node being moved
25325         * @param {Node} oldParent The parent of the node
25326         * @param {Node} newParent The new parent the node is moving to
25327         * @param {Number} index The index it is being moved to
25328         */
25329        "beforemove" : true,
25330        /**
25331         * @event beforeinsert
25332         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25333         * @param {Tree} tree The owner tree
25334         * @param {Node} parent The parent node
25335         * @param {Node} node The child node to be inserted
25336         * @param {Node} refNode The child node the node is being inserted before
25337         */
25338        "beforeinsert" : true
25339    });
25340
25341     Roo.data.Tree.superclass.constructor.call(this);
25342 };
25343
25344 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25345     pathSeparator: "/",
25346
25347     proxyNodeEvent : function(){
25348         return this.fireEvent.apply(this, arguments);
25349     },
25350
25351     /**
25352      * Returns the root node for this tree.
25353      * @return {Node}
25354      */
25355     getRootNode : function(){
25356         return this.root;
25357     },
25358
25359     /**
25360      * Sets the root node for this tree.
25361      * @param {Node} node
25362      * @return {Node}
25363      */
25364     setRootNode : function(node){
25365         this.root = node;
25366         node.ownerTree = this;
25367         node.isRoot = true;
25368         this.registerNode(node);
25369         return node;
25370     },
25371
25372     /**
25373      * Gets a node in this tree by its id.
25374      * @param {String} id
25375      * @return {Node}
25376      */
25377     getNodeById : function(id){
25378         return this.nodeHash[id];
25379     },
25380
25381     registerNode : function(node){
25382         this.nodeHash[node.id] = node;
25383     },
25384
25385     unregisterNode : function(node){
25386         delete this.nodeHash[node.id];
25387     },
25388
25389     toString : function(){
25390         return "[Tree"+(this.id?" "+this.id:"")+"]";
25391     }
25392 });
25393
25394 /**
25395  * @class Roo.data.Node
25396  * @extends Roo.util.Observable
25397  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25398  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25399  * @constructor
25400  * @param {Object} attributes The attributes/config for the node
25401  */
25402 Roo.data.Node = function(attributes){
25403     /**
25404      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25405      * @type {Object}
25406      */
25407     this.attributes = attributes || {};
25408     this.leaf = this.attributes.leaf;
25409     /**
25410      * The node id. @type String
25411      */
25412     this.id = this.attributes.id;
25413     if(!this.id){
25414         this.id = Roo.id(null, "ynode-");
25415         this.attributes.id = this.id;
25416     }
25417      
25418     
25419     /**
25420      * All child nodes of this node. @type Array
25421      */
25422     this.childNodes = [];
25423     if(!this.childNodes.indexOf){ // indexOf is a must
25424         this.childNodes.indexOf = function(o){
25425             for(var i = 0, len = this.length; i < len; i++){
25426                 if(this[i] == o) {
25427                     return i;
25428                 }
25429             }
25430             return -1;
25431         };
25432     }
25433     /**
25434      * The parent node for this node. @type Node
25435      */
25436     this.parentNode = null;
25437     /**
25438      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25439      */
25440     this.firstChild = null;
25441     /**
25442      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25443      */
25444     this.lastChild = null;
25445     /**
25446      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25447      */
25448     this.previousSibling = null;
25449     /**
25450      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25451      */
25452     this.nextSibling = null;
25453
25454     this.addEvents({
25455        /**
25456         * @event append
25457         * Fires when a new child node is appended
25458         * @param {Tree} tree The owner tree
25459         * @param {Node} this This node
25460         * @param {Node} node The newly appended node
25461         * @param {Number} index The index of the newly appended node
25462         */
25463        "append" : true,
25464        /**
25465         * @event remove
25466         * Fires when a child node is removed
25467         * @param {Tree} tree The owner tree
25468         * @param {Node} this This node
25469         * @param {Node} node The removed node
25470         */
25471        "remove" : true,
25472        /**
25473         * @event move
25474         * Fires when this node is moved to a new location in the tree
25475         * @param {Tree} tree The owner tree
25476         * @param {Node} this This node
25477         * @param {Node} oldParent The old parent of this node
25478         * @param {Node} newParent The new parent of this node
25479         * @param {Number} index The index it was moved to
25480         */
25481        "move" : true,
25482        /**
25483         * @event insert
25484         * Fires when a new child node is inserted.
25485         * @param {Tree} tree The owner tree
25486         * @param {Node} this This node
25487         * @param {Node} node The child node inserted
25488         * @param {Node} refNode The child node the node was inserted before
25489         */
25490        "insert" : true,
25491        /**
25492         * @event beforeappend
25493         * Fires before a new child is appended, return false to cancel the append.
25494         * @param {Tree} tree The owner tree
25495         * @param {Node} this This node
25496         * @param {Node} node The child node to be appended
25497         */
25498        "beforeappend" : true,
25499        /**
25500         * @event beforeremove
25501         * Fires before a child is removed, return false to cancel the remove.
25502         * @param {Tree} tree The owner tree
25503         * @param {Node} this This node
25504         * @param {Node} node The child node to be removed
25505         */
25506        "beforeremove" : true,
25507        /**
25508         * @event beforemove
25509         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25510         * @param {Tree} tree The owner tree
25511         * @param {Node} this This node
25512         * @param {Node} oldParent The parent of this node
25513         * @param {Node} newParent The new parent this node is moving to
25514         * @param {Number} index The index it is being moved to
25515         */
25516        "beforemove" : true,
25517        /**
25518         * @event beforeinsert
25519         * Fires before a new child is inserted, return false to cancel the insert.
25520         * @param {Tree} tree The owner tree
25521         * @param {Node} this This node
25522         * @param {Node} node The child node to be inserted
25523         * @param {Node} refNode The child node the node is being inserted before
25524         */
25525        "beforeinsert" : true
25526    });
25527     this.listeners = this.attributes.listeners;
25528     Roo.data.Node.superclass.constructor.call(this);
25529 };
25530
25531 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25532     fireEvent : function(evtName){
25533         // first do standard event for this node
25534         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25535             return false;
25536         }
25537         // then bubble it up to the tree if the event wasn't cancelled
25538         var ot = this.getOwnerTree();
25539         if(ot){
25540             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25541                 return false;
25542             }
25543         }
25544         return true;
25545     },
25546
25547     /**
25548      * Returns true if this node is a leaf
25549      * @return {Boolean}
25550      */
25551     isLeaf : function(){
25552         return this.leaf === true;
25553     },
25554
25555     // private
25556     setFirstChild : function(node){
25557         this.firstChild = node;
25558     },
25559
25560     //private
25561     setLastChild : function(node){
25562         this.lastChild = node;
25563     },
25564
25565
25566     /**
25567      * Returns true if this node is the last child of its parent
25568      * @return {Boolean}
25569      */
25570     isLast : function(){
25571        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25572     },
25573
25574     /**
25575      * Returns true if this node is the first child of its parent
25576      * @return {Boolean}
25577      */
25578     isFirst : function(){
25579        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25580     },
25581
25582     hasChildNodes : function(){
25583         return !this.isLeaf() && this.childNodes.length > 0;
25584     },
25585
25586     /**
25587      * Insert node(s) as the last child node of this node.
25588      * @param {Node/Array} node The node or Array of nodes to append
25589      * @return {Node} The appended node if single append, or null if an array was passed
25590      */
25591     appendChild : function(node){
25592         var multi = false;
25593         if(node instanceof Array){
25594             multi = node;
25595         }else if(arguments.length > 1){
25596             multi = arguments;
25597         }
25598         
25599         // if passed an array or multiple args do them one by one
25600         if(multi){
25601             for(var i = 0, len = multi.length; i < len; i++) {
25602                 this.appendChild(multi[i]);
25603             }
25604         }else{
25605             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25606                 return false;
25607             }
25608             var index = this.childNodes.length;
25609             var oldParent = node.parentNode;
25610             // it's a move, make sure we move it cleanly
25611             if(oldParent){
25612                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25613                     return false;
25614                 }
25615                 oldParent.removeChild(node);
25616             }
25617             
25618             index = this.childNodes.length;
25619             if(index == 0){
25620                 this.setFirstChild(node);
25621             }
25622             this.childNodes.push(node);
25623             node.parentNode = this;
25624             var ps = this.childNodes[index-1];
25625             if(ps){
25626                 node.previousSibling = ps;
25627                 ps.nextSibling = node;
25628             }else{
25629                 node.previousSibling = null;
25630             }
25631             node.nextSibling = null;
25632             this.setLastChild(node);
25633             node.setOwnerTree(this.getOwnerTree());
25634             this.fireEvent("append", this.ownerTree, this, node, index);
25635             if(this.ownerTree) {
25636                 this.ownerTree.fireEvent("appendnode", this, node, index);
25637             }
25638             if(oldParent){
25639                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25640             }
25641             return node;
25642         }
25643     },
25644
25645     /**
25646      * Removes a child node from this node.
25647      * @param {Node} node The node to remove
25648      * @return {Node} The removed node
25649      */
25650     removeChild : function(node){
25651         var index = this.childNodes.indexOf(node);
25652         if(index == -1){
25653             return false;
25654         }
25655         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25656             return false;
25657         }
25658
25659         // remove it from childNodes collection
25660         this.childNodes.splice(index, 1);
25661
25662         // update siblings
25663         if(node.previousSibling){
25664             node.previousSibling.nextSibling = node.nextSibling;
25665         }
25666         if(node.nextSibling){
25667             node.nextSibling.previousSibling = node.previousSibling;
25668         }
25669
25670         // update child refs
25671         if(this.firstChild == node){
25672             this.setFirstChild(node.nextSibling);
25673         }
25674         if(this.lastChild == node){
25675             this.setLastChild(node.previousSibling);
25676         }
25677
25678         node.setOwnerTree(null);
25679         // clear any references from the node
25680         node.parentNode = null;
25681         node.previousSibling = null;
25682         node.nextSibling = null;
25683         this.fireEvent("remove", this.ownerTree, this, node);
25684         return node;
25685     },
25686
25687     /**
25688      * Inserts the first node before the second node in this nodes childNodes collection.
25689      * @param {Node} node The node to insert
25690      * @param {Node} refNode The node to insert before (if null the node is appended)
25691      * @return {Node} The inserted node
25692      */
25693     insertBefore : function(node, refNode){
25694         if(!refNode){ // like standard Dom, refNode can be null for append
25695             return this.appendChild(node);
25696         }
25697         // nothing to do
25698         if(node == refNode){
25699             return false;
25700         }
25701
25702         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25703             return false;
25704         }
25705         var index = this.childNodes.indexOf(refNode);
25706         var oldParent = node.parentNode;
25707         var refIndex = index;
25708
25709         // when moving internally, indexes will change after remove
25710         if(oldParent == this && this.childNodes.indexOf(node) < index){
25711             refIndex--;
25712         }
25713
25714         // it's a move, make sure we move it cleanly
25715         if(oldParent){
25716             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25717                 return false;
25718             }
25719             oldParent.removeChild(node);
25720         }
25721         if(refIndex == 0){
25722             this.setFirstChild(node);
25723         }
25724         this.childNodes.splice(refIndex, 0, node);
25725         node.parentNode = this;
25726         var ps = this.childNodes[refIndex-1];
25727         if(ps){
25728             node.previousSibling = ps;
25729             ps.nextSibling = node;
25730         }else{
25731             node.previousSibling = null;
25732         }
25733         node.nextSibling = refNode;
25734         refNode.previousSibling = node;
25735         node.setOwnerTree(this.getOwnerTree());
25736         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25737         if(oldParent){
25738             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25739         }
25740         return node;
25741     },
25742
25743     /**
25744      * Returns the child node at the specified index.
25745      * @param {Number} index
25746      * @return {Node}
25747      */
25748     item : function(index){
25749         return this.childNodes[index];
25750     },
25751
25752     /**
25753      * Replaces one child node in this node with another.
25754      * @param {Node} newChild The replacement node
25755      * @param {Node} oldChild The node to replace
25756      * @return {Node} The replaced node
25757      */
25758     replaceChild : function(newChild, oldChild){
25759         this.insertBefore(newChild, oldChild);
25760         this.removeChild(oldChild);
25761         return oldChild;
25762     },
25763
25764     /**
25765      * Returns the index of a child node
25766      * @param {Node} node
25767      * @return {Number} The index of the node or -1 if it was not found
25768      */
25769     indexOf : function(child){
25770         return this.childNodes.indexOf(child);
25771     },
25772
25773     /**
25774      * Returns the tree this node is in.
25775      * @return {Tree}
25776      */
25777     getOwnerTree : function(){
25778         // if it doesn't have one, look for one
25779         if(!this.ownerTree){
25780             var p = this;
25781             while(p){
25782                 if(p.ownerTree){
25783                     this.ownerTree = p.ownerTree;
25784                     break;
25785                 }
25786                 p = p.parentNode;
25787             }
25788         }
25789         return this.ownerTree;
25790     },
25791
25792     /**
25793      * Returns depth of this node (the root node has a depth of 0)
25794      * @return {Number}
25795      */
25796     getDepth : function(){
25797         var depth = 0;
25798         var p = this;
25799         while(p.parentNode){
25800             ++depth;
25801             p = p.parentNode;
25802         }
25803         return depth;
25804     },
25805
25806     // private
25807     setOwnerTree : function(tree){
25808         // if it's move, we need to update everyone
25809         if(tree != this.ownerTree){
25810             if(this.ownerTree){
25811                 this.ownerTree.unregisterNode(this);
25812             }
25813             this.ownerTree = tree;
25814             var cs = this.childNodes;
25815             for(var i = 0, len = cs.length; i < len; i++) {
25816                 cs[i].setOwnerTree(tree);
25817             }
25818             if(tree){
25819                 tree.registerNode(this);
25820             }
25821         }
25822     },
25823
25824     /**
25825      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25826      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25827      * @return {String} The path
25828      */
25829     getPath : function(attr){
25830         attr = attr || "id";
25831         var p = this.parentNode;
25832         var b = [this.attributes[attr]];
25833         while(p){
25834             b.unshift(p.attributes[attr]);
25835             p = p.parentNode;
25836         }
25837         var sep = this.getOwnerTree().pathSeparator;
25838         return sep + b.join(sep);
25839     },
25840
25841     /**
25842      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25843      * function call will be the scope provided or the current node. The arguments to the function
25844      * will be the args provided or the current node. If the function returns false at any point,
25845      * the bubble is stopped.
25846      * @param {Function} fn The function to call
25847      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25848      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25849      */
25850     bubble : function(fn, scope, args){
25851         var p = this;
25852         while(p){
25853             if(fn.call(scope || p, args || p) === false){
25854                 break;
25855             }
25856             p = p.parentNode;
25857         }
25858     },
25859
25860     /**
25861      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25862      * function call will be the scope provided or the current node. The arguments to the function
25863      * will be the args provided or the current node. If the function returns false at any point,
25864      * the cascade is stopped on that branch.
25865      * @param {Function} fn The function to call
25866      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25867      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25868      */
25869     cascade : function(fn, scope, args){
25870         if(fn.call(scope || this, args || this) !== false){
25871             var cs = this.childNodes;
25872             for(var i = 0, len = cs.length; i < len; i++) {
25873                 cs[i].cascade(fn, scope, args);
25874             }
25875         }
25876     },
25877
25878     /**
25879      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25880      * function call will be the scope provided or the current node. The arguments to the function
25881      * will be the args provided or the current node. If the function returns false at any point,
25882      * the iteration stops.
25883      * @param {Function} fn The function to call
25884      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25885      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25886      */
25887     eachChild : function(fn, scope, args){
25888         var cs = this.childNodes;
25889         for(var i = 0, len = cs.length; i < len; i++) {
25890                 if(fn.call(scope || this, args || cs[i]) === false){
25891                     break;
25892                 }
25893         }
25894     },
25895
25896     /**
25897      * Finds the first child that has the attribute with the specified value.
25898      * @param {String} attribute The attribute name
25899      * @param {Mixed} value The value to search for
25900      * @return {Node} The found child or null if none was found
25901      */
25902     findChild : function(attribute, value){
25903         var cs = this.childNodes;
25904         for(var i = 0, len = cs.length; i < len; i++) {
25905                 if(cs[i].attributes[attribute] == value){
25906                     return cs[i];
25907                 }
25908         }
25909         return null;
25910     },
25911
25912     /**
25913      * Finds the first child by a custom function. The child matches if the function passed
25914      * returns true.
25915      * @param {Function} fn
25916      * @param {Object} scope (optional)
25917      * @return {Node} The found child or null if none was found
25918      */
25919     findChildBy : function(fn, scope){
25920         var cs = this.childNodes;
25921         for(var i = 0, len = cs.length; i < len; i++) {
25922                 if(fn.call(scope||cs[i], cs[i]) === true){
25923                     return cs[i];
25924                 }
25925         }
25926         return null;
25927     },
25928
25929     /**
25930      * Sorts this nodes children using the supplied sort function
25931      * @param {Function} fn
25932      * @param {Object} scope (optional)
25933      */
25934     sort : function(fn, scope){
25935         var cs = this.childNodes;
25936         var len = cs.length;
25937         if(len > 0){
25938             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
25939             cs.sort(sortFn);
25940             for(var i = 0; i < len; i++){
25941                 var n = cs[i];
25942                 n.previousSibling = cs[i-1];
25943                 n.nextSibling = cs[i+1];
25944                 if(i == 0){
25945                     this.setFirstChild(n);
25946                 }
25947                 if(i == len-1){
25948                     this.setLastChild(n);
25949                 }
25950             }
25951         }
25952     },
25953
25954     /**
25955      * Returns true if this node is an ancestor (at any point) of the passed node.
25956      * @param {Node} node
25957      * @return {Boolean}
25958      */
25959     contains : function(node){
25960         return node.isAncestor(this);
25961     },
25962
25963     /**
25964      * Returns true if the passed node is an ancestor (at any point) of this node.
25965      * @param {Node} node
25966      * @return {Boolean}
25967      */
25968     isAncestor : function(node){
25969         var p = this.parentNode;
25970         while(p){
25971             if(p == node){
25972                 return true;
25973             }
25974             p = p.parentNode;
25975         }
25976         return false;
25977     },
25978
25979     toString : function(){
25980         return "[Node"+(this.id?" "+this.id:"")+"]";
25981     }
25982 });/*
25983  * Based on:
25984  * Ext JS Library 1.1.1
25985  * Copyright(c) 2006-2007, Ext JS, LLC.
25986  *
25987  * Originally Released Under LGPL - original licence link has changed is not relivant.
25988  *
25989  * Fork - LGPL
25990  * <script type="text/javascript">
25991  */
25992
25993
25994 /**
25995  * @class Roo.Shadow
25996  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
25997  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
25998  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
25999  * @constructor
26000  * Create a new Shadow
26001  * @param {Object} config The config object
26002  */
26003 Roo.Shadow = function(config){
26004     Roo.apply(this, config);
26005     if(typeof this.mode != "string"){
26006         this.mode = this.defaultMode;
26007     }
26008     var o = this.offset, a = {h: 0};
26009     var rad = Math.floor(this.offset/2);
26010     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26011         case "drop":
26012             a.w = 0;
26013             a.l = a.t = o;
26014             a.t -= 1;
26015             if(Roo.isIE){
26016                 a.l -= this.offset + rad;
26017                 a.t -= this.offset + rad;
26018                 a.w -= rad;
26019                 a.h -= rad;
26020                 a.t += 1;
26021             }
26022         break;
26023         case "sides":
26024             a.w = (o*2);
26025             a.l = -o;
26026             a.t = o-1;
26027             if(Roo.isIE){
26028                 a.l -= (this.offset - rad);
26029                 a.t -= this.offset + rad;
26030                 a.l += 1;
26031                 a.w -= (this.offset - rad)*2;
26032                 a.w -= rad + 1;
26033                 a.h -= 1;
26034             }
26035         break;
26036         case "frame":
26037             a.w = a.h = (o*2);
26038             a.l = a.t = -o;
26039             a.t += 1;
26040             a.h -= 2;
26041             if(Roo.isIE){
26042                 a.l -= (this.offset - rad);
26043                 a.t -= (this.offset - rad);
26044                 a.l += 1;
26045                 a.w -= (this.offset + rad + 1);
26046                 a.h -= (this.offset + rad);
26047                 a.h += 1;
26048             }
26049         break;
26050     };
26051
26052     this.adjusts = a;
26053 };
26054
26055 Roo.Shadow.prototype = {
26056     /**
26057      * @cfg {String} mode
26058      * The shadow display mode.  Supports the following options:<br />
26059      * sides: Shadow displays on both sides and bottom only<br />
26060      * frame: Shadow displays equally on all four sides<br />
26061      * drop: Traditional bottom-right drop shadow (default)
26062      */
26063     /**
26064      * @cfg {String} offset
26065      * The number of pixels to offset the shadow from the element (defaults to 4)
26066      */
26067     offset: 4,
26068
26069     // private
26070     defaultMode: "drop",
26071
26072     /**
26073      * Displays the shadow under the target element
26074      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26075      */
26076     show : function(target){
26077         target = Roo.get(target);
26078         if(!this.el){
26079             this.el = Roo.Shadow.Pool.pull();
26080             if(this.el.dom.nextSibling != target.dom){
26081                 this.el.insertBefore(target);
26082             }
26083         }
26084         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26085         if(Roo.isIE){
26086             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26087         }
26088         this.realign(
26089             target.getLeft(true),
26090             target.getTop(true),
26091             target.getWidth(),
26092             target.getHeight()
26093         );
26094         this.el.dom.style.display = "block";
26095     },
26096
26097     /**
26098      * Returns true if the shadow is visible, else false
26099      */
26100     isVisible : function(){
26101         return this.el ? true : false;  
26102     },
26103
26104     /**
26105      * Direct alignment when values are already available. Show must be called at least once before
26106      * calling this method to ensure it is initialized.
26107      * @param {Number} left The target element left position
26108      * @param {Number} top The target element top position
26109      * @param {Number} width The target element width
26110      * @param {Number} height The target element height
26111      */
26112     realign : function(l, t, w, h){
26113         if(!this.el){
26114             return;
26115         }
26116         var a = this.adjusts, d = this.el.dom, s = d.style;
26117         var iea = 0;
26118         s.left = (l+a.l)+"px";
26119         s.top = (t+a.t)+"px";
26120         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26121  
26122         if(s.width != sws || s.height != shs){
26123             s.width = sws;
26124             s.height = shs;
26125             if(!Roo.isIE){
26126                 var cn = d.childNodes;
26127                 var sww = Math.max(0, (sw-12))+"px";
26128                 cn[0].childNodes[1].style.width = sww;
26129                 cn[1].childNodes[1].style.width = sww;
26130                 cn[2].childNodes[1].style.width = sww;
26131                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26132             }
26133         }
26134     },
26135
26136     /**
26137      * Hides this shadow
26138      */
26139     hide : function(){
26140         if(this.el){
26141             this.el.dom.style.display = "none";
26142             Roo.Shadow.Pool.push(this.el);
26143             delete this.el;
26144         }
26145     },
26146
26147     /**
26148      * Adjust the z-index of this shadow
26149      * @param {Number} zindex The new z-index
26150      */
26151     setZIndex : function(z){
26152         this.zIndex = z;
26153         if(this.el){
26154             this.el.setStyle("z-index", z);
26155         }
26156     }
26157 };
26158
26159 // Private utility class that manages the internal Shadow cache
26160 Roo.Shadow.Pool = function(){
26161     var p = [];
26162     var markup = Roo.isIE ?
26163                  '<div class="x-ie-shadow"></div>' :
26164                  '<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>';
26165     return {
26166         pull : function(){
26167             var sh = p.shift();
26168             if(!sh){
26169                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26170                 sh.autoBoxAdjust = false;
26171             }
26172             return sh;
26173         },
26174
26175         push : function(sh){
26176             p.push(sh);
26177         }
26178     };
26179 }();/*
26180  * Based on:
26181  * Ext JS Library 1.1.1
26182  * Copyright(c) 2006-2007, Ext JS, LLC.
26183  *
26184  * Originally Released Under LGPL - original licence link has changed is not relivant.
26185  *
26186  * Fork - LGPL
26187  * <script type="text/javascript">
26188  */
26189
26190
26191 /**
26192  * @class Roo.SplitBar
26193  * @extends Roo.util.Observable
26194  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26195  * <br><br>
26196  * Usage:
26197  * <pre><code>
26198 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26199                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26200 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26201 split.minSize = 100;
26202 split.maxSize = 600;
26203 split.animate = true;
26204 split.on('moved', splitterMoved);
26205 </code></pre>
26206  * @constructor
26207  * Create a new SplitBar
26208  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26209  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26210  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26211  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26212                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26213                         position of the SplitBar).
26214  */
26215 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26216     
26217     /** @private */
26218     this.el = Roo.get(dragElement, true);
26219     this.el.dom.unselectable = "on";
26220     /** @private */
26221     this.resizingEl = Roo.get(resizingElement, true);
26222
26223     /**
26224      * @private
26225      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26226      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26227      * @type Number
26228      */
26229     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26230     
26231     /**
26232      * The minimum size of the resizing element. (Defaults to 0)
26233      * @type Number
26234      */
26235     this.minSize = 0;
26236     
26237     /**
26238      * The maximum size of the resizing element. (Defaults to 2000)
26239      * @type Number
26240      */
26241     this.maxSize = 2000;
26242     
26243     /**
26244      * Whether to animate the transition to the new size
26245      * @type Boolean
26246      */
26247     this.animate = false;
26248     
26249     /**
26250      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26251      * @type Boolean
26252      */
26253     this.useShim = false;
26254     
26255     /** @private */
26256     this.shim = null;
26257     
26258     if(!existingProxy){
26259         /** @private */
26260         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26261     }else{
26262         this.proxy = Roo.get(existingProxy).dom;
26263     }
26264     /** @private */
26265     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26266     
26267     /** @private */
26268     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26269     
26270     /** @private */
26271     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26272     
26273     /** @private */
26274     this.dragSpecs = {};
26275     
26276     /**
26277      * @private The adapter to use to positon and resize elements
26278      */
26279     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26280     this.adapter.init(this);
26281     
26282     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26283         /** @private */
26284         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26285         this.el.addClass("x-splitbar-h");
26286     }else{
26287         /** @private */
26288         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26289         this.el.addClass("x-splitbar-v");
26290     }
26291     
26292     this.addEvents({
26293         /**
26294          * @event resize
26295          * Fires when the splitter is moved (alias for {@link #event-moved})
26296          * @param {Roo.SplitBar} this
26297          * @param {Number} newSize the new width or height
26298          */
26299         "resize" : true,
26300         /**
26301          * @event moved
26302          * Fires when the splitter is moved
26303          * @param {Roo.SplitBar} this
26304          * @param {Number} newSize the new width or height
26305          */
26306         "moved" : true,
26307         /**
26308          * @event beforeresize
26309          * Fires before the splitter is dragged
26310          * @param {Roo.SplitBar} this
26311          */
26312         "beforeresize" : true,
26313
26314         "beforeapply" : true
26315     });
26316
26317     Roo.util.Observable.call(this);
26318 };
26319
26320 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26321     onStartProxyDrag : function(x, y){
26322         this.fireEvent("beforeresize", this);
26323         if(!this.overlay){
26324             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26325             o.unselectable();
26326             o.enableDisplayMode("block");
26327             // all splitbars share the same overlay
26328             Roo.SplitBar.prototype.overlay = o;
26329         }
26330         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26331         this.overlay.show();
26332         Roo.get(this.proxy).setDisplayed("block");
26333         var size = this.adapter.getElementSize(this);
26334         this.activeMinSize = this.getMinimumSize();;
26335         this.activeMaxSize = this.getMaximumSize();;
26336         var c1 = size - this.activeMinSize;
26337         var c2 = Math.max(this.activeMaxSize - size, 0);
26338         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26339             this.dd.resetConstraints();
26340             this.dd.setXConstraint(
26341                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26342                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26343             );
26344             this.dd.setYConstraint(0, 0);
26345         }else{
26346             this.dd.resetConstraints();
26347             this.dd.setXConstraint(0, 0);
26348             this.dd.setYConstraint(
26349                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26350                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26351             );
26352          }
26353         this.dragSpecs.startSize = size;
26354         this.dragSpecs.startPoint = [x, y];
26355         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26356     },
26357     
26358     /** 
26359      * @private Called after the drag operation by the DDProxy
26360      */
26361     onEndProxyDrag : function(e){
26362         Roo.get(this.proxy).setDisplayed(false);
26363         var endPoint = Roo.lib.Event.getXY(e);
26364         if(this.overlay){
26365             this.overlay.hide();
26366         }
26367         var newSize;
26368         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26369             newSize = this.dragSpecs.startSize + 
26370                 (this.placement == Roo.SplitBar.LEFT ?
26371                     endPoint[0] - this.dragSpecs.startPoint[0] :
26372                     this.dragSpecs.startPoint[0] - endPoint[0]
26373                 );
26374         }else{
26375             newSize = this.dragSpecs.startSize + 
26376                 (this.placement == Roo.SplitBar.TOP ?
26377                     endPoint[1] - this.dragSpecs.startPoint[1] :
26378                     this.dragSpecs.startPoint[1] - endPoint[1]
26379                 );
26380         }
26381         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26382         if(newSize != this.dragSpecs.startSize){
26383             if(this.fireEvent('beforeapply', this, newSize) !== false){
26384                 this.adapter.setElementSize(this, newSize);
26385                 this.fireEvent("moved", this, newSize);
26386                 this.fireEvent("resize", this, newSize);
26387             }
26388         }
26389     },
26390     
26391     /**
26392      * Get the adapter this SplitBar uses
26393      * @return The adapter object
26394      */
26395     getAdapter : function(){
26396         return this.adapter;
26397     },
26398     
26399     /**
26400      * Set the adapter this SplitBar uses
26401      * @param {Object} adapter A SplitBar adapter object
26402      */
26403     setAdapter : function(adapter){
26404         this.adapter = adapter;
26405         this.adapter.init(this);
26406     },
26407     
26408     /**
26409      * Gets the minimum size for the resizing element
26410      * @return {Number} The minimum size
26411      */
26412     getMinimumSize : function(){
26413         return this.minSize;
26414     },
26415     
26416     /**
26417      * Sets the minimum size for the resizing element
26418      * @param {Number} minSize The minimum size
26419      */
26420     setMinimumSize : function(minSize){
26421         this.minSize = minSize;
26422     },
26423     
26424     /**
26425      * Gets the maximum size for the resizing element
26426      * @return {Number} The maximum size
26427      */
26428     getMaximumSize : function(){
26429         return this.maxSize;
26430     },
26431     
26432     /**
26433      * Sets the maximum size for the resizing element
26434      * @param {Number} maxSize The maximum size
26435      */
26436     setMaximumSize : function(maxSize){
26437         this.maxSize = maxSize;
26438     },
26439     
26440     /**
26441      * Sets the initialize size for the resizing element
26442      * @param {Number} size The initial size
26443      */
26444     setCurrentSize : function(size){
26445         var oldAnimate = this.animate;
26446         this.animate = false;
26447         this.adapter.setElementSize(this, size);
26448         this.animate = oldAnimate;
26449     },
26450     
26451     /**
26452      * Destroy this splitbar. 
26453      * @param {Boolean} removeEl True to remove the element
26454      */
26455     destroy : function(removeEl){
26456         if(this.shim){
26457             this.shim.remove();
26458         }
26459         this.dd.unreg();
26460         this.proxy.parentNode.removeChild(this.proxy);
26461         if(removeEl){
26462             this.el.remove();
26463         }
26464     }
26465 });
26466
26467 /**
26468  * @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.
26469  */
26470 Roo.SplitBar.createProxy = function(dir){
26471     var proxy = new Roo.Element(document.createElement("div"));
26472     proxy.unselectable();
26473     var cls = 'x-splitbar-proxy';
26474     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26475     document.body.appendChild(proxy.dom);
26476     return proxy.dom;
26477 };
26478
26479 /** 
26480  * @class Roo.SplitBar.BasicLayoutAdapter
26481  * Default Adapter. It assumes the splitter and resizing element are not positioned
26482  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26483  */
26484 Roo.SplitBar.BasicLayoutAdapter = function(){
26485 };
26486
26487 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26488     // do nothing for now
26489     init : function(s){
26490     
26491     },
26492     /**
26493      * Called before drag operations to get the current size of the resizing element. 
26494      * @param {Roo.SplitBar} s The SplitBar using this adapter
26495      */
26496      getElementSize : function(s){
26497         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26498             return s.resizingEl.getWidth();
26499         }else{
26500             return s.resizingEl.getHeight();
26501         }
26502     },
26503     
26504     /**
26505      * Called after drag operations to set the size of the resizing element.
26506      * @param {Roo.SplitBar} s The SplitBar using this adapter
26507      * @param {Number} newSize The new size to set
26508      * @param {Function} onComplete A function to be invoked when resizing is complete
26509      */
26510     setElementSize : function(s, newSize, onComplete){
26511         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26512             if(!s.animate){
26513                 s.resizingEl.setWidth(newSize);
26514                 if(onComplete){
26515                     onComplete(s, newSize);
26516                 }
26517             }else{
26518                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26519             }
26520         }else{
26521             
26522             if(!s.animate){
26523                 s.resizingEl.setHeight(newSize);
26524                 if(onComplete){
26525                     onComplete(s, newSize);
26526                 }
26527             }else{
26528                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26529             }
26530         }
26531     }
26532 };
26533
26534 /** 
26535  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26536  * @extends Roo.SplitBar.BasicLayoutAdapter
26537  * Adapter that  moves the splitter element to align with the resized sizing element. 
26538  * Used with an absolute positioned SplitBar.
26539  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26540  * document.body, make sure you assign an id to the body element.
26541  */
26542 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26543     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26544     this.container = Roo.get(container);
26545 };
26546
26547 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26548     init : function(s){
26549         this.basic.init(s);
26550     },
26551     
26552     getElementSize : function(s){
26553         return this.basic.getElementSize(s);
26554     },
26555     
26556     setElementSize : function(s, newSize, onComplete){
26557         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26558     },
26559     
26560     moveSplitter : function(s){
26561         var yes = Roo.SplitBar;
26562         switch(s.placement){
26563             case yes.LEFT:
26564                 s.el.setX(s.resizingEl.getRight());
26565                 break;
26566             case yes.RIGHT:
26567                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26568                 break;
26569             case yes.TOP:
26570                 s.el.setY(s.resizingEl.getBottom());
26571                 break;
26572             case yes.BOTTOM:
26573                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26574                 break;
26575         }
26576     }
26577 };
26578
26579 /**
26580  * Orientation constant - Create a vertical SplitBar
26581  * @static
26582  * @type Number
26583  */
26584 Roo.SplitBar.VERTICAL = 1;
26585
26586 /**
26587  * Orientation constant - Create a horizontal SplitBar
26588  * @static
26589  * @type Number
26590  */
26591 Roo.SplitBar.HORIZONTAL = 2;
26592
26593 /**
26594  * Placement constant - The resizing element is to the left of the splitter element
26595  * @static
26596  * @type Number
26597  */
26598 Roo.SplitBar.LEFT = 1;
26599
26600 /**
26601  * Placement constant - The resizing element is to the right of the splitter element
26602  * @static
26603  * @type Number
26604  */
26605 Roo.SplitBar.RIGHT = 2;
26606
26607 /**
26608  * Placement constant - The resizing element is positioned above the splitter element
26609  * @static
26610  * @type Number
26611  */
26612 Roo.SplitBar.TOP = 3;
26613
26614 /**
26615  * Placement constant - The resizing element is positioned under splitter element
26616  * @static
26617  * @type Number
26618  */
26619 Roo.SplitBar.BOTTOM = 4;
26620 /*
26621  * Based on:
26622  * Ext JS Library 1.1.1
26623  * Copyright(c) 2006-2007, Ext JS, LLC.
26624  *
26625  * Originally Released Under LGPL - original licence link has changed is not relivant.
26626  *
26627  * Fork - LGPL
26628  * <script type="text/javascript">
26629  */
26630
26631 /**
26632  * @class Roo.View
26633  * @extends Roo.util.Observable
26634  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26635  * This class also supports single and multi selection modes. <br>
26636  * Create a data model bound view:
26637  <pre><code>
26638  var store = new Roo.data.Store(...);
26639
26640  var view = new Roo.View({
26641     el : "my-element",
26642     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26643  
26644     singleSelect: true,
26645     selectedClass: "ydataview-selected",
26646     store: store
26647  });
26648
26649  // listen for node click?
26650  view.on("click", function(vw, index, node, e){
26651  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26652  });
26653
26654  // load XML data
26655  dataModel.load("foobar.xml");
26656  </code></pre>
26657  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26658  * <br><br>
26659  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26660  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26661  * 
26662  * Note: old style constructor is still suported (container, template, config)
26663  * 
26664  * @constructor
26665  * Create a new View
26666  * @param {Object} config The config object
26667  * 
26668  */
26669 Roo.View = function(config, depreciated_tpl, depreciated_config){
26670     
26671     this.parent = false;
26672     
26673     if (typeof(depreciated_tpl) == 'undefined') {
26674         // new way.. - universal constructor.
26675         Roo.apply(this, config);
26676         this.el  = Roo.get(this.el);
26677     } else {
26678         // old format..
26679         this.el  = Roo.get(config);
26680         this.tpl = depreciated_tpl;
26681         Roo.apply(this, depreciated_config);
26682     }
26683     this.wrapEl  = this.el.wrap().wrap();
26684     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26685     
26686     
26687     if(typeof(this.tpl) == "string"){
26688         this.tpl = new Roo.Template(this.tpl);
26689     } else {
26690         // support xtype ctors..
26691         this.tpl = new Roo.factory(this.tpl, Roo);
26692     }
26693     
26694     
26695     this.tpl.compile();
26696     
26697     /** @private */
26698     this.addEvents({
26699         /**
26700          * @event beforeclick
26701          * Fires before a click is processed. Returns false to cancel the default action.
26702          * @param {Roo.View} this
26703          * @param {Number} index The index of the target node
26704          * @param {HTMLElement} node The target node
26705          * @param {Roo.EventObject} e The raw event object
26706          */
26707             "beforeclick" : true,
26708         /**
26709          * @event click
26710          * Fires when a template node is clicked.
26711          * @param {Roo.View} this
26712          * @param {Number} index The index of the target node
26713          * @param {HTMLElement} node The target node
26714          * @param {Roo.EventObject} e The raw event object
26715          */
26716             "click" : true,
26717         /**
26718          * @event dblclick
26719          * Fires when a template node is double clicked.
26720          * @param {Roo.View} this
26721          * @param {Number} index The index of the target node
26722          * @param {HTMLElement} node The target node
26723          * @param {Roo.EventObject} e The raw event object
26724          */
26725             "dblclick" : true,
26726         /**
26727          * @event contextmenu
26728          * Fires when a template node is right clicked.
26729          * @param {Roo.View} this
26730          * @param {Number} index The index of the target node
26731          * @param {HTMLElement} node The target node
26732          * @param {Roo.EventObject} e The raw event object
26733          */
26734             "contextmenu" : true,
26735         /**
26736          * @event selectionchange
26737          * Fires when the selected nodes change.
26738          * @param {Roo.View} this
26739          * @param {Array} selections Array of the selected nodes
26740          */
26741             "selectionchange" : true,
26742     
26743         /**
26744          * @event beforeselect
26745          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26746          * @param {Roo.View} this
26747          * @param {HTMLElement} node The node to be selected
26748          * @param {Array} selections Array of currently selected nodes
26749          */
26750             "beforeselect" : true,
26751         /**
26752          * @event preparedata
26753          * Fires on every row to render, to allow you to change the data.
26754          * @param {Roo.View} this
26755          * @param {Object} data to be rendered (change this)
26756          */
26757           "preparedata" : true
26758           
26759           
26760         });
26761
26762
26763
26764     this.el.on({
26765         "click": this.onClick,
26766         "dblclick": this.onDblClick,
26767         "contextmenu": this.onContextMenu,
26768         scope:this
26769     });
26770
26771     this.selections = [];
26772     this.nodes = [];
26773     this.cmp = new Roo.CompositeElementLite([]);
26774     if(this.store){
26775         this.store = Roo.factory(this.store, Roo.data);
26776         this.setStore(this.store, true);
26777     }
26778     
26779     if ( this.footer && this.footer.xtype) {
26780            
26781          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26782         
26783         this.footer.dataSource = this.store;
26784         this.footer.container = fctr;
26785         this.footer = Roo.factory(this.footer, Roo);
26786         fctr.insertFirst(this.el);
26787         
26788         // this is a bit insane - as the paging toolbar seems to detach the el..
26789 //        dom.parentNode.parentNode.parentNode
26790          // they get detached?
26791     }
26792     
26793     
26794     Roo.View.superclass.constructor.call(this);
26795     
26796     
26797 };
26798
26799 Roo.extend(Roo.View, Roo.util.Observable, {
26800     
26801      /**
26802      * @cfg {Roo.data.Store} store Data store to load data from.
26803      */
26804     store : false,
26805     
26806     /**
26807      * @cfg {String|Roo.Element} el The container element.
26808      */
26809     el : '',
26810     
26811     /**
26812      * @cfg {String|Roo.Template} tpl The template used by this View 
26813      */
26814     tpl : false,
26815     /**
26816      * @cfg {String} dataName the named area of the template to use as the data area
26817      *                          Works with domtemplates roo-name="name"
26818      */
26819     dataName: false,
26820     /**
26821      * @cfg {String} selectedClass The css class to add to selected nodes
26822      */
26823     selectedClass : "x-view-selected",
26824      /**
26825      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26826      */
26827     emptyText : "",
26828     
26829     /**
26830      * @cfg {String} text to display on mask (default Loading)
26831      */
26832     mask : false,
26833     /**
26834      * @cfg {Boolean} multiSelect Allow multiple selection
26835      */
26836     multiSelect : false,
26837     /**
26838      * @cfg {Boolean} singleSelect Allow single selection
26839      */
26840     singleSelect:  false,
26841     
26842     /**
26843      * @cfg {Boolean} toggleSelect - selecting 
26844      */
26845     toggleSelect : false,
26846     
26847     /**
26848      * @cfg {Boolean} tickable - selecting 
26849      */
26850     tickable : false,
26851     
26852     /**
26853      * Returns the element this view is bound to.
26854      * @return {Roo.Element}
26855      */
26856     getEl : function(){
26857         return this.wrapEl;
26858     },
26859     
26860     
26861
26862     /**
26863      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26864      */
26865     refresh : function(){
26866         //Roo.log('refresh');
26867         var t = this.tpl;
26868         
26869         // if we are using something like 'domtemplate', then
26870         // the what gets used is:
26871         // t.applySubtemplate(NAME, data, wrapping data..)
26872         // the outer template then get' applied with
26873         //     the store 'extra data'
26874         // and the body get's added to the
26875         //      roo-name="data" node?
26876         //      <span class='roo-tpl-{name}'></span> ?????
26877         
26878         
26879         
26880         this.clearSelections();
26881         this.el.update("");
26882         var html = [];
26883         var records = this.store.getRange();
26884         if(records.length < 1) {
26885             
26886             // is this valid??  = should it render a template??
26887             
26888             this.el.update(this.emptyText);
26889             return;
26890         }
26891         var el = this.el;
26892         if (this.dataName) {
26893             this.el.update(t.apply(this.store.meta)); //????
26894             el = this.el.child('.roo-tpl-' + this.dataName);
26895         }
26896         
26897         for(var i = 0, len = records.length; i < len; i++){
26898             var data = this.prepareData(records[i].data, i, records[i]);
26899             this.fireEvent("preparedata", this, data, i, records[i]);
26900             
26901             var d = Roo.apply({}, data);
26902             
26903             if(this.tickable){
26904                 Roo.apply(d, {'roo-id' : Roo.id()});
26905                 
26906                 var _this = this;
26907             
26908                 Roo.each(this.parent.item, function(item){
26909                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26910                         return;
26911                     }
26912                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26913                 });
26914             }
26915             
26916             html[html.length] = Roo.util.Format.trim(
26917                 this.dataName ?
26918                     t.applySubtemplate(this.dataName, d, this.store.meta) :
26919                     t.apply(d)
26920             );
26921         }
26922         
26923         
26924         
26925         el.update(html.join(""));
26926         this.nodes = el.dom.childNodes;
26927         this.updateIndexes(0);
26928     },
26929     
26930
26931     /**
26932      * Function to override to reformat the data that is sent to
26933      * the template for each node.
26934      * DEPRICATED - use the preparedata event handler.
26935      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
26936      * a JSON object for an UpdateManager bound view).
26937      */
26938     prepareData : function(data, index, record)
26939     {
26940         this.fireEvent("preparedata", this, data, index, record);
26941         return data;
26942     },
26943
26944     onUpdate : function(ds, record){
26945         // Roo.log('on update');   
26946         this.clearSelections();
26947         var index = this.store.indexOf(record);
26948         var n = this.nodes[index];
26949         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
26950         n.parentNode.removeChild(n);
26951         this.updateIndexes(index, index);
26952     },
26953
26954     
26955     
26956 // --------- FIXME     
26957     onAdd : function(ds, records, index)
26958     {
26959         //Roo.log(['on Add', ds, records, index] );        
26960         this.clearSelections();
26961         if(this.nodes.length == 0){
26962             this.refresh();
26963             return;
26964         }
26965         var n = this.nodes[index];
26966         for(var i = 0, len = records.length; i < len; i++){
26967             var d = this.prepareData(records[i].data, i, records[i]);
26968             if(n){
26969                 this.tpl.insertBefore(n, d);
26970             }else{
26971                 
26972                 this.tpl.append(this.el, d);
26973             }
26974         }
26975         this.updateIndexes(index);
26976     },
26977
26978     onRemove : function(ds, record, index){
26979        // Roo.log('onRemove');
26980         this.clearSelections();
26981         var el = this.dataName  ?
26982             this.el.child('.roo-tpl-' + this.dataName) :
26983             this.el; 
26984         
26985         el.dom.removeChild(this.nodes[index]);
26986         this.updateIndexes(index);
26987     },
26988
26989     /**
26990      * Refresh an individual node.
26991      * @param {Number} index
26992      */
26993     refreshNode : function(index){
26994         this.onUpdate(this.store, this.store.getAt(index));
26995     },
26996
26997     updateIndexes : function(startIndex, endIndex){
26998         var ns = this.nodes;
26999         startIndex = startIndex || 0;
27000         endIndex = endIndex || ns.length - 1;
27001         for(var i = startIndex; i <= endIndex; i++){
27002             ns[i].nodeIndex = i;
27003         }
27004     },
27005
27006     /**
27007      * Changes the data store this view uses and refresh the view.
27008      * @param {Store} store
27009      */
27010     setStore : function(store, initial){
27011         if(!initial && this.store){
27012             this.store.un("datachanged", this.refresh);
27013             this.store.un("add", this.onAdd);
27014             this.store.un("remove", this.onRemove);
27015             this.store.un("update", this.onUpdate);
27016             this.store.un("clear", this.refresh);
27017             this.store.un("beforeload", this.onBeforeLoad);
27018             this.store.un("load", this.onLoad);
27019             this.store.un("loadexception", this.onLoad);
27020         }
27021         if(store){
27022           
27023             store.on("datachanged", this.refresh, this);
27024             store.on("add", this.onAdd, this);
27025             store.on("remove", this.onRemove, this);
27026             store.on("update", this.onUpdate, this);
27027             store.on("clear", this.refresh, this);
27028             store.on("beforeload", this.onBeforeLoad, this);
27029             store.on("load", this.onLoad, this);
27030             store.on("loadexception", this.onLoad, this);
27031         }
27032         
27033         if(store){
27034             this.refresh();
27035         }
27036     },
27037     /**
27038      * onbeforeLoad - masks the loading area.
27039      *
27040      */
27041     onBeforeLoad : function(store,opts)
27042     {
27043          //Roo.log('onBeforeLoad');   
27044         if (!opts.add) {
27045             this.el.update("");
27046         }
27047         this.el.mask(this.mask ? this.mask : "Loading" ); 
27048     },
27049     onLoad : function ()
27050     {
27051         this.el.unmask();
27052     },
27053     
27054
27055     /**
27056      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27057      * @param {HTMLElement} node
27058      * @return {HTMLElement} The template node
27059      */
27060     findItemFromChild : function(node){
27061         var el = this.dataName  ?
27062             this.el.child('.roo-tpl-' + this.dataName,true) :
27063             this.el.dom; 
27064         
27065         if(!node || node.parentNode == el){
27066                     return node;
27067             }
27068             var p = node.parentNode;
27069             while(p && p != el){
27070             if(p.parentNode == el){
27071                 return p;
27072             }
27073             p = p.parentNode;
27074         }
27075             return null;
27076     },
27077
27078     /** @ignore */
27079     onClick : function(e){
27080         var item = this.findItemFromChild(e.getTarget());
27081         if(item){
27082             var index = this.indexOf(item);
27083             if(this.onItemClick(item, index, e) !== false){
27084                 this.fireEvent("click", this, index, item, e);
27085             }
27086         }else{
27087             this.clearSelections();
27088         }
27089     },
27090
27091     /** @ignore */
27092     onContextMenu : function(e){
27093         var item = this.findItemFromChild(e.getTarget());
27094         if(item){
27095             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27096         }
27097     },
27098
27099     /** @ignore */
27100     onDblClick : function(e){
27101         var item = this.findItemFromChild(e.getTarget());
27102         if(item){
27103             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27104         }
27105     },
27106
27107     onItemClick : function(item, index, e)
27108     {
27109         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27110             return false;
27111         }
27112         if (this.toggleSelect) {
27113             var m = this.isSelected(item) ? 'unselect' : 'select';
27114             //Roo.log(m);
27115             var _t = this;
27116             _t[m](item, true, false);
27117             return true;
27118         }
27119         if(this.multiSelect || this.singleSelect){
27120             if(this.multiSelect && e.shiftKey && this.lastSelection){
27121                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27122             }else{
27123                 this.select(item, this.multiSelect && e.ctrlKey);
27124                 this.lastSelection = item;
27125             }
27126             
27127             if(!this.tickable){
27128                 e.preventDefault();
27129             }
27130             
27131         }
27132         return true;
27133     },
27134
27135     /**
27136      * Get the number of selected nodes.
27137      * @return {Number}
27138      */
27139     getSelectionCount : function(){
27140         return this.selections.length;
27141     },
27142
27143     /**
27144      * Get the currently selected nodes.
27145      * @return {Array} An array of HTMLElements
27146      */
27147     getSelectedNodes : function(){
27148         return this.selections;
27149     },
27150
27151     /**
27152      * Get the indexes of the selected nodes.
27153      * @return {Array}
27154      */
27155     getSelectedIndexes : function(){
27156         var indexes = [], s = this.selections;
27157         for(var i = 0, len = s.length; i < len; i++){
27158             indexes.push(s[i].nodeIndex);
27159         }
27160         return indexes;
27161     },
27162
27163     /**
27164      * Clear all selections
27165      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27166      */
27167     clearSelections : function(suppressEvent){
27168         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27169             this.cmp.elements = this.selections;
27170             this.cmp.removeClass(this.selectedClass);
27171             this.selections = [];
27172             if(!suppressEvent){
27173                 this.fireEvent("selectionchange", this, this.selections);
27174             }
27175         }
27176     },
27177
27178     /**
27179      * Returns true if the passed node is selected
27180      * @param {HTMLElement/Number} node The node or node index
27181      * @return {Boolean}
27182      */
27183     isSelected : function(node){
27184         var s = this.selections;
27185         if(s.length < 1){
27186             return false;
27187         }
27188         node = this.getNode(node);
27189         return s.indexOf(node) !== -1;
27190     },
27191
27192     /**
27193      * Selects nodes.
27194      * @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
27195      * @param {Boolean} keepExisting (optional) true to keep existing selections
27196      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27197      */
27198     select : function(nodeInfo, keepExisting, suppressEvent){
27199         if(nodeInfo instanceof Array){
27200             if(!keepExisting){
27201                 this.clearSelections(true);
27202             }
27203             for(var i = 0, len = nodeInfo.length; i < len; i++){
27204                 this.select(nodeInfo[i], true, true);
27205             }
27206             return;
27207         } 
27208         var node = this.getNode(nodeInfo);
27209         if(!node || this.isSelected(node)){
27210             return; // already selected.
27211         }
27212         if(!keepExisting){
27213             this.clearSelections(true);
27214         }
27215         
27216         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27217             Roo.fly(node).addClass(this.selectedClass);
27218             this.selections.push(node);
27219             if(!suppressEvent){
27220                 this.fireEvent("selectionchange", this, this.selections);
27221             }
27222         }
27223         
27224         
27225     },
27226       /**
27227      * Unselects nodes.
27228      * @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
27229      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27230      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27231      */
27232     unselect : function(nodeInfo, keepExisting, suppressEvent)
27233     {
27234         if(nodeInfo instanceof Array){
27235             Roo.each(this.selections, function(s) {
27236                 this.unselect(s, nodeInfo);
27237             }, this);
27238             return;
27239         }
27240         var node = this.getNode(nodeInfo);
27241         if(!node || !this.isSelected(node)){
27242             //Roo.log("not selected");
27243             return; // not selected.
27244         }
27245         // fireevent???
27246         var ns = [];
27247         Roo.each(this.selections, function(s) {
27248             if (s == node ) {
27249                 Roo.fly(node).removeClass(this.selectedClass);
27250
27251                 return;
27252             }
27253             ns.push(s);
27254         },this);
27255         
27256         this.selections= ns;
27257         this.fireEvent("selectionchange", this, this.selections);
27258     },
27259
27260     /**
27261      * Gets a template node.
27262      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27263      * @return {HTMLElement} The node or null if it wasn't found
27264      */
27265     getNode : function(nodeInfo){
27266         if(typeof nodeInfo == "string"){
27267             return document.getElementById(nodeInfo);
27268         }else if(typeof nodeInfo == "number"){
27269             return this.nodes[nodeInfo];
27270         }
27271         return nodeInfo;
27272     },
27273
27274     /**
27275      * Gets a range template nodes.
27276      * @param {Number} startIndex
27277      * @param {Number} endIndex
27278      * @return {Array} An array of nodes
27279      */
27280     getNodes : function(start, end){
27281         var ns = this.nodes;
27282         start = start || 0;
27283         end = typeof end == "undefined" ? ns.length - 1 : end;
27284         var nodes = [];
27285         if(start <= end){
27286             for(var i = start; i <= end; i++){
27287                 nodes.push(ns[i]);
27288             }
27289         } else{
27290             for(var i = start; i >= end; i--){
27291                 nodes.push(ns[i]);
27292             }
27293         }
27294         return nodes;
27295     },
27296
27297     /**
27298      * Finds the index of the passed node
27299      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27300      * @return {Number} The index of the node or -1
27301      */
27302     indexOf : function(node){
27303         node = this.getNode(node);
27304         if(typeof node.nodeIndex == "number"){
27305             return node.nodeIndex;
27306         }
27307         var ns = this.nodes;
27308         for(var i = 0, len = ns.length; i < len; i++){
27309             if(ns[i] == node){
27310                 return i;
27311             }
27312         }
27313         return -1;
27314     }
27315 });
27316 /*
27317  * Based on:
27318  * Ext JS Library 1.1.1
27319  * Copyright(c) 2006-2007, Ext JS, LLC.
27320  *
27321  * Originally Released Under LGPL - original licence link has changed is not relivant.
27322  *
27323  * Fork - LGPL
27324  * <script type="text/javascript">
27325  */
27326
27327 /**
27328  * @class Roo.JsonView
27329  * @extends Roo.View
27330  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27331 <pre><code>
27332 var view = new Roo.JsonView({
27333     container: "my-element",
27334     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27335     multiSelect: true, 
27336     jsonRoot: "data" 
27337 });
27338
27339 // listen for node click?
27340 view.on("click", function(vw, index, node, e){
27341     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27342 });
27343
27344 // direct load of JSON data
27345 view.load("foobar.php");
27346
27347 // Example from my blog list
27348 var tpl = new Roo.Template(
27349     '&lt;div class="entry"&gt;' +
27350     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27351     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27352     "&lt;/div&gt;&lt;hr /&gt;"
27353 );
27354
27355 var moreView = new Roo.JsonView({
27356     container :  "entry-list", 
27357     template : tpl,
27358     jsonRoot: "posts"
27359 });
27360 moreView.on("beforerender", this.sortEntries, this);
27361 moreView.load({
27362     url: "/blog/get-posts.php",
27363     params: "allposts=true",
27364     text: "Loading Blog Entries..."
27365 });
27366 </code></pre>
27367
27368 * Note: old code is supported with arguments : (container, template, config)
27369
27370
27371  * @constructor
27372  * Create a new JsonView
27373  * 
27374  * @param {Object} config The config object
27375  * 
27376  */
27377 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27378     
27379     
27380     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27381
27382     var um = this.el.getUpdateManager();
27383     um.setRenderer(this);
27384     um.on("update", this.onLoad, this);
27385     um.on("failure", this.onLoadException, this);
27386
27387     /**
27388      * @event beforerender
27389      * Fires before rendering of the downloaded JSON data.
27390      * @param {Roo.JsonView} this
27391      * @param {Object} data The JSON data loaded
27392      */
27393     /**
27394      * @event load
27395      * Fires when data is loaded.
27396      * @param {Roo.JsonView} this
27397      * @param {Object} data The JSON data loaded
27398      * @param {Object} response The raw Connect response object
27399      */
27400     /**
27401      * @event loadexception
27402      * Fires when loading fails.
27403      * @param {Roo.JsonView} this
27404      * @param {Object} response The raw Connect response object
27405      */
27406     this.addEvents({
27407         'beforerender' : true,
27408         'load' : true,
27409         'loadexception' : true
27410     });
27411 };
27412 Roo.extend(Roo.JsonView, Roo.View, {
27413     /**
27414      * @type {String} The root property in the loaded JSON object that contains the data
27415      */
27416     jsonRoot : "",
27417
27418     /**
27419      * Refreshes the view.
27420      */
27421     refresh : function(){
27422         this.clearSelections();
27423         this.el.update("");
27424         var html = [];
27425         var o = this.jsonData;
27426         if(o && o.length > 0){
27427             for(var i = 0, len = o.length; i < len; i++){
27428                 var data = this.prepareData(o[i], i, o);
27429                 html[html.length] = this.tpl.apply(data);
27430             }
27431         }else{
27432             html.push(this.emptyText);
27433         }
27434         this.el.update(html.join(""));
27435         this.nodes = this.el.dom.childNodes;
27436         this.updateIndexes(0);
27437     },
27438
27439     /**
27440      * 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.
27441      * @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:
27442      <pre><code>
27443      view.load({
27444          url: "your-url.php",
27445          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27446          callback: yourFunction,
27447          scope: yourObject, //(optional scope)
27448          discardUrl: false,
27449          nocache: false,
27450          text: "Loading...",
27451          timeout: 30,
27452          scripts: false
27453      });
27454      </code></pre>
27455      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27456      * 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.
27457      * @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}
27458      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27459      * @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.
27460      */
27461     load : function(){
27462         var um = this.el.getUpdateManager();
27463         um.update.apply(um, arguments);
27464     },
27465
27466     // note - render is a standard framework call...
27467     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27468     render : function(el, response){
27469         
27470         this.clearSelections();
27471         this.el.update("");
27472         var o;
27473         try{
27474             if (response != '') {
27475                 o = Roo.util.JSON.decode(response.responseText);
27476                 if(this.jsonRoot){
27477                     
27478                     o = o[this.jsonRoot];
27479                 }
27480             }
27481         } catch(e){
27482         }
27483         /**
27484          * The current JSON data or null
27485          */
27486         this.jsonData = o;
27487         this.beforeRender();
27488         this.refresh();
27489     },
27490
27491 /**
27492  * Get the number of records in the current JSON dataset
27493  * @return {Number}
27494  */
27495     getCount : function(){
27496         return this.jsonData ? this.jsonData.length : 0;
27497     },
27498
27499 /**
27500  * Returns the JSON object for the specified node(s)
27501  * @param {HTMLElement/Array} node The node or an array of nodes
27502  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27503  * you get the JSON object for the node
27504  */
27505     getNodeData : function(node){
27506         if(node instanceof Array){
27507             var data = [];
27508             for(var i = 0, len = node.length; i < len; i++){
27509                 data.push(this.getNodeData(node[i]));
27510             }
27511             return data;
27512         }
27513         return this.jsonData[this.indexOf(node)] || null;
27514     },
27515
27516     beforeRender : function(){
27517         this.snapshot = this.jsonData;
27518         if(this.sortInfo){
27519             this.sort.apply(this, this.sortInfo);
27520         }
27521         this.fireEvent("beforerender", this, this.jsonData);
27522     },
27523
27524     onLoad : function(el, o){
27525         this.fireEvent("load", this, this.jsonData, o);
27526     },
27527
27528     onLoadException : function(el, o){
27529         this.fireEvent("loadexception", this, o);
27530     },
27531
27532 /**
27533  * Filter the data by a specific property.
27534  * @param {String} property A property on your JSON objects
27535  * @param {String/RegExp} value Either string that the property values
27536  * should start with, or a RegExp to test against the property
27537  */
27538     filter : function(property, value){
27539         if(this.jsonData){
27540             var data = [];
27541             var ss = this.snapshot;
27542             if(typeof value == "string"){
27543                 var vlen = value.length;
27544                 if(vlen == 0){
27545                     this.clearFilter();
27546                     return;
27547                 }
27548                 value = value.toLowerCase();
27549                 for(var i = 0, len = ss.length; i < len; i++){
27550                     var o = ss[i];
27551                     if(o[property].substr(0, vlen).toLowerCase() == value){
27552                         data.push(o);
27553                     }
27554                 }
27555             } else if(value.exec){ // regex?
27556                 for(var i = 0, len = ss.length; i < len; i++){
27557                     var o = ss[i];
27558                     if(value.test(o[property])){
27559                         data.push(o);
27560                     }
27561                 }
27562             } else{
27563                 return;
27564             }
27565             this.jsonData = data;
27566             this.refresh();
27567         }
27568     },
27569
27570 /**
27571  * Filter by a function. The passed function will be called with each
27572  * object in the current dataset. If the function returns true the value is kept,
27573  * otherwise it is filtered.
27574  * @param {Function} fn
27575  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27576  */
27577     filterBy : function(fn, scope){
27578         if(this.jsonData){
27579             var data = [];
27580             var ss = this.snapshot;
27581             for(var i = 0, len = ss.length; i < len; i++){
27582                 var o = ss[i];
27583                 if(fn.call(scope || this, o)){
27584                     data.push(o);
27585                 }
27586             }
27587             this.jsonData = data;
27588             this.refresh();
27589         }
27590     },
27591
27592 /**
27593  * Clears the current filter.
27594  */
27595     clearFilter : function(){
27596         if(this.snapshot && this.jsonData != this.snapshot){
27597             this.jsonData = this.snapshot;
27598             this.refresh();
27599         }
27600     },
27601
27602
27603 /**
27604  * Sorts the data for this view and refreshes it.
27605  * @param {String} property A property on your JSON objects to sort on
27606  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27607  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27608  */
27609     sort : function(property, dir, sortType){
27610         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27611         if(this.jsonData){
27612             var p = property;
27613             var dsc = dir && dir.toLowerCase() == "desc";
27614             var f = function(o1, o2){
27615                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27616                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27617                 ;
27618                 if(v1 < v2){
27619                     return dsc ? +1 : -1;
27620                 } else if(v1 > v2){
27621                     return dsc ? -1 : +1;
27622                 } else{
27623                     return 0;
27624                 }
27625             };
27626             this.jsonData.sort(f);
27627             this.refresh();
27628             if(this.jsonData != this.snapshot){
27629                 this.snapshot.sort(f);
27630             }
27631         }
27632     }
27633 });/*
27634  * Based on:
27635  * Ext JS Library 1.1.1
27636  * Copyright(c) 2006-2007, Ext JS, LLC.
27637  *
27638  * Originally Released Under LGPL - original licence link has changed is not relivant.
27639  *
27640  * Fork - LGPL
27641  * <script type="text/javascript">
27642  */
27643  
27644
27645 /**
27646  * @class Roo.ColorPalette
27647  * @extends Roo.Component
27648  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27649  * Here's an example of typical usage:
27650  * <pre><code>
27651 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27652 cp.render('my-div');
27653
27654 cp.on('select', function(palette, selColor){
27655     // do something with selColor
27656 });
27657 </code></pre>
27658  * @constructor
27659  * Create a new ColorPalette
27660  * @param {Object} config The config object
27661  */
27662 Roo.ColorPalette = function(config){
27663     Roo.ColorPalette.superclass.constructor.call(this, config);
27664     this.addEvents({
27665         /**
27666              * @event select
27667              * Fires when a color is selected
27668              * @param {ColorPalette} this
27669              * @param {String} color The 6-digit color hex code (without the # symbol)
27670              */
27671         select: true
27672     });
27673
27674     if(this.handler){
27675         this.on("select", this.handler, this.scope, true);
27676     }
27677 };
27678 Roo.extend(Roo.ColorPalette, Roo.Component, {
27679     /**
27680      * @cfg {String} itemCls
27681      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27682      */
27683     itemCls : "x-color-palette",
27684     /**
27685      * @cfg {String} value
27686      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27687      * the hex codes are case-sensitive.
27688      */
27689     value : null,
27690     clickEvent:'click',
27691     // private
27692     ctype: "Roo.ColorPalette",
27693
27694     /**
27695      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27696      */
27697     allowReselect : false,
27698
27699     /**
27700      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27701      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27702      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27703      * of colors with the width setting until the box is symmetrical.</p>
27704      * <p>You can override individual colors if needed:</p>
27705      * <pre><code>
27706 var cp = new Roo.ColorPalette();
27707 cp.colors[0] = "FF0000";  // change the first box to red
27708 </code></pre>
27709
27710 Or you can provide a custom array of your own for complete control:
27711 <pre><code>
27712 var cp = new Roo.ColorPalette();
27713 cp.colors = ["000000", "993300", "333300"];
27714 </code></pre>
27715      * @type Array
27716      */
27717     colors : [
27718         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27719         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27720         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27721         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27722         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27723     ],
27724
27725     // private
27726     onRender : function(container, position){
27727         var t = new Roo.MasterTemplate(
27728             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27729         );
27730         var c = this.colors;
27731         for(var i = 0, len = c.length; i < len; i++){
27732             t.add([c[i]]);
27733         }
27734         var el = document.createElement("div");
27735         el.className = this.itemCls;
27736         t.overwrite(el);
27737         container.dom.insertBefore(el, position);
27738         this.el = Roo.get(el);
27739         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27740         if(this.clickEvent != 'click'){
27741             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27742         }
27743     },
27744
27745     // private
27746     afterRender : function(){
27747         Roo.ColorPalette.superclass.afterRender.call(this);
27748         if(this.value){
27749             var s = this.value;
27750             this.value = null;
27751             this.select(s);
27752         }
27753     },
27754
27755     // private
27756     handleClick : function(e, t){
27757         e.preventDefault();
27758         if(!this.disabled){
27759             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27760             this.select(c.toUpperCase());
27761         }
27762     },
27763
27764     /**
27765      * Selects the specified color in the palette (fires the select event)
27766      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27767      */
27768     select : function(color){
27769         color = color.replace("#", "");
27770         if(color != this.value || this.allowReselect){
27771             var el = this.el;
27772             if(this.value){
27773                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27774             }
27775             el.child("a.color-"+color).addClass("x-color-palette-sel");
27776             this.value = color;
27777             this.fireEvent("select", this, color);
27778         }
27779     }
27780 });/*
27781  * Based on:
27782  * Ext JS Library 1.1.1
27783  * Copyright(c) 2006-2007, Ext JS, LLC.
27784  *
27785  * Originally Released Under LGPL - original licence link has changed is not relivant.
27786  *
27787  * Fork - LGPL
27788  * <script type="text/javascript">
27789  */
27790  
27791 /**
27792  * @class Roo.DatePicker
27793  * @extends Roo.Component
27794  * Simple date picker class.
27795  * @constructor
27796  * Create a new DatePicker
27797  * @param {Object} config The config object
27798  */
27799 Roo.DatePicker = function(config){
27800     Roo.DatePicker.superclass.constructor.call(this, config);
27801
27802     this.value = config && config.value ?
27803                  config.value.clearTime() : new Date().clearTime();
27804
27805     this.addEvents({
27806         /**
27807              * @event select
27808              * Fires when a date is selected
27809              * @param {DatePicker} this
27810              * @param {Date} date The selected date
27811              */
27812         'select': true,
27813         /**
27814              * @event monthchange
27815              * Fires when the displayed month changes 
27816              * @param {DatePicker} this
27817              * @param {Date} date The selected month
27818              */
27819         'monthchange': true
27820     });
27821
27822     if(this.handler){
27823         this.on("select", this.handler,  this.scope || this);
27824     }
27825     // build the disabledDatesRE
27826     if(!this.disabledDatesRE && this.disabledDates){
27827         var dd = this.disabledDates;
27828         var re = "(?:";
27829         for(var i = 0; i < dd.length; i++){
27830             re += dd[i];
27831             if(i != dd.length-1) {
27832                 re += "|";
27833             }
27834         }
27835         this.disabledDatesRE = new RegExp(re + ")");
27836     }
27837 };
27838
27839 Roo.extend(Roo.DatePicker, Roo.Component, {
27840     /**
27841      * @cfg {String} todayText
27842      * The text to display on the button that selects the current date (defaults to "Today")
27843      */
27844     todayText : "Today",
27845     /**
27846      * @cfg {String} okText
27847      * The text to display on the ok button
27848      */
27849     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27850     /**
27851      * @cfg {String} cancelText
27852      * The text to display on the cancel button
27853      */
27854     cancelText : "Cancel",
27855     /**
27856      * @cfg {String} todayTip
27857      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27858      */
27859     todayTip : "{0} (Spacebar)",
27860     /**
27861      * @cfg {Date} minDate
27862      * Minimum allowable date (JavaScript date object, defaults to null)
27863      */
27864     minDate : null,
27865     /**
27866      * @cfg {Date} maxDate
27867      * Maximum allowable date (JavaScript date object, defaults to null)
27868      */
27869     maxDate : null,
27870     /**
27871      * @cfg {String} minText
27872      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27873      */
27874     minText : "This date is before the minimum date",
27875     /**
27876      * @cfg {String} maxText
27877      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27878      */
27879     maxText : "This date is after the maximum date",
27880     /**
27881      * @cfg {String} format
27882      * The default date format string which can be overriden for localization support.  The format must be
27883      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27884      */
27885     format : "m/d/y",
27886     /**
27887      * @cfg {Array} disabledDays
27888      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27889      */
27890     disabledDays : null,
27891     /**
27892      * @cfg {String} disabledDaysText
27893      * The tooltip to display when the date falls on a disabled day (defaults to "")
27894      */
27895     disabledDaysText : "",
27896     /**
27897      * @cfg {RegExp} disabledDatesRE
27898      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27899      */
27900     disabledDatesRE : null,
27901     /**
27902      * @cfg {String} disabledDatesText
27903      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27904      */
27905     disabledDatesText : "",
27906     /**
27907      * @cfg {Boolean} constrainToViewport
27908      * True to constrain the date picker to the viewport (defaults to true)
27909      */
27910     constrainToViewport : true,
27911     /**
27912      * @cfg {Array} monthNames
27913      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27914      */
27915     monthNames : Date.monthNames,
27916     /**
27917      * @cfg {Array} dayNames
27918      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
27919      */
27920     dayNames : Date.dayNames,
27921     /**
27922      * @cfg {String} nextText
27923      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
27924      */
27925     nextText: 'Next Month (Control+Right)',
27926     /**
27927      * @cfg {String} prevText
27928      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
27929      */
27930     prevText: 'Previous Month (Control+Left)',
27931     /**
27932      * @cfg {String} monthYearText
27933      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
27934      */
27935     monthYearText: 'Choose a month (Control+Up/Down to move years)',
27936     /**
27937      * @cfg {Number} startDay
27938      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
27939      */
27940     startDay : 0,
27941     /**
27942      * @cfg {Bool} showClear
27943      * Show a clear button (usefull for date form elements that can be blank.)
27944      */
27945     
27946     showClear: false,
27947     
27948     /**
27949      * Sets the value of the date field
27950      * @param {Date} value The date to set
27951      */
27952     setValue : function(value){
27953         var old = this.value;
27954         
27955         if (typeof(value) == 'string') {
27956          
27957             value = Date.parseDate(value, this.format);
27958         }
27959         if (!value) {
27960             value = new Date();
27961         }
27962         
27963         this.value = value.clearTime(true);
27964         if(this.el){
27965             this.update(this.value);
27966         }
27967     },
27968
27969     /**
27970      * Gets the current selected value of the date field
27971      * @return {Date} The selected date
27972      */
27973     getValue : function(){
27974         return this.value;
27975     },
27976
27977     // private
27978     focus : function(){
27979         if(this.el){
27980             this.update(this.activeDate);
27981         }
27982     },
27983
27984     // privateval
27985     onRender : function(container, position){
27986         
27987         var m = [
27988              '<table cellspacing="0">',
27989                 '<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>',
27990                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
27991         var dn = this.dayNames;
27992         for(var i = 0; i < 7; i++){
27993             var d = this.startDay+i;
27994             if(d > 6){
27995                 d = d-7;
27996             }
27997             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
27998         }
27999         m[m.length] = "</tr></thead><tbody><tr>";
28000         for(var i = 0; i < 42; i++) {
28001             if(i % 7 == 0 && i != 0){
28002                 m[m.length] = "</tr><tr>";
28003             }
28004             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28005         }
28006         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28007             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28008
28009         var el = document.createElement("div");
28010         el.className = "x-date-picker";
28011         el.innerHTML = m.join("");
28012
28013         container.dom.insertBefore(el, position);
28014
28015         this.el = Roo.get(el);
28016         this.eventEl = Roo.get(el.firstChild);
28017
28018         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28019             handler: this.showPrevMonth,
28020             scope: this,
28021             preventDefault:true,
28022             stopDefault:true
28023         });
28024
28025         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28026             handler: this.showNextMonth,
28027             scope: this,
28028             preventDefault:true,
28029             stopDefault:true
28030         });
28031
28032         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28033
28034         this.monthPicker = this.el.down('div.x-date-mp');
28035         this.monthPicker.enableDisplayMode('block');
28036         
28037         var kn = new Roo.KeyNav(this.eventEl, {
28038             "left" : function(e){
28039                 e.ctrlKey ?
28040                     this.showPrevMonth() :
28041                     this.update(this.activeDate.add("d", -1));
28042             },
28043
28044             "right" : function(e){
28045                 e.ctrlKey ?
28046                     this.showNextMonth() :
28047                     this.update(this.activeDate.add("d", 1));
28048             },
28049
28050             "up" : function(e){
28051                 e.ctrlKey ?
28052                     this.showNextYear() :
28053                     this.update(this.activeDate.add("d", -7));
28054             },
28055
28056             "down" : function(e){
28057                 e.ctrlKey ?
28058                     this.showPrevYear() :
28059                     this.update(this.activeDate.add("d", 7));
28060             },
28061
28062             "pageUp" : function(e){
28063                 this.showNextMonth();
28064             },
28065
28066             "pageDown" : function(e){
28067                 this.showPrevMonth();
28068             },
28069
28070             "enter" : function(e){
28071                 e.stopPropagation();
28072                 return true;
28073             },
28074
28075             scope : this
28076         });
28077
28078         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28079
28080         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28081
28082         this.el.unselectable();
28083         
28084         this.cells = this.el.select("table.x-date-inner tbody td");
28085         this.textNodes = this.el.query("table.x-date-inner tbody span");
28086
28087         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28088             text: "&#160;",
28089             tooltip: this.monthYearText
28090         });
28091
28092         this.mbtn.on('click', this.showMonthPicker, this);
28093         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28094
28095
28096         var today = (new Date()).dateFormat(this.format);
28097         
28098         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28099         if (this.showClear) {
28100             baseTb.add( new Roo.Toolbar.Fill());
28101         }
28102         baseTb.add({
28103             text: String.format(this.todayText, today),
28104             tooltip: String.format(this.todayTip, today),
28105             handler: this.selectToday,
28106             scope: this
28107         });
28108         
28109         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28110             
28111         //});
28112         if (this.showClear) {
28113             
28114             baseTb.add( new Roo.Toolbar.Fill());
28115             baseTb.add({
28116                 text: '&#160;',
28117                 cls: 'x-btn-icon x-btn-clear',
28118                 handler: function() {
28119                     //this.value = '';
28120                     this.fireEvent("select", this, '');
28121                 },
28122                 scope: this
28123             });
28124         }
28125         
28126         
28127         if(Roo.isIE){
28128             this.el.repaint();
28129         }
28130         this.update(this.value);
28131     },
28132
28133     createMonthPicker : function(){
28134         if(!this.monthPicker.dom.firstChild){
28135             var buf = ['<table border="0" cellspacing="0">'];
28136             for(var i = 0; i < 6; i++){
28137                 buf.push(
28138                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28139                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28140                     i == 0 ?
28141                     '<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>' :
28142                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28143                 );
28144             }
28145             buf.push(
28146                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28147                     this.okText,
28148                     '</button><button type="button" class="x-date-mp-cancel">',
28149                     this.cancelText,
28150                     '</button></td></tr>',
28151                 '</table>'
28152             );
28153             this.monthPicker.update(buf.join(''));
28154             this.monthPicker.on('click', this.onMonthClick, this);
28155             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28156
28157             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28158             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28159
28160             this.mpMonths.each(function(m, a, i){
28161                 i += 1;
28162                 if((i%2) == 0){
28163                     m.dom.xmonth = 5 + Math.round(i * .5);
28164                 }else{
28165                     m.dom.xmonth = Math.round((i-1) * .5);
28166                 }
28167             });
28168         }
28169     },
28170
28171     showMonthPicker : function(){
28172         this.createMonthPicker();
28173         var size = this.el.getSize();
28174         this.monthPicker.setSize(size);
28175         this.monthPicker.child('table').setSize(size);
28176
28177         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28178         this.updateMPMonth(this.mpSelMonth);
28179         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28180         this.updateMPYear(this.mpSelYear);
28181
28182         this.monthPicker.slideIn('t', {duration:.2});
28183     },
28184
28185     updateMPYear : function(y){
28186         this.mpyear = y;
28187         var ys = this.mpYears.elements;
28188         for(var i = 1; i <= 10; i++){
28189             var td = ys[i-1], y2;
28190             if((i%2) == 0){
28191                 y2 = y + Math.round(i * .5);
28192                 td.firstChild.innerHTML = y2;
28193                 td.xyear = y2;
28194             }else{
28195                 y2 = y - (5-Math.round(i * .5));
28196                 td.firstChild.innerHTML = y2;
28197                 td.xyear = y2;
28198             }
28199             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28200         }
28201     },
28202
28203     updateMPMonth : function(sm){
28204         this.mpMonths.each(function(m, a, i){
28205             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28206         });
28207     },
28208
28209     selectMPMonth: function(m){
28210         
28211     },
28212
28213     onMonthClick : function(e, t){
28214         e.stopEvent();
28215         var el = new Roo.Element(t), pn;
28216         if(el.is('button.x-date-mp-cancel')){
28217             this.hideMonthPicker();
28218         }
28219         else if(el.is('button.x-date-mp-ok')){
28220             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28221             this.hideMonthPicker();
28222         }
28223         else if(pn = el.up('td.x-date-mp-month', 2)){
28224             this.mpMonths.removeClass('x-date-mp-sel');
28225             pn.addClass('x-date-mp-sel');
28226             this.mpSelMonth = pn.dom.xmonth;
28227         }
28228         else if(pn = el.up('td.x-date-mp-year', 2)){
28229             this.mpYears.removeClass('x-date-mp-sel');
28230             pn.addClass('x-date-mp-sel');
28231             this.mpSelYear = pn.dom.xyear;
28232         }
28233         else if(el.is('a.x-date-mp-prev')){
28234             this.updateMPYear(this.mpyear-10);
28235         }
28236         else if(el.is('a.x-date-mp-next')){
28237             this.updateMPYear(this.mpyear+10);
28238         }
28239     },
28240
28241     onMonthDblClick : function(e, t){
28242         e.stopEvent();
28243         var el = new Roo.Element(t), pn;
28244         if(pn = el.up('td.x-date-mp-month', 2)){
28245             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28246             this.hideMonthPicker();
28247         }
28248         else if(pn = el.up('td.x-date-mp-year', 2)){
28249             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28250             this.hideMonthPicker();
28251         }
28252     },
28253
28254     hideMonthPicker : function(disableAnim){
28255         if(this.monthPicker){
28256             if(disableAnim === true){
28257                 this.monthPicker.hide();
28258             }else{
28259                 this.monthPicker.slideOut('t', {duration:.2});
28260             }
28261         }
28262     },
28263
28264     // private
28265     showPrevMonth : function(e){
28266         this.update(this.activeDate.add("mo", -1));
28267     },
28268
28269     // private
28270     showNextMonth : function(e){
28271         this.update(this.activeDate.add("mo", 1));
28272     },
28273
28274     // private
28275     showPrevYear : function(){
28276         this.update(this.activeDate.add("y", -1));
28277     },
28278
28279     // private
28280     showNextYear : function(){
28281         this.update(this.activeDate.add("y", 1));
28282     },
28283
28284     // private
28285     handleMouseWheel : function(e){
28286         var delta = e.getWheelDelta();
28287         if(delta > 0){
28288             this.showPrevMonth();
28289             e.stopEvent();
28290         } else if(delta < 0){
28291             this.showNextMonth();
28292             e.stopEvent();
28293         }
28294     },
28295
28296     // private
28297     handleDateClick : function(e, t){
28298         e.stopEvent();
28299         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28300             this.setValue(new Date(t.dateValue));
28301             this.fireEvent("select", this, this.value);
28302         }
28303     },
28304
28305     // private
28306     selectToday : function(){
28307         this.setValue(new Date().clearTime());
28308         this.fireEvent("select", this, this.value);
28309     },
28310
28311     // private
28312     update : function(date)
28313     {
28314         var vd = this.activeDate;
28315         this.activeDate = date;
28316         if(vd && this.el){
28317             var t = date.getTime();
28318             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28319                 this.cells.removeClass("x-date-selected");
28320                 this.cells.each(function(c){
28321                    if(c.dom.firstChild.dateValue == t){
28322                        c.addClass("x-date-selected");
28323                        setTimeout(function(){
28324                             try{c.dom.firstChild.focus();}catch(e){}
28325                        }, 50);
28326                        return false;
28327                    }
28328                 });
28329                 return;
28330             }
28331         }
28332         
28333         var days = date.getDaysInMonth();
28334         var firstOfMonth = date.getFirstDateOfMonth();
28335         var startingPos = firstOfMonth.getDay()-this.startDay;
28336
28337         if(startingPos <= this.startDay){
28338             startingPos += 7;
28339         }
28340
28341         var pm = date.add("mo", -1);
28342         var prevStart = pm.getDaysInMonth()-startingPos;
28343
28344         var cells = this.cells.elements;
28345         var textEls = this.textNodes;
28346         days += startingPos;
28347
28348         // convert everything to numbers so it's fast
28349         var day = 86400000;
28350         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28351         var today = new Date().clearTime().getTime();
28352         var sel = date.clearTime().getTime();
28353         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28354         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28355         var ddMatch = this.disabledDatesRE;
28356         var ddText = this.disabledDatesText;
28357         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28358         var ddaysText = this.disabledDaysText;
28359         var format = this.format;
28360
28361         var setCellClass = function(cal, cell){
28362             cell.title = "";
28363             var t = d.getTime();
28364             cell.firstChild.dateValue = t;
28365             if(t == today){
28366                 cell.className += " x-date-today";
28367                 cell.title = cal.todayText;
28368             }
28369             if(t == sel){
28370                 cell.className += " x-date-selected";
28371                 setTimeout(function(){
28372                     try{cell.firstChild.focus();}catch(e){}
28373                 }, 50);
28374             }
28375             // disabling
28376             if(t < min) {
28377                 cell.className = " x-date-disabled";
28378                 cell.title = cal.minText;
28379                 return;
28380             }
28381             if(t > max) {
28382                 cell.className = " x-date-disabled";
28383                 cell.title = cal.maxText;
28384                 return;
28385             }
28386             if(ddays){
28387                 if(ddays.indexOf(d.getDay()) != -1){
28388                     cell.title = ddaysText;
28389                     cell.className = " x-date-disabled";
28390                 }
28391             }
28392             if(ddMatch && format){
28393                 var fvalue = d.dateFormat(format);
28394                 if(ddMatch.test(fvalue)){
28395                     cell.title = ddText.replace("%0", fvalue);
28396                     cell.className = " x-date-disabled";
28397                 }
28398             }
28399         };
28400
28401         var i = 0;
28402         for(; i < startingPos; i++) {
28403             textEls[i].innerHTML = (++prevStart);
28404             d.setDate(d.getDate()+1);
28405             cells[i].className = "x-date-prevday";
28406             setCellClass(this, cells[i]);
28407         }
28408         for(; i < days; i++){
28409             intDay = i - startingPos + 1;
28410             textEls[i].innerHTML = (intDay);
28411             d.setDate(d.getDate()+1);
28412             cells[i].className = "x-date-active";
28413             setCellClass(this, cells[i]);
28414         }
28415         var extraDays = 0;
28416         for(; i < 42; i++) {
28417              textEls[i].innerHTML = (++extraDays);
28418              d.setDate(d.getDate()+1);
28419              cells[i].className = "x-date-nextday";
28420              setCellClass(this, cells[i]);
28421         }
28422
28423         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28424         this.fireEvent('monthchange', this, date);
28425         
28426         if(!this.internalRender){
28427             var main = this.el.dom.firstChild;
28428             var w = main.offsetWidth;
28429             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28430             Roo.fly(main).setWidth(w);
28431             this.internalRender = true;
28432             // opera does not respect the auto grow header center column
28433             // then, after it gets a width opera refuses to recalculate
28434             // without a second pass
28435             if(Roo.isOpera && !this.secondPass){
28436                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28437                 this.secondPass = true;
28438                 this.update.defer(10, this, [date]);
28439             }
28440         }
28441         
28442         
28443     }
28444 });        /*
28445  * Based on:
28446  * Ext JS Library 1.1.1
28447  * Copyright(c) 2006-2007, Ext JS, LLC.
28448  *
28449  * Originally Released Under LGPL - original licence link has changed is not relivant.
28450  *
28451  * Fork - LGPL
28452  * <script type="text/javascript">
28453  */
28454 /**
28455  * @class Roo.TabPanel
28456  * @extends Roo.util.Observable
28457  * A lightweight tab container.
28458  * <br><br>
28459  * Usage:
28460  * <pre><code>
28461 // basic tabs 1, built from existing content
28462 var tabs = new Roo.TabPanel("tabs1");
28463 tabs.addTab("script", "View Script");
28464 tabs.addTab("markup", "View Markup");
28465 tabs.activate("script");
28466
28467 // more advanced tabs, built from javascript
28468 var jtabs = new Roo.TabPanel("jtabs");
28469 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28470
28471 // set up the UpdateManager
28472 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28473 var updater = tab2.getUpdateManager();
28474 updater.setDefaultUrl("ajax1.htm");
28475 tab2.on('activate', updater.refresh, updater, true);
28476
28477 // Use setUrl for Ajax loading
28478 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28479 tab3.setUrl("ajax2.htm", null, true);
28480
28481 // Disabled tab
28482 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28483 tab4.disable();
28484
28485 jtabs.activate("jtabs-1");
28486  * </code></pre>
28487  * @constructor
28488  * Create a new TabPanel.
28489  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28490  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28491  */
28492 Roo.TabPanel = function(container, config){
28493     /**
28494     * The container element for this TabPanel.
28495     * @type Roo.Element
28496     */
28497     this.el = Roo.get(container, true);
28498     if(config){
28499         if(typeof config == "boolean"){
28500             this.tabPosition = config ? "bottom" : "top";
28501         }else{
28502             Roo.apply(this, config);
28503         }
28504     }
28505     if(this.tabPosition == "bottom"){
28506         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28507         this.el.addClass("x-tabs-bottom");
28508     }
28509     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28510     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28511     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28512     if(Roo.isIE){
28513         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28514     }
28515     if(this.tabPosition != "bottom"){
28516         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28517          * @type Roo.Element
28518          */
28519         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28520         this.el.addClass("x-tabs-top");
28521     }
28522     this.items = [];
28523
28524     this.bodyEl.setStyle("position", "relative");
28525
28526     this.active = null;
28527     this.activateDelegate = this.activate.createDelegate(this);
28528
28529     this.addEvents({
28530         /**
28531          * @event tabchange
28532          * Fires when the active tab changes
28533          * @param {Roo.TabPanel} this
28534          * @param {Roo.TabPanelItem} activePanel The new active tab
28535          */
28536         "tabchange": true,
28537         /**
28538          * @event beforetabchange
28539          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28540          * @param {Roo.TabPanel} this
28541          * @param {Object} e Set cancel to true on this object to cancel the tab change
28542          * @param {Roo.TabPanelItem} tab The tab being changed to
28543          */
28544         "beforetabchange" : true
28545     });
28546
28547     Roo.EventManager.onWindowResize(this.onResize, this);
28548     this.cpad = this.el.getPadding("lr");
28549     this.hiddenCount = 0;
28550
28551
28552     // toolbar on the tabbar support...
28553     if (this.toolbar) {
28554         var tcfg = this.toolbar;
28555         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28556         this.toolbar = new Roo.Toolbar(tcfg);
28557         if (Roo.isSafari) {
28558             var tbl = tcfg.container.child('table', true);
28559             tbl.setAttribute('width', '100%');
28560         }
28561         
28562     }
28563    
28564
28565
28566     Roo.TabPanel.superclass.constructor.call(this);
28567 };
28568
28569 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28570     /*
28571      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28572      */
28573     tabPosition : "top",
28574     /*
28575      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28576      */
28577     currentTabWidth : 0,
28578     /*
28579      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28580      */
28581     minTabWidth : 40,
28582     /*
28583      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28584      */
28585     maxTabWidth : 250,
28586     /*
28587      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28588      */
28589     preferredTabWidth : 175,
28590     /*
28591      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28592      */
28593     resizeTabs : false,
28594     /*
28595      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28596      */
28597     monitorResize : true,
28598     /*
28599      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28600      */
28601     toolbar : false,
28602
28603     /**
28604      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28605      * @param {String} id The id of the div to use <b>or create</b>
28606      * @param {String} text The text for the tab
28607      * @param {String} content (optional) Content to put in the TabPanelItem body
28608      * @param {Boolean} closable (optional) True to create a close icon on the tab
28609      * @return {Roo.TabPanelItem} The created TabPanelItem
28610      */
28611     addTab : function(id, text, content, closable){
28612         var item = new Roo.TabPanelItem(this, id, text, closable);
28613         this.addTabItem(item);
28614         if(content){
28615             item.setContent(content);
28616         }
28617         return item;
28618     },
28619
28620     /**
28621      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28622      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28623      * @return {Roo.TabPanelItem}
28624      */
28625     getTab : function(id){
28626         return this.items[id];
28627     },
28628
28629     /**
28630      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28631      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28632      */
28633     hideTab : function(id){
28634         var t = this.items[id];
28635         if(!t.isHidden()){
28636            t.setHidden(true);
28637            this.hiddenCount++;
28638            this.autoSizeTabs();
28639         }
28640     },
28641
28642     /**
28643      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28644      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28645      */
28646     unhideTab : function(id){
28647         var t = this.items[id];
28648         if(t.isHidden()){
28649            t.setHidden(false);
28650            this.hiddenCount--;
28651            this.autoSizeTabs();
28652         }
28653     },
28654
28655     /**
28656      * Adds an existing {@link Roo.TabPanelItem}.
28657      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28658      */
28659     addTabItem : function(item){
28660         this.items[item.id] = item;
28661         this.items.push(item);
28662         if(this.resizeTabs){
28663            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28664            this.autoSizeTabs();
28665         }else{
28666             item.autoSize();
28667         }
28668     },
28669
28670     /**
28671      * Removes a {@link Roo.TabPanelItem}.
28672      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28673      */
28674     removeTab : function(id){
28675         var items = this.items;
28676         var tab = items[id];
28677         if(!tab) { return; }
28678         var index = items.indexOf(tab);
28679         if(this.active == tab && items.length > 1){
28680             var newTab = this.getNextAvailable(index);
28681             if(newTab) {
28682                 newTab.activate();
28683             }
28684         }
28685         this.stripEl.dom.removeChild(tab.pnode.dom);
28686         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28687             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28688         }
28689         items.splice(index, 1);
28690         delete this.items[tab.id];
28691         tab.fireEvent("close", tab);
28692         tab.purgeListeners();
28693         this.autoSizeTabs();
28694     },
28695
28696     getNextAvailable : function(start){
28697         var items = this.items;
28698         var index = start;
28699         // look for a next tab that will slide over to
28700         // replace the one being removed
28701         while(index < items.length){
28702             var item = items[++index];
28703             if(item && !item.isHidden()){
28704                 return item;
28705             }
28706         }
28707         // if one isn't found select the previous tab (on the left)
28708         index = start;
28709         while(index >= 0){
28710             var item = items[--index];
28711             if(item && !item.isHidden()){
28712                 return item;
28713             }
28714         }
28715         return null;
28716     },
28717
28718     /**
28719      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28720      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28721      */
28722     disableTab : function(id){
28723         var tab = this.items[id];
28724         if(tab && this.active != tab){
28725             tab.disable();
28726         }
28727     },
28728
28729     /**
28730      * Enables a {@link Roo.TabPanelItem} that is disabled.
28731      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28732      */
28733     enableTab : function(id){
28734         var tab = this.items[id];
28735         tab.enable();
28736     },
28737
28738     /**
28739      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28740      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28741      * @return {Roo.TabPanelItem} The TabPanelItem.
28742      */
28743     activate : function(id){
28744         var tab = this.items[id];
28745         if(!tab){
28746             return null;
28747         }
28748         if(tab == this.active || tab.disabled){
28749             return tab;
28750         }
28751         var e = {};
28752         this.fireEvent("beforetabchange", this, e, tab);
28753         if(e.cancel !== true && !tab.disabled){
28754             if(this.active){
28755                 this.active.hide();
28756             }
28757             this.active = this.items[id];
28758             this.active.show();
28759             this.fireEvent("tabchange", this, this.active);
28760         }
28761         return tab;
28762     },
28763
28764     /**
28765      * Gets the active {@link Roo.TabPanelItem}.
28766      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28767      */
28768     getActiveTab : function(){
28769         return this.active;
28770     },
28771
28772     /**
28773      * Updates the tab body element to fit the height of the container element
28774      * for overflow scrolling
28775      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28776      */
28777     syncHeight : function(targetHeight){
28778         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28779         var bm = this.bodyEl.getMargins();
28780         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28781         this.bodyEl.setHeight(newHeight);
28782         return newHeight;
28783     },
28784
28785     onResize : function(){
28786         if(this.monitorResize){
28787             this.autoSizeTabs();
28788         }
28789     },
28790
28791     /**
28792      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28793      */
28794     beginUpdate : function(){
28795         this.updating = true;
28796     },
28797
28798     /**
28799      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28800      */
28801     endUpdate : function(){
28802         this.updating = false;
28803         this.autoSizeTabs();
28804     },
28805
28806     /**
28807      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28808      */
28809     autoSizeTabs : function(){
28810         var count = this.items.length;
28811         var vcount = count - this.hiddenCount;
28812         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28813             return;
28814         }
28815         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28816         var availWidth = Math.floor(w / vcount);
28817         var b = this.stripBody;
28818         if(b.getWidth() > w){
28819             var tabs = this.items;
28820             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28821             if(availWidth < this.minTabWidth){
28822                 /*if(!this.sleft){    // incomplete scrolling code
28823                     this.createScrollButtons();
28824                 }
28825                 this.showScroll();
28826                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28827             }
28828         }else{
28829             if(this.currentTabWidth < this.preferredTabWidth){
28830                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28831             }
28832         }
28833     },
28834
28835     /**
28836      * Returns the number of tabs in this TabPanel.
28837      * @return {Number}
28838      */
28839      getCount : function(){
28840          return this.items.length;
28841      },
28842
28843     /**
28844      * Resizes all the tabs to the passed width
28845      * @param {Number} The new width
28846      */
28847     setTabWidth : function(width){
28848         this.currentTabWidth = width;
28849         for(var i = 0, len = this.items.length; i < len; i++) {
28850                 if(!this.items[i].isHidden()) {
28851                 this.items[i].setWidth(width);
28852             }
28853         }
28854     },
28855
28856     /**
28857      * Destroys this TabPanel
28858      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28859      */
28860     destroy : function(removeEl){
28861         Roo.EventManager.removeResizeListener(this.onResize, this);
28862         for(var i = 0, len = this.items.length; i < len; i++){
28863             this.items[i].purgeListeners();
28864         }
28865         if(removeEl === true){
28866             this.el.update("");
28867             this.el.remove();
28868         }
28869     }
28870 });
28871
28872 /**
28873  * @class Roo.TabPanelItem
28874  * @extends Roo.util.Observable
28875  * Represents an individual item (tab plus body) in a TabPanel.
28876  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28877  * @param {String} id The id of this TabPanelItem
28878  * @param {String} text The text for the tab of this TabPanelItem
28879  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28880  */
28881 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28882     /**
28883      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28884      * @type Roo.TabPanel
28885      */
28886     this.tabPanel = tabPanel;
28887     /**
28888      * The id for this TabPanelItem
28889      * @type String
28890      */
28891     this.id = id;
28892     /** @private */
28893     this.disabled = false;
28894     /** @private */
28895     this.text = text;
28896     /** @private */
28897     this.loaded = false;
28898     this.closable = closable;
28899
28900     /**
28901      * The body element for this TabPanelItem.
28902      * @type Roo.Element
28903      */
28904     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28905     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28906     this.bodyEl.setStyle("display", "block");
28907     this.bodyEl.setStyle("zoom", "1");
28908     this.hideAction();
28909
28910     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28911     /** @private */
28912     this.el = Roo.get(els.el, true);
28913     this.inner = Roo.get(els.inner, true);
28914     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
28915     this.pnode = Roo.get(els.el.parentNode, true);
28916     this.el.on("mousedown", this.onTabMouseDown, this);
28917     this.el.on("click", this.onTabClick, this);
28918     /** @private */
28919     if(closable){
28920         var c = Roo.get(els.close, true);
28921         c.dom.title = this.closeText;
28922         c.addClassOnOver("close-over");
28923         c.on("click", this.closeClick, this);
28924      }
28925
28926     this.addEvents({
28927          /**
28928          * @event activate
28929          * Fires when this tab becomes the active tab.
28930          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28931          * @param {Roo.TabPanelItem} this
28932          */
28933         "activate": true,
28934         /**
28935          * @event beforeclose
28936          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
28937          * @param {Roo.TabPanelItem} this
28938          * @param {Object} e Set cancel to true on this object to cancel the close.
28939          */
28940         "beforeclose": true,
28941         /**
28942          * @event close
28943          * Fires when this tab is closed.
28944          * @param {Roo.TabPanelItem} this
28945          */
28946          "close": true,
28947         /**
28948          * @event deactivate
28949          * Fires when this tab is no longer the active tab.
28950          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28951          * @param {Roo.TabPanelItem} this
28952          */
28953          "deactivate" : true
28954     });
28955     this.hidden = false;
28956
28957     Roo.TabPanelItem.superclass.constructor.call(this);
28958 };
28959
28960 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
28961     purgeListeners : function(){
28962        Roo.util.Observable.prototype.purgeListeners.call(this);
28963        this.el.removeAllListeners();
28964     },
28965     /**
28966      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
28967      */
28968     show : function(){
28969         this.pnode.addClass("on");
28970         this.showAction();
28971         if(Roo.isOpera){
28972             this.tabPanel.stripWrap.repaint();
28973         }
28974         this.fireEvent("activate", this.tabPanel, this);
28975     },
28976
28977     /**
28978      * Returns true if this tab is the active tab.
28979      * @return {Boolean}
28980      */
28981     isActive : function(){
28982         return this.tabPanel.getActiveTab() == this;
28983     },
28984
28985     /**
28986      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
28987      */
28988     hide : function(){
28989         this.pnode.removeClass("on");
28990         this.hideAction();
28991         this.fireEvent("deactivate", this.tabPanel, this);
28992     },
28993
28994     hideAction : function(){
28995         this.bodyEl.hide();
28996         this.bodyEl.setStyle("position", "absolute");
28997         this.bodyEl.setLeft("-20000px");
28998         this.bodyEl.setTop("-20000px");
28999     },
29000
29001     showAction : function(){
29002         this.bodyEl.setStyle("position", "relative");
29003         this.bodyEl.setTop("");
29004         this.bodyEl.setLeft("");
29005         this.bodyEl.show();
29006     },
29007
29008     /**
29009      * Set the tooltip for the tab.
29010      * @param {String} tooltip The tab's tooltip
29011      */
29012     setTooltip : function(text){
29013         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29014             this.textEl.dom.qtip = text;
29015             this.textEl.dom.removeAttribute('title');
29016         }else{
29017             this.textEl.dom.title = text;
29018         }
29019     },
29020
29021     onTabClick : function(e){
29022         e.preventDefault();
29023         this.tabPanel.activate(this.id);
29024     },
29025
29026     onTabMouseDown : function(e){
29027         e.preventDefault();
29028         this.tabPanel.activate(this.id);
29029     },
29030
29031     getWidth : function(){
29032         return this.inner.getWidth();
29033     },
29034
29035     setWidth : function(width){
29036         var iwidth = width - this.pnode.getPadding("lr");
29037         this.inner.setWidth(iwidth);
29038         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29039         this.pnode.setWidth(width);
29040     },
29041
29042     /**
29043      * Show or hide the tab
29044      * @param {Boolean} hidden True to hide or false to show.
29045      */
29046     setHidden : function(hidden){
29047         this.hidden = hidden;
29048         this.pnode.setStyle("display", hidden ? "none" : "");
29049     },
29050
29051     /**
29052      * Returns true if this tab is "hidden"
29053      * @return {Boolean}
29054      */
29055     isHidden : function(){
29056         return this.hidden;
29057     },
29058
29059     /**
29060      * Returns the text for this tab
29061      * @return {String}
29062      */
29063     getText : function(){
29064         return this.text;
29065     },
29066
29067     autoSize : function(){
29068         //this.el.beginMeasure();
29069         this.textEl.setWidth(1);
29070         /*
29071          *  #2804 [new] Tabs in Roojs
29072          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29073          */
29074         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29075         //this.el.endMeasure();
29076     },
29077
29078     /**
29079      * Sets the text for the tab (Note: this also sets the tooltip text)
29080      * @param {String} text The tab's text and tooltip
29081      */
29082     setText : function(text){
29083         this.text = text;
29084         this.textEl.update(text);
29085         this.setTooltip(text);
29086         if(!this.tabPanel.resizeTabs){
29087             this.autoSize();
29088         }
29089     },
29090     /**
29091      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29092      */
29093     activate : function(){
29094         this.tabPanel.activate(this.id);
29095     },
29096
29097     /**
29098      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29099      */
29100     disable : function(){
29101         if(this.tabPanel.active != this){
29102             this.disabled = true;
29103             this.pnode.addClass("disabled");
29104         }
29105     },
29106
29107     /**
29108      * Enables this TabPanelItem if it was previously disabled.
29109      */
29110     enable : function(){
29111         this.disabled = false;
29112         this.pnode.removeClass("disabled");
29113     },
29114
29115     /**
29116      * Sets the content for this TabPanelItem.
29117      * @param {String} content The content
29118      * @param {Boolean} loadScripts true to look for and load scripts
29119      */
29120     setContent : function(content, loadScripts){
29121         this.bodyEl.update(content, loadScripts);
29122     },
29123
29124     /**
29125      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29126      * @return {Roo.UpdateManager} The UpdateManager
29127      */
29128     getUpdateManager : function(){
29129         return this.bodyEl.getUpdateManager();
29130     },
29131
29132     /**
29133      * Set a URL to be used to load the content for this TabPanelItem.
29134      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29135      * @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)
29136      * @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)
29137      * @return {Roo.UpdateManager} The UpdateManager
29138      */
29139     setUrl : function(url, params, loadOnce){
29140         if(this.refreshDelegate){
29141             this.un('activate', this.refreshDelegate);
29142         }
29143         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29144         this.on("activate", this.refreshDelegate);
29145         return this.bodyEl.getUpdateManager();
29146     },
29147
29148     /** @private */
29149     _handleRefresh : function(url, params, loadOnce){
29150         if(!loadOnce || !this.loaded){
29151             var updater = this.bodyEl.getUpdateManager();
29152             updater.update(url, params, this._setLoaded.createDelegate(this));
29153         }
29154     },
29155
29156     /**
29157      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29158      *   Will fail silently if the setUrl method has not been called.
29159      *   This does not activate the panel, just updates its content.
29160      */
29161     refresh : function(){
29162         if(this.refreshDelegate){
29163            this.loaded = false;
29164            this.refreshDelegate();
29165         }
29166     },
29167
29168     /** @private */
29169     _setLoaded : function(){
29170         this.loaded = true;
29171     },
29172
29173     /** @private */
29174     closeClick : function(e){
29175         var o = {};
29176         e.stopEvent();
29177         this.fireEvent("beforeclose", this, o);
29178         if(o.cancel !== true){
29179             this.tabPanel.removeTab(this.id);
29180         }
29181     },
29182     /**
29183      * The text displayed in the tooltip for the close icon.
29184      * @type String
29185      */
29186     closeText : "Close this tab"
29187 });
29188
29189 /** @private */
29190 Roo.TabPanel.prototype.createStrip = function(container){
29191     var strip = document.createElement("div");
29192     strip.className = "x-tabs-wrap";
29193     container.appendChild(strip);
29194     return strip;
29195 };
29196 /** @private */
29197 Roo.TabPanel.prototype.createStripList = function(strip){
29198     // div wrapper for retard IE
29199     // returns the "tr" element.
29200     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29201         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29202         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29203     return strip.firstChild.firstChild.firstChild.firstChild;
29204 };
29205 /** @private */
29206 Roo.TabPanel.prototype.createBody = function(container){
29207     var body = document.createElement("div");
29208     Roo.id(body, "tab-body");
29209     Roo.fly(body).addClass("x-tabs-body");
29210     container.appendChild(body);
29211     return body;
29212 };
29213 /** @private */
29214 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29215     var body = Roo.getDom(id);
29216     if(!body){
29217         body = document.createElement("div");
29218         body.id = id;
29219     }
29220     Roo.fly(body).addClass("x-tabs-item-body");
29221     bodyEl.insertBefore(body, bodyEl.firstChild);
29222     return body;
29223 };
29224 /** @private */
29225 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29226     var td = document.createElement("td");
29227     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29228     //stripEl.appendChild(td);
29229     if(closable){
29230         td.className = "x-tabs-closable";
29231         if(!this.closeTpl){
29232             this.closeTpl = new Roo.Template(
29233                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29234                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29235                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29236             );
29237         }
29238         var el = this.closeTpl.overwrite(td, {"text": text});
29239         var close = el.getElementsByTagName("div")[0];
29240         var inner = el.getElementsByTagName("em")[0];
29241         return {"el": el, "close": close, "inner": inner};
29242     } else {
29243         if(!this.tabTpl){
29244             this.tabTpl = new Roo.Template(
29245                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29246                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29247             );
29248         }
29249         var el = this.tabTpl.overwrite(td, {"text": text});
29250         var inner = el.getElementsByTagName("em")[0];
29251         return {"el": el, "inner": inner};
29252     }
29253 };/*
29254  * Based on:
29255  * Ext JS Library 1.1.1
29256  * Copyright(c) 2006-2007, Ext JS, LLC.
29257  *
29258  * Originally Released Under LGPL - original licence link has changed is not relivant.
29259  *
29260  * Fork - LGPL
29261  * <script type="text/javascript">
29262  */
29263
29264 /**
29265  * @class Roo.Button
29266  * @extends Roo.util.Observable
29267  * Simple Button class
29268  * @cfg {String} text The button text
29269  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29270  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29271  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29272  * @cfg {Object} scope The scope of the handler
29273  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29274  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29275  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29276  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29277  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29278  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29279    applies if enableToggle = true)
29280  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29281  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29282   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29283  * @constructor
29284  * Create a new button
29285  * @param {Object} config The config object
29286  */
29287 Roo.Button = function(renderTo, config)
29288 {
29289     if (!config) {
29290         config = renderTo;
29291         renderTo = config.renderTo || false;
29292     }
29293     
29294     Roo.apply(this, config);
29295     this.addEvents({
29296         /**
29297              * @event click
29298              * Fires when this button is clicked
29299              * @param {Button} this
29300              * @param {EventObject} e The click event
29301              */
29302             "click" : true,
29303         /**
29304              * @event toggle
29305              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29306              * @param {Button} this
29307              * @param {Boolean} pressed
29308              */
29309             "toggle" : true,
29310         /**
29311              * @event mouseover
29312              * Fires when the mouse hovers over the button
29313              * @param {Button} this
29314              * @param {Event} e The event object
29315              */
29316         'mouseover' : true,
29317         /**
29318              * @event mouseout
29319              * Fires when the mouse exits the button
29320              * @param {Button} this
29321              * @param {Event} e The event object
29322              */
29323         'mouseout': true,
29324          /**
29325              * @event render
29326              * Fires when the button is rendered
29327              * @param {Button} this
29328              */
29329         'render': true
29330     });
29331     if(this.menu){
29332         this.menu = Roo.menu.MenuMgr.get(this.menu);
29333     }
29334     // register listeners first!!  - so render can be captured..
29335     Roo.util.Observable.call(this);
29336     if(renderTo){
29337         this.render(renderTo);
29338     }
29339     
29340   
29341 };
29342
29343 Roo.extend(Roo.Button, Roo.util.Observable, {
29344     /**
29345      * 
29346      */
29347     
29348     /**
29349      * Read-only. True if this button is hidden
29350      * @type Boolean
29351      */
29352     hidden : false,
29353     /**
29354      * Read-only. True if this button is disabled
29355      * @type Boolean
29356      */
29357     disabled : false,
29358     /**
29359      * Read-only. True if this button is pressed (only if enableToggle = true)
29360      * @type Boolean
29361      */
29362     pressed : false,
29363
29364     /**
29365      * @cfg {Number} tabIndex 
29366      * The DOM tabIndex for this button (defaults to undefined)
29367      */
29368     tabIndex : undefined,
29369
29370     /**
29371      * @cfg {Boolean} enableToggle
29372      * True to enable pressed/not pressed toggling (defaults to false)
29373      */
29374     enableToggle: false,
29375     /**
29376      * @cfg {Mixed} menu
29377      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29378      */
29379     menu : undefined,
29380     /**
29381      * @cfg {String} menuAlign
29382      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29383      */
29384     menuAlign : "tl-bl?",
29385
29386     /**
29387      * @cfg {String} iconCls
29388      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29389      */
29390     iconCls : undefined,
29391     /**
29392      * @cfg {String} type
29393      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29394      */
29395     type : 'button',
29396
29397     // private
29398     menuClassTarget: 'tr',
29399
29400     /**
29401      * @cfg {String} clickEvent
29402      * The type of event to map to the button's event handler (defaults to 'click')
29403      */
29404     clickEvent : 'click',
29405
29406     /**
29407      * @cfg {Boolean} handleMouseEvents
29408      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29409      */
29410     handleMouseEvents : true,
29411
29412     /**
29413      * @cfg {String} tooltipType
29414      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29415      */
29416     tooltipType : 'qtip',
29417
29418     /**
29419      * @cfg {String} cls
29420      * A CSS class to apply to the button's main element.
29421      */
29422     
29423     /**
29424      * @cfg {Roo.Template} template (Optional)
29425      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29426      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29427      * require code modifications if required elements (e.g. a button) aren't present.
29428      */
29429
29430     // private
29431     render : function(renderTo){
29432         var btn;
29433         if(this.hideParent){
29434             this.parentEl = Roo.get(renderTo);
29435         }
29436         if(!this.dhconfig){
29437             if(!this.template){
29438                 if(!Roo.Button.buttonTemplate){
29439                     // hideous table template
29440                     Roo.Button.buttonTemplate = new Roo.Template(
29441                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29442                         '<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>',
29443                         "</tr></tbody></table>");
29444                 }
29445                 this.template = Roo.Button.buttonTemplate;
29446             }
29447             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29448             var btnEl = btn.child("button:first");
29449             btnEl.on('focus', this.onFocus, this);
29450             btnEl.on('blur', this.onBlur, this);
29451             if(this.cls){
29452                 btn.addClass(this.cls);
29453             }
29454             if(this.icon){
29455                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29456             }
29457             if(this.iconCls){
29458                 btnEl.addClass(this.iconCls);
29459                 if(!this.cls){
29460                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29461                 }
29462             }
29463             if(this.tabIndex !== undefined){
29464                 btnEl.dom.tabIndex = this.tabIndex;
29465             }
29466             if(this.tooltip){
29467                 if(typeof this.tooltip == 'object'){
29468                     Roo.QuickTips.tips(Roo.apply({
29469                           target: btnEl.id
29470                     }, this.tooltip));
29471                 } else {
29472                     btnEl.dom[this.tooltipType] = this.tooltip;
29473                 }
29474             }
29475         }else{
29476             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29477         }
29478         this.el = btn;
29479         if(this.id){
29480             this.el.dom.id = this.el.id = this.id;
29481         }
29482         if(this.menu){
29483             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29484             this.menu.on("show", this.onMenuShow, this);
29485             this.menu.on("hide", this.onMenuHide, this);
29486         }
29487         btn.addClass("x-btn");
29488         if(Roo.isIE && !Roo.isIE7){
29489             this.autoWidth.defer(1, this);
29490         }else{
29491             this.autoWidth();
29492         }
29493         if(this.handleMouseEvents){
29494             btn.on("mouseover", this.onMouseOver, this);
29495             btn.on("mouseout", this.onMouseOut, this);
29496             btn.on("mousedown", this.onMouseDown, this);
29497         }
29498         btn.on(this.clickEvent, this.onClick, this);
29499         //btn.on("mouseup", this.onMouseUp, this);
29500         if(this.hidden){
29501             this.hide();
29502         }
29503         if(this.disabled){
29504             this.disable();
29505         }
29506         Roo.ButtonToggleMgr.register(this);
29507         if(this.pressed){
29508             this.el.addClass("x-btn-pressed");
29509         }
29510         if(this.repeat){
29511             var repeater = new Roo.util.ClickRepeater(btn,
29512                 typeof this.repeat == "object" ? this.repeat : {}
29513             );
29514             repeater.on("click", this.onClick,  this);
29515         }
29516         
29517         this.fireEvent('render', this);
29518         
29519     },
29520     /**
29521      * Returns the button's underlying element
29522      * @return {Roo.Element} The element
29523      */
29524     getEl : function(){
29525         return this.el;  
29526     },
29527     
29528     /**
29529      * Destroys this Button and removes any listeners.
29530      */
29531     destroy : function(){
29532         Roo.ButtonToggleMgr.unregister(this);
29533         this.el.removeAllListeners();
29534         this.purgeListeners();
29535         this.el.remove();
29536     },
29537
29538     // private
29539     autoWidth : function(){
29540         if(this.el){
29541             this.el.setWidth("auto");
29542             if(Roo.isIE7 && Roo.isStrict){
29543                 var ib = this.el.child('button');
29544                 if(ib && ib.getWidth() > 20){
29545                     ib.clip();
29546                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29547                 }
29548             }
29549             if(this.minWidth){
29550                 if(this.hidden){
29551                     this.el.beginMeasure();
29552                 }
29553                 if(this.el.getWidth() < this.minWidth){
29554                     this.el.setWidth(this.minWidth);
29555                 }
29556                 if(this.hidden){
29557                     this.el.endMeasure();
29558                 }
29559             }
29560         }
29561     },
29562
29563     /**
29564      * Assigns this button's click handler
29565      * @param {Function} handler The function to call when the button is clicked
29566      * @param {Object} scope (optional) Scope for the function passed in
29567      */
29568     setHandler : function(handler, scope){
29569         this.handler = handler;
29570         this.scope = scope;  
29571     },
29572     
29573     /**
29574      * Sets this button's text
29575      * @param {String} text The button text
29576      */
29577     setText : function(text){
29578         this.text = text;
29579         if(this.el){
29580             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29581         }
29582         this.autoWidth();
29583     },
29584     
29585     /**
29586      * Gets the text for this button
29587      * @return {String} The button text
29588      */
29589     getText : function(){
29590         return this.text;  
29591     },
29592     
29593     /**
29594      * Show this button
29595      */
29596     show: function(){
29597         this.hidden = false;
29598         if(this.el){
29599             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29600         }
29601     },
29602     
29603     /**
29604      * Hide this button
29605      */
29606     hide: function(){
29607         this.hidden = true;
29608         if(this.el){
29609             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29610         }
29611     },
29612     
29613     /**
29614      * Convenience function for boolean show/hide
29615      * @param {Boolean} visible True to show, false to hide
29616      */
29617     setVisible: function(visible){
29618         if(visible) {
29619             this.show();
29620         }else{
29621             this.hide();
29622         }
29623     },
29624     
29625     /**
29626      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29627      * @param {Boolean} state (optional) Force a particular state
29628      */
29629     toggle : function(state){
29630         state = state === undefined ? !this.pressed : state;
29631         if(state != this.pressed){
29632             if(state){
29633                 this.el.addClass("x-btn-pressed");
29634                 this.pressed = true;
29635                 this.fireEvent("toggle", this, true);
29636             }else{
29637                 this.el.removeClass("x-btn-pressed");
29638                 this.pressed = false;
29639                 this.fireEvent("toggle", this, false);
29640             }
29641             if(this.toggleHandler){
29642                 this.toggleHandler.call(this.scope || this, this, state);
29643             }
29644         }
29645     },
29646     
29647     /**
29648      * Focus the button
29649      */
29650     focus : function(){
29651         this.el.child('button:first').focus();
29652     },
29653     
29654     /**
29655      * Disable this button
29656      */
29657     disable : function(){
29658         if(this.el){
29659             this.el.addClass("x-btn-disabled");
29660         }
29661         this.disabled = true;
29662     },
29663     
29664     /**
29665      * Enable this button
29666      */
29667     enable : function(){
29668         if(this.el){
29669             this.el.removeClass("x-btn-disabled");
29670         }
29671         this.disabled = false;
29672     },
29673
29674     /**
29675      * Convenience function for boolean enable/disable
29676      * @param {Boolean} enabled True to enable, false to disable
29677      */
29678     setDisabled : function(v){
29679         this[v !== true ? "enable" : "disable"]();
29680     },
29681
29682     // private
29683     onClick : function(e)
29684     {
29685         if(e){
29686             e.preventDefault();
29687         }
29688         if(e.button != 0){
29689             return;
29690         }
29691         if(!this.disabled){
29692             if(this.enableToggle){
29693                 this.toggle();
29694             }
29695             if(this.menu && !this.menu.isVisible()){
29696                 this.menu.show(this.el, this.menuAlign);
29697             }
29698             this.fireEvent("click", this, e);
29699             if(this.handler){
29700                 this.el.removeClass("x-btn-over");
29701                 this.handler.call(this.scope || this, this, e);
29702             }
29703         }
29704     },
29705     // private
29706     onMouseOver : function(e){
29707         if(!this.disabled){
29708             this.el.addClass("x-btn-over");
29709             this.fireEvent('mouseover', this, e);
29710         }
29711     },
29712     // private
29713     onMouseOut : function(e){
29714         if(!e.within(this.el,  true)){
29715             this.el.removeClass("x-btn-over");
29716             this.fireEvent('mouseout', this, e);
29717         }
29718     },
29719     // private
29720     onFocus : function(e){
29721         if(!this.disabled){
29722             this.el.addClass("x-btn-focus");
29723         }
29724     },
29725     // private
29726     onBlur : function(e){
29727         this.el.removeClass("x-btn-focus");
29728     },
29729     // private
29730     onMouseDown : function(e){
29731         if(!this.disabled && e.button == 0){
29732             this.el.addClass("x-btn-click");
29733             Roo.get(document).on('mouseup', this.onMouseUp, this);
29734         }
29735     },
29736     // private
29737     onMouseUp : function(e){
29738         if(e.button == 0){
29739             this.el.removeClass("x-btn-click");
29740             Roo.get(document).un('mouseup', this.onMouseUp, this);
29741         }
29742     },
29743     // private
29744     onMenuShow : function(e){
29745         this.el.addClass("x-btn-menu-active");
29746     },
29747     // private
29748     onMenuHide : function(e){
29749         this.el.removeClass("x-btn-menu-active");
29750     }   
29751 });
29752
29753 // Private utility class used by Button
29754 Roo.ButtonToggleMgr = function(){
29755    var groups = {};
29756    
29757    function toggleGroup(btn, state){
29758        if(state){
29759            var g = groups[btn.toggleGroup];
29760            for(var i = 0, l = g.length; i < l; i++){
29761                if(g[i] != btn){
29762                    g[i].toggle(false);
29763                }
29764            }
29765        }
29766    }
29767    
29768    return {
29769        register : function(btn){
29770            if(!btn.toggleGroup){
29771                return;
29772            }
29773            var g = groups[btn.toggleGroup];
29774            if(!g){
29775                g = groups[btn.toggleGroup] = [];
29776            }
29777            g.push(btn);
29778            btn.on("toggle", toggleGroup);
29779        },
29780        
29781        unregister : function(btn){
29782            if(!btn.toggleGroup){
29783                return;
29784            }
29785            var g = groups[btn.toggleGroup];
29786            if(g){
29787                g.remove(btn);
29788                btn.un("toggle", toggleGroup);
29789            }
29790        }
29791    };
29792 }();/*
29793  * Based on:
29794  * Ext JS Library 1.1.1
29795  * Copyright(c) 2006-2007, Ext JS, LLC.
29796  *
29797  * Originally Released Under LGPL - original licence link has changed is not relivant.
29798  *
29799  * Fork - LGPL
29800  * <script type="text/javascript">
29801  */
29802  
29803 /**
29804  * @class Roo.SplitButton
29805  * @extends Roo.Button
29806  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29807  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29808  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29809  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29810  * @cfg {String} arrowTooltip The title attribute of the arrow
29811  * @constructor
29812  * Create a new menu button
29813  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29814  * @param {Object} config The config object
29815  */
29816 Roo.SplitButton = function(renderTo, config){
29817     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29818     /**
29819      * @event arrowclick
29820      * Fires when this button's arrow is clicked
29821      * @param {SplitButton} this
29822      * @param {EventObject} e The click event
29823      */
29824     this.addEvents({"arrowclick":true});
29825 };
29826
29827 Roo.extend(Roo.SplitButton, Roo.Button, {
29828     render : function(renderTo){
29829         // this is one sweet looking template!
29830         var tpl = new Roo.Template(
29831             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29832             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29833             '<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>',
29834             "</tbody></table></td><td>",
29835             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29836             '<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>',
29837             "</tbody></table></td></tr></table>"
29838         );
29839         var btn = tpl.append(renderTo, [this.text, this.type], true);
29840         var btnEl = btn.child("button");
29841         if(this.cls){
29842             btn.addClass(this.cls);
29843         }
29844         if(this.icon){
29845             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29846         }
29847         if(this.iconCls){
29848             btnEl.addClass(this.iconCls);
29849             if(!this.cls){
29850                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29851             }
29852         }
29853         this.el = btn;
29854         if(this.handleMouseEvents){
29855             btn.on("mouseover", this.onMouseOver, this);
29856             btn.on("mouseout", this.onMouseOut, this);
29857             btn.on("mousedown", this.onMouseDown, this);
29858             btn.on("mouseup", this.onMouseUp, this);
29859         }
29860         btn.on(this.clickEvent, this.onClick, this);
29861         if(this.tooltip){
29862             if(typeof this.tooltip == 'object'){
29863                 Roo.QuickTips.tips(Roo.apply({
29864                       target: btnEl.id
29865                 }, this.tooltip));
29866             } else {
29867                 btnEl.dom[this.tooltipType] = this.tooltip;
29868             }
29869         }
29870         if(this.arrowTooltip){
29871             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29872         }
29873         if(this.hidden){
29874             this.hide();
29875         }
29876         if(this.disabled){
29877             this.disable();
29878         }
29879         if(this.pressed){
29880             this.el.addClass("x-btn-pressed");
29881         }
29882         if(Roo.isIE && !Roo.isIE7){
29883             this.autoWidth.defer(1, this);
29884         }else{
29885             this.autoWidth();
29886         }
29887         if(this.menu){
29888             this.menu.on("show", this.onMenuShow, this);
29889             this.menu.on("hide", this.onMenuHide, this);
29890         }
29891         this.fireEvent('render', this);
29892     },
29893
29894     // private
29895     autoWidth : function(){
29896         if(this.el){
29897             var tbl = this.el.child("table:first");
29898             var tbl2 = this.el.child("table:last");
29899             this.el.setWidth("auto");
29900             tbl.setWidth("auto");
29901             if(Roo.isIE7 && Roo.isStrict){
29902                 var ib = this.el.child('button:first');
29903                 if(ib && ib.getWidth() > 20){
29904                     ib.clip();
29905                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29906                 }
29907             }
29908             if(this.minWidth){
29909                 if(this.hidden){
29910                     this.el.beginMeasure();
29911                 }
29912                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29913                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29914                 }
29915                 if(this.hidden){
29916                     this.el.endMeasure();
29917                 }
29918             }
29919             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
29920         } 
29921     },
29922     /**
29923      * Sets this button's click handler
29924      * @param {Function} handler The function to call when the button is clicked
29925      * @param {Object} scope (optional) Scope for the function passed above
29926      */
29927     setHandler : function(handler, scope){
29928         this.handler = handler;
29929         this.scope = scope;  
29930     },
29931     
29932     /**
29933      * Sets this button's arrow click handler
29934      * @param {Function} handler The function to call when the arrow is clicked
29935      * @param {Object} scope (optional) Scope for the function passed above
29936      */
29937     setArrowHandler : function(handler, scope){
29938         this.arrowHandler = handler;
29939         this.scope = scope;  
29940     },
29941     
29942     /**
29943      * Focus the button
29944      */
29945     focus : function(){
29946         if(this.el){
29947             this.el.child("button:first").focus();
29948         }
29949     },
29950
29951     // private
29952     onClick : function(e){
29953         e.preventDefault();
29954         if(!this.disabled){
29955             if(e.getTarget(".x-btn-menu-arrow-wrap")){
29956                 if(this.menu && !this.menu.isVisible()){
29957                     this.menu.show(this.el, this.menuAlign);
29958                 }
29959                 this.fireEvent("arrowclick", this, e);
29960                 if(this.arrowHandler){
29961                     this.arrowHandler.call(this.scope || this, this, e);
29962                 }
29963             }else{
29964                 this.fireEvent("click", this, e);
29965                 if(this.handler){
29966                     this.handler.call(this.scope || this, this, e);
29967                 }
29968             }
29969         }
29970     },
29971     // private
29972     onMouseDown : function(e){
29973         if(!this.disabled){
29974             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
29975         }
29976     },
29977     // private
29978     onMouseUp : function(e){
29979         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
29980     }   
29981 });
29982
29983
29984 // backwards compat
29985 Roo.MenuButton = Roo.SplitButton;/*
29986  * Based on:
29987  * Ext JS Library 1.1.1
29988  * Copyright(c) 2006-2007, Ext JS, LLC.
29989  *
29990  * Originally Released Under LGPL - original licence link has changed is not relivant.
29991  *
29992  * Fork - LGPL
29993  * <script type="text/javascript">
29994  */
29995
29996 /**
29997  * @class Roo.Toolbar
29998  * Basic Toolbar class.
29999  * @constructor
30000  * Creates a new Toolbar
30001  * @param {Object} container The config object
30002  */ 
30003 Roo.Toolbar = function(container, buttons, config)
30004 {
30005     /// old consturctor format still supported..
30006     if(container instanceof Array){ // omit the container for later rendering
30007         buttons = container;
30008         config = buttons;
30009         container = null;
30010     }
30011     if (typeof(container) == 'object' && container.xtype) {
30012         config = container;
30013         container = config.container;
30014         buttons = config.buttons || []; // not really - use items!!
30015     }
30016     var xitems = [];
30017     if (config && config.items) {
30018         xitems = config.items;
30019         delete config.items;
30020     }
30021     Roo.apply(this, config);
30022     this.buttons = buttons;
30023     
30024     if(container){
30025         this.render(container);
30026     }
30027     this.xitems = xitems;
30028     Roo.each(xitems, function(b) {
30029         this.add(b);
30030     }, this);
30031     
30032 };
30033
30034 Roo.Toolbar.prototype = {
30035     /**
30036      * @cfg {Array} items
30037      * array of button configs or elements to add (will be converted to a MixedCollection)
30038      */
30039     
30040     /**
30041      * @cfg {String/HTMLElement/Element} container
30042      * The id or element that will contain the toolbar
30043      */
30044     // private
30045     render : function(ct){
30046         this.el = Roo.get(ct);
30047         if(this.cls){
30048             this.el.addClass(this.cls);
30049         }
30050         // using a table allows for vertical alignment
30051         // 100% width is needed by Safari...
30052         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30053         this.tr = this.el.child("tr", true);
30054         var autoId = 0;
30055         this.items = new Roo.util.MixedCollection(false, function(o){
30056             return o.id || ("item" + (++autoId));
30057         });
30058         if(this.buttons){
30059             this.add.apply(this, this.buttons);
30060             delete this.buttons;
30061         }
30062     },
30063
30064     /**
30065      * Adds element(s) to the toolbar -- this function takes a variable number of 
30066      * arguments of mixed type and adds them to the toolbar.
30067      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30068      * <ul>
30069      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30070      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30071      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30072      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30073      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30074      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30075      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30076      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30077      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30078      * </ul>
30079      * @param {Mixed} arg2
30080      * @param {Mixed} etc.
30081      */
30082     add : function(){
30083         var a = arguments, l = a.length;
30084         for(var i = 0; i < l; i++){
30085             this._add(a[i]);
30086         }
30087     },
30088     // private..
30089     _add : function(el) {
30090         
30091         if (el.xtype) {
30092             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30093         }
30094         
30095         if (el.applyTo){ // some kind of form field
30096             return this.addField(el);
30097         } 
30098         if (el.render){ // some kind of Toolbar.Item
30099             return this.addItem(el);
30100         }
30101         if (typeof el == "string"){ // string
30102             if(el == "separator" || el == "-"){
30103                 return this.addSeparator();
30104             }
30105             if (el == " "){
30106                 return this.addSpacer();
30107             }
30108             if(el == "->"){
30109                 return this.addFill();
30110             }
30111             return this.addText(el);
30112             
30113         }
30114         if(el.tagName){ // element
30115             return this.addElement(el);
30116         }
30117         if(typeof el == "object"){ // must be button config?
30118             return this.addButton(el);
30119         }
30120         // and now what?!?!
30121         return false;
30122         
30123     },
30124     
30125     /**
30126      * Add an Xtype element
30127      * @param {Object} xtype Xtype Object
30128      * @return {Object} created Object
30129      */
30130     addxtype : function(e){
30131         return this.add(e);  
30132     },
30133     
30134     /**
30135      * Returns the Element for this toolbar.
30136      * @return {Roo.Element}
30137      */
30138     getEl : function(){
30139         return this.el;  
30140     },
30141     
30142     /**
30143      * Adds a separator
30144      * @return {Roo.Toolbar.Item} The separator item
30145      */
30146     addSeparator : function(){
30147         return this.addItem(new Roo.Toolbar.Separator());
30148     },
30149
30150     /**
30151      * Adds a spacer element
30152      * @return {Roo.Toolbar.Spacer} The spacer item
30153      */
30154     addSpacer : function(){
30155         return this.addItem(new Roo.Toolbar.Spacer());
30156     },
30157
30158     /**
30159      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30160      * @return {Roo.Toolbar.Fill} The fill item
30161      */
30162     addFill : function(){
30163         return this.addItem(new Roo.Toolbar.Fill());
30164     },
30165
30166     /**
30167      * Adds any standard HTML element to the toolbar
30168      * @param {String/HTMLElement/Element} el The element or id of the element to add
30169      * @return {Roo.Toolbar.Item} The element's item
30170      */
30171     addElement : function(el){
30172         return this.addItem(new Roo.Toolbar.Item(el));
30173     },
30174     /**
30175      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30176      * @type Roo.util.MixedCollection  
30177      */
30178     items : false,
30179      
30180     /**
30181      * Adds any Toolbar.Item or subclass
30182      * @param {Roo.Toolbar.Item} item
30183      * @return {Roo.Toolbar.Item} The item
30184      */
30185     addItem : function(item){
30186         var td = this.nextBlock();
30187         item.render(td);
30188         this.items.add(item);
30189         return item;
30190     },
30191     
30192     /**
30193      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30194      * @param {Object/Array} config A button config or array of configs
30195      * @return {Roo.Toolbar.Button/Array}
30196      */
30197     addButton : function(config){
30198         if(config instanceof Array){
30199             var buttons = [];
30200             for(var i = 0, len = config.length; i < len; i++) {
30201                 buttons.push(this.addButton(config[i]));
30202             }
30203             return buttons;
30204         }
30205         var b = config;
30206         if(!(config instanceof Roo.Toolbar.Button)){
30207             b = config.split ?
30208                 new Roo.Toolbar.SplitButton(config) :
30209                 new Roo.Toolbar.Button(config);
30210         }
30211         var td = this.nextBlock();
30212         b.render(td);
30213         this.items.add(b);
30214         return b;
30215     },
30216     
30217     /**
30218      * Adds text to the toolbar
30219      * @param {String} text The text to add
30220      * @return {Roo.Toolbar.Item} The element's item
30221      */
30222     addText : function(text){
30223         return this.addItem(new Roo.Toolbar.TextItem(text));
30224     },
30225     
30226     /**
30227      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30228      * @param {Number} index The index where the item is to be inserted
30229      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30230      * @return {Roo.Toolbar.Button/Item}
30231      */
30232     insertButton : function(index, item){
30233         if(item instanceof Array){
30234             var buttons = [];
30235             for(var i = 0, len = item.length; i < len; i++) {
30236                buttons.push(this.insertButton(index + i, item[i]));
30237             }
30238             return buttons;
30239         }
30240         if (!(item instanceof Roo.Toolbar.Button)){
30241            item = new Roo.Toolbar.Button(item);
30242         }
30243         var td = document.createElement("td");
30244         this.tr.insertBefore(td, this.tr.childNodes[index]);
30245         item.render(td);
30246         this.items.insert(index, item);
30247         return item;
30248     },
30249     
30250     /**
30251      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30252      * @param {Object} config
30253      * @return {Roo.Toolbar.Item} The element's item
30254      */
30255     addDom : function(config, returnEl){
30256         var td = this.nextBlock();
30257         Roo.DomHelper.overwrite(td, config);
30258         var ti = new Roo.Toolbar.Item(td.firstChild);
30259         ti.render(td);
30260         this.items.add(ti);
30261         return ti;
30262     },
30263
30264     /**
30265      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30266      * @type Roo.util.MixedCollection  
30267      */
30268     fields : false,
30269     
30270     /**
30271      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30272      * Note: the field should not have been rendered yet. For a field that has already been
30273      * rendered, use {@link #addElement}.
30274      * @param {Roo.form.Field} field
30275      * @return {Roo.ToolbarItem}
30276      */
30277      
30278       
30279     addField : function(field) {
30280         if (!this.fields) {
30281             var autoId = 0;
30282             this.fields = new Roo.util.MixedCollection(false, function(o){
30283                 return o.id || ("item" + (++autoId));
30284             });
30285
30286         }
30287         
30288         var td = this.nextBlock();
30289         field.render(td);
30290         var ti = new Roo.Toolbar.Item(td.firstChild);
30291         ti.render(td);
30292         this.items.add(ti);
30293         this.fields.add(field);
30294         return ti;
30295     },
30296     /**
30297      * Hide the toolbar
30298      * @method hide
30299      */
30300      
30301       
30302     hide : function()
30303     {
30304         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30305         this.el.child('div').hide();
30306     },
30307     /**
30308      * Show the toolbar
30309      * @method show
30310      */
30311     show : function()
30312     {
30313         this.el.child('div').show();
30314     },
30315       
30316     // private
30317     nextBlock : function(){
30318         var td = document.createElement("td");
30319         this.tr.appendChild(td);
30320         return td;
30321     },
30322
30323     // private
30324     destroy : function(){
30325         if(this.items){ // rendered?
30326             Roo.destroy.apply(Roo, this.items.items);
30327         }
30328         if(this.fields){ // rendered?
30329             Roo.destroy.apply(Roo, this.fields.items);
30330         }
30331         Roo.Element.uncache(this.el, this.tr);
30332     }
30333 };
30334
30335 /**
30336  * @class Roo.Toolbar.Item
30337  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30338  * @constructor
30339  * Creates a new Item
30340  * @param {HTMLElement} el 
30341  */
30342 Roo.Toolbar.Item = function(el){
30343     var cfg = {};
30344     if (typeof (el.xtype) != 'undefined') {
30345         cfg = el;
30346         el = cfg.el;
30347     }
30348     
30349     this.el = Roo.getDom(el);
30350     this.id = Roo.id(this.el);
30351     this.hidden = false;
30352     
30353     this.addEvents({
30354          /**
30355              * @event render
30356              * Fires when the button is rendered
30357              * @param {Button} this
30358              */
30359         'render': true
30360     });
30361     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30362 };
30363 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30364 //Roo.Toolbar.Item.prototype = {
30365     
30366     /**
30367      * Get this item's HTML Element
30368      * @return {HTMLElement}
30369      */
30370     getEl : function(){
30371        return this.el;  
30372     },
30373
30374     // private
30375     render : function(td){
30376         
30377          this.td = td;
30378         td.appendChild(this.el);
30379         
30380         this.fireEvent('render', this);
30381     },
30382     
30383     /**
30384      * Removes and destroys this item.
30385      */
30386     destroy : function(){
30387         this.td.parentNode.removeChild(this.td);
30388     },
30389     
30390     /**
30391      * Shows this item.
30392      */
30393     show: function(){
30394         this.hidden = false;
30395         this.td.style.display = "";
30396     },
30397     
30398     /**
30399      * Hides this item.
30400      */
30401     hide: function(){
30402         this.hidden = true;
30403         this.td.style.display = "none";
30404     },
30405     
30406     /**
30407      * Convenience function for boolean show/hide.
30408      * @param {Boolean} visible true to show/false to hide
30409      */
30410     setVisible: function(visible){
30411         if(visible) {
30412             this.show();
30413         }else{
30414             this.hide();
30415         }
30416     },
30417     
30418     /**
30419      * Try to focus this item.
30420      */
30421     focus : function(){
30422         Roo.fly(this.el).focus();
30423     },
30424     
30425     /**
30426      * Disables this item.
30427      */
30428     disable : function(){
30429         Roo.fly(this.td).addClass("x-item-disabled");
30430         this.disabled = true;
30431         this.el.disabled = true;
30432     },
30433     
30434     /**
30435      * Enables this item.
30436      */
30437     enable : function(){
30438         Roo.fly(this.td).removeClass("x-item-disabled");
30439         this.disabled = false;
30440         this.el.disabled = false;
30441     }
30442 });
30443
30444
30445 /**
30446  * @class Roo.Toolbar.Separator
30447  * @extends Roo.Toolbar.Item
30448  * A simple toolbar separator class
30449  * @constructor
30450  * Creates a new Separator
30451  */
30452 Roo.Toolbar.Separator = function(cfg){
30453     
30454     var s = document.createElement("span");
30455     s.className = "ytb-sep";
30456     if (cfg) {
30457         cfg.el = s;
30458     }
30459     
30460     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30461 };
30462 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30463     enable:Roo.emptyFn,
30464     disable:Roo.emptyFn,
30465     focus:Roo.emptyFn
30466 });
30467
30468 /**
30469  * @class Roo.Toolbar.Spacer
30470  * @extends Roo.Toolbar.Item
30471  * A simple element that adds extra horizontal space to a toolbar.
30472  * @constructor
30473  * Creates a new Spacer
30474  */
30475 Roo.Toolbar.Spacer = function(cfg){
30476     var s = document.createElement("div");
30477     s.className = "ytb-spacer";
30478     if (cfg) {
30479         cfg.el = s;
30480     }
30481     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30482 };
30483 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30484     enable:Roo.emptyFn,
30485     disable:Roo.emptyFn,
30486     focus:Roo.emptyFn
30487 });
30488
30489 /**
30490  * @class Roo.Toolbar.Fill
30491  * @extends Roo.Toolbar.Spacer
30492  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30493  * @constructor
30494  * Creates a new Spacer
30495  */
30496 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30497     // private
30498     render : function(td){
30499         td.style.width = '100%';
30500         Roo.Toolbar.Fill.superclass.render.call(this, td);
30501     }
30502 });
30503
30504 /**
30505  * @class Roo.Toolbar.TextItem
30506  * @extends Roo.Toolbar.Item
30507  * A simple class that renders text directly into a toolbar.
30508  * @constructor
30509  * Creates a new TextItem
30510  * @cfg {string} text 
30511  */
30512 Roo.Toolbar.TextItem = function(cfg){
30513     var  text = cfg || "";
30514     if (typeof(cfg) == 'object') {
30515         text = cfg.text || "";
30516     }  else {
30517         cfg = null;
30518     }
30519     var s = document.createElement("span");
30520     s.className = "ytb-text";
30521     s.innerHTML = text;
30522     if (cfg) {
30523         cfg.el  = s;
30524     }
30525     
30526     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30527 };
30528 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30529     
30530      
30531     enable:Roo.emptyFn,
30532     disable:Roo.emptyFn,
30533     focus:Roo.emptyFn
30534 });
30535
30536 /**
30537  * @class Roo.Toolbar.Button
30538  * @extends Roo.Button
30539  * A button that renders into a toolbar.
30540  * @constructor
30541  * Creates a new Button
30542  * @param {Object} config A standard {@link Roo.Button} config object
30543  */
30544 Roo.Toolbar.Button = function(config){
30545     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30546 };
30547 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30548     render : function(td){
30549         this.td = td;
30550         Roo.Toolbar.Button.superclass.render.call(this, td);
30551     },
30552     
30553     /**
30554      * Removes and destroys this button
30555      */
30556     destroy : function(){
30557         Roo.Toolbar.Button.superclass.destroy.call(this);
30558         this.td.parentNode.removeChild(this.td);
30559     },
30560     
30561     /**
30562      * Shows this button
30563      */
30564     show: function(){
30565         this.hidden = false;
30566         this.td.style.display = "";
30567     },
30568     
30569     /**
30570      * Hides this button
30571      */
30572     hide: function(){
30573         this.hidden = true;
30574         this.td.style.display = "none";
30575     },
30576
30577     /**
30578      * Disables this item
30579      */
30580     disable : function(){
30581         Roo.fly(this.td).addClass("x-item-disabled");
30582         this.disabled = true;
30583     },
30584
30585     /**
30586      * Enables this item
30587      */
30588     enable : function(){
30589         Roo.fly(this.td).removeClass("x-item-disabled");
30590         this.disabled = false;
30591     }
30592 });
30593 // backwards compat
30594 Roo.ToolbarButton = Roo.Toolbar.Button;
30595
30596 /**
30597  * @class Roo.Toolbar.SplitButton
30598  * @extends Roo.SplitButton
30599  * A menu button that renders into a toolbar.
30600  * @constructor
30601  * Creates a new SplitButton
30602  * @param {Object} config A standard {@link Roo.SplitButton} config object
30603  */
30604 Roo.Toolbar.SplitButton = function(config){
30605     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30606 };
30607 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30608     render : function(td){
30609         this.td = td;
30610         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30611     },
30612     
30613     /**
30614      * Removes and destroys this button
30615      */
30616     destroy : function(){
30617         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30618         this.td.parentNode.removeChild(this.td);
30619     },
30620     
30621     /**
30622      * Shows this button
30623      */
30624     show: function(){
30625         this.hidden = false;
30626         this.td.style.display = "";
30627     },
30628     
30629     /**
30630      * Hides this button
30631      */
30632     hide: function(){
30633         this.hidden = true;
30634         this.td.style.display = "none";
30635     }
30636 });
30637
30638 // backwards compat
30639 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30640  * Based on:
30641  * Ext JS Library 1.1.1
30642  * Copyright(c) 2006-2007, Ext JS, LLC.
30643  *
30644  * Originally Released Under LGPL - original licence link has changed is not relivant.
30645  *
30646  * Fork - LGPL
30647  * <script type="text/javascript">
30648  */
30649  
30650 /**
30651  * @class Roo.PagingToolbar
30652  * @extends Roo.Toolbar
30653  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30654  * @constructor
30655  * Create a new PagingToolbar
30656  * @param {Object} config The config object
30657  */
30658 Roo.PagingToolbar = function(el, ds, config)
30659 {
30660     // old args format still supported... - xtype is prefered..
30661     if (typeof(el) == 'object' && el.xtype) {
30662         // created from xtype...
30663         config = el;
30664         ds = el.dataSource;
30665         el = config.container;
30666     }
30667     var items = [];
30668     if (config.items) {
30669         items = config.items;
30670         config.items = [];
30671     }
30672     
30673     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30674     this.ds = ds;
30675     this.cursor = 0;
30676     this.renderButtons(this.el);
30677     this.bind(ds);
30678     
30679     // supprot items array.
30680    
30681     Roo.each(items, function(e) {
30682         this.add(Roo.factory(e));
30683     },this);
30684     
30685 };
30686
30687 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30688     /**
30689      * @cfg {Roo.data.Store} dataSource
30690      * The underlying data store providing the paged data
30691      */
30692     /**
30693      * @cfg {String/HTMLElement/Element} container
30694      * container The id or element that will contain the toolbar
30695      */
30696     /**
30697      * @cfg {Boolean} displayInfo
30698      * True to display the displayMsg (defaults to false)
30699      */
30700     /**
30701      * @cfg {Number} pageSize
30702      * The number of records to display per page (defaults to 20)
30703      */
30704     pageSize: 20,
30705     /**
30706      * @cfg {String} displayMsg
30707      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30708      */
30709     displayMsg : 'Displaying {0} - {1} of {2}',
30710     /**
30711      * @cfg {String} emptyMsg
30712      * The message to display when no records are found (defaults to "No data to display")
30713      */
30714     emptyMsg : 'No data to display',
30715     /**
30716      * Customizable piece of the default paging text (defaults to "Page")
30717      * @type String
30718      */
30719     beforePageText : "Page",
30720     /**
30721      * Customizable piece of the default paging text (defaults to "of %0")
30722      * @type String
30723      */
30724     afterPageText : "of {0}",
30725     /**
30726      * Customizable piece of the default paging text (defaults to "First Page")
30727      * @type String
30728      */
30729     firstText : "First Page",
30730     /**
30731      * Customizable piece of the default paging text (defaults to "Previous Page")
30732      * @type String
30733      */
30734     prevText : "Previous Page",
30735     /**
30736      * Customizable piece of the default paging text (defaults to "Next Page")
30737      * @type String
30738      */
30739     nextText : "Next Page",
30740     /**
30741      * Customizable piece of the default paging text (defaults to "Last Page")
30742      * @type String
30743      */
30744     lastText : "Last Page",
30745     /**
30746      * Customizable piece of the default paging text (defaults to "Refresh")
30747      * @type String
30748      */
30749     refreshText : "Refresh",
30750
30751     // private
30752     renderButtons : function(el){
30753         Roo.PagingToolbar.superclass.render.call(this, el);
30754         this.first = this.addButton({
30755             tooltip: this.firstText,
30756             cls: "x-btn-icon x-grid-page-first",
30757             disabled: true,
30758             handler: this.onClick.createDelegate(this, ["first"])
30759         });
30760         this.prev = this.addButton({
30761             tooltip: this.prevText,
30762             cls: "x-btn-icon x-grid-page-prev",
30763             disabled: true,
30764             handler: this.onClick.createDelegate(this, ["prev"])
30765         });
30766         //this.addSeparator();
30767         this.add(this.beforePageText);
30768         this.field = Roo.get(this.addDom({
30769            tag: "input",
30770            type: "text",
30771            size: "3",
30772            value: "1",
30773            cls: "x-grid-page-number"
30774         }).el);
30775         this.field.on("keydown", this.onPagingKeydown, this);
30776         this.field.on("focus", function(){this.dom.select();});
30777         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30778         this.field.setHeight(18);
30779         //this.addSeparator();
30780         this.next = this.addButton({
30781             tooltip: this.nextText,
30782             cls: "x-btn-icon x-grid-page-next",
30783             disabled: true,
30784             handler: this.onClick.createDelegate(this, ["next"])
30785         });
30786         this.last = this.addButton({
30787             tooltip: this.lastText,
30788             cls: "x-btn-icon x-grid-page-last",
30789             disabled: true,
30790             handler: this.onClick.createDelegate(this, ["last"])
30791         });
30792         //this.addSeparator();
30793         this.loading = this.addButton({
30794             tooltip: this.refreshText,
30795             cls: "x-btn-icon x-grid-loading",
30796             handler: this.onClick.createDelegate(this, ["refresh"])
30797         });
30798
30799         if(this.displayInfo){
30800             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30801         }
30802     },
30803
30804     // private
30805     updateInfo : function(){
30806         if(this.displayEl){
30807             var count = this.ds.getCount();
30808             var msg = count == 0 ?
30809                 this.emptyMsg :
30810                 String.format(
30811                     this.displayMsg,
30812                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30813                 );
30814             this.displayEl.update(msg);
30815         }
30816     },
30817
30818     // private
30819     onLoad : function(ds, r, o){
30820        this.cursor = o.params ? o.params.start : 0;
30821        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30822
30823        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30824        this.field.dom.value = ap;
30825        this.first.setDisabled(ap == 1);
30826        this.prev.setDisabled(ap == 1);
30827        this.next.setDisabled(ap == ps);
30828        this.last.setDisabled(ap == ps);
30829        this.loading.enable();
30830        this.updateInfo();
30831     },
30832
30833     // private
30834     getPageData : function(){
30835         var total = this.ds.getTotalCount();
30836         return {
30837             total : total,
30838             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30839             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30840         };
30841     },
30842
30843     // private
30844     onLoadError : function(){
30845         this.loading.enable();
30846     },
30847
30848     // private
30849     onPagingKeydown : function(e){
30850         var k = e.getKey();
30851         var d = this.getPageData();
30852         if(k == e.RETURN){
30853             var v = this.field.dom.value, pageNum;
30854             if(!v || isNaN(pageNum = parseInt(v, 10))){
30855                 this.field.dom.value = d.activePage;
30856                 return;
30857             }
30858             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30859             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30860             e.stopEvent();
30861         }
30862         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))
30863         {
30864           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30865           this.field.dom.value = pageNum;
30866           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30867           e.stopEvent();
30868         }
30869         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30870         {
30871           var v = this.field.dom.value, pageNum; 
30872           var increment = (e.shiftKey) ? 10 : 1;
30873           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30874             increment *= -1;
30875           }
30876           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30877             this.field.dom.value = d.activePage;
30878             return;
30879           }
30880           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30881           {
30882             this.field.dom.value = parseInt(v, 10) + increment;
30883             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30884             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30885           }
30886           e.stopEvent();
30887         }
30888     },
30889
30890     // private
30891     beforeLoad : function(){
30892         if(this.loading){
30893             this.loading.disable();
30894         }
30895     },
30896
30897     // private
30898     onClick : function(which){
30899         var ds = this.ds;
30900         switch(which){
30901             case "first":
30902                 ds.load({params:{start: 0, limit: this.pageSize}});
30903             break;
30904             case "prev":
30905                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30906             break;
30907             case "next":
30908                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30909             break;
30910             case "last":
30911                 var total = ds.getTotalCount();
30912                 var extra = total % this.pageSize;
30913                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30914                 ds.load({params:{start: lastStart, limit: this.pageSize}});
30915             break;
30916             case "refresh":
30917                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
30918             break;
30919         }
30920     },
30921
30922     /**
30923      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
30924      * @param {Roo.data.Store} store The data store to unbind
30925      */
30926     unbind : function(ds){
30927         ds.un("beforeload", this.beforeLoad, this);
30928         ds.un("load", this.onLoad, this);
30929         ds.un("loadexception", this.onLoadError, this);
30930         ds.un("remove", this.updateInfo, this);
30931         ds.un("add", this.updateInfo, this);
30932         this.ds = undefined;
30933     },
30934
30935     /**
30936      * Binds the paging toolbar to the specified {@link Roo.data.Store}
30937      * @param {Roo.data.Store} store The data store to bind
30938      */
30939     bind : function(ds){
30940         ds.on("beforeload", this.beforeLoad, this);
30941         ds.on("load", this.onLoad, this);
30942         ds.on("loadexception", this.onLoadError, this);
30943         ds.on("remove", this.updateInfo, this);
30944         ds.on("add", this.updateInfo, this);
30945         this.ds = ds;
30946     }
30947 });/*
30948  * Based on:
30949  * Ext JS Library 1.1.1
30950  * Copyright(c) 2006-2007, Ext JS, LLC.
30951  *
30952  * Originally Released Under LGPL - original licence link has changed is not relivant.
30953  *
30954  * Fork - LGPL
30955  * <script type="text/javascript">
30956  */
30957
30958 /**
30959  * @class Roo.Resizable
30960  * @extends Roo.util.Observable
30961  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
30962  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
30963  * 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
30964  * the element will be wrapped for you automatically.</p>
30965  * <p>Here is the list of valid resize handles:</p>
30966  * <pre>
30967 Value   Description
30968 ------  -------------------
30969  'n'     north
30970  's'     south
30971  'e'     east
30972  'w'     west
30973  'nw'    northwest
30974  'sw'    southwest
30975  'se'    southeast
30976  'ne'    northeast
30977  'hd'    horizontal drag
30978  'all'   all
30979 </pre>
30980  * <p>Here's an example showing the creation of a typical Resizable:</p>
30981  * <pre><code>
30982 var resizer = new Roo.Resizable("element-id", {
30983     handles: 'all',
30984     minWidth: 200,
30985     minHeight: 100,
30986     maxWidth: 500,
30987     maxHeight: 400,
30988     pinned: true
30989 });
30990 resizer.on("resize", myHandler);
30991 </code></pre>
30992  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
30993  * resizer.east.setDisplayed(false);</p>
30994  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
30995  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
30996  * resize operation's new size (defaults to [0, 0])
30997  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
30998  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
30999  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31000  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31001  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31002  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31003  * @cfg {Number} width The width of the element in pixels (defaults to null)
31004  * @cfg {Number} height The height of the element in pixels (defaults to null)
31005  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31006  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31007  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31008  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31009  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31010  * in favor of the handles config option (defaults to false)
31011  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31012  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31013  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31014  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31015  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31016  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31017  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31018  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31019  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31020  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31021  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31022  * @constructor
31023  * Create a new resizable component
31024  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31025  * @param {Object} config configuration options
31026   */
31027 Roo.Resizable = function(el, config)
31028 {
31029     this.el = Roo.get(el);
31030
31031     if(config && config.wrap){
31032         config.resizeChild = this.el;
31033         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31034         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31035         this.el.setStyle("overflow", "hidden");
31036         this.el.setPositioning(config.resizeChild.getPositioning());
31037         config.resizeChild.clearPositioning();
31038         if(!config.width || !config.height){
31039             var csize = config.resizeChild.getSize();
31040             this.el.setSize(csize.width, csize.height);
31041         }
31042         if(config.pinned && !config.adjustments){
31043             config.adjustments = "auto";
31044         }
31045     }
31046
31047     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31048     this.proxy.unselectable();
31049     this.proxy.enableDisplayMode('block');
31050
31051     Roo.apply(this, config);
31052
31053     if(this.pinned){
31054         this.disableTrackOver = true;
31055         this.el.addClass("x-resizable-pinned");
31056     }
31057     // if the element isn't positioned, make it relative
31058     var position = this.el.getStyle("position");
31059     if(position != "absolute" && position != "fixed"){
31060         this.el.setStyle("position", "relative");
31061     }
31062     if(!this.handles){ // no handles passed, must be legacy style
31063         this.handles = 's,e,se';
31064         if(this.multiDirectional){
31065             this.handles += ',n,w';
31066         }
31067     }
31068     if(this.handles == "all"){
31069         this.handles = "n s e w ne nw se sw";
31070     }
31071     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31072     var ps = Roo.Resizable.positions;
31073     for(var i = 0, len = hs.length; i < len; i++){
31074         if(hs[i] && ps[hs[i]]){
31075             var pos = ps[hs[i]];
31076             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31077         }
31078     }
31079     // legacy
31080     this.corner = this.southeast;
31081     
31082     // updateBox = the box can move..
31083     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31084         this.updateBox = true;
31085     }
31086
31087     this.activeHandle = null;
31088
31089     if(this.resizeChild){
31090         if(typeof this.resizeChild == "boolean"){
31091             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31092         }else{
31093             this.resizeChild = Roo.get(this.resizeChild, true);
31094         }
31095     }
31096     
31097     if(this.adjustments == "auto"){
31098         var rc = this.resizeChild;
31099         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31100         if(rc && (hw || hn)){
31101             rc.position("relative");
31102             rc.setLeft(hw ? hw.el.getWidth() : 0);
31103             rc.setTop(hn ? hn.el.getHeight() : 0);
31104         }
31105         this.adjustments = [
31106             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31107             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31108         ];
31109     }
31110
31111     if(this.draggable){
31112         this.dd = this.dynamic ?
31113             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31114         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31115     }
31116
31117     // public events
31118     this.addEvents({
31119         /**
31120          * @event beforeresize
31121          * Fired before resize is allowed. Set enabled to false to cancel resize.
31122          * @param {Roo.Resizable} this
31123          * @param {Roo.EventObject} e The mousedown event
31124          */
31125         "beforeresize" : true,
31126         /**
31127          * @event resizing
31128          * Fired a resizing.
31129          * @param {Roo.Resizable} this
31130          * @param {Number} x The new x position
31131          * @param {Number} y The new y position
31132          * @param {Number} w The new w width
31133          * @param {Number} h The new h hight
31134          * @param {Roo.EventObject} e The mouseup event
31135          */
31136         "resizing" : true,
31137         /**
31138          * @event resize
31139          * Fired after a resize.
31140          * @param {Roo.Resizable} this
31141          * @param {Number} width The new width
31142          * @param {Number} height The new height
31143          * @param {Roo.EventObject} e The mouseup event
31144          */
31145         "resize" : true
31146     });
31147
31148     if(this.width !== null && this.height !== null){
31149         this.resizeTo(this.width, this.height);
31150     }else{
31151         this.updateChildSize();
31152     }
31153     if(Roo.isIE){
31154         this.el.dom.style.zoom = 1;
31155     }
31156     Roo.Resizable.superclass.constructor.call(this);
31157 };
31158
31159 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31160         resizeChild : false,
31161         adjustments : [0, 0],
31162         minWidth : 5,
31163         minHeight : 5,
31164         maxWidth : 10000,
31165         maxHeight : 10000,
31166         enabled : true,
31167         animate : false,
31168         duration : .35,
31169         dynamic : false,
31170         handles : false,
31171         multiDirectional : false,
31172         disableTrackOver : false,
31173         easing : 'easeOutStrong',
31174         widthIncrement : 0,
31175         heightIncrement : 0,
31176         pinned : false,
31177         width : null,
31178         height : null,
31179         preserveRatio : false,
31180         transparent: false,
31181         minX: 0,
31182         minY: 0,
31183         draggable: false,
31184
31185         /**
31186          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31187          */
31188         constrainTo: undefined,
31189         /**
31190          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31191          */
31192         resizeRegion: undefined,
31193
31194
31195     /**
31196      * Perform a manual resize
31197      * @param {Number} width
31198      * @param {Number} height
31199      */
31200     resizeTo : function(width, height){
31201         this.el.setSize(width, height);
31202         this.updateChildSize();
31203         this.fireEvent("resize", this, width, height, null);
31204     },
31205
31206     // private
31207     startSizing : function(e, handle){
31208         this.fireEvent("beforeresize", this, e);
31209         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31210
31211             if(!this.overlay){
31212                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31213                 this.overlay.unselectable();
31214                 this.overlay.enableDisplayMode("block");
31215                 this.overlay.on("mousemove", this.onMouseMove, this);
31216                 this.overlay.on("mouseup", this.onMouseUp, this);
31217             }
31218             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31219
31220             this.resizing = true;
31221             this.startBox = this.el.getBox();
31222             this.startPoint = e.getXY();
31223             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31224                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31225
31226             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31227             this.overlay.show();
31228
31229             if(this.constrainTo) {
31230                 var ct = Roo.get(this.constrainTo);
31231                 this.resizeRegion = ct.getRegion().adjust(
31232                     ct.getFrameWidth('t'),
31233                     ct.getFrameWidth('l'),
31234                     -ct.getFrameWidth('b'),
31235                     -ct.getFrameWidth('r')
31236                 );
31237             }
31238
31239             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31240             this.proxy.show();
31241             this.proxy.setBox(this.startBox);
31242             if(!this.dynamic){
31243                 this.proxy.setStyle('visibility', 'visible');
31244             }
31245         }
31246     },
31247
31248     // private
31249     onMouseDown : function(handle, e){
31250         if(this.enabled){
31251             e.stopEvent();
31252             this.activeHandle = handle;
31253             this.startSizing(e, handle);
31254         }
31255     },
31256
31257     // private
31258     onMouseUp : function(e){
31259         var size = this.resizeElement();
31260         this.resizing = false;
31261         this.handleOut();
31262         this.overlay.hide();
31263         this.proxy.hide();
31264         this.fireEvent("resize", this, size.width, size.height, e);
31265     },
31266
31267     // private
31268     updateChildSize : function(){
31269         
31270         if(this.resizeChild){
31271             var el = this.el;
31272             var child = this.resizeChild;
31273             var adj = this.adjustments;
31274             if(el.dom.offsetWidth){
31275                 var b = el.getSize(true);
31276                 child.setSize(b.width+adj[0], b.height+adj[1]);
31277             }
31278             // Second call here for IE
31279             // The first call enables instant resizing and
31280             // the second call corrects scroll bars if they
31281             // exist
31282             if(Roo.isIE){
31283                 setTimeout(function(){
31284                     if(el.dom.offsetWidth){
31285                         var b = el.getSize(true);
31286                         child.setSize(b.width+adj[0], b.height+adj[1]);
31287                     }
31288                 }, 10);
31289             }
31290         }
31291     },
31292
31293     // private
31294     snap : function(value, inc, min){
31295         if(!inc || !value) {
31296             return value;
31297         }
31298         var newValue = value;
31299         var m = value % inc;
31300         if(m > 0){
31301             if(m > (inc/2)){
31302                 newValue = value + (inc-m);
31303             }else{
31304                 newValue = value - m;
31305             }
31306         }
31307         return Math.max(min, newValue);
31308     },
31309
31310     // private
31311     resizeElement : function(){
31312         var box = this.proxy.getBox();
31313         if(this.updateBox){
31314             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31315         }else{
31316             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31317         }
31318         this.updateChildSize();
31319         if(!this.dynamic){
31320             this.proxy.hide();
31321         }
31322         return box;
31323     },
31324
31325     // private
31326     constrain : function(v, diff, m, mx){
31327         if(v - diff < m){
31328             diff = v - m;
31329         }else if(v - diff > mx){
31330             diff = mx - v;
31331         }
31332         return diff;
31333     },
31334
31335     // private
31336     onMouseMove : function(e){
31337         
31338         if(this.enabled){
31339             try{// try catch so if something goes wrong the user doesn't get hung
31340
31341             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31342                 return;
31343             }
31344
31345             //var curXY = this.startPoint;
31346             var curSize = this.curSize || this.startBox;
31347             var x = this.startBox.x, y = this.startBox.y;
31348             var ox = x, oy = y;
31349             var w = curSize.width, h = curSize.height;
31350             var ow = w, oh = h;
31351             var mw = this.minWidth, mh = this.minHeight;
31352             var mxw = this.maxWidth, mxh = this.maxHeight;
31353             var wi = this.widthIncrement;
31354             var hi = this.heightIncrement;
31355
31356             var eventXY = e.getXY();
31357             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31358             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31359
31360             var pos = this.activeHandle.position;
31361
31362             switch(pos){
31363                 case "east":
31364                     w += diffX;
31365                     w = Math.min(Math.max(mw, w), mxw);
31366                     break;
31367              
31368                 case "south":
31369                     h += diffY;
31370                     h = Math.min(Math.max(mh, h), mxh);
31371                     break;
31372                 case "southeast":
31373                     w += diffX;
31374                     h += diffY;
31375                     w = Math.min(Math.max(mw, w), mxw);
31376                     h = Math.min(Math.max(mh, h), mxh);
31377                     break;
31378                 case "north":
31379                     diffY = this.constrain(h, diffY, mh, mxh);
31380                     y += diffY;
31381                     h -= diffY;
31382                     break;
31383                 case "hdrag":
31384                     
31385                     if (wi) {
31386                         var adiffX = Math.abs(diffX);
31387                         var sub = (adiffX % wi); // how much 
31388                         if (sub > (wi/2)) { // far enough to snap
31389                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31390                         } else {
31391                             // remove difference.. 
31392                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31393                         }
31394                     }
31395                     x += diffX;
31396                     x = Math.max(this.minX, x);
31397                     break;
31398                 case "west":
31399                     diffX = this.constrain(w, diffX, mw, mxw);
31400                     x += diffX;
31401                     w -= diffX;
31402                     break;
31403                 case "northeast":
31404                     w += diffX;
31405                     w = Math.min(Math.max(mw, w), mxw);
31406                     diffY = this.constrain(h, diffY, mh, mxh);
31407                     y += diffY;
31408                     h -= diffY;
31409                     break;
31410                 case "northwest":
31411                     diffX = this.constrain(w, diffX, mw, mxw);
31412                     diffY = this.constrain(h, diffY, mh, mxh);
31413                     y += diffY;
31414                     h -= diffY;
31415                     x += diffX;
31416                     w -= diffX;
31417                     break;
31418                case "southwest":
31419                     diffX = this.constrain(w, diffX, mw, mxw);
31420                     h += diffY;
31421                     h = Math.min(Math.max(mh, h), mxh);
31422                     x += diffX;
31423                     w -= diffX;
31424                     break;
31425             }
31426
31427             var sw = this.snap(w, wi, mw);
31428             var sh = this.snap(h, hi, mh);
31429             if(sw != w || sh != h){
31430                 switch(pos){
31431                     case "northeast":
31432                         y -= sh - h;
31433                     break;
31434                     case "north":
31435                         y -= sh - h;
31436                         break;
31437                     case "southwest":
31438                         x -= sw - w;
31439                     break;
31440                     case "west":
31441                         x -= sw - w;
31442                         break;
31443                     case "northwest":
31444                         x -= sw - w;
31445                         y -= sh - h;
31446                     break;
31447                 }
31448                 w = sw;
31449                 h = sh;
31450             }
31451
31452             if(this.preserveRatio){
31453                 switch(pos){
31454                     case "southeast":
31455                     case "east":
31456                         h = oh * (w/ow);
31457                         h = Math.min(Math.max(mh, h), mxh);
31458                         w = ow * (h/oh);
31459                        break;
31460                     case "south":
31461                         w = ow * (h/oh);
31462                         w = Math.min(Math.max(mw, w), mxw);
31463                         h = oh * (w/ow);
31464                         break;
31465                     case "northeast":
31466                         w = ow * (h/oh);
31467                         w = Math.min(Math.max(mw, w), mxw);
31468                         h = oh * (w/ow);
31469                     break;
31470                     case "north":
31471                         var tw = w;
31472                         w = ow * (h/oh);
31473                         w = Math.min(Math.max(mw, w), mxw);
31474                         h = oh * (w/ow);
31475                         x += (tw - w) / 2;
31476                         break;
31477                     case "southwest":
31478                         h = oh * (w/ow);
31479                         h = Math.min(Math.max(mh, h), mxh);
31480                         var tw = w;
31481                         w = ow * (h/oh);
31482                         x += tw - w;
31483                         break;
31484                     case "west":
31485                         var th = h;
31486                         h = oh * (w/ow);
31487                         h = Math.min(Math.max(mh, h), mxh);
31488                         y += (th - h) / 2;
31489                         var tw = w;
31490                         w = ow * (h/oh);
31491                         x += tw - w;
31492                        break;
31493                     case "northwest":
31494                         var tw = w;
31495                         var th = h;
31496                         h = oh * (w/ow);
31497                         h = Math.min(Math.max(mh, h), mxh);
31498                         w = ow * (h/oh);
31499                         y += th - h;
31500                         x += tw - w;
31501                        break;
31502
31503                 }
31504             }
31505             if (pos == 'hdrag') {
31506                 w = ow;
31507             }
31508             this.proxy.setBounds(x, y, w, h);
31509             if(this.dynamic){
31510                 this.resizeElement();
31511             }
31512             }catch(e){}
31513         }
31514         this.fireEvent("resizing", this, x, y, w, h, e);
31515     },
31516
31517     // private
31518     handleOver : function(){
31519         if(this.enabled){
31520             this.el.addClass("x-resizable-over");
31521         }
31522     },
31523
31524     // private
31525     handleOut : function(){
31526         if(!this.resizing){
31527             this.el.removeClass("x-resizable-over");
31528         }
31529     },
31530
31531     /**
31532      * Returns the element this component is bound to.
31533      * @return {Roo.Element}
31534      */
31535     getEl : function(){
31536         return this.el;
31537     },
31538
31539     /**
31540      * Returns the resizeChild element (or null).
31541      * @return {Roo.Element}
31542      */
31543     getResizeChild : function(){
31544         return this.resizeChild;
31545     },
31546     groupHandler : function()
31547     {
31548         
31549     },
31550     /**
31551      * Destroys this resizable. If the element was wrapped and
31552      * removeEl is not true then the element remains.
31553      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31554      */
31555     destroy : function(removeEl){
31556         this.proxy.remove();
31557         if(this.overlay){
31558             this.overlay.removeAllListeners();
31559             this.overlay.remove();
31560         }
31561         var ps = Roo.Resizable.positions;
31562         for(var k in ps){
31563             if(typeof ps[k] != "function" && this[ps[k]]){
31564                 var h = this[ps[k]];
31565                 h.el.removeAllListeners();
31566                 h.el.remove();
31567             }
31568         }
31569         if(removeEl){
31570             this.el.update("");
31571             this.el.remove();
31572         }
31573     }
31574 });
31575
31576 // private
31577 // hash to map config positions to true positions
31578 Roo.Resizable.positions = {
31579     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31580     hd: "hdrag"
31581 };
31582
31583 // private
31584 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31585     if(!this.tpl){
31586         // only initialize the template if resizable is used
31587         var tpl = Roo.DomHelper.createTemplate(
31588             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31589         );
31590         tpl.compile();
31591         Roo.Resizable.Handle.prototype.tpl = tpl;
31592     }
31593     this.position = pos;
31594     this.rz = rz;
31595     // show north drag fro topdra
31596     var handlepos = pos == 'hdrag' ? 'north' : pos;
31597     
31598     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31599     if (pos == 'hdrag') {
31600         this.el.setStyle('cursor', 'pointer');
31601     }
31602     this.el.unselectable();
31603     if(transparent){
31604         this.el.setOpacity(0);
31605     }
31606     this.el.on("mousedown", this.onMouseDown, this);
31607     if(!disableTrackOver){
31608         this.el.on("mouseover", this.onMouseOver, this);
31609         this.el.on("mouseout", this.onMouseOut, this);
31610     }
31611 };
31612
31613 // private
31614 Roo.Resizable.Handle.prototype = {
31615     afterResize : function(rz){
31616         Roo.log('after?');
31617         // do nothing
31618     },
31619     // private
31620     onMouseDown : function(e){
31621         this.rz.onMouseDown(this, e);
31622     },
31623     // private
31624     onMouseOver : function(e){
31625         this.rz.handleOver(this, e);
31626     },
31627     // private
31628     onMouseOut : function(e){
31629         this.rz.handleOut(this, e);
31630     }
31631 };/*
31632  * Based on:
31633  * Ext JS Library 1.1.1
31634  * Copyright(c) 2006-2007, Ext JS, LLC.
31635  *
31636  * Originally Released Under LGPL - original licence link has changed is not relivant.
31637  *
31638  * Fork - LGPL
31639  * <script type="text/javascript">
31640  */
31641
31642 /**
31643  * @class Roo.Editor
31644  * @extends Roo.Component
31645  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31646  * @constructor
31647  * Create a new Editor
31648  * @param {Roo.form.Field} field The Field object (or descendant)
31649  * @param {Object} config The config object
31650  */
31651 Roo.Editor = function(field, config){
31652     Roo.Editor.superclass.constructor.call(this, config);
31653     this.field = field;
31654     this.addEvents({
31655         /**
31656              * @event beforestartedit
31657              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31658              * false from the handler of this event.
31659              * @param {Editor} this
31660              * @param {Roo.Element} boundEl The underlying element bound to this editor
31661              * @param {Mixed} value The field value being set
31662              */
31663         "beforestartedit" : true,
31664         /**
31665              * @event startedit
31666              * Fires when this editor is displayed
31667              * @param {Roo.Element} boundEl The underlying element bound to this editor
31668              * @param {Mixed} value The starting field value
31669              */
31670         "startedit" : true,
31671         /**
31672              * @event beforecomplete
31673              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31674              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31675              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31676              * event will not fire since no edit actually occurred.
31677              * @param {Editor} this
31678              * @param {Mixed} value The current field value
31679              * @param {Mixed} startValue The original field value
31680              */
31681         "beforecomplete" : true,
31682         /**
31683              * @event complete
31684              * Fires after editing is complete and any changed value has been written to the underlying field.
31685              * @param {Editor} this
31686              * @param {Mixed} value The current field value
31687              * @param {Mixed} startValue The original field value
31688              */
31689         "complete" : true,
31690         /**
31691          * @event specialkey
31692          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31693          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31694          * @param {Roo.form.Field} this
31695          * @param {Roo.EventObject} e The event object
31696          */
31697         "specialkey" : true
31698     });
31699 };
31700
31701 Roo.extend(Roo.Editor, Roo.Component, {
31702     /**
31703      * @cfg {Boolean/String} autosize
31704      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31705      * or "height" to adopt the height only (defaults to false)
31706      */
31707     /**
31708      * @cfg {Boolean} revertInvalid
31709      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31710      * validation fails (defaults to true)
31711      */
31712     /**
31713      * @cfg {Boolean} ignoreNoChange
31714      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31715      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31716      * will never be ignored.
31717      */
31718     /**
31719      * @cfg {Boolean} hideEl
31720      * False to keep the bound element visible while the editor is displayed (defaults to true)
31721      */
31722     /**
31723      * @cfg {Mixed} value
31724      * The data value of the underlying field (defaults to "")
31725      */
31726     value : "",
31727     /**
31728      * @cfg {String} alignment
31729      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31730      */
31731     alignment: "c-c?",
31732     /**
31733      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31734      * for bottom-right shadow (defaults to "frame")
31735      */
31736     shadow : "frame",
31737     /**
31738      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31739      */
31740     constrain : false,
31741     /**
31742      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31743      */
31744     completeOnEnter : false,
31745     /**
31746      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31747      */
31748     cancelOnEsc : false,
31749     /**
31750      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31751      */
31752     updateEl : false,
31753
31754     // private
31755     onRender : function(ct, position){
31756         this.el = new Roo.Layer({
31757             shadow: this.shadow,
31758             cls: "x-editor",
31759             parentEl : ct,
31760             shim : this.shim,
31761             shadowOffset:4,
31762             id: this.id,
31763             constrain: this.constrain
31764         });
31765         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31766         if(this.field.msgTarget != 'title'){
31767             this.field.msgTarget = 'qtip';
31768         }
31769         this.field.render(this.el);
31770         if(Roo.isGecko){
31771             this.field.el.dom.setAttribute('autocomplete', 'off');
31772         }
31773         this.field.on("specialkey", this.onSpecialKey, this);
31774         if(this.swallowKeys){
31775             this.field.el.swallowEvent(['keydown','keypress']);
31776         }
31777         this.field.show();
31778         this.field.on("blur", this.onBlur, this);
31779         if(this.field.grow){
31780             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31781         }
31782     },
31783
31784     onSpecialKey : function(field, e)
31785     {
31786         //Roo.log('editor onSpecialKey');
31787         if(this.completeOnEnter && e.getKey() == e.ENTER){
31788             e.stopEvent();
31789             this.completeEdit();
31790             return;
31791         }
31792         // do not fire special key otherwise it might hide close the editor...
31793         if(e.getKey() == e.ENTER){    
31794             return;
31795         }
31796         if(this.cancelOnEsc && e.getKey() == e.ESC){
31797             this.cancelEdit();
31798             return;
31799         } 
31800         this.fireEvent('specialkey', field, e);
31801     
31802     },
31803
31804     /**
31805      * Starts the editing process and shows the editor.
31806      * @param {String/HTMLElement/Element} el The element to edit
31807      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31808       * to the innerHTML of el.
31809      */
31810     startEdit : function(el, value){
31811         if(this.editing){
31812             this.completeEdit();
31813         }
31814         this.boundEl = Roo.get(el);
31815         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31816         if(!this.rendered){
31817             this.render(this.parentEl || document.body);
31818         }
31819         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31820             return;
31821         }
31822         this.startValue = v;
31823         this.field.setValue(v);
31824         if(this.autoSize){
31825             var sz = this.boundEl.getSize();
31826             switch(this.autoSize){
31827                 case "width":
31828                 this.setSize(sz.width,  "");
31829                 break;
31830                 case "height":
31831                 this.setSize("",  sz.height);
31832                 break;
31833                 default:
31834                 this.setSize(sz.width,  sz.height);
31835             }
31836         }
31837         this.el.alignTo(this.boundEl, this.alignment);
31838         this.editing = true;
31839         if(Roo.QuickTips){
31840             Roo.QuickTips.disable();
31841         }
31842         this.show();
31843     },
31844
31845     /**
31846      * Sets the height and width of this editor.
31847      * @param {Number} width The new width
31848      * @param {Number} height The new height
31849      */
31850     setSize : function(w, h){
31851         this.field.setSize(w, h);
31852         if(this.el){
31853             this.el.sync();
31854         }
31855     },
31856
31857     /**
31858      * Realigns the editor to the bound field based on the current alignment config value.
31859      */
31860     realign : function(){
31861         this.el.alignTo(this.boundEl, this.alignment);
31862     },
31863
31864     /**
31865      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31866      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31867      */
31868     completeEdit : function(remainVisible){
31869         if(!this.editing){
31870             return;
31871         }
31872         var v = this.getValue();
31873         if(this.revertInvalid !== false && !this.field.isValid()){
31874             v = this.startValue;
31875             this.cancelEdit(true);
31876         }
31877         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31878             this.editing = false;
31879             this.hide();
31880             return;
31881         }
31882         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31883             this.editing = false;
31884             if(this.updateEl && this.boundEl){
31885                 this.boundEl.update(v);
31886             }
31887             if(remainVisible !== true){
31888                 this.hide();
31889             }
31890             this.fireEvent("complete", this, v, this.startValue);
31891         }
31892     },
31893
31894     // private
31895     onShow : function(){
31896         this.el.show();
31897         if(this.hideEl !== false){
31898             this.boundEl.hide();
31899         }
31900         this.field.show();
31901         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31902             this.fixIEFocus = true;
31903             this.deferredFocus.defer(50, this);
31904         }else{
31905             this.field.focus();
31906         }
31907         this.fireEvent("startedit", this.boundEl, this.startValue);
31908     },
31909
31910     deferredFocus : function(){
31911         if(this.editing){
31912             this.field.focus();
31913         }
31914     },
31915
31916     /**
31917      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
31918      * reverted to the original starting value.
31919      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
31920      * cancel (defaults to false)
31921      */
31922     cancelEdit : function(remainVisible){
31923         if(this.editing){
31924             this.setValue(this.startValue);
31925             if(remainVisible !== true){
31926                 this.hide();
31927             }
31928         }
31929     },
31930
31931     // private
31932     onBlur : function(){
31933         if(this.allowBlur !== true && this.editing){
31934             this.completeEdit();
31935         }
31936     },
31937
31938     // private
31939     onHide : function(){
31940         if(this.editing){
31941             this.completeEdit();
31942             return;
31943         }
31944         this.field.blur();
31945         if(this.field.collapse){
31946             this.field.collapse();
31947         }
31948         this.el.hide();
31949         if(this.hideEl !== false){
31950             this.boundEl.show();
31951         }
31952         if(Roo.QuickTips){
31953             Roo.QuickTips.enable();
31954         }
31955     },
31956
31957     /**
31958      * Sets the data value of the editor
31959      * @param {Mixed} value Any valid value supported by the underlying field
31960      */
31961     setValue : function(v){
31962         this.field.setValue(v);
31963     },
31964
31965     /**
31966      * Gets the data value of the editor
31967      * @return {Mixed} The data value
31968      */
31969     getValue : function(){
31970         return this.field.getValue();
31971     }
31972 });/*
31973  * Based on:
31974  * Ext JS Library 1.1.1
31975  * Copyright(c) 2006-2007, Ext JS, LLC.
31976  *
31977  * Originally Released Under LGPL - original licence link has changed is not relivant.
31978  *
31979  * Fork - LGPL
31980  * <script type="text/javascript">
31981  */
31982  
31983 /**
31984  * @class Roo.BasicDialog
31985  * @extends Roo.util.Observable
31986  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
31987  * <pre><code>
31988 var dlg = new Roo.BasicDialog("my-dlg", {
31989     height: 200,
31990     width: 300,
31991     minHeight: 100,
31992     minWidth: 150,
31993     modal: true,
31994     proxyDrag: true,
31995     shadow: true
31996 });
31997 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
31998 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
31999 dlg.addButton('Cancel', dlg.hide, dlg);
32000 dlg.show();
32001 </code></pre>
32002   <b>A Dialog should always be a direct child of the body element.</b>
32003  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32004  * @cfg {String} title Default text to display in the title bar (defaults to null)
32005  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32006  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32007  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32008  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32009  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32010  * (defaults to null with no animation)
32011  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32012  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32013  * property for valid values (defaults to 'all')
32014  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32015  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32016  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32017  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32018  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32019  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32020  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32021  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32022  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32023  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32024  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32025  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32026  * draggable = true (defaults to false)
32027  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32028  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32029  * shadow (defaults to false)
32030  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32031  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32032  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32033  * @cfg {Array} buttons Array of buttons
32034  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32035  * @constructor
32036  * Create a new BasicDialog.
32037  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32038  * @param {Object} config Configuration options
32039  */
32040 Roo.BasicDialog = function(el, config){
32041     this.el = Roo.get(el);
32042     var dh = Roo.DomHelper;
32043     if(!this.el && config && config.autoCreate){
32044         if(typeof config.autoCreate == "object"){
32045             if(!config.autoCreate.id){
32046                 config.autoCreate.id = el;
32047             }
32048             this.el = dh.append(document.body,
32049                         config.autoCreate, true);
32050         }else{
32051             this.el = dh.append(document.body,
32052                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32053         }
32054     }
32055     el = this.el;
32056     el.setDisplayed(true);
32057     el.hide = this.hideAction;
32058     this.id = el.id;
32059     el.addClass("x-dlg");
32060
32061     Roo.apply(this, config);
32062
32063     this.proxy = el.createProxy("x-dlg-proxy");
32064     this.proxy.hide = this.hideAction;
32065     this.proxy.setOpacity(.5);
32066     this.proxy.hide();
32067
32068     if(config.width){
32069         el.setWidth(config.width);
32070     }
32071     if(config.height){
32072         el.setHeight(config.height);
32073     }
32074     this.size = el.getSize();
32075     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32076         this.xy = [config.x,config.y];
32077     }else{
32078         this.xy = el.getCenterXY(true);
32079     }
32080     /** The header element @type Roo.Element */
32081     this.header = el.child("> .x-dlg-hd");
32082     /** The body element @type Roo.Element */
32083     this.body = el.child("> .x-dlg-bd");
32084     /** The footer element @type Roo.Element */
32085     this.footer = el.child("> .x-dlg-ft");
32086
32087     if(!this.header){
32088         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32089     }
32090     if(!this.body){
32091         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32092     }
32093
32094     this.header.unselectable();
32095     if(this.title){
32096         this.header.update(this.title);
32097     }
32098     // this element allows the dialog to be focused for keyboard event
32099     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32100     this.focusEl.swallowEvent("click", true);
32101
32102     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32103
32104     // wrap the body and footer for special rendering
32105     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32106     if(this.footer){
32107         this.bwrap.dom.appendChild(this.footer.dom);
32108     }
32109
32110     this.bg = this.el.createChild({
32111         tag: "div", cls:"x-dlg-bg",
32112         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32113     });
32114     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32115
32116
32117     if(this.autoScroll !== false && !this.autoTabs){
32118         this.body.setStyle("overflow", "auto");
32119     }
32120
32121     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32122
32123     if(this.closable !== false){
32124         this.el.addClass("x-dlg-closable");
32125         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32126         this.close.on("click", this.closeClick, this);
32127         this.close.addClassOnOver("x-dlg-close-over");
32128     }
32129     if(this.collapsible !== false){
32130         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32131         this.collapseBtn.on("click", this.collapseClick, this);
32132         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32133         this.header.on("dblclick", this.collapseClick, this);
32134     }
32135     if(this.resizable !== false){
32136         this.el.addClass("x-dlg-resizable");
32137         this.resizer = new Roo.Resizable(el, {
32138             minWidth: this.minWidth || 80,
32139             minHeight:this.minHeight || 80,
32140             handles: this.resizeHandles || "all",
32141             pinned: true
32142         });
32143         this.resizer.on("beforeresize", this.beforeResize, this);
32144         this.resizer.on("resize", this.onResize, this);
32145     }
32146     if(this.draggable !== false){
32147         el.addClass("x-dlg-draggable");
32148         if (!this.proxyDrag) {
32149             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32150         }
32151         else {
32152             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32153         }
32154         dd.setHandleElId(this.header.id);
32155         dd.endDrag = this.endMove.createDelegate(this);
32156         dd.startDrag = this.startMove.createDelegate(this);
32157         dd.onDrag = this.onDrag.createDelegate(this);
32158         dd.scroll = false;
32159         this.dd = dd;
32160     }
32161     if(this.modal){
32162         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32163         this.mask.enableDisplayMode("block");
32164         this.mask.hide();
32165         this.el.addClass("x-dlg-modal");
32166     }
32167     if(this.shadow){
32168         this.shadow = new Roo.Shadow({
32169             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32170             offset : this.shadowOffset
32171         });
32172     }else{
32173         this.shadowOffset = 0;
32174     }
32175     if(Roo.useShims && this.shim !== false){
32176         this.shim = this.el.createShim();
32177         this.shim.hide = this.hideAction;
32178         this.shim.hide();
32179     }else{
32180         this.shim = false;
32181     }
32182     if(this.autoTabs){
32183         this.initTabs();
32184     }
32185     if (this.buttons) { 
32186         var bts= this.buttons;
32187         this.buttons = [];
32188         Roo.each(bts, function(b) {
32189             this.addButton(b);
32190         }, this);
32191     }
32192     
32193     
32194     this.addEvents({
32195         /**
32196          * @event keydown
32197          * Fires when a key is pressed
32198          * @param {Roo.BasicDialog} this
32199          * @param {Roo.EventObject} e
32200          */
32201         "keydown" : true,
32202         /**
32203          * @event move
32204          * Fires when this dialog is moved by the user.
32205          * @param {Roo.BasicDialog} this
32206          * @param {Number} x The new page X
32207          * @param {Number} y The new page Y
32208          */
32209         "move" : true,
32210         /**
32211          * @event resize
32212          * Fires when this dialog is resized by the user.
32213          * @param {Roo.BasicDialog} this
32214          * @param {Number} width The new width
32215          * @param {Number} height The new height
32216          */
32217         "resize" : true,
32218         /**
32219          * @event beforehide
32220          * Fires before this dialog is hidden.
32221          * @param {Roo.BasicDialog} this
32222          */
32223         "beforehide" : true,
32224         /**
32225          * @event hide
32226          * Fires when this dialog is hidden.
32227          * @param {Roo.BasicDialog} this
32228          */
32229         "hide" : true,
32230         /**
32231          * @event beforeshow
32232          * Fires before this dialog is shown.
32233          * @param {Roo.BasicDialog} this
32234          */
32235         "beforeshow" : true,
32236         /**
32237          * @event show
32238          * Fires when this dialog is shown.
32239          * @param {Roo.BasicDialog} this
32240          */
32241         "show" : true
32242     });
32243     el.on("keydown", this.onKeyDown, this);
32244     el.on("mousedown", this.toFront, this);
32245     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32246     this.el.hide();
32247     Roo.DialogManager.register(this);
32248     Roo.BasicDialog.superclass.constructor.call(this);
32249 };
32250
32251 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32252     shadowOffset: Roo.isIE ? 6 : 5,
32253     minHeight: 80,
32254     minWidth: 200,
32255     minButtonWidth: 75,
32256     defaultButton: null,
32257     buttonAlign: "right",
32258     tabTag: 'div',
32259     firstShow: true,
32260
32261     /**
32262      * Sets the dialog title text
32263      * @param {String} text The title text to display
32264      * @return {Roo.BasicDialog} this
32265      */
32266     setTitle : function(text){
32267         this.header.update(text);
32268         return this;
32269     },
32270
32271     // private
32272     closeClick : function(){
32273         this.hide();
32274     },
32275
32276     // private
32277     collapseClick : function(){
32278         this[this.collapsed ? "expand" : "collapse"]();
32279     },
32280
32281     /**
32282      * Collapses the dialog to its minimized state (only the title bar is visible).
32283      * Equivalent to the user clicking the collapse dialog button.
32284      */
32285     collapse : function(){
32286         if(!this.collapsed){
32287             this.collapsed = true;
32288             this.el.addClass("x-dlg-collapsed");
32289             this.restoreHeight = this.el.getHeight();
32290             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32291         }
32292     },
32293
32294     /**
32295      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32296      * clicking the expand dialog button.
32297      */
32298     expand : function(){
32299         if(this.collapsed){
32300             this.collapsed = false;
32301             this.el.removeClass("x-dlg-collapsed");
32302             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32303         }
32304     },
32305
32306     /**
32307      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32308      * @return {Roo.TabPanel} The tabs component
32309      */
32310     initTabs : function(){
32311         var tabs = this.getTabs();
32312         while(tabs.getTab(0)){
32313             tabs.removeTab(0);
32314         }
32315         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32316             var dom = el.dom;
32317             tabs.addTab(Roo.id(dom), dom.title);
32318             dom.title = "";
32319         });
32320         tabs.activate(0);
32321         return tabs;
32322     },
32323
32324     // private
32325     beforeResize : function(){
32326         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32327     },
32328
32329     // private
32330     onResize : function(){
32331         this.refreshSize();
32332         this.syncBodyHeight();
32333         this.adjustAssets();
32334         this.focus();
32335         this.fireEvent("resize", this, this.size.width, this.size.height);
32336     },
32337
32338     // private
32339     onKeyDown : function(e){
32340         if(this.isVisible()){
32341             this.fireEvent("keydown", this, e);
32342         }
32343     },
32344
32345     /**
32346      * Resizes the dialog.
32347      * @param {Number} width
32348      * @param {Number} height
32349      * @return {Roo.BasicDialog} this
32350      */
32351     resizeTo : function(width, height){
32352         this.el.setSize(width, height);
32353         this.size = {width: width, height: height};
32354         this.syncBodyHeight();
32355         if(this.fixedcenter){
32356             this.center();
32357         }
32358         if(this.isVisible()){
32359             this.constrainXY();
32360             this.adjustAssets();
32361         }
32362         this.fireEvent("resize", this, width, height);
32363         return this;
32364     },
32365
32366
32367     /**
32368      * Resizes the dialog to fit the specified content size.
32369      * @param {Number} width
32370      * @param {Number} height
32371      * @return {Roo.BasicDialog} this
32372      */
32373     setContentSize : function(w, h){
32374         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32375         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32376         //if(!this.el.isBorderBox()){
32377             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32378             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32379         //}
32380         if(this.tabs){
32381             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32382             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32383         }
32384         this.resizeTo(w, h);
32385         return this;
32386     },
32387
32388     /**
32389      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32390      * executed in response to a particular key being pressed while the dialog is active.
32391      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32392      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32393      * @param {Function} fn The function to call
32394      * @param {Object} scope (optional) The scope of the function
32395      * @return {Roo.BasicDialog} this
32396      */
32397     addKeyListener : function(key, fn, scope){
32398         var keyCode, shift, ctrl, alt;
32399         if(typeof key == "object" && !(key instanceof Array)){
32400             keyCode = key["key"];
32401             shift = key["shift"];
32402             ctrl = key["ctrl"];
32403             alt = key["alt"];
32404         }else{
32405             keyCode = key;
32406         }
32407         var handler = function(dlg, e){
32408             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32409                 var k = e.getKey();
32410                 if(keyCode instanceof Array){
32411                     for(var i = 0, len = keyCode.length; i < len; i++){
32412                         if(keyCode[i] == k){
32413                           fn.call(scope || window, dlg, k, e);
32414                           return;
32415                         }
32416                     }
32417                 }else{
32418                     if(k == keyCode){
32419                         fn.call(scope || window, dlg, k, e);
32420                     }
32421                 }
32422             }
32423         };
32424         this.on("keydown", handler);
32425         return this;
32426     },
32427
32428     /**
32429      * Returns the TabPanel component (creates it if it doesn't exist).
32430      * Note: If you wish to simply check for the existence of tabs without creating them,
32431      * check for a null 'tabs' property.
32432      * @return {Roo.TabPanel} The tabs component
32433      */
32434     getTabs : function(){
32435         if(!this.tabs){
32436             this.el.addClass("x-dlg-auto-tabs");
32437             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32438             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32439         }
32440         return this.tabs;
32441     },
32442
32443     /**
32444      * Adds a button to the footer section of the dialog.
32445      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32446      * object or a valid Roo.DomHelper element config
32447      * @param {Function} handler The function called when the button is clicked
32448      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32449      * @return {Roo.Button} The new button
32450      */
32451     addButton : function(config, handler, scope){
32452         var dh = Roo.DomHelper;
32453         if(!this.footer){
32454             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32455         }
32456         if(!this.btnContainer){
32457             var tb = this.footer.createChild({
32458
32459                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32460                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32461             }, null, true);
32462             this.btnContainer = tb.firstChild.firstChild.firstChild;
32463         }
32464         var bconfig = {
32465             handler: handler,
32466             scope: scope,
32467             minWidth: this.minButtonWidth,
32468             hideParent:true
32469         };
32470         if(typeof config == "string"){
32471             bconfig.text = config;
32472         }else{
32473             if(config.tag){
32474                 bconfig.dhconfig = config;
32475             }else{
32476                 Roo.apply(bconfig, config);
32477             }
32478         }
32479         var fc = false;
32480         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32481             bconfig.position = Math.max(0, bconfig.position);
32482             fc = this.btnContainer.childNodes[bconfig.position];
32483         }
32484          
32485         var btn = new Roo.Button(
32486             fc ? 
32487                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32488                 : this.btnContainer.appendChild(document.createElement("td")),
32489             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32490             bconfig
32491         );
32492         this.syncBodyHeight();
32493         if(!this.buttons){
32494             /**
32495              * Array of all the buttons that have been added to this dialog via addButton
32496              * @type Array
32497              */
32498             this.buttons = [];
32499         }
32500         this.buttons.push(btn);
32501         return btn;
32502     },
32503
32504     /**
32505      * Sets the default button to be focused when the dialog is displayed.
32506      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32507      * @return {Roo.BasicDialog} this
32508      */
32509     setDefaultButton : function(btn){
32510         this.defaultButton = btn;
32511         return this;
32512     },
32513
32514     // private
32515     getHeaderFooterHeight : function(safe){
32516         var height = 0;
32517         if(this.header){
32518            height += this.header.getHeight();
32519         }
32520         if(this.footer){
32521            var fm = this.footer.getMargins();
32522             height += (this.footer.getHeight()+fm.top+fm.bottom);
32523         }
32524         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32525         height += this.centerBg.getPadding("tb");
32526         return height;
32527     },
32528
32529     // private
32530     syncBodyHeight : function()
32531     {
32532         var bd = this.body, // the text
32533             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32534             bw = this.bwrap;
32535         var height = this.size.height - this.getHeaderFooterHeight(false);
32536         bd.setHeight(height-bd.getMargins("tb"));
32537         var hh = this.header.getHeight();
32538         var h = this.size.height-hh;
32539         cb.setHeight(h);
32540         
32541         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32542         bw.setHeight(h-cb.getPadding("tb"));
32543         
32544         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32545         bd.setWidth(bw.getWidth(true));
32546         if(this.tabs){
32547             this.tabs.syncHeight();
32548             if(Roo.isIE){
32549                 this.tabs.el.repaint();
32550             }
32551         }
32552     },
32553
32554     /**
32555      * Restores the previous state of the dialog if Roo.state is configured.
32556      * @return {Roo.BasicDialog} this
32557      */
32558     restoreState : function(){
32559         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32560         if(box && box.width){
32561             this.xy = [box.x, box.y];
32562             this.resizeTo(box.width, box.height);
32563         }
32564         return this;
32565     },
32566
32567     // private
32568     beforeShow : function(){
32569         this.expand();
32570         if(this.fixedcenter){
32571             this.xy = this.el.getCenterXY(true);
32572         }
32573         if(this.modal){
32574             Roo.get(document.body).addClass("x-body-masked");
32575             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32576             this.mask.show();
32577         }
32578         this.constrainXY();
32579     },
32580
32581     // private
32582     animShow : function(){
32583         var b = Roo.get(this.animateTarget).getBox();
32584         this.proxy.setSize(b.width, b.height);
32585         this.proxy.setLocation(b.x, b.y);
32586         this.proxy.show();
32587         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32588                     true, .35, this.showEl.createDelegate(this));
32589     },
32590
32591     /**
32592      * Shows the dialog.
32593      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32594      * @return {Roo.BasicDialog} this
32595      */
32596     show : function(animateTarget){
32597         if (this.fireEvent("beforeshow", this) === false){
32598             return;
32599         }
32600         if(this.syncHeightBeforeShow){
32601             this.syncBodyHeight();
32602         }else if(this.firstShow){
32603             this.firstShow = false;
32604             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32605         }
32606         this.animateTarget = animateTarget || this.animateTarget;
32607         if(!this.el.isVisible()){
32608             this.beforeShow();
32609             if(this.animateTarget && Roo.get(this.animateTarget)){
32610                 this.animShow();
32611             }else{
32612                 this.showEl();
32613             }
32614         }
32615         return this;
32616     },
32617
32618     // private
32619     showEl : function(){
32620         this.proxy.hide();
32621         this.el.setXY(this.xy);
32622         this.el.show();
32623         this.adjustAssets(true);
32624         this.toFront();
32625         this.focus();
32626         // IE peekaboo bug - fix found by Dave Fenwick
32627         if(Roo.isIE){
32628             this.el.repaint();
32629         }
32630         this.fireEvent("show", this);
32631     },
32632
32633     /**
32634      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32635      * dialog itself will receive focus.
32636      */
32637     focus : function(){
32638         if(this.defaultButton){
32639             this.defaultButton.focus();
32640         }else{
32641             this.focusEl.focus();
32642         }
32643     },
32644
32645     // private
32646     constrainXY : function(){
32647         if(this.constraintoviewport !== false){
32648             if(!this.viewSize){
32649                 if(this.container){
32650                     var s = this.container.getSize();
32651                     this.viewSize = [s.width, s.height];
32652                 }else{
32653                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32654                 }
32655             }
32656             var s = Roo.get(this.container||document).getScroll();
32657
32658             var x = this.xy[0], y = this.xy[1];
32659             var w = this.size.width, h = this.size.height;
32660             var vw = this.viewSize[0], vh = this.viewSize[1];
32661             // only move it if it needs it
32662             var moved = false;
32663             // first validate right/bottom
32664             if(x + w > vw+s.left){
32665                 x = vw - w;
32666                 moved = true;
32667             }
32668             if(y + h > vh+s.top){
32669                 y = vh - h;
32670                 moved = true;
32671             }
32672             // then make sure top/left isn't negative
32673             if(x < s.left){
32674                 x = s.left;
32675                 moved = true;
32676             }
32677             if(y < s.top){
32678                 y = s.top;
32679                 moved = true;
32680             }
32681             if(moved){
32682                 // cache xy
32683                 this.xy = [x, y];
32684                 if(this.isVisible()){
32685                     this.el.setLocation(x, y);
32686                     this.adjustAssets();
32687                 }
32688             }
32689         }
32690     },
32691
32692     // private
32693     onDrag : function(){
32694         if(!this.proxyDrag){
32695             this.xy = this.el.getXY();
32696             this.adjustAssets();
32697         }
32698     },
32699
32700     // private
32701     adjustAssets : function(doShow){
32702         var x = this.xy[0], y = this.xy[1];
32703         var w = this.size.width, h = this.size.height;
32704         if(doShow === true){
32705             if(this.shadow){
32706                 this.shadow.show(this.el);
32707             }
32708             if(this.shim){
32709                 this.shim.show();
32710             }
32711         }
32712         if(this.shadow && this.shadow.isVisible()){
32713             this.shadow.show(this.el);
32714         }
32715         if(this.shim && this.shim.isVisible()){
32716             this.shim.setBounds(x, y, w, h);
32717         }
32718     },
32719
32720     // private
32721     adjustViewport : function(w, h){
32722         if(!w || !h){
32723             w = Roo.lib.Dom.getViewWidth();
32724             h = Roo.lib.Dom.getViewHeight();
32725         }
32726         // cache the size
32727         this.viewSize = [w, h];
32728         if(this.modal && this.mask.isVisible()){
32729             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32730             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32731         }
32732         if(this.isVisible()){
32733             this.constrainXY();
32734         }
32735     },
32736
32737     /**
32738      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32739      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32740      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32741      */
32742     destroy : function(removeEl){
32743         if(this.isVisible()){
32744             this.animateTarget = null;
32745             this.hide();
32746         }
32747         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32748         if(this.tabs){
32749             this.tabs.destroy(removeEl);
32750         }
32751         Roo.destroy(
32752              this.shim,
32753              this.proxy,
32754              this.resizer,
32755              this.close,
32756              this.mask
32757         );
32758         if(this.dd){
32759             this.dd.unreg();
32760         }
32761         if(this.buttons){
32762            for(var i = 0, len = this.buttons.length; i < len; i++){
32763                this.buttons[i].destroy();
32764            }
32765         }
32766         this.el.removeAllListeners();
32767         if(removeEl === true){
32768             this.el.update("");
32769             this.el.remove();
32770         }
32771         Roo.DialogManager.unregister(this);
32772     },
32773
32774     // private
32775     startMove : function(){
32776         if(this.proxyDrag){
32777             this.proxy.show();
32778         }
32779         if(this.constraintoviewport !== false){
32780             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32781         }
32782     },
32783
32784     // private
32785     endMove : function(){
32786         if(!this.proxyDrag){
32787             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32788         }else{
32789             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32790             this.proxy.hide();
32791         }
32792         this.refreshSize();
32793         this.adjustAssets();
32794         this.focus();
32795         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32796     },
32797
32798     /**
32799      * Brings this dialog to the front of any other visible dialogs
32800      * @return {Roo.BasicDialog} this
32801      */
32802     toFront : function(){
32803         Roo.DialogManager.bringToFront(this);
32804         return this;
32805     },
32806
32807     /**
32808      * Sends this dialog to the back (under) of any other visible dialogs
32809      * @return {Roo.BasicDialog} this
32810      */
32811     toBack : function(){
32812         Roo.DialogManager.sendToBack(this);
32813         return this;
32814     },
32815
32816     /**
32817      * Centers this dialog in the viewport
32818      * @return {Roo.BasicDialog} this
32819      */
32820     center : function(){
32821         var xy = this.el.getCenterXY(true);
32822         this.moveTo(xy[0], xy[1]);
32823         return this;
32824     },
32825
32826     /**
32827      * Moves the dialog's top-left corner to the specified point
32828      * @param {Number} x
32829      * @param {Number} y
32830      * @return {Roo.BasicDialog} this
32831      */
32832     moveTo : function(x, y){
32833         this.xy = [x,y];
32834         if(this.isVisible()){
32835             this.el.setXY(this.xy);
32836             this.adjustAssets();
32837         }
32838         return this;
32839     },
32840
32841     /**
32842      * Aligns the dialog to the specified element
32843      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32844      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32845      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32846      * @return {Roo.BasicDialog} this
32847      */
32848     alignTo : function(element, position, offsets){
32849         this.xy = this.el.getAlignToXY(element, position, offsets);
32850         if(this.isVisible()){
32851             this.el.setXY(this.xy);
32852             this.adjustAssets();
32853         }
32854         return this;
32855     },
32856
32857     /**
32858      * Anchors an element to another element and realigns it when the window is resized.
32859      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32860      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32861      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32862      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32863      * is a number, it is used as the buffer delay (defaults to 50ms).
32864      * @return {Roo.BasicDialog} this
32865      */
32866     anchorTo : function(el, alignment, offsets, monitorScroll){
32867         var action = function(){
32868             this.alignTo(el, alignment, offsets);
32869         };
32870         Roo.EventManager.onWindowResize(action, this);
32871         var tm = typeof monitorScroll;
32872         if(tm != 'undefined'){
32873             Roo.EventManager.on(window, 'scroll', action, this,
32874                 {buffer: tm == 'number' ? monitorScroll : 50});
32875         }
32876         action.call(this);
32877         return this;
32878     },
32879
32880     /**
32881      * Returns true if the dialog is visible
32882      * @return {Boolean}
32883      */
32884     isVisible : function(){
32885         return this.el.isVisible();
32886     },
32887
32888     // private
32889     animHide : function(callback){
32890         var b = Roo.get(this.animateTarget).getBox();
32891         this.proxy.show();
32892         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32893         this.el.hide();
32894         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32895                     this.hideEl.createDelegate(this, [callback]));
32896     },
32897
32898     /**
32899      * Hides the dialog.
32900      * @param {Function} callback (optional) Function to call when the dialog is hidden
32901      * @return {Roo.BasicDialog} this
32902      */
32903     hide : function(callback){
32904         if (this.fireEvent("beforehide", this) === false){
32905             return;
32906         }
32907         if(this.shadow){
32908             this.shadow.hide();
32909         }
32910         if(this.shim) {
32911           this.shim.hide();
32912         }
32913         // sometimes animateTarget seems to get set.. causing problems...
32914         // this just double checks..
32915         if(this.animateTarget && Roo.get(this.animateTarget)) {
32916            this.animHide(callback);
32917         }else{
32918             this.el.hide();
32919             this.hideEl(callback);
32920         }
32921         return this;
32922     },
32923
32924     // private
32925     hideEl : function(callback){
32926         this.proxy.hide();
32927         if(this.modal){
32928             this.mask.hide();
32929             Roo.get(document.body).removeClass("x-body-masked");
32930         }
32931         this.fireEvent("hide", this);
32932         if(typeof callback == "function"){
32933             callback();
32934         }
32935     },
32936
32937     // private
32938     hideAction : function(){
32939         this.setLeft("-10000px");
32940         this.setTop("-10000px");
32941         this.setStyle("visibility", "hidden");
32942     },
32943
32944     // private
32945     refreshSize : function(){
32946         this.size = this.el.getSize();
32947         this.xy = this.el.getXY();
32948         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
32949     },
32950
32951     // private
32952     // z-index is managed by the DialogManager and may be overwritten at any time
32953     setZIndex : function(index){
32954         if(this.modal){
32955             this.mask.setStyle("z-index", index);
32956         }
32957         if(this.shim){
32958             this.shim.setStyle("z-index", ++index);
32959         }
32960         if(this.shadow){
32961             this.shadow.setZIndex(++index);
32962         }
32963         this.el.setStyle("z-index", ++index);
32964         if(this.proxy){
32965             this.proxy.setStyle("z-index", ++index);
32966         }
32967         if(this.resizer){
32968             this.resizer.proxy.setStyle("z-index", ++index);
32969         }
32970
32971         this.lastZIndex = index;
32972     },
32973
32974     /**
32975      * Returns the element for this dialog
32976      * @return {Roo.Element} The underlying dialog Element
32977      */
32978     getEl : function(){
32979         return this.el;
32980     }
32981 });
32982
32983 /**
32984  * @class Roo.DialogManager
32985  * Provides global access to BasicDialogs that have been created and
32986  * support for z-indexing (layering) multiple open dialogs.
32987  */
32988 Roo.DialogManager = function(){
32989     var list = {};
32990     var accessList = [];
32991     var front = null;
32992
32993     // private
32994     var sortDialogs = function(d1, d2){
32995         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
32996     };
32997
32998     // private
32999     var orderDialogs = function(){
33000         accessList.sort(sortDialogs);
33001         var seed = Roo.DialogManager.zseed;
33002         for(var i = 0, len = accessList.length; i < len; i++){
33003             var dlg = accessList[i];
33004             if(dlg){
33005                 dlg.setZIndex(seed + (i*10));
33006             }
33007         }
33008     };
33009
33010     return {
33011         /**
33012          * The starting z-index for BasicDialogs (defaults to 9000)
33013          * @type Number The z-index value
33014          */
33015         zseed : 9000,
33016
33017         // private
33018         register : function(dlg){
33019             list[dlg.id] = dlg;
33020             accessList.push(dlg);
33021         },
33022
33023         // private
33024         unregister : function(dlg){
33025             delete list[dlg.id];
33026             var i=0;
33027             var len=0;
33028             if(!accessList.indexOf){
33029                 for(  i = 0, len = accessList.length; i < len; i++){
33030                     if(accessList[i] == dlg){
33031                         accessList.splice(i, 1);
33032                         return;
33033                     }
33034                 }
33035             }else{
33036                  i = accessList.indexOf(dlg);
33037                 if(i != -1){
33038                     accessList.splice(i, 1);
33039                 }
33040             }
33041         },
33042
33043         /**
33044          * Gets a registered dialog by id
33045          * @param {String/Object} id The id of the dialog or a dialog
33046          * @return {Roo.BasicDialog} this
33047          */
33048         get : function(id){
33049             return typeof id == "object" ? id : list[id];
33050         },
33051
33052         /**
33053          * Brings the specified dialog to the front
33054          * @param {String/Object} dlg The id of the dialog or a dialog
33055          * @return {Roo.BasicDialog} this
33056          */
33057         bringToFront : function(dlg){
33058             dlg = this.get(dlg);
33059             if(dlg != front){
33060                 front = dlg;
33061                 dlg._lastAccess = new Date().getTime();
33062                 orderDialogs();
33063             }
33064             return dlg;
33065         },
33066
33067         /**
33068          * Sends the specified dialog to the back
33069          * @param {String/Object} dlg The id of the dialog or a dialog
33070          * @return {Roo.BasicDialog} this
33071          */
33072         sendToBack : function(dlg){
33073             dlg = this.get(dlg);
33074             dlg._lastAccess = -(new Date().getTime());
33075             orderDialogs();
33076             return dlg;
33077         },
33078
33079         /**
33080          * Hides all dialogs
33081          */
33082         hideAll : function(){
33083             for(var id in list){
33084                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33085                     list[id].hide();
33086                 }
33087             }
33088         }
33089     };
33090 }();
33091
33092 /**
33093  * @class Roo.LayoutDialog
33094  * @extends Roo.BasicDialog
33095  * Dialog which provides adjustments for working with a layout in a Dialog.
33096  * Add your necessary layout config options to the dialog's config.<br>
33097  * Example usage (including a nested layout):
33098  * <pre><code>
33099 if(!dialog){
33100     dialog = new Roo.LayoutDialog("download-dlg", {
33101         modal: true,
33102         width:600,
33103         height:450,
33104         shadow:true,
33105         minWidth:500,
33106         minHeight:350,
33107         autoTabs:true,
33108         proxyDrag:true,
33109         // layout config merges with the dialog config
33110         center:{
33111             tabPosition: "top",
33112             alwaysShowTabs: true
33113         }
33114     });
33115     dialog.addKeyListener(27, dialog.hide, dialog);
33116     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33117     dialog.addButton("Build It!", this.getDownload, this);
33118
33119     // we can even add nested layouts
33120     var innerLayout = new Roo.BorderLayout("dl-inner", {
33121         east: {
33122             initialSize: 200,
33123             autoScroll:true,
33124             split:true
33125         },
33126         center: {
33127             autoScroll:true
33128         }
33129     });
33130     innerLayout.beginUpdate();
33131     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33132     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33133     innerLayout.endUpdate(true);
33134
33135     var layout = dialog.getLayout();
33136     layout.beginUpdate();
33137     layout.add("center", new Roo.ContentPanel("standard-panel",
33138                         {title: "Download the Source", fitToFrame:true}));
33139     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33140                {title: "Build your own roo.js"}));
33141     layout.getRegion("center").showPanel(sp);
33142     layout.endUpdate();
33143 }
33144 </code></pre>
33145     * @constructor
33146     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33147     * @param {Object} config configuration options
33148   */
33149 Roo.LayoutDialog = function(el, cfg){
33150     
33151     var config=  cfg;
33152     if (typeof(cfg) == 'undefined') {
33153         config = Roo.apply({}, el);
33154         // not sure why we use documentElement here.. - it should always be body.
33155         // IE7 borks horribly if we use documentElement.
33156         // webkit also does not like documentElement - it creates a body element...
33157         el = Roo.get( document.body || document.documentElement ).createChild();
33158         //config.autoCreate = true;
33159     }
33160     
33161     
33162     config.autoTabs = false;
33163     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33164     this.body.setStyle({overflow:"hidden", position:"relative"});
33165     this.layout = new Roo.BorderLayout(this.body.dom, config);
33166     this.layout.monitorWindowResize = false;
33167     this.el.addClass("x-dlg-auto-layout");
33168     // fix case when center region overwrites center function
33169     this.center = Roo.BasicDialog.prototype.center;
33170     this.on("show", this.layout.layout, this.layout, true);
33171     if (config.items) {
33172         var xitems = config.items;
33173         delete config.items;
33174         Roo.each(xitems, this.addxtype, this);
33175     }
33176     
33177     
33178 };
33179 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33180     /**
33181      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33182      * @deprecated
33183      */
33184     endUpdate : function(){
33185         this.layout.endUpdate();
33186     },
33187
33188     /**
33189      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33190      *  @deprecated
33191      */
33192     beginUpdate : function(){
33193         this.layout.beginUpdate();
33194     },
33195
33196     /**
33197      * Get the BorderLayout for this dialog
33198      * @return {Roo.BorderLayout}
33199      */
33200     getLayout : function(){
33201         return this.layout;
33202     },
33203
33204     showEl : function(){
33205         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33206         if(Roo.isIE7){
33207             this.layout.layout();
33208         }
33209     },
33210
33211     // private
33212     // Use the syncHeightBeforeShow config option to control this automatically
33213     syncBodyHeight : function(){
33214         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33215         if(this.layout){this.layout.layout();}
33216     },
33217     
33218       /**
33219      * Add an xtype element (actually adds to the layout.)
33220      * @return {Object} xdata xtype object data.
33221      */
33222     
33223     addxtype : function(c) {
33224         return this.layout.addxtype(c);
33225     }
33226 });/*
33227  * Based on:
33228  * Ext JS Library 1.1.1
33229  * Copyright(c) 2006-2007, Ext JS, LLC.
33230  *
33231  * Originally Released Under LGPL - original licence link has changed is not relivant.
33232  *
33233  * Fork - LGPL
33234  * <script type="text/javascript">
33235  */
33236  
33237 /**
33238  * @class Roo.MessageBox
33239  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33240  * Example usage:
33241  *<pre><code>
33242 // Basic alert:
33243 Roo.Msg.alert('Status', 'Changes saved successfully.');
33244
33245 // Prompt for user data:
33246 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33247     if (btn == 'ok'){
33248         // process text value...
33249     }
33250 });
33251
33252 // Show a dialog using config options:
33253 Roo.Msg.show({
33254    title:'Save Changes?',
33255    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33256    buttons: Roo.Msg.YESNOCANCEL,
33257    fn: processResult,
33258    animEl: 'elId'
33259 });
33260 </code></pre>
33261  * @singleton
33262  */
33263 Roo.MessageBox = function(){
33264     var dlg, opt, mask, waitTimer;
33265     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33266     var buttons, activeTextEl, bwidth;
33267
33268     // private
33269     var handleButton = function(button){
33270         dlg.hide();
33271         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33272     };
33273
33274     // private
33275     var handleHide = function(){
33276         if(opt && opt.cls){
33277             dlg.el.removeClass(opt.cls);
33278         }
33279         if(waitTimer){
33280             Roo.TaskMgr.stop(waitTimer);
33281             waitTimer = null;
33282         }
33283     };
33284
33285     // private
33286     var updateButtons = function(b){
33287         var width = 0;
33288         if(!b){
33289             buttons["ok"].hide();
33290             buttons["cancel"].hide();
33291             buttons["yes"].hide();
33292             buttons["no"].hide();
33293             dlg.footer.dom.style.display = 'none';
33294             return width;
33295         }
33296         dlg.footer.dom.style.display = '';
33297         for(var k in buttons){
33298             if(typeof buttons[k] != "function"){
33299                 if(b[k]){
33300                     buttons[k].show();
33301                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33302                     width += buttons[k].el.getWidth()+15;
33303                 }else{
33304                     buttons[k].hide();
33305                 }
33306             }
33307         }
33308         return width;
33309     };
33310
33311     // private
33312     var handleEsc = function(d, k, e){
33313         if(opt && opt.closable !== false){
33314             dlg.hide();
33315         }
33316         if(e){
33317             e.stopEvent();
33318         }
33319     };
33320
33321     return {
33322         /**
33323          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33324          * @return {Roo.BasicDialog} The BasicDialog element
33325          */
33326         getDialog : function(){
33327            if(!dlg){
33328                 dlg = new Roo.BasicDialog("x-msg-box", {
33329                     autoCreate : true,
33330                     shadow: true,
33331                     draggable: true,
33332                     resizable:false,
33333                     constraintoviewport:false,
33334                     fixedcenter:true,
33335                     collapsible : false,
33336                     shim:true,
33337                     modal: true,
33338                     width:400, height:100,
33339                     buttonAlign:"center",
33340                     closeClick : function(){
33341                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33342                             handleButton("no");
33343                         }else{
33344                             handleButton("cancel");
33345                         }
33346                     }
33347                 });
33348                 dlg.on("hide", handleHide);
33349                 mask = dlg.mask;
33350                 dlg.addKeyListener(27, handleEsc);
33351                 buttons = {};
33352                 var bt = this.buttonText;
33353                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33354                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33355                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33356                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33357                 bodyEl = dlg.body.createChild({
33358
33359                     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>'
33360                 });
33361                 msgEl = bodyEl.dom.firstChild;
33362                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33363                 textboxEl.enableDisplayMode();
33364                 textboxEl.addKeyListener([10,13], function(){
33365                     if(dlg.isVisible() && opt && opt.buttons){
33366                         if(opt.buttons.ok){
33367                             handleButton("ok");
33368                         }else if(opt.buttons.yes){
33369                             handleButton("yes");
33370                         }
33371                     }
33372                 });
33373                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33374                 textareaEl.enableDisplayMode();
33375                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33376                 progressEl.enableDisplayMode();
33377                 var pf = progressEl.dom.firstChild;
33378                 if (pf) {
33379                     pp = Roo.get(pf.firstChild);
33380                     pp.setHeight(pf.offsetHeight);
33381                 }
33382                 
33383             }
33384             return dlg;
33385         },
33386
33387         /**
33388          * Updates the message box body text
33389          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33390          * the XHTML-compliant non-breaking space character '&amp;#160;')
33391          * @return {Roo.MessageBox} This message box
33392          */
33393         updateText : function(text){
33394             if(!dlg.isVisible() && !opt.width){
33395                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33396             }
33397             msgEl.innerHTML = text || '&#160;';
33398       
33399             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33400             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33401             var w = Math.max(
33402                     Math.min(opt.width || cw , this.maxWidth), 
33403                     Math.max(opt.minWidth || this.minWidth, bwidth)
33404             );
33405             if(opt.prompt){
33406                 activeTextEl.setWidth(w);
33407             }
33408             if(dlg.isVisible()){
33409                 dlg.fixedcenter = false;
33410             }
33411             // to big, make it scroll. = But as usual stupid IE does not support
33412             // !important..
33413             
33414             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33415                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33416                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33417             } else {
33418                 bodyEl.dom.style.height = '';
33419                 bodyEl.dom.style.overflowY = '';
33420             }
33421             if (cw > w) {
33422                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33423             } else {
33424                 bodyEl.dom.style.overflowX = '';
33425             }
33426             
33427             dlg.setContentSize(w, bodyEl.getHeight());
33428             if(dlg.isVisible()){
33429                 dlg.fixedcenter = true;
33430             }
33431             return this;
33432         },
33433
33434         /**
33435          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33436          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33437          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33438          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33439          * @return {Roo.MessageBox} This message box
33440          */
33441         updateProgress : function(value, text){
33442             if(text){
33443                 this.updateText(text);
33444             }
33445             if (pp) { // weird bug on my firefox - for some reason this is not defined
33446                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33447             }
33448             return this;
33449         },        
33450
33451         /**
33452          * Returns true if the message box is currently displayed
33453          * @return {Boolean} True if the message box is visible, else false
33454          */
33455         isVisible : function(){
33456             return dlg && dlg.isVisible();  
33457         },
33458
33459         /**
33460          * Hides the message box if it is displayed
33461          */
33462         hide : function(){
33463             if(this.isVisible()){
33464                 dlg.hide();
33465             }  
33466         },
33467
33468         /**
33469          * Displays a new message box, or reinitializes an existing message box, based on the config options
33470          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33471          * The following config object properties are supported:
33472          * <pre>
33473 Property    Type             Description
33474 ----------  ---------------  ------------------------------------------------------------------------------------
33475 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33476                                    closes (defaults to undefined)
33477 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33478                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33479 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33480                                    progress and wait dialogs will ignore this property and always hide the
33481                                    close button as they can only be closed programmatically.
33482 cls               String           A custom CSS class to apply to the message box element
33483 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33484                                    displayed (defaults to 75)
33485 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33486                                    function will be btn (the name of the button that was clicked, if applicable,
33487                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33488                                    Progress and wait dialogs will ignore this option since they do not respond to
33489                                    user actions and can only be closed programmatically, so any required function
33490                                    should be called by the same code after it closes the dialog.
33491 icon              String           A CSS class that provides a background image to be used as an icon for
33492                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33493 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33494 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33495 modal             Boolean          False to allow user interaction with the page while the message box is
33496                                    displayed (defaults to true)
33497 msg               String           A string that will replace the existing message box body text (defaults
33498                                    to the XHTML-compliant non-breaking space character '&#160;')
33499 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33500 progress          Boolean          True to display a progress bar (defaults to false)
33501 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33502 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33503 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33504 title             String           The title text
33505 value             String           The string value to set into the active textbox element if displayed
33506 wait              Boolean          True to display a progress bar (defaults to false)
33507 width             Number           The width of the dialog in pixels
33508 </pre>
33509          *
33510          * Example usage:
33511          * <pre><code>
33512 Roo.Msg.show({
33513    title: 'Address',
33514    msg: 'Please enter your address:',
33515    width: 300,
33516    buttons: Roo.MessageBox.OKCANCEL,
33517    multiline: true,
33518    fn: saveAddress,
33519    animEl: 'addAddressBtn'
33520 });
33521 </code></pre>
33522          * @param {Object} config Configuration options
33523          * @return {Roo.MessageBox} This message box
33524          */
33525         show : function(options)
33526         {
33527             
33528             // this causes nightmares if you show one dialog after another
33529             // especially on callbacks..
33530              
33531             if(this.isVisible()){
33532                 
33533                 this.hide();
33534                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33535                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33536                 Roo.log("New Dialog Message:" +  options.msg )
33537                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33538                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33539                 
33540             }
33541             var d = this.getDialog();
33542             opt = options;
33543             d.setTitle(opt.title || "&#160;");
33544             d.close.setDisplayed(opt.closable !== false);
33545             activeTextEl = textboxEl;
33546             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33547             if(opt.prompt){
33548                 if(opt.multiline){
33549                     textboxEl.hide();
33550                     textareaEl.show();
33551                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33552                         opt.multiline : this.defaultTextHeight);
33553                     activeTextEl = textareaEl;
33554                 }else{
33555                     textboxEl.show();
33556                     textareaEl.hide();
33557                 }
33558             }else{
33559                 textboxEl.hide();
33560                 textareaEl.hide();
33561             }
33562             progressEl.setDisplayed(opt.progress === true);
33563             this.updateProgress(0);
33564             activeTextEl.dom.value = opt.value || "";
33565             if(opt.prompt){
33566                 dlg.setDefaultButton(activeTextEl);
33567             }else{
33568                 var bs = opt.buttons;
33569                 var db = null;
33570                 if(bs && bs.ok){
33571                     db = buttons["ok"];
33572                 }else if(bs && bs.yes){
33573                     db = buttons["yes"];
33574                 }
33575                 dlg.setDefaultButton(db);
33576             }
33577             bwidth = updateButtons(opt.buttons);
33578             this.updateText(opt.msg);
33579             if(opt.cls){
33580                 d.el.addClass(opt.cls);
33581             }
33582             d.proxyDrag = opt.proxyDrag === true;
33583             d.modal = opt.modal !== false;
33584             d.mask = opt.modal !== false ? mask : false;
33585             if(!d.isVisible()){
33586                 // force it to the end of the z-index stack so it gets a cursor in FF
33587                 document.body.appendChild(dlg.el.dom);
33588                 d.animateTarget = null;
33589                 d.show(options.animEl);
33590             }
33591             return this;
33592         },
33593
33594         /**
33595          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33596          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33597          * and closing the message box when the process is complete.
33598          * @param {String} title The title bar text
33599          * @param {String} msg The message box body text
33600          * @return {Roo.MessageBox} This message box
33601          */
33602         progress : function(title, msg){
33603             this.show({
33604                 title : title,
33605                 msg : msg,
33606                 buttons: false,
33607                 progress:true,
33608                 closable:false,
33609                 minWidth: this.minProgressWidth,
33610                 modal : true
33611             });
33612             return this;
33613         },
33614
33615         /**
33616          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33617          * If a callback function is passed it will be called after the user clicks the button, and the
33618          * id of the button that was clicked will be passed as the only parameter to the callback
33619          * (could also be the top-right close button).
33620          * @param {String} title The title bar text
33621          * @param {String} msg The message box body text
33622          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33623          * @param {Object} scope (optional) The scope of the callback function
33624          * @return {Roo.MessageBox} This message box
33625          */
33626         alert : function(title, msg, fn, scope){
33627             this.show({
33628                 title : title,
33629                 msg : msg,
33630                 buttons: this.OK,
33631                 fn: fn,
33632                 scope : scope,
33633                 modal : true
33634             });
33635             return this;
33636         },
33637
33638         /**
33639          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33640          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33641          * You are responsible for closing the message box when the process is complete.
33642          * @param {String} msg The message box body text
33643          * @param {String} title (optional) The title bar text
33644          * @return {Roo.MessageBox} This message box
33645          */
33646         wait : function(msg, title){
33647             this.show({
33648                 title : title,
33649                 msg : msg,
33650                 buttons: false,
33651                 closable:false,
33652                 progress:true,
33653                 modal:true,
33654                 width:300,
33655                 wait:true
33656             });
33657             waitTimer = Roo.TaskMgr.start({
33658                 run: function(i){
33659                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33660                 },
33661                 interval: 1000
33662             });
33663             return this;
33664         },
33665
33666         /**
33667          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33668          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33669          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33670          * @param {String} title The title bar text
33671          * @param {String} msg The message box body text
33672          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33673          * @param {Object} scope (optional) The scope of the callback function
33674          * @return {Roo.MessageBox} This message box
33675          */
33676         confirm : function(title, msg, fn, scope){
33677             this.show({
33678                 title : title,
33679                 msg : msg,
33680                 buttons: this.YESNO,
33681                 fn: fn,
33682                 scope : scope,
33683                 modal : true
33684             });
33685             return this;
33686         },
33687
33688         /**
33689          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33690          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33691          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33692          * (could also be the top-right close button) and the text that was entered will be passed as the two
33693          * parameters to the callback.
33694          * @param {String} title The title bar text
33695          * @param {String} msg The message box body text
33696          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33697          * @param {Object} scope (optional) The scope of the callback function
33698          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33699          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33700          * @return {Roo.MessageBox} This message box
33701          */
33702         prompt : function(title, msg, fn, scope, multiline){
33703             this.show({
33704                 title : title,
33705                 msg : msg,
33706                 buttons: this.OKCANCEL,
33707                 fn: fn,
33708                 minWidth:250,
33709                 scope : scope,
33710                 prompt:true,
33711                 multiline: multiline,
33712                 modal : true
33713             });
33714             return this;
33715         },
33716
33717         /**
33718          * Button config that displays a single OK button
33719          * @type Object
33720          */
33721         OK : {ok:true},
33722         /**
33723          * Button config that displays Yes and No buttons
33724          * @type Object
33725          */
33726         YESNO : {yes:true, no:true},
33727         /**
33728          * Button config that displays OK and Cancel buttons
33729          * @type Object
33730          */
33731         OKCANCEL : {ok:true, cancel:true},
33732         /**
33733          * Button config that displays Yes, No and Cancel buttons
33734          * @type Object
33735          */
33736         YESNOCANCEL : {yes:true, no:true, cancel:true},
33737
33738         /**
33739          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33740          * @type Number
33741          */
33742         defaultTextHeight : 75,
33743         /**
33744          * The maximum width in pixels of the message box (defaults to 600)
33745          * @type Number
33746          */
33747         maxWidth : 600,
33748         /**
33749          * The minimum width in pixels of the message box (defaults to 100)
33750          * @type Number
33751          */
33752         minWidth : 100,
33753         /**
33754          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33755          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33756          * @type Number
33757          */
33758         minProgressWidth : 250,
33759         /**
33760          * An object containing the default button text strings that can be overriden for localized language support.
33761          * Supported properties are: ok, cancel, yes and no.
33762          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33763          * @type Object
33764          */
33765         buttonText : {
33766             ok : "OK",
33767             cancel : "Cancel",
33768             yes : "Yes",
33769             no : "No"
33770         }
33771     };
33772 }();
33773
33774 /**
33775  * Shorthand for {@link Roo.MessageBox}
33776  */
33777 Roo.Msg = Roo.MessageBox;/*
33778  * Based on:
33779  * Ext JS Library 1.1.1
33780  * Copyright(c) 2006-2007, Ext JS, LLC.
33781  *
33782  * Originally Released Under LGPL - original licence link has changed is not relivant.
33783  *
33784  * Fork - LGPL
33785  * <script type="text/javascript">
33786  */
33787 /**
33788  * @class Roo.QuickTips
33789  * Provides attractive and customizable tooltips for any element.
33790  * @singleton
33791  */
33792 Roo.QuickTips = function(){
33793     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33794     var ce, bd, xy, dd;
33795     var visible = false, disabled = true, inited = false;
33796     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33797     
33798     var onOver = function(e){
33799         if(disabled){
33800             return;
33801         }
33802         var t = e.getTarget();
33803         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33804             return;
33805         }
33806         if(ce && t == ce.el){
33807             clearTimeout(hideProc);
33808             return;
33809         }
33810         if(t && tagEls[t.id]){
33811             tagEls[t.id].el = t;
33812             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33813             return;
33814         }
33815         var ttp, et = Roo.fly(t);
33816         var ns = cfg.namespace;
33817         if(tm.interceptTitles && t.title){
33818             ttp = t.title;
33819             t.qtip = ttp;
33820             t.removeAttribute("title");
33821             e.preventDefault();
33822         }else{
33823             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33824         }
33825         if(ttp){
33826             showProc = show.defer(tm.showDelay, tm, [{
33827                 el: t, 
33828                 text: ttp.replace(/\\n/g,'<br/>'),
33829                 width: et.getAttributeNS(ns, cfg.width),
33830                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33831                 title: et.getAttributeNS(ns, cfg.title),
33832                     cls: et.getAttributeNS(ns, cfg.cls)
33833             }]);
33834         }
33835     };
33836     
33837     var onOut = function(e){
33838         clearTimeout(showProc);
33839         var t = e.getTarget();
33840         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33841             hideProc = setTimeout(hide, tm.hideDelay);
33842         }
33843     };
33844     
33845     var onMove = function(e){
33846         if(disabled){
33847             return;
33848         }
33849         xy = e.getXY();
33850         xy[1] += 18;
33851         if(tm.trackMouse && ce){
33852             el.setXY(xy);
33853         }
33854     };
33855     
33856     var onDown = function(e){
33857         clearTimeout(showProc);
33858         clearTimeout(hideProc);
33859         if(!e.within(el)){
33860             if(tm.hideOnClick){
33861                 hide();
33862                 tm.disable();
33863                 tm.enable.defer(100, tm);
33864             }
33865         }
33866     };
33867     
33868     var getPad = function(){
33869         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33870     };
33871
33872     var show = function(o){
33873         if(disabled){
33874             return;
33875         }
33876         clearTimeout(dismissProc);
33877         ce = o;
33878         if(removeCls){ // in case manually hidden
33879             el.removeClass(removeCls);
33880             removeCls = null;
33881         }
33882         if(ce.cls){
33883             el.addClass(ce.cls);
33884             removeCls = ce.cls;
33885         }
33886         if(ce.title){
33887             tipTitle.update(ce.title);
33888             tipTitle.show();
33889         }else{
33890             tipTitle.update('');
33891             tipTitle.hide();
33892         }
33893         el.dom.style.width  = tm.maxWidth+'px';
33894         //tipBody.dom.style.width = '';
33895         tipBodyText.update(o.text);
33896         var p = getPad(), w = ce.width;
33897         if(!w){
33898             var td = tipBodyText.dom;
33899             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33900             if(aw > tm.maxWidth){
33901                 w = tm.maxWidth;
33902             }else if(aw < tm.minWidth){
33903                 w = tm.minWidth;
33904             }else{
33905                 w = aw;
33906             }
33907         }
33908         //tipBody.setWidth(w);
33909         el.setWidth(parseInt(w, 10) + p);
33910         if(ce.autoHide === false){
33911             close.setDisplayed(true);
33912             if(dd){
33913                 dd.unlock();
33914             }
33915         }else{
33916             close.setDisplayed(false);
33917             if(dd){
33918                 dd.lock();
33919             }
33920         }
33921         if(xy){
33922             el.avoidY = xy[1]-18;
33923             el.setXY(xy);
33924         }
33925         if(tm.animate){
33926             el.setOpacity(.1);
33927             el.setStyle("visibility", "visible");
33928             el.fadeIn({callback: afterShow});
33929         }else{
33930             afterShow();
33931         }
33932     };
33933     
33934     var afterShow = function(){
33935         if(ce){
33936             el.show();
33937             esc.enable();
33938             if(tm.autoDismiss && ce.autoHide !== false){
33939                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
33940             }
33941         }
33942     };
33943     
33944     var hide = function(noanim){
33945         clearTimeout(dismissProc);
33946         clearTimeout(hideProc);
33947         ce = null;
33948         if(el.isVisible()){
33949             esc.disable();
33950             if(noanim !== true && tm.animate){
33951                 el.fadeOut({callback: afterHide});
33952             }else{
33953                 afterHide();
33954             } 
33955         }
33956     };
33957     
33958     var afterHide = function(){
33959         el.hide();
33960         if(removeCls){
33961             el.removeClass(removeCls);
33962             removeCls = null;
33963         }
33964     };
33965     
33966     return {
33967         /**
33968         * @cfg {Number} minWidth
33969         * The minimum width of the quick tip (defaults to 40)
33970         */
33971        minWidth : 40,
33972         /**
33973         * @cfg {Number} maxWidth
33974         * The maximum width of the quick tip (defaults to 300)
33975         */
33976        maxWidth : 300,
33977         /**
33978         * @cfg {Boolean} interceptTitles
33979         * True to automatically use the element's DOM title value if available (defaults to false)
33980         */
33981        interceptTitles : false,
33982         /**
33983         * @cfg {Boolean} trackMouse
33984         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
33985         */
33986        trackMouse : false,
33987         /**
33988         * @cfg {Boolean} hideOnClick
33989         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
33990         */
33991        hideOnClick : true,
33992         /**
33993         * @cfg {Number} showDelay
33994         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
33995         */
33996        showDelay : 500,
33997         /**
33998         * @cfg {Number} hideDelay
33999         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34000         */
34001        hideDelay : 200,
34002         /**
34003         * @cfg {Boolean} autoHide
34004         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34005         * Used in conjunction with hideDelay.
34006         */
34007        autoHide : true,
34008         /**
34009         * @cfg {Boolean}
34010         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34011         * (defaults to true).  Used in conjunction with autoDismissDelay.
34012         */
34013        autoDismiss : true,
34014         /**
34015         * @cfg {Number}
34016         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34017         */
34018        autoDismissDelay : 5000,
34019        /**
34020         * @cfg {Boolean} animate
34021         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34022         */
34023        animate : false,
34024
34025        /**
34026         * @cfg {String} title
34027         * Title text to display (defaults to '').  This can be any valid HTML markup.
34028         */
34029         title: '',
34030        /**
34031         * @cfg {String} text
34032         * Body text to display (defaults to '').  This can be any valid HTML markup.
34033         */
34034         text : '',
34035        /**
34036         * @cfg {String} cls
34037         * A CSS class to apply to the base quick tip element (defaults to '').
34038         */
34039         cls : '',
34040        /**
34041         * @cfg {Number} width
34042         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34043         * minWidth or maxWidth.
34044         */
34045         width : null,
34046
34047     /**
34048      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34049      * or display QuickTips in a page.
34050      */
34051        init : function(){
34052           tm = Roo.QuickTips;
34053           cfg = tm.tagConfig;
34054           if(!inited){
34055               if(!Roo.isReady){ // allow calling of init() before onReady
34056                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34057                   return;
34058               }
34059               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34060               el.fxDefaults = {stopFx: true};
34061               // maximum custom styling
34062               //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>');
34063               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>');              
34064               tipTitle = el.child('h3');
34065               tipTitle.enableDisplayMode("block");
34066               tipBody = el.child('div.x-tip-bd');
34067               tipBodyText = el.child('div.x-tip-bd-inner');
34068               //bdLeft = el.child('div.x-tip-bd-left');
34069               //bdRight = el.child('div.x-tip-bd-right');
34070               close = el.child('div.x-tip-close');
34071               close.enableDisplayMode("block");
34072               close.on("click", hide);
34073               var d = Roo.get(document);
34074               d.on("mousedown", onDown);
34075               d.on("mouseover", onOver);
34076               d.on("mouseout", onOut);
34077               d.on("mousemove", onMove);
34078               esc = d.addKeyListener(27, hide);
34079               esc.disable();
34080               if(Roo.dd.DD){
34081                   dd = el.initDD("default", null, {
34082                       onDrag : function(){
34083                           el.sync();  
34084                       }
34085                   });
34086                   dd.setHandleElId(tipTitle.id);
34087                   dd.lock();
34088               }
34089               inited = true;
34090           }
34091           this.enable(); 
34092        },
34093
34094     /**
34095      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34096      * are supported:
34097      * <pre>
34098 Property    Type                   Description
34099 ----------  ---------------------  ------------------------------------------------------------------------
34100 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34101      * </ul>
34102      * @param {Object} config The config object
34103      */
34104        register : function(config){
34105            var cs = config instanceof Array ? config : arguments;
34106            for(var i = 0, len = cs.length; i < len; i++) {
34107                var c = cs[i];
34108                var target = c.target;
34109                if(target){
34110                    if(target instanceof Array){
34111                        for(var j = 0, jlen = target.length; j < jlen; j++){
34112                            tagEls[target[j]] = c;
34113                        }
34114                    }else{
34115                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34116                    }
34117                }
34118            }
34119        },
34120
34121     /**
34122      * Removes this quick tip from its element and destroys it.
34123      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34124      */
34125        unregister : function(el){
34126            delete tagEls[Roo.id(el)];
34127        },
34128
34129     /**
34130      * Enable this quick tip.
34131      */
34132        enable : function(){
34133            if(inited && disabled){
34134                locks.pop();
34135                if(locks.length < 1){
34136                    disabled = false;
34137                }
34138            }
34139        },
34140
34141     /**
34142      * Disable this quick tip.
34143      */
34144        disable : function(){
34145           disabled = true;
34146           clearTimeout(showProc);
34147           clearTimeout(hideProc);
34148           clearTimeout(dismissProc);
34149           if(ce){
34150               hide(true);
34151           }
34152           locks.push(1);
34153        },
34154
34155     /**
34156      * Returns true if the quick tip is enabled, else false.
34157      */
34158        isEnabled : function(){
34159             return !disabled;
34160        },
34161
34162         // private
34163        tagConfig : {
34164            namespace : "roo", // was ext?? this may break..
34165            alt_namespace : "ext",
34166            attribute : "qtip",
34167            width : "width",
34168            target : "target",
34169            title : "qtitle",
34170            hide : "hide",
34171            cls : "qclass"
34172        }
34173    };
34174 }();
34175
34176 // backwards compat
34177 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34178  * Based on:
34179  * Ext JS Library 1.1.1
34180  * Copyright(c) 2006-2007, Ext JS, LLC.
34181  *
34182  * Originally Released Under LGPL - original licence link has changed is not relivant.
34183  *
34184  * Fork - LGPL
34185  * <script type="text/javascript">
34186  */
34187  
34188
34189 /**
34190  * @class Roo.tree.TreePanel
34191  * @extends Roo.data.Tree
34192
34193  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34194  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34195  * @cfg {Boolean} enableDD true to enable drag and drop
34196  * @cfg {Boolean} enableDrag true to enable just drag
34197  * @cfg {Boolean} enableDrop true to enable just drop
34198  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34199  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34200  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34201  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34202  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34203  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34204  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34205  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34206  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34207  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34208  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34209  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34210  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34211  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34212  * @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>
34213  * @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>
34214  * 
34215  * @constructor
34216  * @param {String/HTMLElement/Element} el The container element
34217  * @param {Object} config
34218  */
34219 Roo.tree.TreePanel = function(el, config){
34220     var root = false;
34221     var loader = false;
34222     if (config.root) {
34223         root = config.root;
34224         delete config.root;
34225     }
34226     if (config.loader) {
34227         loader = config.loader;
34228         delete config.loader;
34229     }
34230     
34231     Roo.apply(this, config);
34232     Roo.tree.TreePanel.superclass.constructor.call(this);
34233     this.el = Roo.get(el);
34234     this.el.addClass('x-tree');
34235     //console.log(root);
34236     if (root) {
34237         this.setRootNode( Roo.factory(root, Roo.tree));
34238     }
34239     if (loader) {
34240         this.loader = Roo.factory(loader, Roo.tree);
34241     }
34242    /**
34243     * Read-only. The id of the container element becomes this TreePanel's id.
34244     */
34245     this.id = this.el.id;
34246     this.addEvents({
34247         /**
34248         * @event beforeload
34249         * Fires before a node is loaded, return false to cancel
34250         * @param {Node} node The node being loaded
34251         */
34252         "beforeload" : true,
34253         /**
34254         * @event load
34255         * Fires when a node is loaded
34256         * @param {Node} node The node that was loaded
34257         */
34258         "load" : true,
34259         /**
34260         * @event textchange
34261         * Fires when the text for a node is changed
34262         * @param {Node} node The node
34263         * @param {String} text The new text
34264         * @param {String} oldText The old text
34265         */
34266         "textchange" : true,
34267         /**
34268         * @event beforeexpand
34269         * Fires before a node is expanded, return false to cancel.
34270         * @param {Node} node The node
34271         * @param {Boolean} deep
34272         * @param {Boolean} anim
34273         */
34274         "beforeexpand" : true,
34275         /**
34276         * @event beforecollapse
34277         * Fires before a node is collapsed, return false to cancel.
34278         * @param {Node} node The node
34279         * @param {Boolean} deep
34280         * @param {Boolean} anim
34281         */
34282         "beforecollapse" : true,
34283         /**
34284         * @event expand
34285         * Fires when a node is expanded
34286         * @param {Node} node The node
34287         */
34288         "expand" : true,
34289         /**
34290         * @event disabledchange
34291         * Fires when the disabled status of a node changes
34292         * @param {Node} node The node
34293         * @param {Boolean} disabled
34294         */
34295         "disabledchange" : true,
34296         /**
34297         * @event collapse
34298         * Fires when a node is collapsed
34299         * @param {Node} node The node
34300         */
34301         "collapse" : true,
34302         /**
34303         * @event beforeclick
34304         * Fires before click processing on a node. Return false to cancel the default action.
34305         * @param {Node} node The node
34306         * @param {Roo.EventObject} e The event object
34307         */
34308         "beforeclick":true,
34309         /**
34310         * @event checkchange
34311         * Fires when a node with a checkbox's checked property changes
34312         * @param {Node} this This node
34313         * @param {Boolean} checked
34314         */
34315         "checkchange":true,
34316         /**
34317         * @event click
34318         * Fires when a node is clicked
34319         * @param {Node} node The node
34320         * @param {Roo.EventObject} e The event object
34321         */
34322         "click":true,
34323         /**
34324         * @event dblclick
34325         * Fires when a node is double clicked
34326         * @param {Node} node The node
34327         * @param {Roo.EventObject} e The event object
34328         */
34329         "dblclick":true,
34330         /**
34331         * @event contextmenu
34332         * Fires when a node is right clicked
34333         * @param {Node} node The node
34334         * @param {Roo.EventObject} e The event object
34335         */
34336         "contextmenu":true,
34337         /**
34338         * @event beforechildrenrendered
34339         * Fires right before the child nodes for a node are rendered
34340         * @param {Node} node The node
34341         */
34342         "beforechildrenrendered":true,
34343         /**
34344         * @event startdrag
34345         * Fires when a node starts being dragged
34346         * @param {Roo.tree.TreePanel} this
34347         * @param {Roo.tree.TreeNode} node
34348         * @param {event} e The raw browser event
34349         */ 
34350        "startdrag" : true,
34351        /**
34352         * @event enddrag
34353         * Fires when a drag operation is complete
34354         * @param {Roo.tree.TreePanel} this
34355         * @param {Roo.tree.TreeNode} node
34356         * @param {event} e The raw browser event
34357         */
34358        "enddrag" : true,
34359        /**
34360         * @event dragdrop
34361         * Fires when a dragged node is dropped on a valid DD target
34362         * @param {Roo.tree.TreePanel} this
34363         * @param {Roo.tree.TreeNode} node
34364         * @param {DD} dd The dd it was dropped on
34365         * @param {event} e The raw browser event
34366         */
34367        "dragdrop" : true,
34368        /**
34369         * @event beforenodedrop
34370         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34371         * passed to handlers has the following properties:<br />
34372         * <ul style="padding:5px;padding-left:16px;">
34373         * <li>tree - The TreePanel</li>
34374         * <li>target - The node being targeted for the drop</li>
34375         * <li>data - The drag data from the drag source</li>
34376         * <li>point - The point of the drop - append, above or below</li>
34377         * <li>source - The drag source</li>
34378         * <li>rawEvent - Raw mouse event</li>
34379         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34380         * to be inserted by setting them on this object.</li>
34381         * <li>cancel - Set this to true to cancel the drop.</li>
34382         * </ul>
34383         * @param {Object} dropEvent
34384         */
34385        "beforenodedrop" : true,
34386        /**
34387         * @event nodedrop
34388         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34389         * passed to handlers has the following properties:<br />
34390         * <ul style="padding:5px;padding-left:16px;">
34391         * <li>tree - The TreePanel</li>
34392         * <li>target - The node being targeted for the drop</li>
34393         * <li>data - The drag data from the drag source</li>
34394         * <li>point - The point of the drop - append, above or below</li>
34395         * <li>source - The drag source</li>
34396         * <li>rawEvent - Raw mouse event</li>
34397         * <li>dropNode - Dropped node(s).</li>
34398         * </ul>
34399         * @param {Object} dropEvent
34400         */
34401        "nodedrop" : true,
34402         /**
34403         * @event nodedragover
34404         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34405         * passed to handlers has the following properties:<br />
34406         * <ul style="padding:5px;padding-left:16px;">
34407         * <li>tree - The TreePanel</li>
34408         * <li>target - The node being targeted for the drop</li>
34409         * <li>data - The drag data from the drag source</li>
34410         * <li>point - The point of the drop - append, above or below</li>
34411         * <li>source - The drag source</li>
34412         * <li>rawEvent - Raw mouse event</li>
34413         * <li>dropNode - Drop node(s) provided by the source.</li>
34414         * <li>cancel - Set this to true to signal drop not allowed.</li>
34415         * </ul>
34416         * @param {Object} dragOverEvent
34417         */
34418        "nodedragover" : true,
34419        /**
34420         * @event appendnode
34421         * Fires when append node to the tree
34422         * @param {Roo.tree.TreePanel} this
34423         * @param {Roo.tree.TreeNode} node
34424         * @param {Number} index The index of the newly appended node
34425         */
34426        "appendnode" : true
34427         
34428     });
34429     if(this.singleExpand){
34430        this.on("beforeexpand", this.restrictExpand, this);
34431     }
34432     if (this.editor) {
34433         this.editor.tree = this;
34434         this.editor = Roo.factory(this.editor, Roo.tree);
34435     }
34436     
34437     if (this.selModel) {
34438         this.selModel = Roo.factory(this.selModel, Roo.tree);
34439     }
34440    
34441 };
34442 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34443     rootVisible : true,
34444     animate: Roo.enableFx,
34445     lines : true,
34446     enableDD : false,
34447     hlDrop : Roo.enableFx,
34448   
34449     renderer: false,
34450     
34451     rendererTip: false,
34452     // private
34453     restrictExpand : function(node){
34454         var p = node.parentNode;
34455         if(p){
34456             if(p.expandedChild && p.expandedChild.parentNode == p){
34457                 p.expandedChild.collapse();
34458             }
34459             p.expandedChild = node;
34460         }
34461     },
34462
34463     // private override
34464     setRootNode : function(node){
34465         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34466         if(!this.rootVisible){
34467             node.ui = new Roo.tree.RootTreeNodeUI(node);
34468         }
34469         return node;
34470     },
34471
34472     /**
34473      * Returns the container element for this TreePanel
34474      */
34475     getEl : function(){
34476         return this.el;
34477     },
34478
34479     /**
34480      * Returns the default TreeLoader for this TreePanel
34481      */
34482     getLoader : function(){
34483         return this.loader;
34484     },
34485
34486     /**
34487      * Expand all nodes
34488      */
34489     expandAll : function(){
34490         this.root.expand(true);
34491     },
34492
34493     /**
34494      * Collapse all nodes
34495      */
34496     collapseAll : function(){
34497         this.root.collapse(true);
34498     },
34499
34500     /**
34501      * Returns the selection model used by this TreePanel
34502      */
34503     getSelectionModel : function(){
34504         if(!this.selModel){
34505             this.selModel = new Roo.tree.DefaultSelectionModel();
34506         }
34507         return this.selModel;
34508     },
34509
34510     /**
34511      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34512      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34513      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34514      * @return {Array}
34515      */
34516     getChecked : function(a, startNode){
34517         startNode = startNode || this.root;
34518         var r = [];
34519         var f = function(){
34520             if(this.attributes.checked){
34521                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34522             }
34523         }
34524         startNode.cascade(f);
34525         return r;
34526     },
34527
34528     /**
34529      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34530      * @param {String} path
34531      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34532      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34533      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34534      */
34535     expandPath : function(path, attr, callback){
34536         attr = attr || "id";
34537         var keys = path.split(this.pathSeparator);
34538         var curNode = this.root;
34539         if(curNode.attributes[attr] != keys[1]){ // invalid root
34540             if(callback){
34541                 callback(false, null);
34542             }
34543             return;
34544         }
34545         var index = 1;
34546         var f = function(){
34547             if(++index == keys.length){
34548                 if(callback){
34549                     callback(true, curNode);
34550                 }
34551                 return;
34552             }
34553             var c = curNode.findChild(attr, keys[index]);
34554             if(!c){
34555                 if(callback){
34556                     callback(false, curNode);
34557                 }
34558                 return;
34559             }
34560             curNode = c;
34561             c.expand(false, false, f);
34562         };
34563         curNode.expand(false, false, f);
34564     },
34565
34566     /**
34567      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34568      * @param {String} path
34569      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34570      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34571      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34572      */
34573     selectPath : function(path, attr, callback){
34574         attr = attr || "id";
34575         var keys = path.split(this.pathSeparator);
34576         var v = keys.pop();
34577         if(keys.length > 0){
34578             var f = function(success, node){
34579                 if(success && node){
34580                     var n = node.findChild(attr, v);
34581                     if(n){
34582                         n.select();
34583                         if(callback){
34584                             callback(true, n);
34585                         }
34586                     }else if(callback){
34587                         callback(false, n);
34588                     }
34589                 }else{
34590                     if(callback){
34591                         callback(false, n);
34592                     }
34593                 }
34594             };
34595             this.expandPath(keys.join(this.pathSeparator), attr, f);
34596         }else{
34597             this.root.select();
34598             if(callback){
34599                 callback(true, this.root);
34600             }
34601         }
34602     },
34603
34604     getTreeEl : function(){
34605         return this.el;
34606     },
34607
34608     /**
34609      * Trigger rendering of this TreePanel
34610      */
34611     render : function(){
34612         if (this.innerCt) {
34613             return this; // stop it rendering more than once!!
34614         }
34615         
34616         this.innerCt = this.el.createChild({tag:"ul",
34617                cls:"x-tree-root-ct " +
34618                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34619
34620         if(this.containerScroll){
34621             Roo.dd.ScrollManager.register(this.el);
34622         }
34623         if((this.enableDD || this.enableDrop) && !this.dropZone){
34624            /**
34625             * The dropZone used by this tree if drop is enabled
34626             * @type Roo.tree.TreeDropZone
34627             */
34628              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34629                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34630            });
34631         }
34632         if((this.enableDD || this.enableDrag) && !this.dragZone){
34633            /**
34634             * The dragZone used by this tree if drag is enabled
34635             * @type Roo.tree.TreeDragZone
34636             */
34637             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34638                ddGroup: this.ddGroup || "TreeDD",
34639                scroll: this.ddScroll
34640            });
34641         }
34642         this.getSelectionModel().init(this);
34643         if (!this.root) {
34644             Roo.log("ROOT not set in tree");
34645             return this;
34646         }
34647         this.root.render();
34648         if(!this.rootVisible){
34649             this.root.renderChildren();
34650         }
34651         return this;
34652     }
34653 });/*
34654  * Based on:
34655  * Ext JS Library 1.1.1
34656  * Copyright(c) 2006-2007, Ext JS, LLC.
34657  *
34658  * Originally Released Under LGPL - original licence link has changed is not relivant.
34659  *
34660  * Fork - LGPL
34661  * <script type="text/javascript">
34662  */
34663  
34664
34665 /**
34666  * @class Roo.tree.DefaultSelectionModel
34667  * @extends Roo.util.Observable
34668  * The default single selection for a TreePanel.
34669  * @param {Object} cfg Configuration
34670  */
34671 Roo.tree.DefaultSelectionModel = function(cfg){
34672    this.selNode = null;
34673    
34674    
34675    
34676    this.addEvents({
34677        /**
34678         * @event selectionchange
34679         * Fires when the selected node changes
34680         * @param {DefaultSelectionModel} this
34681         * @param {TreeNode} node the new selection
34682         */
34683        "selectionchange" : true,
34684
34685        /**
34686         * @event beforeselect
34687         * Fires before the selected node changes, return false to cancel the change
34688         * @param {DefaultSelectionModel} this
34689         * @param {TreeNode} node the new selection
34690         * @param {TreeNode} node the old selection
34691         */
34692        "beforeselect" : true
34693    });
34694    
34695     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34696 };
34697
34698 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34699     init : function(tree){
34700         this.tree = tree;
34701         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34702         tree.on("click", this.onNodeClick, this);
34703     },
34704     
34705     onNodeClick : function(node, e){
34706         if (e.ctrlKey && this.selNode == node)  {
34707             this.unselect(node);
34708             return;
34709         }
34710         this.select(node);
34711     },
34712     
34713     /**
34714      * Select a node.
34715      * @param {TreeNode} node The node to select
34716      * @return {TreeNode} The selected node
34717      */
34718     select : function(node){
34719         var last = this.selNode;
34720         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34721             if(last){
34722                 last.ui.onSelectedChange(false);
34723             }
34724             this.selNode = node;
34725             node.ui.onSelectedChange(true);
34726             this.fireEvent("selectionchange", this, node, last);
34727         }
34728         return node;
34729     },
34730     
34731     /**
34732      * Deselect a node.
34733      * @param {TreeNode} node The node to unselect
34734      */
34735     unselect : function(node){
34736         if(this.selNode == node){
34737             this.clearSelections();
34738         }    
34739     },
34740     
34741     /**
34742      * Clear all selections
34743      */
34744     clearSelections : function(){
34745         var n = this.selNode;
34746         if(n){
34747             n.ui.onSelectedChange(false);
34748             this.selNode = null;
34749             this.fireEvent("selectionchange", this, null);
34750         }
34751         return n;
34752     },
34753     
34754     /**
34755      * Get the selected node
34756      * @return {TreeNode} The selected node
34757      */
34758     getSelectedNode : function(){
34759         return this.selNode;    
34760     },
34761     
34762     /**
34763      * Returns true if the node is selected
34764      * @param {TreeNode} node The node to check
34765      * @return {Boolean}
34766      */
34767     isSelected : function(node){
34768         return this.selNode == node;  
34769     },
34770
34771     /**
34772      * Selects the node above the selected node in the tree, intelligently walking the nodes
34773      * @return TreeNode The new selection
34774      */
34775     selectPrevious : function(){
34776         var s = this.selNode || this.lastSelNode;
34777         if(!s){
34778             return null;
34779         }
34780         var ps = s.previousSibling;
34781         if(ps){
34782             if(!ps.isExpanded() || ps.childNodes.length < 1){
34783                 return this.select(ps);
34784             } else{
34785                 var lc = ps.lastChild;
34786                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34787                     lc = lc.lastChild;
34788                 }
34789                 return this.select(lc);
34790             }
34791         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34792             return this.select(s.parentNode);
34793         }
34794         return null;
34795     },
34796
34797     /**
34798      * Selects the node above the selected node in the tree, intelligently walking the nodes
34799      * @return TreeNode The new selection
34800      */
34801     selectNext : function(){
34802         var s = this.selNode || this.lastSelNode;
34803         if(!s){
34804             return null;
34805         }
34806         if(s.firstChild && s.isExpanded()){
34807              return this.select(s.firstChild);
34808          }else if(s.nextSibling){
34809              return this.select(s.nextSibling);
34810          }else if(s.parentNode){
34811             var newS = null;
34812             s.parentNode.bubble(function(){
34813                 if(this.nextSibling){
34814                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34815                     return false;
34816                 }
34817             });
34818             return newS;
34819          }
34820         return null;
34821     },
34822
34823     onKeyDown : function(e){
34824         var s = this.selNode || this.lastSelNode;
34825         // undesirable, but required
34826         var sm = this;
34827         if(!s){
34828             return;
34829         }
34830         var k = e.getKey();
34831         switch(k){
34832              case e.DOWN:
34833                  e.stopEvent();
34834                  this.selectNext();
34835              break;
34836              case e.UP:
34837                  e.stopEvent();
34838                  this.selectPrevious();
34839              break;
34840              case e.RIGHT:
34841                  e.preventDefault();
34842                  if(s.hasChildNodes()){
34843                      if(!s.isExpanded()){
34844                          s.expand();
34845                      }else if(s.firstChild){
34846                          this.select(s.firstChild, e);
34847                      }
34848                  }
34849              break;
34850              case e.LEFT:
34851                  e.preventDefault();
34852                  if(s.hasChildNodes() && s.isExpanded()){
34853                      s.collapse();
34854                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34855                      this.select(s.parentNode, e);
34856                  }
34857              break;
34858         };
34859     }
34860 });
34861
34862 /**
34863  * @class Roo.tree.MultiSelectionModel
34864  * @extends Roo.util.Observable
34865  * Multi selection for a TreePanel.
34866  * @param {Object} cfg Configuration
34867  */
34868 Roo.tree.MultiSelectionModel = function(){
34869    this.selNodes = [];
34870    this.selMap = {};
34871    this.addEvents({
34872        /**
34873         * @event selectionchange
34874         * Fires when the selected nodes change
34875         * @param {MultiSelectionModel} this
34876         * @param {Array} nodes Array of the selected nodes
34877         */
34878        "selectionchange" : true
34879    });
34880    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34881    
34882 };
34883
34884 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34885     init : function(tree){
34886         this.tree = tree;
34887         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34888         tree.on("click", this.onNodeClick, this);
34889     },
34890     
34891     onNodeClick : function(node, e){
34892         this.select(node, e, e.ctrlKey);
34893     },
34894     
34895     /**
34896      * Select a node.
34897      * @param {TreeNode} node The node to select
34898      * @param {EventObject} e (optional) An event associated with the selection
34899      * @param {Boolean} keepExisting True to retain existing selections
34900      * @return {TreeNode} The selected node
34901      */
34902     select : function(node, e, keepExisting){
34903         if(keepExisting !== true){
34904             this.clearSelections(true);
34905         }
34906         if(this.isSelected(node)){
34907             this.lastSelNode = node;
34908             return node;
34909         }
34910         this.selNodes.push(node);
34911         this.selMap[node.id] = node;
34912         this.lastSelNode = node;
34913         node.ui.onSelectedChange(true);
34914         this.fireEvent("selectionchange", this, this.selNodes);
34915         return node;
34916     },
34917     
34918     /**
34919      * Deselect a node.
34920      * @param {TreeNode} node The node to unselect
34921      */
34922     unselect : function(node){
34923         if(this.selMap[node.id]){
34924             node.ui.onSelectedChange(false);
34925             var sn = this.selNodes;
34926             var index = -1;
34927             if(sn.indexOf){
34928                 index = sn.indexOf(node);
34929             }else{
34930                 for(var i = 0, len = sn.length; i < len; i++){
34931                     if(sn[i] == node){
34932                         index = i;
34933                         break;
34934                     }
34935                 }
34936             }
34937             if(index != -1){
34938                 this.selNodes.splice(index, 1);
34939             }
34940             delete this.selMap[node.id];
34941             this.fireEvent("selectionchange", this, this.selNodes);
34942         }
34943     },
34944     
34945     /**
34946      * Clear all selections
34947      */
34948     clearSelections : function(suppressEvent){
34949         var sn = this.selNodes;
34950         if(sn.length > 0){
34951             for(var i = 0, len = sn.length; i < len; i++){
34952                 sn[i].ui.onSelectedChange(false);
34953             }
34954             this.selNodes = [];
34955             this.selMap = {};
34956             if(suppressEvent !== true){
34957                 this.fireEvent("selectionchange", this, this.selNodes);
34958             }
34959         }
34960     },
34961     
34962     /**
34963      * Returns true if the node is selected
34964      * @param {TreeNode} node The node to check
34965      * @return {Boolean}
34966      */
34967     isSelected : function(node){
34968         return this.selMap[node.id] ? true : false;  
34969     },
34970     
34971     /**
34972      * Returns an array of the selected nodes
34973      * @return {Array}
34974      */
34975     getSelectedNodes : function(){
34976         return this.selNodes;    
34977     },
34978
34979     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
34980
34981     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
34982
34983     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
34984 });/*
34985  * Based on:
34986  * Ext JS Library 1.1.1
34987  * Copyright(c) 2006-2007, Ext JS, LLC.
34988  *
34989  * Originally Released Under LGPL - original licence link has changed is not relivant.
34990  *
34991  * Fork - LGPL
34992  * <script type="text/javascript">
34993  */
34994  
34995 /**
34996  * @class Roo.tree.TreeNode
34997  * @extends Roo.data.Node
34998  * @cfg {String} text The text for this node
34999  * @cfg {Boolean} expanded true to start the node expanded
35000  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35001  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35002  * @cfg {Boolean} disabled true to start the node disabled
35003  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35004  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35005  * @cfg {String} cls A css class to be added to the node
35006  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35007  * @cfg {String} href URL of the link used for the node (defaults to #)
35008  * @cfg {String} hrefTarget target frame for the link
35009  * @cfg {String} qtip An Ext QuickTip for the node
35010  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35011  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35012  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35013  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35014  * (defaults to undefined with no checkbox rendered)
35015  * @constructor
35016  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35017  */
35018 Roo.tree.TreeNode = function(attributes){
35019     attributes = attributes || {};
35020     if(typeof attributes == "string"){
35021         attributes = {text: attributes};
35022     }
35023     this.childrenRendered = false;
35024     this.rendered = false;
35025     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35026     this.expanded = attributes.expanded === true;
35027     this.isTarget = attributes.isTarget !== false;
35028     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35029     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35030
35031     /**
35032      * Read-only. The text for this node. To change it use setText().
35033      * @type String
35034      */
35035     this.text = attributes.text;
35036     /**
35037      * True if this node is disabled.
35038      * @type Boolean
35039      */
35040     this.disabled = attributes.disabled === true;
35041
35042     this.addEvents({
35043         /**
35044         * @event textchange
35045         * Fires when the text for this node is changed
35046         * @param {Node} this This node
35047         * @param {String} text The new text
35048         * @param {String} oldText The old text
35049         */
35050         "textchange" : true,
35051         /**
35052         * @event beforeexpand
35053         * Fires before this node is expanded, return false to cancel.
35054         * @param {Node} this This node
35055         * @param {Boolean} deep
35056         * @param {Boolean} anim
35057         */
35058         "beforeexpand" : true,
35059         /**
35060         * @event beforecollapse
35061         * Fires before this node is collapsed, return false to cancel.
35062         * @param {Node} this This node
35063         * @param {Boolean} deep
35064         * @param {Boolean} anim
35065         */
35066         "beforecollapse" : true,
35067         /**
35068         * @event expand
35069         * Fires when this node is expanded
35070         * @param {Node} this This node
35071         */
35072         "expand" : true,
35073         /**
35074         * @event disabledchange
35075         * Fires when the disabled status of this node changes
35076         * @param {Node} this This node
35077         * @param {Boolean} disabled
35078         */
35079         "disabledchange" : true,
35080         /**
35081         * @event collapse
35082         * Fires when this node is collapsed
35083         * @param {Node} this This node
35084         */
35085         "collapse" : true,
35086         /**
35087         * @event beforeclick
35088         * Fires before click processing. Return false to cancel the default action.
35089         * @param {Node} this This node
35090         * @param {Roo.EventObject} e The event object
35091         */
35092         "beforeclick":true,
35093         /**
35094         * @event checkchange
35095         * Fires when a node with a checkbox's checked property changes
35096         * @param {Node} this This node
35097         * @param {Boolean} checked
35098         */
35099         "checkchange":true,
35100         /**
35101         * @event click
35102         * Fires when this node is clicked
35103         * @param {Node} this This node
35104         * @param {Roo.EventObject} e The event object
35105         */
35106         "click":true,
35107         /**
35108         * @event dblclick
35109         * Fires when this node is double clicked
35110         * @param {Node} this This node
35111         * @param {Roo.EventObject} e The event object
35112         */
35113         "dblclick":true,
35114         /**
35115         * @event contextmenu
35116         * Fires when this node is right clicked
35117         * @param {Node} this This node
35118         * @param {Roo.EventObject} e The event object
35119         */
35120         "contextmenu":true,
35121         /**
35122         * @event beforechildrenrendered
35123         * Fires right before the child nodes for this node are rendered
35124         * @param {Node} this This node
35125         */
35126         "beforechildrenrendered":true
35127     });
35128
35129     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35130
35131     /**
35132      * Read-only. The UI for this node
35133      * @type TreeNodeUI
35134      */
35135     this.ui = new uiClass(this);
35136     
35137     // finally support items[]
35138     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35139         return;
35140     }
35141     
35142     
35143     Roo.each(this.attributes.items, function(c) {
35144         this.appendChild(Roo.factory(c,Roo.Tree));
35145     }, this);
35146     delete this.attributes.items;
35147     
35148     
35149     
35150 };
35151 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35152     preventHScroll: true,
35153     /**
35154      * Returns true if this node is expanded
35155      * @return {Boolean}
35156      */
35157     isExpanded : function(){
35158         return this.expanded;
35159     },
35160
35161     /**
35162      * Returns the UI object for this node
35163      * @return {TreeNodeUI}
35164      */
35165     getUI : function(){
35166         return this.ui;
35167     },
35168
35169     // private override
35170     setFirstChild : function(node){
35171         var of = this.firstChild;
35172         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35173         if(this.childrenRendered && of && node != of){
35174             of.renderIndent(true, true);
35175         }
35176         if(this.rendered){
35177             this.renderIndent(true, true);
35178         }
35179     },
35180
35181     // private override
35182     setLastChild : function(node){
35183         var ol = this.lastChild;
35184         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35185         if(this.childrenRendered && ol && node != ol){
35186             ol.renderIndent(true, true);
35187         }
35188         if(this.rendered){
35189             this.renderIndent(true, true);
35190         }
35191     },
35192
35193     // these methods are overridden to provide lazy rendering support
35194     // private override
35195     appendChild : function()
35196     {
35197         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35198         if(node && this.childrenRendered){
35199             node.render();
35200         }
35201         this.ui.updateExpandIcon();
35202         return node;
35203     },
35204
35205     // private override
35206     removeChild : function(node){
35207         this.ownerTree.getSelectionModel().unselect(node);
35208         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35209         // if it's been rendered remove dom node
35210         if(this.childrenRendered){
35211             node.ui.remove();
35212         }
35213         if(this.childNodes.length < 1){
35214             this.collapse(false, false);
35215         }else{
35216             this.ui.updateExpandIcon();
35217         }
35218         if(!this.firstChild) {
35219             this.childrenRendered = false;
35220         }
35221         return node;
35222     },
35223
35224     // private override
35225     insertBefore : function(node, refNode){
35226         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35227         if(newNode && refNode && this.childrenRendered){
35228             node.render();
35229         }
35230         this.ui.updateExpandIcon();
35231         return newNode;
35232     },
35233
35234     /**
35235      * Sets the text for this node
35236      * @param {String} text
35237      */
35238     setText : function(text){
35239         var oldText = this.text;
35240         this.text = text;
35241         this.attributes.text = text;
35242         if(this.rendered){ // event without subscribing
35243             this.ui.onTextChange(this, text, oldText);
35244         }
35245         this.fireEvent("textchange", this, text, oldText);
35246     },
35247
35248     /**
35249      * Triggers selection of this node
35250      */
35251     select : function(){
35252         this.getOwnerTree().getSelectionModel().select(this);
35253     },
35254
35255     /**
35256      * Triggers deselection of this node
35257      */
35258     unselect : function(){
35259         this.getOwnerTree().getSelectionModel().unselect(this);
35260     },
35261
35262     /**
35263      * Returns true if this node is selected
35264      * @return {Boolean}
35265      */
35266     isSelected : function(){
35267         return this.getOwnerTree().getSelectionModel().isSelected(this);
35268     },
35269
35270     /**
35271      * Expand this node.
35272      * @param {Boolean} deep (optional) True to expand all children as well
35273      * @param {Boolean} anim (optional) false to cancel the default animation
35274      * @param {Function} callback (optional) A callback to be called when
35275      * expanding this node completes (does not wait for deep expand to complete).
35276      * Called with 1 parameter, this node.
35277      */
35278     expand : function(deep, anim, callback){
35279         if(!this.expanded){
35280             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35281                 return;
35282             }
35283             if(!this.childrenRendered){
35284                 this.renderChildren();
35285             }
35286             this.expanded = true;
35287             
35288             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35289                 this.ui.animExpand(function(){
35290                     this.fireEvent("expand", this);
35291                     if(typeof callback == "function"){
35292                         callback(this);
35293                     }
35294                     if(deep === true){
35295                         this.expandChildNodes(true);
35296                     }
35297                 }.createDelegate(this));
35298                 return;
35299             }else{
35300                 this.ui.expand();
35301                 this.fireEvent("expand", this);
35302                 if(typeof callback == "function"){
35303                     callback(this);
35304                 }
35305             }
35306         }else{
35307            if(typeof callback == "function"){
35308                callback(this);
35309            }
35310         }
35311         if(deep === true){
35312             this.expandChildNodes(true);
35313         }
35314     },
35315
35316     isHiddenRoot : function(){
35317         return this.isRoot && !this.getOwnerTree().rootVisible;
35318     },
35319
35320     /**
35321      * Collapse this node.
35322      * @param {Boolean} deep (optional) True to collapse all children as well
35323      * @param {Boolean} anim (optional) false to cancel the default animation
35324      */
35325     collapse : function(deep, anim){
35326         if(this.expanded && !this.isHiddenRoot()){
35327             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35328                 return;
35329             }
35330             this.expanded = false;
35331             if((this.getOwnerTree().animate && anim !== false) || anim){
35332                 this.ui.animCollapse(function(){
35333                     this.fireEvent("collapse", this);
35334                     if(deep === true){
35335                         this.collapseChildNodes(true);
35336                     }
35337                 }.createDelegate(this));
35338                 return;
35339             }else{
35340                 this.ui.collapse();
35341                 this.fireEvent("collapse", this);
35342             }
35343         }
35344         if(deep === true){
35345             var cs = this.childNodes;
35346             for(var i = 0, len = cs.length; i < len; i++) {
35347                 cs[i].collapse(true, false);
35348             }
35349         }
35350     },
35351
35352     // private
35353     delayedExpand : function(delay){
35354         if(!this.expandProcId){
35355             this.expandProcId = this.expand.defer(delay, this);
35356         }
35357     },
35358
35359     // private
35360     cancelExpand : function(){
35361         if(this.expandProcId){
35362             clearTimeout(this.expandProcId);
35363         }
35364         this.expandProcId = false;
35365     },
35366
35367     /**
35368      * Toggles expanded/collapsed state of the node
35369      */
35370     toggle : function(){
35371         if(this.expanded){
35372             this.collapse();
35373         }else{
35374             this.expand();
35375         }
35376     },
35377
35378     /**
35379      * Ensures all parent nodes are expanded
35380      */
35381     ensureVisible : function(callback){
35382         var tree = this.getOwnerTree();
35383         tree.expandPath(this.parentNode.getPath(), false, function(){
35384             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35385             Roo.callback(callback);
35386         }.createDelegate(this));
35387     },
35388
35389     /**
35390      * Expand all child nodes
35391      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35392      */
35393     expandChildNodes : function(deep){
35394         var cs = this.childNodes;
35395         for(var i = 0, len = cs.length; i < len; i++) {
35396                 cs[i].expand(deep);
35397         }
35398     },
35399
35400     /**
35401      * Collapse all child nodes
35402      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35403      */
35404     collapseChildNodes : function(deep){
35405         var cs = this.childNodes;
35406         for(var i = 0, len = cs.length; i < len; i++) {
35407                 cs[i].collapse(deep);
35408         }
35409     },
35410
35411     /**
35412      * Disables this node
35413      */
35414     disable : function(){
35415         this.disabled = true;
35416         this.unselect();
35417         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35418             this.ui.onDisableChange(this, true);
35419         }
35420         this.fireEvent("disabledchange", this, true);
35421     },
35422
35423     /**
35424      * Enables this node
35425      */
35426     enable : function(){
35427         this.disabled = false;
35428         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35429             this.ui.onDisableChange(this, false);
35430         }
35431         this.fireEvent("disabledchange", this, false);
35432     },
35433
35434     // private
35435     renderChildren : function(suppressEvent){
35436         if(suppressEvent !== false){
35437             this.fireEvent("beforechildrenrendered", this);
35438         }
35439         var cs = this.childNodes;
35440         for(var i = 0, len = cs.length; i < len; i++){
35441             cs[i].render(true);
35442         }
35443         this.childrenRendered = true;
35444     },
35445
35446     // private
35447     sort : function(fn, scope){
35448         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35449         if(this.childrenRendered){
35450             var cs = this.childNodes;
35451             for(var i = 0, len = cs.length; i < len; i++){
35452                 cs[i].render(true);
35453             }
35454         }
35455     },
35456
35457     // private
35458     render : function(bulkRender){
35459         this.ui.render(bulkRender);
35460         if(!this.rendered){
35461             this.rendered = true;
35462             if(this.expanded){
35463                 this.expanded = false;
35464                 this.expand(false, false);
35465             }
35466         }
35467     },
35468
35469     // private
35470     renderIndent : function(deep, refresh){
35471         if(refresh){
35472             this.ui.childIndent = null;
35473         }
35474         this.ui.renderIndent();
35475         if(deep === true && this.childrenRendered){
35476             var cs = this.childNodes;
35477             for(var i = 0, len = cs.length; i < len; i++){
35478                 cs[i].renderIndent(true, refresh);
35479             }
35480         }
35481     }
35482 });/*
35483  * Based on:
35484  * Ext JS Library 1.1.1
35485  * Copyright(c) 2006-2007, Ext JS, LLC.
35486  *
35487  * Originally Released Under LGPL - original licence link has changed is not relivant.
35488  *
35489  * Fork - LGPL
35490  * <script type="text/javascript">
35491  */
35492  
35493 /**
35494  * @class Roo.tree.AsyncTreeNode
35495  * @extends Roo.tree.TreeNode
35496  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35497  * @constructor
35498  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35499  */
35500  Roo.tree.AsyncTreeNode = function(config){
35501     this.loaded = false;
35502     this.loading = false;
35503     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35504     /**
35505     * @event beforeload
35506     * Fires before this node is loaded, return false to cancel
35507     * @param {Node} this This node
35508     */
35509     this.addEvents({'beforeload':true, 'load': true});
35510     /**
35511     * @event load
35512     * Fires when this node is loaded
35513     * @param {Node} this This node
35514     */
35515     /**
35516      * The loader used by this node (defaults to using the tree's defined loader)
35517      * @type TreeLoader
35518      * @property loader
35519      */
35520 };
35521 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35522     expand : function(deep, anim, callback){
35523         if(this.loading){ // if an async load is already running, waiting til it's done
35524             var timer;
35525             var f = function(){
35526                 if(!this.loading){ // done loading
35527                     clearInterval(timer);
35528                     this.expand(deep, anim, callback);
35529                 }
35530             }.createDelegate(this);
35531             timer = setInterval(f, 200);
35532             return;
35533         }
35534         if(!this.loaded){
35535             if(this.fireEvent("beforeload", this) === false){
35536                 return;
35537             }
35538             this.loading = true;
35539             this.ui.beforeLoad(this);
35540             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35541             if(loader){
35542                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35543                 return;
35544             }
35545         }
35546         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35547     },
35548     
35549     /**
35550      * Returns true if this node is currently loading
35551      * @return {Boolean}
35552      */
35553     isLoading : function(){
35554         return this.loading;  
35555     },
35556     
35557     loadComplete : function(deep, anim, callback){
35558         this.loading = false;
35559         this.loaded = true;
35560         this.ui.afterLoad(this);
35561         this.fireEvent("load", this);
35562         this.expand(deep, anim, callback);
35563     },
35564     
35565     /**
35566      * Returns true if this node has been loaded
35567      * @return {Boolean}
35568      */
35569     isLoaded : function(){
35570         return this.loaded;
35571     },
35572     
35573     hasChildNodes : function(){
35574         if(!this.isLeaf() && !this.loaded){
35575             return true;
35576         }else{
35577             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35578         }
35579     },
35580
35581     /**
35582      * Trigger a reload for this node
35583      * @param {Function} callback
35584      */
35585     reload : function(callback){
35586         this.collapse(false, false);
35587         while(this.firstChild){
35588             this.removeChild(this.firstChild);
35589         }
35590         this.childrenRendered = false;
35591         this.loaded = false;
35592         if(this.isHiddenRoot()){
35593             this.expanded = false;
35594         }
35595         this.expand(false, false, callback);
35596     }
35597 });/*
35598  * Based on:
35599  * Ext JS Library 1.1.1
35600  * Copyright(c) 2006-2007, Ext JS, LLC.
35601  *
35602  * Originally Released Under LGPL - original licence link has changed is not relivant.
35603  *
35604  * Fork - LGPL
35605  * <script type="text/javascript">
35606  */
35607  
35608 /**
35609  * @class Roo.tree.TreeNodeUI
35610  * @constructor
35611  * @param {Object} node The node to render
35612  * The TreeNode UI implementation is separate from the
35613  * tree implementation. Unless you are customizing the tree UI,
35614  * you should never have to use this directly.
35615  */
35616 Roo.tree.TreeNodeUI = function(node){
35617     this.node = node;
35618     this.rendered = false;
35619     this.animating = false;
35620     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35621 };
35622
35623 Roo.tree.TreeNodeUI.prototype = {
35624     removeChild : function(node){
35625         if(this.rendered){
35626             this.ctNode.removeChild(node.ui.getEl());
35627         }
35628     },
35629
35630     beforeLoad : function(){
35631          this.addClass("x-tree-node-loading");
35632     },
35633
35634     afterLoad : function(){
35635          this.removeClass("x-tree-node-loading");
35636     },
35637
35638     onTextChange : function(node, text, oldText){
35639         if(this.rendered){
35640             this.textNode.innerHTML = text;
35641         }
35642     },
35643
35644     onDisableChange : function(node, state){
35645         this.disabled = state;
35646         if(state){
35647             this.addClass("x-tree-node-disabled");
35648         }else{
35649             this.removeClass("x-tree-node-disabled");
35650         }
35651     },
35652
35653     onSelectedChange : function(state){
35654         if(state){
35655             this.focus();
35656             this.addClass("x-tree-selected");
35657         }else{
35658             //this.blur();
35659             this.removeClass("x-tree-selected");
35660         }
35661     },
35662
35663     onMove : function(tree, node, oldParent, newParent, index, refNode){
35664         this.childIndent = null;
35665         if(this.rendered){
35666             var targetNode = newParent.ui.getContainer();
35667             if(!targetNode){//target not rendered
35668                 this.holder = document.createElement("div");
35669                 this.holder.appendChild(this.wrap);
35670                 return;
35671             }
35672             var insertBefore = refNode ? refNode.ui.getEl() : null;
35673             if(insertBefore){
35674                 targetNode.insertBefore(this.wrap, insertBefore);
35675             }else{
35676                 targetNode.appendChild(this.wrap);
35677             }
35678             this.node.renderIndent(true);
35679         }
35680     },
35681
35682     addClass : function(cls){
35683         if(this.elNode){
35684             Roo.fly(this.elNode).addClass(cls);
35685         }
35686     },
35687
35688     removeClass : function(cls){
35689         if(this.elNode){
35690             Roo.fly(this.elNode).removeClass(cls);
35691         }
35692     },
35693
35694     remove : function(){
35695         if(this.rendered){
35696             this.holder = document.createElement("div");
35697             this.holder.appendChild(this.wrap);
35698         }
35699     },
35700
35701     fireEvent : function(){
35702         return this.node.fireEvent.apply(this.node, arguments);
35703     },
35704
35705     initEvents : function(){
35706         this.node.on("move", this.onMove, this);
35707         var E = Roo.EventManager;
35708         var a = this.anchor;
35709
35710         var el = Roo.fly(a, '_treeui');
35711
35712         if(Roo.isOpera){ // opera render bug ignores the CSS
35713             el.setStyle("text-decoration", "none");
35714         }
35715
35716         el.on("click", this.onClick, this);
35717         el.on("dblclick", this.onDblClick, this);
35718
35719         if(this.checkbox){
35720             Roo.EventManager.on(this.checkbox,
35721                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35722         }
35723
35724         el.on("contextmenu", this.onContextMenu, this);
35725
35726         var icon = Roo.fly(this.iconNode);
35727         icon.on("click", this.onClick, this);
35728         icon.on("dblclick", this.onDblClick, this);
35729         icon.on("contextmenu", this.onContextMenu, this);
35730         E.on(this.ecNode, "click", this.ecClick, this, true);
35731
35732         if(this.node.disabled){
35733             this.addClass("x-tree-node-disabled");
35734         }
35735         if(this.node.hidden){
35736             this.addClass("x-tree-node-disabled");
35737         }
35738         var ot = this.node.getOwnerTree();
35739         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35740         if(dd && (!this.node.isRoot || ot.rootVisible)){
35741             Roo.dd.Registry.register(this.elNode, {
35742                 node: this.node,
35743                 handles: this.getDDHandles(),
35744                 isHandle: false
35745             });
35746         }
35747     },
35748
35749     getDDHandles : function(){
35750         return [this.iconNode, this.textNode];
35751     },
35752
35753     hide : function(){
35754         if(this.rendered){
35755             this.wrap.style.display = "none";
35756         }
35757     },
35758
35759     show : function(){
35760         if(this.rendered){
35761             this.wrap.style.display = "";
35762         }
35763     },
35764
35765     onContextMenu : function(e){
35766         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35767             e.preventDefault();
35768             this.focus();
35769             this.fireEvent("contextmenu", this.node, e);
35770         }
35771     },
35772
35773     onClick : function(e){
35774         if(this.dropping){
35775             e.stopEvent();
35776             return;
35777         }
35778         if(this.fireEvent("beforeclick", this.node, e) !== false){
35779             if(!this.disabled && this.node.attributes.href){
35780                 this.fireEvent("click", this.node, e);
35781                 return;
35782             }
35783             e.preventDefault();
35784             if(this.disabled){
35785                 return;
35786             }
35787
35788             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35789                 this.node.toggle();
35790             }
35791
35792             this.fireEvent("click", this.node, e);
35793         }else{
35794             e.stopEvent();
35795         }
35796     },
35797
35798     onDblClick : function(e){
35799         e.preventDefault();
35800         if(this.disabled){
35801             return;
35802         }
35803         if(this.checkbox){
35804             this.toggleCheck();
35805         }
35806         if(!this.animating && this.node.hasChildNodes()){
35807             this.node.toggle();
35808         }
35809         this.fireEvent("dblclick", this.node, e);
35810     },
35811
35812     onCheckChange : function(){
35813         var checked = this.checkbox.checked;
35814         this.node.attributes.checked = checked;
35815         this.fireEvent('checkchange', this.node, checked);
35816     },
35817
35818     ecClick : function(e){
35819         if(!this.animating && this.node.hasChildNodes()){
35820             this.node.toggle();
35821         }
35822     },
35823
35824     startDrop : function(){
35825         this.dropping = true;
35826     },
35827
35828     // delayed drop so the click event doesn't get fired on a drop
35829     endDrop : function(){
35830        setTimeout(function(){
35831            this.dropping = false;
35832        }.createDelegate(this), 50);
35833     },
35834
35835     expand : function(){
35836         this.updateExpandIcon();
35837         this.ctNode.style.display = "";
35838     },
35839
35840     focus : function(){
35841         if(!this.node.preventHScroll){
35842             try{this.anchor.focus();
35843             }catch(e){}
35844         }else if(!Roo.isIE){
35845             try{
35846                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35847                 var l = noscroll.scrollLeft;
35848                 this.anchor.focus();
35849                 noscroll.scrollLeft = l;
35850             }catch(e){}
35851         }
35852     },
35853
35854     toggleCheck : function(value){
35855         var cb = this.checkbox;
35856         if(cb){
35857             cb.checked = (value === undefined ? !cb.checked : value);
35858         }
35859     },
35860
35861     blur : function(){
35862         try{
35863             this.anchor.blur();
35864         }catch(e){}
35865     },
35866
35867     animExpand : function(callback){
35868         var ct = Roo.get(this.ctNode);
35869         ct.stopFx();
35870         if(!this.node.hasChildNodes()){
35871             this.updateExpandIcon();
35872             this.ctNode.style.display = "";
35873             Roo.callback(callback);
35874             return;
35875         }
35876         this.animating = true;
35877         this.updateExpandIcon();
35878
35879         ct.slideIn('t', {
35880            callback : function(){
35881                this.animating = false;
35882                Roo.callback(callback);
35883             },
35884             scope: this,
35885             duration: this.node.ownerTree.duration || .25
35886         });
35887     },
35888
35889     highlight : function(){
35890         var tree = this.node.getOwnerTree();
35891         Roo.fly(this.wrap).highlight(
35892             tree.hlColor || "C3DAF9",
35893             {endColor: tree.hlBaseColor}
35894         );
35895     },
35896
35897     collapse : function(){
35898         this.updateExpandIcon();
35899         this.ctNode.style.display = "none";
35900     },
35901
35902     animCollapse : function(callback){
35903         var ct = Roo.get(this.ctNode);
35904         ct.enableDisplayMode('block');
35905         ct.stopFx();
35906
35907         this.animating = true;
35908         this.updateExpandIcon();
35909
35910         ct.slideOut('t', {
35911             callback : function(){
35912                this.animating = false;
35913                Roo.callback(callback);
35914             },
35915             scope: this,
35916             duration: this.node.ownerTree.duration || .25
35917         });
35918     },
35919
35920     getContainer : function(){
35921         return this.ctNode;
35922     },
35923
35924     getEl : function(){
35925         return this.wrap;
35926     },
35927
35928     appendDDGhost : function(ghostNode){
35929         ghostNode.appendChild(this.elNode.cloneNode(true));
35930     },
35931
35932     getDDRepairXY : function(){
35933         return Roo.lib.Dom.getXY(this.iconNode);
35934     },
35935
35936     onRender : function(){
35937         this.render();
35938     },
35939
35940     render : function(bulkRender){
35941         var n = this.node, a = n.attributes;
35942         var targetNode = n.parentNode ?
35943               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
35944
35945         if(!this.rendered){
35946             this.rendered = true;
35947
35948             this.renderElements(n, a, targetNode, bulkRender);
35949
35950             if(a.qtip){
35951                if(this.textNode.setAttributeNS){
35952                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
35953                    if(a.qtipTitle){
35954                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
35955                    }
35956                }else{
35957                    this.textNode.setAttribute("ext:qtip", a.qtip);
35958                    if(a.qtipTitle){
35959                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
35960                    }
35961                }
35962             }else if(a.qtipCfg){
35963                 a.qtipCfg.target = Roo.id(this.textNode);
35964                 Roo.QuickTips.register(a.qtipCfg);
35965             }
35966             this.initEvents();
35967             if(!this.node.expanded){
35968                 this.updateExpandIcon();
35969             }
35970         }else{
35971             if(bulkRender === true) {
35972                 targetNode.appendChild(this.wrap);
35973             }
35974         }
35975     },
35976
35977     renderElements : function(n, a, targetNode, bulkRender)
35978     {
35979         // add some indent caching, this helps performance when rendering a large tree
35980         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
35981         var t = n.getOwnerTree();
35982         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
35983         if (typeof(n.attributes.html) != 'undefined') {
35984             txt = n.attributes.html;
35985         }
35986         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
35987         var cb = typeof a.checked == 'boolean';
35988         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
35989         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
35990             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
35991             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
35992             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
35993             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
35994             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
35995              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
35996                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
35997             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
35998             "</li>"];
35999
36000         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36001             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36002                                 n.nextSibling.ui.getEl(), buf.join(""));
36003         }else{
36004             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36005         }
36006
36007         this.elNode = this.wrap.childNodes[0];
36008         this.ctNode = this.wrap.childNodes[1];
36009         var cs = this.elNode.childNodes;
36010         this.indentNode = cs[0];
36011         this.ecNode = cs[1];
36012         this.iconNode = cs[2];
36013         var index = 3;
36014         if(cb){
36015             this.checkbox = cs[3];
36016             index++;
36017         }
36018         this.anchor = cs[index];
36019         this.textNode = cs[index].firstChild;
36020     },
36021
36022     getAnchor : function(){
36023         return this.anchor;
36024     },
36025
36026     getTextEl : function(){
36027         return this.textNode;
36028     },
36029
36030     getIconEl : function(){
36031         return this.iconNode;
36032     },
36033
36034     isChecked : function(){
36035         return this.checkbox ? this.checkbox.checked : false;
36036     },
36037
36038     updateExpandIcon : function(){
36039         if(this.rendered){
36040             var n = this.node, c1, c2;
36041             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36042             var hasChild = n.hasChildNodes();
36043             if(hasChild){
36044                 if(n.expanded){
36045                     cls += "-minus";
36046                     c1 = "x-tree-node-collapsed";
36047                     c2 = "x-tree-node-expanded";
36048                 }else{
36049                     cls += "-plus";
36050                     c1 = "x-tree-node-expanded";
36051                     c2 = "x-tree-node-collapsed";
36052                 }
36053                 if(this.wasLeaf){
36054                     this.removeClass("x-tree-node-leaf");
36055                     this.wasLeaf = false;
36056                 }
36057                 if(this.c1 != c1 || this.c2 != c2){
36058                     Roo.fly(this.elNode).replaceClass(c1, c2);
36059                     this.c1 = c1; this.c2 = c2;
36060                 }
36061             }else{
36062                 // this changes non-leafs into leafs if they have no children.
36063                 // it's not very rational behaviour..
36064                 
36065                 if(!this.wasLeaf && this.node.leaf){
36066                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36067                     delete this.c1;
36068                     delete this.c2;
36069                     this.wasLeaf = true;
36070                 }
36071             }
36072             var ecc = "x-tree-ec-icon "+cls;
36073             if(this.ecc != ecc){
36074                 this.ecNode.className = ecc;
36075                 this.ecc = ecc;
36076             }
36077         }
36078     },
36079
36080     getChildIndent : function(){
36081         if(!this.childIndent){
36082             var buf = [];
36083             var p = this.node;
36084             while(p){
36085                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36086                     if(!p.isLast()) {
36087                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36088                     } else {
36089                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36090                     }
36091                 }
36092                 p = p.parentNode;
36093             }
36094             this.childIndent = buf.join("");
36095         }
36096         return this.childIndent;
36097     },
36098
36099     renderIndent : function(){
36100         if(this.rendered){
36101             var indent = "";
36102             var p = this.node.parentNode;
36103             if(p){
36104                 indent = p.ui.getChildIndent();
36105             }
36106             if(this.indentMarkup != indent){ // don't rerender if not required
36107                 this.indentNode.innerHTML = indent;
36108                 this.indentMarkup = indent;
36109             }
36110             this.updateExpandIcon();
36111         }
36112     }
36113 };
36114
36115 Roo.tree.RootTreeNodeUI = function(){
36116     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36117 };
36118 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36119     render : function(){
36120         if(!this.rendered){
36121             var targetNode = this.node.ownerTree.innerCt.dom;
36122             this.node.expanded = true;
36123             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36124             this.wrap = this.ctNode = targetNode.firstChild;
36125         }
36126     },
36127     collapse : function(){
36128     },
36129     expand : function(){
36130     }
36131 });/*
36132  * Based on:
36133  * Ext JS Library 1.1.1
36134  * Copyright(c) 2006-2007, Ext JS, LLC.
36135  *
36136  * Originally Released Under LGPL - original licence link has changed is not relivant.
36137  *
36138  * Fork - LGPL
36139  * <script type="text/javascript">
36140  */
36141 /**
36142  * @class Roo.tree.TreeLoader
36143  * @extends Roo.util.Observable
36144  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36145  * nodes from a specified URL. The response must be a javascript Array definition
36146  * who's elements are node definition objects. eg:
36147  * <pre><code>
36148 {  success : true,
36149    data :      [
36150    
36151     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36152     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36153     ]
36154 }
36155
36156
36157 </code></pre>
36158  * <br><br>
36159  * The old style respose with just an array is still supported, but not recommended.
36160  * <br><br>
36161  *
36162  * A server request is sent, and child nodes are loaded only when a node is expanded.
36163  * The loading node's id is passed to the server under the parameter name "node" to
36164  * enable the server to produce the correct child nodes.
36165  * <br><br>
36166  * To pass extra parameters, an event handler may be attached to the "beforeload"
36167  * event, and the parameters specified in the TreeLoader's baseParams property:
36168  * <pre><code>
36169     myTreeLoader.on("beforeload", function(treeLoader, node) {
36170         this.baseParams.category = node.attributes.category;
36171     }, this);
36172     
36173 </code></pre>
36174  *
36175  * This would pass an HTTP parameter called "category" to the server containing
36176  * the value of the Node's "category" attribute.
36177  * @constructor
36178  * Creates a new Treeloader.
36179  * @param {Object} config A config object containing config properties.
36180  */
36181 Roo.tree.TreeLoader = function(config){
36182     this.baseParams = {};
36183     this.requestMethod = "POST";
36184     Roo.apply(this, config);
36185
36186     this.addEvents({
36187     
36188         /**
36189          * @event beforeload
36190          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36191          * @param {Object} This TreeLoader object.
36192          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36193          * @param {Object} callback The callback function specified in the {@link #load} call.
36194          */
36195         beforeload : true,
36196         /**
36197          * @event load
36198          * Fires when the node has been successfuly loaded.
36199          * @param {Object} This TreeLoader object.
36200          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36201          * @param {Object} response The response object containing the data from the server.
36202          */
36203         load : true,
36204         /**
36205          * @event loadexception
36206          * Fires if the network request failed.
36207          * @param {Object} This TreeLoader object.
36208          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36209          * @param {Object} response The response object containing the data from the server.
36210          */
36211         loadexception : true,
36212         /**
36213          * @event create
36214          * Fires before a node is created, enabling you to return custom Node types 
36215          * @param {Object} This TreeLoader object.
36216          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36217          */
36218         create : true
36219     });
36220
36221     Roo.tree.TreeLoader.superclass.constructor.call(this);
36222 };
36223
36224 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36225     /**
36226     * @cfg {String} dataUrl The URL from which to request a Json string which
36227     * specifies an array of node definition object representing the child nodes
36228     * to be loaded.
36229     */
36230     /**
36231     * @cfg {String} requestMethod either GET or POST
36232     * defaults to POST (due to BC)
36233     * to be loaded.
36234     */
36235     /**
36236     * @cfg {Object} baseParams (optional) An object containing properties which
36237     * specify HTTP parameters to be passed to each request for child nodes.
36238     */
36239     /**
36240     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36241     * created by this loader. If the attributes sent by the server have an attribute in this object,
36242     * they take priority.
36243     */
36244     /**
36245     * @cfg {Object} uiProviders (optional) An object containing properties which
36246     * 
36247     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36248     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36249     * <i>uiProvider</i> attribute of a returned child node is a string rather
36250     * than a reference to a TreeNodeUI implementation, this that string value
36251     * is used as a property name in the uiProviders object. You can define the provider named
36252     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36253     */
36254     uiProviders : {},
36255
36256     /**
36257     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36258     * child nodes before loading.
36259     */
36260     clearOnLoad : true,
36261
36262     /**
36263     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36264     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36265     * Grid query { data : [ .....] }
36266     */
36267     
36268     root : false,
36269      /**
36270     * @cfg {String} queryParam (optional) 
36271     * Name of the query as it will be passed on the querystring (defaults to 'node')
36272     * eg. the request will be ?node=[id]
36273     */
36274     
36275     
36276     queryParam: false,
36277     
36278     /**
36279      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36280      * This is called automatically when a node is expanded, but may be used to reload
36281      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36282      * @param {Roo.tree.TreeNode} node
36283      * @param {Function} callback
36284      */
36285     load : function(node, callback){
36286         if(this.clearOnLoad){
36287             while(node.firstChild){
36288                 node.removeChild(node.firstChild);
36289             }
36290         }
36291         if(node.attributes.children){ // preloaded json children
36292             var cs = node.attributes.children;
36293             for(var i = 0, len = cs.length; i < len; i++){
36294                 node.appendChild(this.createNode(cs[i]));
36295             }
36296             if(typeof callback == "function"){
36297                 callback();
36298             }
36299         }else if(this.dataUrl){
36300             this.requestData(node, callback);
36301         }
36302     },
36303
36304     getParams: function(node){
36305         var buf = [], bp = this.baseParams;
36306         for(var key in bp){
36307             if(typeof bp[key] != "function"){
36308                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36309             }
36310         }
36311         var n = this.queryParam === false ? 'node' : this.queryParam;
36312         buf.push(n + "=", encodeURIComponent(node.id));
36313         return buf.join("");
36314     },
36315
36316     requestData : function(node, callback){
36317         if(this.fireEvent("beforeload", this, node, callback) !== false){
36318             this.transId = Roo.Ajax.request({
36319                 method:this.requestMethod,
36320                 url: this.dataUrl||this.url,
36321                 success: this.handleResponse,
36322                 failure: this.handleFailure,
36323                 scope: this,
36324                 argument: {callback: callback, node: node},
36325                 params: this.getParams(node)
36326             });
36327         }else{
36328             // if the load is cancelled, make sure we notify
36329             // the node that we are done
36330             if(typeof callback == "function"){
36331                 callback();
36332             }
36333         }
36334     },
36335
36336     isLoading : function(){
36337         return this.transId ? true : false;
36338     },
36339
36340     abort : function(){
36341         if(this.isLoading()){
36342             Roo.Ajax.abort(this.transId);
36343         }
36344     },
36345
36346     // private
36347     createNode : function(attr)
36348     {
36349         // apply baseAttrs, nice idea Corey!
36350         if(this.baseAttrs){
36351             Roo.applyIf(attr, this.baseAttrs);
36352         }
36353         if(this.applyLoader !== false){
36354             attr.loader = this;
36355         }
36356         // uiProvider = depreciated..
36357         
36358         if(typeof(attr.uiProvider) == 'string'){
36359            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36360                 /**  eval:var:attr */ eval(attr.uiProvider);
36361         }
36362         if(typeof(this.uiProviders['default']) != 'undefined') {
36363             attr.uiProvider = this.uiProviders['default'];
36364         }
36365         
36366         this.fireEvent('create', this, attr);
36367         
36368         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36369         return(attr.leaf ?
36370                         new Roo.tree.TreeNode(attr) :
36371                         new Roo.tree.AsyncTreeNode(attr));
36372     },
36373
36374     processResponse : function(response, node, callback)
36375     {
36376         var json = response.responseText;
36377         try {
36378             
36379             var o = Roo.decode(json);
36380             
36381             if (this.root === false && typeof(o.success) != undefined) {
36382                 this.root = 'data'; // the default behaviour for list like data..
36383                 }
36384                 
36385             if (this.root !== false &&  !o.success) {
36386                 // it's a failure condition.
36387                 var a = response.argument;
36388                 this.fireEvent("loadexception", this, a.node, response);
36389                 Roo.log("Load failed - should have a handler really");
36390                 return;
36391             }
36392             
36393             
36394             
36395             if (this.root !== false) {
36396                  o = o[this.root];
36397             }
36398             
36399             for(var i = 0, len = o.length; i < len; i++){
36400                 var n = this.createNode(o[i]);
36401                 if(n){
36402                     node.appendChild(n);
36403                 }
36404             }
36405             if(typeof callback == "function"){
36406                 callback(this, node);
36407             }
36408         }catch(e){
36409             this.handleFailure(response);
36410         }
36411     },
36412
36413     handleResponse : function(response){
36414         this.transId = false;
36415         var a = response.argument;
36416         this.processResponse(response, a.node, a.callback);
36417         this.fireEvent("load", this, a.node, response);
36418     },
36419
36420     handleFailure : function(response)
36421     {
36422         // should handle failure better..
36423         this.transId = false;
36424         var a = response.argument;
36425         this.fireEvent("loadexception", this, a.node, response);
36426         if(typeof a.callback == "function"){
36427             a.callback(this, a.node);
36428         }
36429     }
36430 });/*
36431  * Based on:
36432  * Ext JS Library 1.1.1
36433  * Copyright(c) 2006-2007, Ext JS, LLC.
36434  *
36435  * Originally Released Under LGPL - original licence link has changed is not relivant.
36436  *
36437  * Fork - LGPL
36438  * <script type="text/javascript">
36439  */
36440
36441 /**
36442 * @class Roo.tree.TreeFilter
36443 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36444 * @param {TreePanel} tree
36445 * @param {Object} config (optional)
36446  */
36447 Roo.tree.TreeFilter = function(tree, config){
36448     this.tree = tree;
36449     this.filtered = {};
36450     Roo.apply(this, config);
36451 };
36452
36453 Roo.tree.TreeFilter.prototype = {
36454     clearBlank:false,
36455     reverse:false,
36456     autoClear:false,
36457     remove:false,
36458
36459      /**
36460      * Filter the data by a specific attribute.
36461      * @param {String/RegExp} value Either string that the attribute value
36462      * should start with or a RegExp to test against the attribute
36463      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36464      * @param {TreeNode} startNode (optional) The node to start the filter at.
36465      */
36466     filter : function(value, attr, startNode){
36467         attr = attr || "text";
36468         var f;
36469         if(typeof value == "string"){
36470             var vlen = value.length;
36471             // auto clear empty filter
36472             if(vlen == 0 && this.clearBlank){
36473                 this.clear();
36474                 return;
36475             }
36476             value = value.toLowerCase();
36477             f = function(n){
36478                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36479             };
36480         }else if(value.exec){ // regex?
36481             f = function(n){
36482                 return value.test(n.attributes[attr]);
36483             };
36484         }else{
36485             throw 'Illegal filter type, must be string or regex';
36486         }
36487         this.filterBy(f, null, startNode);
36488         },
36489
36490     /**
36491      * Filter by a function. The passed function will be called with each
36492      * node in the tree (or from the startNode). If the function returns true, the node is kept
36493      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36494      * @param {Function} fn The filter function
36495      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36496      */
36497     filterBy : function(fn, scope, startNode){
36498         startNode = startNode || this.tree.root;
36499         if(this.autoClear){
36500             this.clear();
36501         }
36502         var af = this.filtered, rv = this.reverse;
36503         var f = function(n){
36504             if(n == startNode){
36505                 return true;
36506             }
36507             if(af[n.id]){
36508                 return false;
36509             }
36510             var m = fn.call(scope || n, n);
36511             if(!m || rv){
36512                 af[n.id] = n;
36513                 n.ui.hide();
36514                 return false;
36515             }
36516             return true;
36517         };
36518         startNode.cascade(f);
36519         if(this.remove){
36520            for(var id in af){
36521                if(typeof id != "function"){
36522                    var n = af[id];
36523                    if(n && n.parentNode){
36524                        n.parentNode.removeChild(n);
36525                    }
36526                }
36527            }
36528         }
36529     },
36530
36531     /**
36532      * Clears the current filter. Note: with the "remove" option
36533      * set a filter cannot be cleared.
36534      */
36535     clear : function(){
36536         var t = this.tree;
36537         var af = this.filtered;
36538         for(var id in af){
36539             if(typeof id != "function"){
36540                 var n = af[id];
36541                 if(n){
36542                     n.ui.show();
36543                 }
36544             }
36545         }
36546         this.filtered = {};
36547     }
36548 };
36549 /*
36550  * Based on:
36551  * Ext JS Library 1.1.1
36552  * Copyright(c) 2006-2007, Ext JS, LLC.
36553  *
36554  * Originally Released Under LGPL - original licence link has changed is not relivant.
36555  *
36556  * Fork - LGPL
36557  * <script type="text/javascript">
36558  */
36559  
36560
36561 /**
36562  * @class Roo.tree.TreeSorter
36563  * Provides sorting of nodes in a TreePanel
36564  * 
36565  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36566  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36567  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36568  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36569  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36570  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36571  * @constructor
36572  * @param {TreePanel} tree
36573  * @param {Object} config
36574  */
36575 Roo.tree.TreeSorter = function(tree, config){
36576     Roo.apply(this, config);
36577     tree.on("beforechildrenrendered", this.doSort, this);
36578     tree.on("append", this.updateSort, this);
36579     tree.on("insert", this.updateSort, this);
36580     
36581     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36582     var p = this.property || "text";
36583     var sortType = this.sortType;
36584     var fs = this.folderSort;
36585     var cs = this.caseSensitive === true;
36586     var leafAttr = this.leafAttr || 'leaf';
36587
36588     this.sortFn = function(n1, n2){
36589         if(fs){
36590             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36591                 return 1;
36592             }
36593             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36594                 return -1;
36595             }
36596         }
36597         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36598         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36599         if(v1 < v2){
36600                         return dsc ? +1 : -1;
36601                 }else if(v1 > v2){
36602                         return dsc ? -1 : +1;
36603         }else{
36604                 return 0;
36605         }
36606     };
36607 };
36608
36609 Roo.tree.TreeSorter.prototype = {
36610     doSort : function(node){
36611         node.sort(this.sortFn);
36612     },
36613     
36614     compareNodes : function(n1, n2){
36615         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36616     },
36617     
36618     updateSort : function(tree, node){
36619         if(node.childrenRendered){
36620             this.doSort.defer(1, this, [node]);
36621         }
36622     }
36623 };/*
36624  * Based on:
36625  * Ext JS Library 1.1.1
36626  * Copyright(c) 2006-2007, Ext JS, LLC.
36627  *
36628  * Originally Released Under LGPL - original licence link has changed is not relivant.
36629  *
36630  * Fork - LGPL
36631  * <script type="text/javascript">
36632  */
36633
36634 if(Roo.dd.DropZone){
36635     
36636 Roo.tree.TreeDropZone = function(tree, config){
36637     this.allowParentInsert = false;
36638     this.allowContainerDrop = false;
36639     this.appendOnly = false;
36640     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36641     this.tree = tree;
36642     this.lastInsertClass = "x-tree-no-status";
36643     this.dragOverData = {};
36644 };
36645
36646 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36647     ddGroup : "TreeDD",
36648     scroll:  true,
36649     
36650     expandDelay : 1000,
36651     
36652     expandNode : function(node){
36653         if(node.hasChildNodes() && !node.isExpanded()){
36654             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36655         }
36656     },
36657     
36658     queueExpand : function(node){
36659         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36660     },
36661     
36662     cancelExpand : function(){
36663         if(this.expandProcId){
36664             clearTimeout(this.expandProcId);
36665             this.expandProcId = false;
36666         }
36667     },
36668     
36669     isValidDropPoint : function(n, pt, dd, e, data){
36670         if(!n || !data){ return false; }
36671         var targetNode = n.node;
36672         var dropNode = data.node;
36673         // default drop rules
36674         if(!(targetNode && targetNode.isTarget && pt)){
36675             return false;
36676         }
36677         if(pt == "append" && targetNode.allowChildren === false){
36678             return false;
36679         }
36680         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36681             return false;
36682         }
36683         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36684             return false;
36685         }
36686         // reuse the object
36687         var overEvent = this.dragOverData;
36688         overEvent.tree = this.tree;
36689         overEvent.target = targetNode;
36690         overEvent.data = data;
36691         overEvent.point = pt;
36692         overEvent.source = dd;
36693         overEvent.rawEvent = e;
36694         overEvent.dropNode = dropNode;
36695         overEvent.cancel = false;  
36696         var result = this.tree.fireEvent("nodedragover", overEvent);
36697         return overEvent.cancel === false && result !== false;
36698     },
36699     
36700     getDropPoint : function(e, n, dd)
36701     {
36702         var tn = n.node;
36703         if(tn.isRoot){
36704             return tn.allowChildren !== false ? "append" : false; // always append for root
36705         }
36706         var dragEl = n.ddel;
36707         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36708         var y = Roo.lib.Event.getPageY(e);
36709         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36710         
36711         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36712         var noAppend = tn.allowChildren === false;
36713         if(this.appendOnly || tn.parentNode.allowChildren === false){
36714             return noAppend ? false : "append";
36715         }
36716         var noBelow = false;
36717         if(!this.allowParentInsert){
36718             noBelow = tn.hasChildNodes() && tn.isExpanded();
36719         }
36720         var q = (b - t) / (noAppend ? 2 : 3);
36721         if(y >= t && y < (t + q)){
36722             return "above";
36723         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36724             return "below";
36725         }else{
36726             return "append";
36727         }
36728     },
36729     
36730     onNodeEnter : function(n, dd, e, data)
36731     {
36732         this.cancelExpand();
36733     },
36734     
36735     onNodeOver : function(n, dd, e, data)
36736     {
36737        
36738         var pt = this.getDropPoint(e, n, dd);
36739         var node = n.node;
36740         
36741         // auto node expand check
36742         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36743             this.queueExpand(node);
36744         }else if(pt != "append"){
36745             this.cancelExpand();
36746         }
36747         
36748         // set the insert point style on the target node
36749         var returnCls = this.dropNotAllowed;
36750         if(this.isValidDropPoint(n, pt, dd, e, data)){
36751            if(pt){
36752                var el = n.ddel;
36753                var cls;
36754                if(pt == "above"){
36755                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36756                    cls = "x-tree-drag-insert-above";
36757                }else if(pt == "below"){
36758                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36759                    cls = "x-tree-drag-insert-below";
36760                }else{
36761                    returnCls = "x-tree-drop-ok-append";
36762                    cls = "x-tree-drag-append";
36763                }
36764                if(this.lastInsertClass != cls){
36765                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36766                    this.lastInsertClass = cls;
36767                }
36768            }
36769        }
36770        return returnCls;
36771     },
36772     
36773     onNodeOut : function(n, dd, e, data){
36774         
36775         this.cancelExpand();
36776         this.removeDropIndicators(n);
36777     },
36778     
36779     onNodeDrop : function(n, dd, e, data){
36780         var point = this.getDropPoint(e, n, dd);
36781         var targetNode = n.node;
36782         targetNode.ui.startDrop();
36783         if(!this.isValidDropPoint(n, point, dd, e, data)){
36784             targetNode.ui.endDrop();
36785             return false;
36786         }
36787         // first try to find the drop node
36788         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36789         var dropEvent = {
36790             tree : this.tree,
36791             target: targetNode,
36792             data: data,
36793             point: point,
36794             source: dd,
36795             rawEvent: e,
36796             dropNode: dropNode,
36797             cancel: !dropNode   
36798         };
36799         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36800         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36801             targetNode.ui.endDrop();
36802             return false;
36803         }
36804         // allow target changing
36805         targetNode = dropEvent.target;
36806         if(point == "append" && !targetNode.isExpanded()){
36807             targetNode.expand(false, null, function(){
36808                 this.completeDrop(dropEvent);
36809             }.createDelegate(this));
36810         }else{
36811             this.completeDrop(dropEvent);
36812         }
36813         return true;
36814     },
36815     
36816     completeDrop : function(de){
36817         var ns = de.dropNode, p = de.point, t = de.target;
36818         if(!(ns instanceof Array)){
36819             ns = [ns];
36820         }
36821         var n;
36822         for(var i = 0, len = ns.length; i < len; i++){
36823             n = ns[i];
36824             if(p == "above"){
36825                 t.parentNode.insertBefore(n, t);
36826             }else if(p == "below"){
36827                 t.parentNode.insertBefore(n, t.nextSibling);
36828             }else{
36829                 t.appendChild(n);
36830             }
36831         }
36832         n.ui.focus();
36833         if(this.tree.hlDrop){
36834             n.ui.highlight();
36835         }
36836         t.ui.endDrop();
36837         this.tree.fireEvent("nodedrop", de);
36838     },
36839     
36840     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36841         if(this.tree.hlDrop){
36842             dropNode.ui.focus();
36843             dropNode.ui.highlight();
36844         }
36845         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36846     },
36847     
36848     getTree : function(){
36849         return this.tree;
36850     },
36851     
36852     removeDropIndicators : function(n){
36853         if(n && n.ddel){
36854             var el = n.ddel;
36855             Roo.fly(el).removeClass([
36856                     "x-tree-drag-insert-above",
36857                     "x-tree-drag-insert-below",
36858                     "x-tree-drag-append"]);
36859             this.lastInsertClass = "_noclass";
36860         }
36861     },
36862     
36863     beforeDragDrop : function(target, e, id){
36864         this.cancelExpand();
36865         return true;
36866     },
36867     
36868     afterRepair : function(data){
36869         if(data && Roo.enableFx){
36870             data.node.ui.highlight();
36871         }
36872         this.hideProxy();
36873     } 
36874     
36875 });
36876
36877 }
36878 /*
36879  * Based on:
36880  * Ext JS Library 1.1.1
36881  * Copyright(c) 2006-2007, Ext JS, LLC.
36882  *
36883  * Originally Released Under LGPL - original licence link has changed is not relivant.
36884  *
36885  * Fork - LGPL
36886  * <script type="text/javascript">
36887  */
36888  
36889
36890 if(Roo.dd.DragZone){
36891 Roo.tree.TreeDragZone = function(tree, config){
36892     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36893     this.tree = tree;
36894 };
36895
36896 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36897     ddGroup : "TreeDD",
36898    
36899     onBeforeDrag : function(data, e){
36900         var n = data.node;
36901         return n && n.draggable && !n.disabled;
36902     },
36903      
36904     
36905     onInitDrag : function(e){
36906         var data = this.dragData;
36907         this.tree.getSelectionModel().select(data.node);
36908         this.proxy.update("");
36909         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36910         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36911     },
36912     
36913     getRepairXY : function(e, data){
36914         return data.node.ui.getDDRepairXY();
36915     },
36916     
36917     onEndDrag : function(data, e){
36918         this.tree.fireEvent("enddrag", this.tree, data.node, e);
36919         
36920         
36921     },
36922     
36923     onValidDrop : function(dd, e, id){
36924         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
36925         this.hideProxy();
36926     },
36927     
36928     beforeInvalidDrop : function(e, id){
36929         // this scrolls the original position back into view
36930         var sm = this.tree.getSelectionModel();
36931         sm.clearSelections();
36932         sm.select(this.dragData.node);
36933     }
36934 });
36935 }/*
36936  * Based on:
36937  * Ext JS Library 1.1.1
36938  * Copyright(c) 2006-2007, Ext JS, LLC.
36939  *
36940  * Originally Released Under LGPL - original licence link has changed is not relivant.
36941  *
36942  * Fork - LGPL
36943  * <script type="text/javascript">
36944  */
36945 /**
36946  * @class Roo.tree.TreeEditor
36947  * @extends Roo.Editor
36948  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
36949  * as the editor field.
36950  * @constructor
36951  * @param {Object} config (used to be the tree panel.)
36952  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
36953  * 
36954  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
36955  * @cfg {Roo.form.TextField|Object} field The field configuration
36956  *
36957  * 
36958  */
36959 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
36960     var tree = config;
36961     var field;
36962     if (oldconfig) { // old style..
36963         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
36964     } else {
36965         // new style..
36966         tree = config.tree;
36967         config.field = config.field  || {};
36968         config.field.xtype = 'TextField';
36969         field = Roo.factory(config.field, Roo.form);
36970     }
36971     config = config || {};
36972     
36973     
36974     this.addEvents({
36975         /**
36976          * @event beforenodeedit
36977          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
36978          * false from the handler of this event.
36979          * @param {Editor} this
36980          * @param {Roo.tree.Node} node 
36981          */
36982         "beforenodeedit" : true
36983     });
36984     
36985     //Roo.log(config);
36986     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
36987
36988     this.tree = tree;
36989
36990     tree.on('beforeclick', this.beforeNodeClick, this);
36991     tree.getTreeEl().on('mousedown', this.hide, this);
36992     this.on('complete', this.updateNode, this);
36993     this.on('beforestartedit', this.fitToTree, this);
36994     this.on('startedit', this.bindScroll, this, {delay:10});
36995     this.on('specialkey', this.onSpecialKey, this);
36996 };
36997
36998 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
36999     /**
37000      * @cfg {String} alignment
37001      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37002      */
37003     alignment: "l-l",
37004     // inherit
37005     autoSize: false,
37006     /**
37007      * @cfg {Boolean} hideEl
37008      * True to hide the bound element while the editor is displayed (defaults to false)
37009      */
37010     hideEl : false,
37011     /**
37012      * @cfg {String} cls
37013      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37014      */
37015     cls: "x-small-editor x-tree-editor",
37016     /**
37017      * @cfg {Boolean} shim
37018      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37019      */
37020     shim:false,
37021     // inherit
37022     shadow:"frame",
37023     /**
37024      * @cfg {Number} maxWidth
37025      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37026      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37027      * scroll and client offsets into account prior to each edit.
37028      */
37029     maxWidth: 250,
37030
37031     editDelay : 350,
37032
37033     // private
37034     fitToTree : function(ed, el){
37035         var td = this.tree.getTreeEl().dom, nd = el.dom;
37036         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37037             td.scrollLeft = nd.offsetLeft;
37038         }
37039         var w = Math.min(
37040                 this.maxWidth,
37041                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37042         this.setSize(w, '');
37043         
37044         return this.fireEvent('beforenodeedit', this, this.editNode);
37045         
37046     },
37047
37048     // private
37049     triggerEdit : function(node){
37050         this.completeEdit();
37051         this.editNode = node;
37052         this.startEdit(node.ui.textNode, node.text);
37053     },
37054
37055     // private
37056     bindScroll : function(){
37057         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37058     },
37059
37060     // private
37061     beforeNodeClick : function(node, e){
37062         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37063         this.lastClick = new Date();
37064         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37065             e.stopEvent();
37066             this.triggerEdit(node);
37067             return false;
37068         }
37069         return true;
37070     },
37071
37072     // private
37073     updateNode : function(ed, value){
37074         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37075         this.editNode.setText(value);
37076     },
37077
37078     // private
37079     onHide : function(){
37080         Roo.tree.TreeEditor.superclass.onHide.call(this);
37081         if(this.editNode){
37082             this.editNode.ui.focus();
37083         }
37084     },
37085
37086     // private
37087     onSpecialKey : function(field, e){
37088         var k = e.getKey();
37089         if(k == e.ESC){
37090             e.stopEvent();
37091             this.cancelEdit();
37092         }else if(k == e.ENTER && !e.hasModifier()){
37093             e.stopEvent();
37094             this.completeEdit();
37095         }
37096     }
37097 });//<Script type="text/javascript">
37098 /*
37099  * Based on:
37100  * Ext JS Library 1.1.1
37101  * Copyright(c) 2006-2007, Ext JS, LLC.
37102  *
37103  * Originally Released Under LGPL - original licence link has changed is not relivant.
37104  *
37105  * Fork - LGPL
37106  * <script type="text/javascript">
37107  */
37108  
37109 /**
37110  * Not documented??? - probably should be...
37111  */
37112
37113 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37114     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37115     
37116     renderElements : function(n, a, targetNode, bulkRender){
37117         //consel.log("renderElements?");
37118         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37119
37120         var t = n.getOwnerTree();
37121         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37122         
37123         var cols = t.columns;
37124         var bw = t.borderWidth;
37125         var c = cols[0];
37126         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37127          var cb = typeof a.checked == "boolean";
37128         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37129         var colcls = 'x-t-' + tid + '-c0';
37130         var buf = [
37131             '<li class="x-tree-node">',
37132             
37133                 
37134                 '<div class="x-tree-node-el ', a.cls,'">',
37135                     // extran...
37136                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37137                 
37138                 
37139                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37140                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37141                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37142                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37143                            (a.iconCls ? ' '+a.iconCls : ''),
37144                            '" unselectable="on" />',
37145                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37146                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37147                              
37148                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37149                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37150                             '<span unselectable="on" qtip="' + tx + '">',
37151                              tx,
37152                              '</span></a>' ,
37153                     '</div>',
37154                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37155                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37156                  ];
37157         for(var i = 1, len = cols.length; i < len; i++){
37158             c = cols[i];
37159             colcls = 'x-t-' + tid + '-c' +i;
37160             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37161             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37162                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37163                       "</div>");
37164          }
37165          
37166          buf.push(
37167             '</a>',
37168             '<div class="x-clear"></div></div>',
37169             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37170             "</li>");
37171         
37172         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37173             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37174                                 n.nextSibling.ui.getEl(), buf.join(""));
37175         }else{
37176             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37177         }
37178         var el = this.wrap.firstChild;
37179         this.elRow = el;
37180         this.elNode = el.firstChild;
37181         this.ranchor = el.childNodes[1];
37182         this.ctNode = this.wrap.childNodes[1];
37183         var cs = el.firstChild.childNodes;
37184         this.indentNode = cs[0];
37185         this.ecNode = cs[1];
37186         this.iconNode = cs[2];
37187         var index = 3;
37188         if(cb){
37189             this.checkbox = cs[3];
37190             index++;
37191         }
37192         this.anchor = cs[index];
37193         
37194         this.textNode = cs[index].firstChild;
37195         
37196         //el.on("click", this.onClick, this);
37197         //el.on("dblclick", this.onDblClick, this);
37198         
37199         
37200        // console.log(this);
37201     },
37202     initEvents : function(){
37203         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37204         
37205             
37206         var a = this.ranchor;
37207
37208         var el = Roo.get(a);
37209
37210         if(Roo.isOpera){ // opera render bug ignores the CSS
37211             el.setStyle("text-decoration", "none");
37212         }
37213
37214         el.on("click", this.onClick, this);
37215         el.on("dblclick", this.onDblClick, this);
37216         el.on("contextmenu", this.onContextMenu, this);
37217         
37218     },
37219     
37220     /*onSelectedChange : function(state){
37221         if(state){
37222             this.focus();
37223             this.addClass("x-tree-selected");
37224         }else{
37225             //this.blur();
37226             this.removeClass("x-tree-selected");
37227         }
37228     },*/
37229     addClass : function(cls){
37230         if(this.elRow){
37231             Roo.fly(this.elRow).addClass(cls);
37232         }
37233         
37234     },
37235     
37236     
37237     removeClass : function(cls){
37238         if(this.elRow){
37239             Roo.fly(this.elRow).removeClass(cls);
37240         }
37241     }
37242
37243     
37244     
37245 });//<Script type="text/javascript">
37246
37247 /*
37248  * Based on:
37249  * Ext JS Library 1.1.1
37250  * Copyright(c) 2006-2007, Ext JS, LLC.
37251  *
37252  * Originally Released Under LGPL - original licence link has changed is not relivant.
37253  *
37254  * Fork - LGPL
37255  * <script type="text/javascript">
37256  */
37257  
37258
37259 /**
37260  * @class Roo.tree.ColumnTree
37261  * @extends Roo.data.TreePanel
37262  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37263  * @cfg {int} borderWidth  compined right/left border allowance
37264  * @constructor
37265  * @param {String/HTMLElement/Element} el The container element
37266  * @param {Object} config
37267  */
37268 Roo.tree.ColumnTree =  function(el, config)
37269 {
37270    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37271    this.addEvents({
37272         /**
37273         * @event resize
37274         * Fire this event on a container when it resizes
37275         * @param {int} w Width
37276         * @param {int} h Height
37277         */
37278        "resize" : true
37279     });
37280     this.on('resize', this.onResize, this);
37281 };
37282
37283 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37284     //lines:false,
37285     
37286     
37287     borderWidth: Roo.isBorderBox ? 0 : 2, 
37288     headEls : false,
37289     
37290     render : function(){
37291         // add the header.....
37292        
37293         Roo.tree.ColumnTree.superclass.render.apply(this);
37294         
37295         this.el.addClass('x-column-tree');
37296         
37297         this.headers = this.el.createChild(
37298             {cls:'x-tree-headers'},this.innerCt.dom);
37299    
37300         var cols = this.columns, c;
37301         var totalWidth = 0;
37302         this.headEls = [];
37303         var  len = cols.length;
37304         for(var i = 0; i < len; i++){
37305              c = cols[i];
37306              totalWidth += c.width;
37307             this.headEls.push(this.headers.createChild({
37308                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37309                  cn: {
37310                      cls:'x-tree-hd-text',
37311                      html: c.header
37312                  },
37313                  style:'width:'+(c.width-this.borderWidth)+'px;'
37314              }));
37315         }
37316         this.headers.createChild({cls:'x-clear'});
37317         // prevent floats from wrapping when clipped
37318         this.headers.setWidth(totalWidth);
37319         //this.innerCt.setWidth(totalWidth);
37320         this.innerCt.setStyle({ overflow: 'auto' });
37321         this.onResize(this.width, this.height);
37322              
37323         
37324     },
37325     onResize : function(w,h)
37326     {
37327         this.height = h;
37328         this.width = w;
37329         // resize cols..
37330         this.innerCt.setWidth(this.width);
37331         this.innerCt.setHeight(this.height-20);
37332         
37333         // headers...
37334         var cols = this.columns, c;
37335         var totalWidth = 0;
37336         var expEl = false;
37337         var len = cols.length;
37338         for(var i = 0; i < len; i++){
37339             c = cols[i];
37340             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37341                 // it's the expander..
37342                 expEl  = this.headEls[i];
37343                 continue;
37344             }
37345             totalWidth += c.width;
37346             
37347         }
37348         if (expEl) {
37349             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37350         }
37351         this.headers.setWidth(w-20);
37352
37353         
37354         
37355         
37356     }
37357 });
37358 /*
37359  * Based on:
37360  * Ext JS Library 1.1.1
37361  * Copyright(c) 2006-2007, Ext JS, LLC.
37362  *
37363  * Originally Released Under LGPL - original licence link has changed is not relivant.
37364  *
37365  * Fork - LGPL
37366  * <script type="text/javascript">
37367  */
37368  
37369 /**
37370  * @class Roo.menu.Menu
37371  * @extends Roo.util.Observable
37372  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37373  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37374  * @constructor
37375  * Creates a new Menu
37376  * @param {Object} config Configuration options
37377  */
37378 Roo.menu.Menu = function(config){
37379     
37380     Roo.menu.Menu.superclass.constructor.call(this, config);
37381     
37382     this.id = this.id || Roo.id();
37383     this.addEvents({
37384         /**
37385          * @event beforeshow
37386          * Fires before this menu is displayed
37387          * @param {Roo.menu.Menu} this
37388          */
37389         beforeshow : true,
37390         /**
37391          * @event beforehide
37392          * Fires before this menu is hidden
37393          * @param {Roo.menu.Menu} this
37394          */
37395         beforehide : true,
37396         /**
37397          * @event show
37398          * Fires after this menu is displayed
37399          * @param {Roo.menu.Menu} this
37400          */
37401         show : true,
37402         /**
37403          * @event hide
37404          * Fires after this menu is hidden
37405          * @param {Roo.menu.Menu} this
37406          */
37407         hide : true,
37408         /**
37409          * @event click
37410          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37411          * @param {Roo.menu.Menu} this
37412          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37413          * @param {Roo.EventObject} e
37414          */
37415         click : true,
37416         /**
37417          * @event mouseover
37418          * Fires when the mouse is hovering over this menu
37419          * @param {Roo.menu.Menu} this
37420          * @param {Roo.EventObject} e
37421          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37422          */
37423         mouseover : true,
37424         /**
37425          * @event mouseout
37426          * Fires when the mouse exits this menu
37427          * @param {Roo.menu.Menu} this
37428          * @param {Roo.EventObject} e
37429          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37430          */
37431         mouseout : true,
37432         /**
37433          * @event itemclick
37434          * Fires when a menu item contained in this menu is clicked
37435          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37436          * @param {Roo.EventObject} e
37437          */
37438         itemclick: true
37439     });
37440     if (this.registerMenu) {
37441         Roo.menu.MenuMgr.register(this);
37442     }
37443     
37444     var mis = this.items;
37445     this.items = new Roo.util.MixedCollection();
37446     if(mis){
37447         this.add.apply(this, mis);
37448     }
37449 };
37450
37451 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37452     /**
37453      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37454      */
37455     minWidth : 120,
37456     /**
37457      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37458      * for bottom-right shadow (defaults to "sides")
37459      */
37460     shadow : "sides",
37461     /**
37462      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37463      * this menu (defaults to "tl-tr?")
37464      */
37465     subMenuAlign : "tl-tr?",
37466     /**
37467      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37468      * relative to its element of origin (defaults to "tl-bl?")
37469      */
37470     defaultAlign : "tl-bl?",
37471     /**
37472      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37473      */
37474     allowOtherMenus : false,
37475     /**
37476      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37477      */
37478     registerMenu : true,
37479
37480     hidden:true,
37481
37482     // private
37483     render : function(){
37484         if(this.el){
37485             return;
37486         }
37487         var el = this.el = new Roo.Layer({
37488             cls: "x-menu",
37489             shadow:this.shadow,
37490             constrain: false,
37491             parentEl: this.parentEl || document.body,
37492             zindex:15000
37493         });
37494
37495         this.keyNav = new Roo.menu.MenuNav(this);
37496
37497         if(this.plain){
37498             el.addClass("x-menu-plain");
37499         }
37500         if(this.cls){
37501             el.addClass(this.cls);
37502         }
37503         // generic focus element
37504         this.focusEl = el.createChild({
37505             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37506         });
37507         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37508         //disabling touch- as it's causing issues ..
37509         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37510         ul.on('click'   , this.onClick, this);
37511         
37512         
37513         ul.on("mouseover", this.onMouseOver, this);
37514         ul.on("mouseout", this.onMouseOut, this);
37515         this.items.each(function(item){
37516             if (item.hidden) {
37517                 return;
37518             }
37519             
37520             var li = document.createElement("li");
37521             li.className = "x-menu-list-item";
37522             ul.dom.appendChild(li);
37523             item.render(li, this);
37524         }, this);
37525         this.ul = ul;
37526         this.autoWidth();
37527     },
37528
37529     // private
37530     autoWidth : function(){
37531         var el = this.el, ul = this.ul;
37532         if(!el){
37533             return;
37534         }
37535         var w = this.width;
37536         if(w){
37537             el.setWidth(w);
37538         }else if(Roo.isIE){
37539             el.setWidth(this.minWidth);
37540             var t = el.dom.offsetWidth; // force recalc
37541             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37542         }
37543     },
37544
37545     // private
37546     delayAutoWidth : function(){
37547         if(this.rendered){
37548             if(!this.awTask){
37549                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37550             }
37551             this.awTask.delay(20);
37552         }
37553     },
37554
37555     // private
37556     findTargetItem : function(e){
37557         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37558         if(t && t.menuItemId){
37559             return this.items.get(t.menuItemId);
37560         }
37561     },
37562
37563     // private
37564     onClick : function(e){
37565         Roo.log("menu.onClick");
37566         var t = this.findTargetItem(e);
37567         if(!t){
37568             return;
37569         }
37570         Roo.log(e);
37571         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37572             if(t == this.activeItem && t.shouldDeactivate(e)){
37573                 this.activeItem.deactivate();
37574                 delete this.activeItem;
37575                 return;
37576             }
37577             if(t.canActivate){
37578                 this.setActiveItem(t, true);
37579             }
37580             return;
37581             
37582             
37583         }
37584         
37585         t.onClick(e);
37586         this.fireEvent("click", this, t, e);
37587     },
37588
37589     // private
37590     setActiveItem : function(item, autoExpand){
37591         if(item != this.activeItem){
37592             if(this.activeItem){
37593                 this.activeItem.deactivate();
37594             }
37595             this.activeItem = item;
37596             item.activate(autoExpand);
37597         }else if(autoExpand){
37598             item.expandMenu();
37599         }
37600     },
37601
37602     // private
37603     tryActivate : function(start, step){
37604         var items = this.items;
37605         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37606             var item = items.get(i);
37607             if(!item.disabled && item.canActivate){
37608                 this.setActiveItem(item, false);
37609                 return item;
37610             }
37611         }
37612         return false;
37613     },
37614
37615     // private
37616     onMouseOver : function(e){
37617         var t;
37618         if(t = this.findTargetItem(e)){
37619             if(t.canActivate && !t.disabled){
37620                 this.setActiveItem(t, true);
37621             }
37622         }
37623         this.fireEvent("mouseover", this, e, t);
37624     },
37625
37626     // private
37627     onMouseOut : function(e){
37628         var t;
37629         if(t = this.findTargetItem(e)){
37630             if(t == this.activeItem && t.shouldDeactivate(e)){
37631                 this.activeItem.deactivate();
37632                 delete this.activeItem;
37633             }
37634         }
37635         this.fireEvent("mouseout", this, e, t);
37636     },
37637
37638     /**
37639      * Read-only.  Returns true if the menu is currently displayed, else false.
37640      * @type Boolean
37641      */
37642     isVisible : function(){
37643         return this.el && !this.hidden;
37644     },
37645
37646     /**
37647      * Displays this menu relative to another element
37648      * @param {String/HTMLElement/Roo.Element} element The element to align to
37649      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37650      * the element (defaults to this.defaultAlign)
37651      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37652      */
37653     show : function(el, pos, parentMenu){
37654         this.parentMenu = parentMenu;
37655         if(!this.el){
37656             this.render();
37657         }
37658         this.fireEvent("beforeshow", this);
37659         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37660     },
37661
37662     /**
37663      * Displays this menu at a specific xy position
37664      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37665      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37666      */
37667     showAt : function(xy, parentMenu, /* private: */_e){
37668         this.parentMenu = parentMenu;
37669         if(!this.el){
37670             this.render();
37671         }
37672         if(_e !== false){
37673             this.fireEvent("beforeshow", this);
37674             xy = this.el.adjustForConstraints(xy);
37675         }
37676         this.el.setXY(xy);
37677         this.el.show();
37678         this.hidden = false;
37679         this.focus();
37680         this.fireEvent("show", this);
37681     },
37682
37683     focus : function(){
37684         if(!this.hidden){
37685             this.doFocus.defer(50, this);
37686         }
37687     },
37688
37689     doFocus : function(){
37690         if(!this.hidden){
37691             this.focusEl.focus();
37692         }
37693     },
37694
37695     /**
37696      * Hides this menu and optionally all parent menus
37697      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37698      */
37699     hide : function(deep){
37700         if(this.el && this.isVisible()){
37701             this.fireEvent("beforehide", this);
37702             if(this.activeItem){
37703                 this.activeItem.deactivate();
37704                 this.activeItem = null;
37705             }
37706             this.el.hide();
37707             this.hidden = true;
37708             this.fireEvent("hide", this);
37709         }
37710         if(deep === true && this.parentMenu){
37711             this.parentMenu.hide(true);
37712         }
37713     },
37714
37715     /**
37716      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37717      * Any of the following are valid:
37718      * <ul>
37719      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37720      * <li>An HTMLElement object which will be converted to a menu item</li>
37721      * <li>A menu item config object that will be created as a new menu item</li>
37722      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37723      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37724      * </ul>
37725      * Usage:
37726      * <pre><code>
37727 // Create the menu
37728 var menu = new Roo.menu.Menu();
37729
37730 // Create a menu item to add by reference
37731 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37732
37733 // Add a bunch of items at once using different methods.
37734 // Only the last item added will be returned.
37735 var item = menu.add(
37736     menuItem,                // add existing item by ref
37737     'Dynamic Item',          // new TextItem
37738     '-',                     // new separator
37739     { text: 'Config Item' }  // new item by config
37740 );
37741 </code></pre>
37742      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37743      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37744      */
37745     add : function(){
37746         var a = arguments, l = a.length, item;
37747         for(var i = 0; i < l; i++){
37748             var el = a[i];
37749             if ((typeof(el) == "object") && el.xtype && el.xns) {
37750                 el = Roo.factory(el, Roo.menu);
37751             }
37752             
37753             if(el.render){ // some kind of Item
37754                 item = this.addItem(el);
37755             }else if(typeof el == "string"){ // string
37756                 if(el == "separator" || el == "-"){
37757                     item = this.addSeparator();
37758                 }else{
37759                     item = this.addText(el);
37760                 }
37761             }else if(el.tagName || el.el){ // element
37762                 item = this.addElement(el);
37763             }else if(typeof el == "object"){ // must be menu item config?
37764                 item = this.addMenuItem(el);
37765             }
37766         }
37767         return item;
37768     },
37769
37770     /**
37771      * Returns this menu's underlying {@link Roo.Element} object
37772      * @return {Roo.Element} The element
37773      */
37774     getEl : function(){
37775         if(!this.el){
37776             this.render();
37777         }
37778         return this.el;
37779     },
37780
37781     /**
37782      * Adds a separator bar to the menu
37783      * @return {Roo.menu.Item} The menu item that was added
37784      */
37785     addSeparator : function(){
37786         return this.addItem(new Roo.menu.Separator());
37787     },
37788
37789     /**
37790      * Adds an {@link Roo.Element} object to the menu
37791      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37792      * @return {Roo.menu.Item} The menu item that was added
37793      */
37794     addElement : function(el){
37795         return this.addItem(new Roo.menu.BaseItem(el));
37796     },
37797
37798     /**
37799      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37800      * @param {Roo.menu.Item} item The menu item to add
37801      * @return {Roo.menu.Item} The menu item that was added
37802      */
37803     addItem : function(item){
37804         this.items.add(item);
37805         if(this.ul){
37806             var li = document.createElement("li");
37807             li.className = "x-menu-list-item";
37808             this.ul.dom.appendChild(li);
37809             item.render(li, this);
37810             this.delayAutoWidth();
37811         }
37812         return item;
37813     },
37814
37815     /**
37816      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37817      * @param {Object} config A MenuItem config object
37818      * @return {Roo.menu.Item} The menu item that was added
37819      */
37820     addMenuItem : function(config){
37821         if(!(config instanceof Roo.menu.Item)){
37822             if(typeof config.checked == "boolean"){ // must be check menu item config?
37823                 config = new Roo.menu.CheckItem(config);
37824             }else{
37825                 config = new Roo.menu.Item(config);
37826             }
37827         }
37828         return this.addItem(config);
37829     },
37830
37831     /**
37832      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37833      * @param {String} text The text to display in the menu item
37834      * @return {Roo.menu.Item} The menu item that was added
37835      */
37836     addText : function(text){
37837         return this.addItem(new Roo.menu.TextItem({ text : text }));
37838     },
37839
37840     /**
37841      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37842      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37843      * @param {Roo.menu.Item} item The menu item to add
37844      * @return {Roo.menu.Item} The menu item that was added
37845      */
37846     insert : function(index, item){
37847         this.items.insert(index, item);
37848         if(this.ul){
37849             var li = document.createElement("li");
37850             li.className = "x-menu-list-item";
37851             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37852             item.render(li, this);
37853             this.delayAutoWidth();
37854         }
37855         return item;
37856     },
37857
37858     /**
37859      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37860      * @param {Roo.menu.Item} item The menu item to remove
37861      */
37862     remove : function(item){
37863         this.items.removeKey(item.id);
37864         item.destroy();
37865     },
37866
37867     /**
37868      * Removes and destroys all items in the menu
37869      */
37870     removeAll : function(){
37871         var f;
37872         while(f = this.items.first()){
37873             this.remove(f);
37874         }
37875     }
37876 });
37877
37878 // MenuNav is a private utility class used internally by the Menu
37879 Roo.menu.MenuNav = function(menu){
37880     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37881     this.scope = this.menu = menu;
37882 };
37883
37884 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37885     doRelay : function(e, h){
37886         var k = e.getKey();
37887         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37888             this.menu.tryActivate(0, 1);
37889             return false;
37890         }
37891         return h.call(this.scope || this, e, this.menu);
37892     },
37893
37894     up : function(e, m){
37895         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37896             m.tryActivate(m.items.length-1, -1);
37897         }
37898     },
37899
37900     down : function(e, m){
37901         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37902             m.tryActivate(0, 1);
37903         }
37904     },
37905
37906     right : function(e, m){
37907         if(m.activeItem){
37908             m.activeItem.expandMenu(true);
37909         }
37910     },
37911
37912     left : function(e, m){
37913         m.hide();
37914         if(m.parentMenu && m.parentMenu.activeItem){
37915             m.parentMenu.activeItem.activate();
37916         }
37917     },
37918
37919     enter : function(e, m){
37920         if(m.activeItem){
37921             e.stopPropagation();
37922             m.activeItem.onClick(e);
37923             m.fireEvent("click", this, m.activeItem);
37924             return true;
37925         }
37926     }
37927 });/*
37928  * Based on:
37929  * Ext JS Library 1.1.1
37930  * Copyright(c) 2006-2007, Ext JS, LLC.
37931  *
37932  * Originally Released Under LGPL - original licence link has changed is not relivant.
37933  *
37934  * Fork - LGPL
37935  * <script type="text/javascript">
37936  */
37937  
37938 /**
37939  * @class Roo.menu.MenuMgr
37940  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
37941  * @singleton
37942  */
37943 Roo.menu.MenuMgr = function(){
37944    var menus, active, groups = {}, attached = false, lastShow = new Date();
37945
37946    // private - called when first menu is created
37947    function init(){
37948        menus = {};
37949        active = new Roo.util.MixedCollection();
37950        Roo.get(document).addKeyListener(27, function(){
37951            if(active.length > 0){
37952                hideAll();
37953            }
37954        });
37955    }
37956
37957    // private
37958    function hideAll(){
37959        if(active && active.length > 0){
37960            var c = active.clone();
37961            c.each(function(m){
37962                m.hide();
37963            });
37964        }
37965    }
37966
37967    // private
37968    function onHide(m){
37969        active.remove(m);
37970        if(active.length < 1){
37971            Roo.get(document).un("mousedown", onMouseDown);
37972            attached = false;
37973        }
37974    }
37975
37976    // private
37977    function onShow(m){
37978        var last = active.last();
37979        lastShow = new Date();
37980        active.add(m);
37981        if(!attached){
37982            Roo.get(document).on("mousedown", onMouseDown);
37983            attached = true;
37984        }
37985        if(m.parentMenu){
37986           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
37987           m.parentMenu.activeChild = m;
37988        }else if(last && last.isVisible()){
37989           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
37990        }
37991    }
37992
37993    // private
37994    function onBeforeHide(m){
37995        if(m.activeChild){
37996            m.activeChild.hide();
37997        }
37998        if(m.autoHideTimer){
37999            clearTimeout(m.autoHideTimer);
38000            delete m.autoHideTimer;
38001        }
38002    }
38003
38004    // private
38005    function onBeforeShow(m){
38006        var pm = m.parentMenu;
38007        if(!pm && !m.allowOtherMenus){
38008            hideAll();
38009        }else if(pm && pm.activeChild && active != m){
38010            pm.activeChild.hide();
38011        }
38012    }
38013
38014    // private
38015    function onMouseDown(e){
38016        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38017            hideAll();
38018        }
38019    }
38020
38021    // private
38022    function onBeforeCheck(mi, state){
38023        if(state){
38024            var g = groups[mi.group];
38025            for(var i = 0, l = g.length; i < l; i++){
38026                if(g[i] != mi){
38027                    g[i].setChecked(false);
38028                }
38029            }
38030        }
38031    }
38032
38033    return {
38034
38035        /**
38036         * Hides all menus that are currently visible
38037         */
38038        hideAll : function(){
38039             hideAll();  
38040        },
38041
38042        // private
38043        register : function(menu){
38044            if(!menus){
38045                init();
38046            }
38047            menus[menu.id] = menu;
38048            menu.on("beforehide", onBeforeHide);
38049            menu.on("hide", onHide);
38050            menu.on("beforeshow", onBeforeShow);
38051            menu.on("show", onShow);
38052            var g = menu.group;
38053            if(g && menu.events["checkchange"]){
38054                if(!groups[g]){
38055                    groups[g] = [];
38056                }
38057                groups[g].push(menu);
38058                menu.on("checkchange", onCheck);
38059            }
38060        },
38061
38062         /**
38063          * Returns a {@link Roo.menu.Menu} object
38064          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38065          * be used to generate and return a new Menu instance.
38066          */
38067        get : function(menu){
38068            if(typeof menu == "string"){ // menu id
38069                return menus[menu];
38070            }else if(menu.events){  // menu instance
38071                return menu;
38072            }else if(typeof menu.length == 'number'){ // array of menu items?
38073                return new Roo.menu.Menu({items:menu});
38074            }else{ // otherwise, must be a config
38075                return new Roo.menu.Menu(menu);
38076            }
38077        },
38078
38079        // private
38080        unregister : function(menu){
38081            delete menus[menu.id];
38082            menu.un("beforehide", onBeforeHide);
38083            menu.un("hide", onHide);
38084            menu.un("beforeshow", onBeforeShow);
38085            menu.un("show", onShow);
38086            var g = menu.group;
38087            if(g && menu.events["checkchange"]){
38088                groups[g].remove(menu);
38089                menu.un("checkchange", onCheck);
38090            }
38091        },
38092
38093        // private
38094        registerCheckable : function(menuItem){
38095            var g = menuItem.group;
38096            if(g){
38097                if(!groups[g]){
38098                    groups[g] = [];
38099                }
38100                groups[g].push(menuItem);
38101                menuItem.on("beforecheckchange", onBeforeCheck);
38102            }
38103        },
38104
38105        // private
38106        unregisterCheckable : function(menuItem){
38107            var g = menuItem.group;
38108            if(g){
38109                groups[g].remove(menuItem);
38110                menuItem.un("beforecheckchange", onBeforeCheck);
38111            }
38112        }
38113    };
38114 }();/*
38115  * Based on:
38116  * Ext JS Library 1.1.1
38117  * Copyright(c) 2006-2007, Ext JS, LLC.
38118  *
38119  * Originally Released Under LGPL - original licence link has changed is not relivant.
38120  *
38121  * Fork - LGPL
38122  * <script type="text/javascript">
38123  */
38124  
38125
38126 /**
38127  * @class Roo.menu.BaseItem
38128  * @extends Roo.Component
38129  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38130  * management and base configuration options shared by all menu components.
38131  * @constructor
38132  * Creates a new BaseItem
38133  * @param {Object} config Configuration options
38134  */
38135 Roo.menu.BaseItem = function(config){
38136     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38137
38138     this.addEvents({
38139         /**
38140          * @event click
38141          * Fires when this item is clicked
38142          * @param {Roo.menu.BaseItem} this
38143          * @param {Roo.EventObject} e
38144          */
38145         click: true,
38146         /**
38147          * @event activate
38148          * Fires when this item is activated
38149          * @param {Roo.menu.BaseItem} this
38150          */
38151         activate : true,
38152         /**
38153          * @event deactivate
38154          * Fires when this item is deactivated
38155          * @param {Roo.menu.BaseItem} this
38156          */
38157         deactivate : true
38158     });
38159
38160     if(this.handler){
38161         this.on("click", this.handler, this.scope, true);
38162     }
38163 };
38164
38165 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38166     /**
38167      * @cfg {Function} handler
38168      * A function that will handle the click event of this menu item (defaults to undefined)
38169      */
38170     /**
38171      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38172      */
38173     canActivate : false,
38174     
38175      /**
38176      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38177      */
38178     hidden: false,
38179     
38180     /**
38181      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38182      */
38183     activeClass : "x-menu-item-active",
38184     /**
38185      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38186      */
38187     hideOnClick : true,
38188     /**
38189      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38190      */
38191     hideDelay : 100,
38192
38193     // private
38194     ctype: "Roo.menu.BaseItem",
38195
38196     // private
38197     actionMode : "container",
38198
38199     // private
38200     render : function(container, parentMenu){
38201         this.parentMenu = parentMenu;
38202         Roo.menu.BaseItem.superclass.render.call(this, container);
38203         this.container.menuItemId = this.id;
38204     },
38205
38206     // private
38207     onRender : function(container, position){
38208         this.el = Roo.get(this.el);
38209         container.dom.appendChild(this.el.dom);
38210     },
38211
38212     // private
38213     onClick : function(e){
38214         if(!this.disabled && this.fireEvent("click", this, e) !== false
38215                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38216             this.handleClick(e);
38217         }else{
38218             e.stopEvent();
38219         }
38220     },
38221
38222     // private
38223     activate : function(){
38224         if(this.disabled){
38225             return false;
38226         }
38227         var li = this.container;
38228         li.addClass(this.activeClass);
38229         this.region = li.getRegion().adjust(2, 2, -2, -2);
38230         this.fireEvent("activate", this);
38231         return true;
38232     },
38233
38234     // private
38235     deactivate : function(){
38236         this.container.removeClass(this.activeClass);
38237         this.fireEvent("deactivate", this);
38238     },
38239
38240     // private
38241     shouldDeactivate : function(e){
38242         return !this.region || !this.region.contains(e.getPoint());
38243     },
38244
38245     // private
38246     handleClick : function(e){
38247         if(this.hideOnClick){
38248             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38249         }
38250     },
38251
38252     // private
38253     expandMenu : function(autoActivate){
38254         // do nothing
38255     },
38256
38257     // private
38258     hideMenu : function(){
38259         // do nothing
38260     }
38261 });/*
38262  * Based on:
38263  * Ext JS Library 1.1.1
38264  * Copyright(c) 2006-2007, Ext JS, LLC.
38265  *
38266  * Originally Released Under LGPL - original licence link has changed is not relivant.
38267  *
38268  * Fork - LGPL
38269  * <script type="text/javascript">
38270  */
38271  
38272 /**
38273  * @class Roo.menu.Adapter
38274  * @extends Roo.menu.BaseItem
38275  * 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.
38276  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38277  * @constructor
38278  * Creates a new Adapter
38279  * @param {Object} config Configuration options
38280  */
38281 Roo.menu.Adapter = function(component, config){
38282     Roo.menu.Adapter.superclass.constructor.call(this, config);
38283     this.component = component;
38284 };
38285 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38286     // private
38287     canActivate : true,
38288
38289     // private
38290     onRender : function(container, position){
38291         this.component.render(container);
38292         this.el = this.component.getEl();
38293     },
38294
38295     // private
38296     activate : function(){
38297         if(this.disabled){
38298             return false;
38299         }
38300         this.component.focus();
38301         this.fireEvent("activate", this);
38302         return true;
38303     },
38304
38305     // private
38306     deactivate : function(){
38307         this.fireEvent("deactivate", this);
38308     },
38309
38310     // private
38311     disable : function(){
38312         this.component.disable();
38313         Roo.menu.Adapter.superclass.disable.call(this);
38314     },
38315
38316     // private
38317     enable : function(){
38318         this.component.enable();
38319         Roo.menu.Adapter.superclass.enable.call(this);
38320     }
38321 });/*
38322  * Based on:
38323  * Ext JS Library 1.1.1
38324  * Copyright(c) 2006-2007, Ext JS, LLC.
38325  *
38326  * Originally Released Under LGPL - original licence link has changed is not relivant.
38327  *
38328  * Fork - LGPL
38329  * <script type="text/javascript">
38330  */
38331
38332 /**
38333  * @class Roo.menu.TextItem
38334  * @extends Roo.menu.BaseItem
38335  * Adds a static text string to a menu, usually used as either a heading or group separator.
38336  * Note: old style constructor with text is still supported.
38337  * 
38338  * @constructor
38339  * Creates a new TextItem
38340  * @param {Object} cfg Configuration
38341  */
38342 Roo.menu.TextItem = function(cfg){
38343     if (typeof(cfg) == 'string') {
38344         this.text = cfg;
38345     } else {
38346         Roo.apply(this,cfg);
38347     }
38348     
38349     Roo.menu.TextItem.superclass.constructor.call(this);
38350 };
38351
38352 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38353     /**
38354      * @cfg {Boolean} text Text to show on item.
38355      */
38356     text : '',
38357     
38358     /**
38359      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38360      */
38361     hideOnClick : false,
38362     /**
38363      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38364      */
38365     itemCls : "x-menu-text",
38366
38367     // private
38368     onRender : function(){
38369         var s = document.createElement("span");
38370         s.className = this.itemCls;
38371         s.innerHTML = this.text;
38372         this.el = s;
38373         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38374     }
38375 });/*
38376  * Based on:
38377  * Ext JS Library 1.1.1
38378  * Copyright(c) 2006-2007, Ext JS, LLC.
38379  *
38380  * Originally Released Under LGPL - original licence link has changed is not relivant.
38381  *
38382  * Fork - LGPL
38383  * <script type="text/javascript">
38384  */
38385
38386 /**
38387  * @class Roo.menu.Separator
38388  * @extends Roo.menu.BaseItem
38389  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38390  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38391  * @constructor
38392  * @param {Object} config Configuration options
38393  */
38394 Roo.menu.Separator = function(config){
38395     Roo.menu.Separator.superclass.constructor.call(this, config);
38396 };
38397
38398 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38399     /**
38400      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38401      */
38402     itemCls : "x-menu-sep",
38403     /**
38404      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38405      */
38406     hideOnClick : false,
38407
38408     // private
38409     onRender : function(li){
38410         var s = document.createElement("span");
38411         s.className = this.itemCls;
38412         s.innerHTML = "&#160;";
38413         this.el = s;
38414         li.addClass("x-menu-sep-li");
38415         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38416     }
38417 });/*
38418  * Based on:
38419  * Ext JS Library 1.1.1
38420  * Copyright(c) 2006-2007, Ext JS, LLC.
38421  *
38422  * Originally Released Under LGPL - original licence link has changed is not relivant.
38423  *
38424  * Fork - LGPL
38425  * <script type="text/javascript">
38426  */
38427 /**
38428  * @class Roo.menu.Item
38429  * @extends Roo.menu.BaseItem
38430  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38431  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38432  * activation and click handling.
38433  * @constructor
38434  * Creates a new Item
38435  * @param {Object} config Configuration options
38436  */
38437 Roo.menu.Item = function(config){
38438     Roo.menu.Item.superclass.constructor.call(this, config);
38439     if(this.menu){
38440         this.menu = Roo.menu.MenuMgr.get(this.menu);
38441     }
38442 };
38443 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38444     
38445     /**
38446      * @cfg {String} text
38447      * The text to show on the menu item.
38448      */
38449     text: '',
38450      /**
38451      * @cfg {String} HTML to render in menu
38452      * The text to show on the menu item (HTML version).
38453      */
38454     html: '',
38455     /**
38456      * @cfg {String} icon
38457      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38458      */
38459     icon: undefined,
38460     /**
38461      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38462      */
38463     itemCls : "x-menu-item",
38464     /**
38465      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38466      */
38467     canActivate : true,
38468     /**
38469      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38470      */
38471     showDelay: 200,
38472     // doc'd in BaseItem
38473     hideDelay: 200,
38474
38475     // private
38476     ctype: "Roo.menu.Item",
38477     
38478     // private
38479     onRender : function(container, position){
38480         var el = document.createElement("a");
38481         el.hideFocus = true;
38482         el.unselectable = "on";
38483         el.href = this.href || "#";
38484         if(this.hrefTarget){
38485             el.target = this.hrefTarget;
38486         }
38487         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38488         
38489         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38490         
38491         el.innerHTML = String.format(
38492                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38493                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38494         this.el = el;
38495         Roo.menu.Item.superclass.onRender.call(this, container, position);
38496     },
38497
38498     /**
38499      * Sets the text to display in this menu item
38500      * @param {String} text The text to display
38501      * @param {Boolean} isHTML true to indicate text is pure html.
38502      */
38503     setText : function(text, isHTML){
38504         if (isHTML) {
38505             this.html = text;
38506         } else {
38507             this.text = text;
38508             this.html = '';
38509         }
38510         if(this.rendered){
38511             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38512      
38513             this.el.update(String.format(
38514                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38515                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38516             this.parentMenu.autoWidth();
38517         }
38518     },
38519
38520     // private
38521     handleClick : function(e){
38522         if(!this.href){ // if no link defined, stop the event automatically
38523             e.stopEvent();
38524         }
38525         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38526     },
38527
38528     // private
38529     activate : function(autoExpand){
38530         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38531             this.focus();
38532             if(autoExpand){
38533                 this.expandMenu();
38534             }
38535         }
38536         return true;
38537     },
38538
38539     // private
38540     shouldDeactivate : function(e){
38541         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38542             if(this.menu && this.menu.isVisible()){
38543                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38544             }
38545             return true;
38546         }
38547         return false;
38548     },
38549
38550     // private
38551     deactivate : function(){
38552         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38553         this.hideMenu();
38554     },
38555
38556     // private
38557     expandMenu : function(autoActivate){
38558         if(!this.disabled && this.menu){
38559             clearTimeout(this.hideTimer);
38560             delete this.hideTimer;
38561             if(!this.menu.isVisible() && !this.showTimer){
38562                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38563             }else if (this.menu.isVisible() && autoActivate){
38564                 this.menu.tryActivate(0, 1);
38565             }
38566         }
38567     },
38568
38569     // private
38570     deferExpand : function(autoActivate){
38571         delete this.showTimer;
38572         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38573         if(autoActivate){
38574             this.menu.tryActivate(0, 1);
38575         }
38576     },
38577
38578     // private
38579     hideMenu : function(){
38580         clearTimeout(this.showTimer);
38581         delete this.showTimer;
38582         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38583             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38584         }
38585     },
38586
38587     // private
38588     deferHide : function(){
38589         delete this.hideTimer;
38590         this.menu.hide();
38591     }
38592 });/*
38593  * Based on:
38594  * Ext JS Library 1.1.1
38595  * Copyright(c) 2006-2007, Ext JS, LLC.
38596  *
38597  * Originally Released Under LGPL - original licence link has changed is not relivant.
38598  *
38599  * Fork - LGPL
38600  * <script type="text/javascript">
38601  */
38602  
38603 /**
38604  * @class Roo.menu.CheckItem
38605  * @extends Roo.menu.Item
38606  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38607  * @constructor
38608  * Creates a new CheckItem
38609  * @param {Object} config Configuration options
38610  */
38611 Roo.menu.CheckItem = function(config){
38612     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38613     this.addEvents({
38614         /**
38615          * @event beforecheckchange
38616          * Fires before the checked value is set, providing an opportunity to cancel if needed
38617          * @param {Roo.menu.CheckItem} this
38618          * @param {Boolean} checked The new checked value that will be set
38619          */
38620         "beforecheckchange" : true,
38621         /**
38622          * @event checkchange
38623          * Fires after the checked value has been set
38624          * @param {Roo.menu.CheckItem} this
38625          * @param {Boolean} checked The checked value that was set
38626          */
38627         "checkchange" : true
38628     });
38629     if(this.checkHandler){
38630         this.on('checkchange', this.checkHandler, this.scope);
38631     }
38632 };
38633 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38634     /**
38635      * @cfg {String} group
38636      * All check items with the same group name will automatically be grouped into a single-select
38637      * radio button group (defaults to '')
38638      */
38639     /**
38640      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38641      */
38642     itemCls : "x-menu-item x-menu-check-item",
38643     /**
38644      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38645      */
38646     groupClass : "x-menu-group-item",
38647
38648     /**
38649      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38650      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38651      * initialized with checked = true will be rendered as checked.
38652      */
38653     checked: false,
38654
38655     // private
38656     ctype: "Roo.menu.CheckItem",
38657
38658     // private
38659     onRender : function(c){
38660         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38661         if(this.group){
38662             this.el.addClass(this.groupClass);
38663         }
38664         Roo.menu.MenuMgr.registerCheckable(this);
38665         if(this.checked){
38666             this.checked = false;
38667             this.setChecked(true, true);
38668         }
38669     },
38670
38671     // private
38672     destroy : function(){
38673         if(this.rendered){
38674             Roo.menu.MenuMgr.unregisterCheckable(this);
38675         }
38676         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38677     },
38678
38679     /**
38680      * Set the checked state of this item
38681      * @param {Boolean} checked The new checked value
38682      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38683      */
38684     setChecked : function(state, suppressEvent){
38685         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38686             if(this.container){
38687                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38688             }
38689             this.checked = state;
38690             if(suppressEvent !== true){
38691                 this.fireEvent("checkchange", this, state);
38692             }
38693         }
38694     },
38695
38696     // private
38697     handleClick : function(e){
38698        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38699            this.setChecked(!this.checked);
38700        }
38701        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38702     }
38703 });/*
38704  * Based on:
38705  * Ext JS Library 1.1.1
38706  * Copyright(c) 2006-2007, Ext JS, LLC.
38707  *
38708  * Originally Released Under LGPL - original licence link has changed is not relivant.
38709  *
38710  * Fork - LGPL
38711  * <script type="text/javascript">
38712  */
38713  
38714 /**
38715  * @class Roo.menu.DateItem
38716  * @extends Roo.menu.Adapter
38717  * A menu item that wraps the {@link Roo.DatPicker} component.
38718  * @constructor
38719  * Creates a new DateItem
38720  * @param {Object} config Configuration options
38721  */
38722 Roo.menu.DateItem = function(config){
38723     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38724     /** The Roo.DatePicker object @type Roo.DatePicker */
38725     this.picker = this.component;
38726     this.addEvents({select: true});
38727     
38728     this.picker.on("render", function(picker){
38729         picker.getEl().swallowEvent("click");
38730         picker.container.addClass("x-menu-date-item");
38731     });
38732
38733     this.picker.on("select", this.onSelect, this);
38734 };
38735
38736 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38737     // private
38738     onSelect : function(picker, date){
38739         this.fireEvent("select", this, date, picker);
38740         Roo.menu.DateItem.superclass.handleClick.call(this);
38741     }
38742 });/*
38743  * Based on:
38744  * Ext JS Library 1.1.1
38745  * Copyright(c) 2006-2007, Ext JS, LLC.
38746  *
38747  * Originally Released Under LGPL - original licence link has changed is not relivant.
38748  *
38749  * Fork - LGPL
38750  * <script type="text/javascript">
38751  */
38752  
38753 /**
38754  * @class Roo.menu.ColorItem
38755  * @extends Roo.menu.Adapter
38756  * A menu item that wraps the {@link Roo.ColorPalette} component.
38757  * @constructor
38758  * Creates a new ColorItem
38759  * @param {Object} config Configuration options
38760  */
38761 Roo.menu.ColorItem = function(config){
38762     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38763     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38764     this.palette = this.component;
38765     this.relayEvents(this.palette, ["select"]);
38766     if(this.selectHandler){
38767         this.on('select', this.selectHandler, this.scope);
38768     }
38769 };
38770 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38771  * Based on:
38772  * Ext JS Library 1.1.1
38773  * Copyright(c) 2006-2007, Ext JS, LLC.
38774  *
38775  * Originally Released Under LGPL - original licence link has changed is not relivant.
38776  *
38777  * Fork - LGPL
38778  * <script type="text/javascript">
38779  */
38780  
38781
38782 /**
38783  * @class Roo.menu.DateMenu
38784  * @extends Roo.menu.Menu
38785  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38786  * @constructor
38787  * Creates a new DateMenu
38788  * @param {Object} config Configuration options
38789  */
38790 Roo.menu.DateMenu = function(config){
38791     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38792     this.plain = true;
38793     var di = new Roo.menu.DateItem(config);
38794     this.add(di);
38795     /**
38796      * The {@link Roo.DatePicker} instance for this DateMenu
38797      * @type DatePicker
38798      */
38799     this.picker = di.picker;
38800     /**
38801      * @event select
38802      * @param {DatePicker} picker
38803      * @param {Date} date
38804      */
38805     this.relayEvents(di, ["select"]);
38806     this.on('beforeshow', function(){
38807         if(this.picker){
38808             this.picker.hideMonthPicker(false);
38809         }
38810     }, this);
38811 };
38812 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38813     cls:'x-date-menu'
38814 });/*
38815  * Based on:
38816  * Ext JS Library 1.1.1
38817  * Copyright(c) 2006-2007, Ext JS, LLC.
38818  *
38819  * Originally Released Under LGPL - original licence link has changed is not relivant.
38820  *
38821  * Fork - LGPL
38822  * <script type="text/javascript">
38823  */
38824  
38825
38826 /**
38827  * @class Roo.menu.ColorMenu
38828  * @extends Roo.menu.Menu
38829  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38830  * @constructor
38831  * Creates a new ColorMenu
38832  * @param {Object} config Configuration options
38833  */
38834 Roo.menu.ColorMenu = function(config){
38835     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38836     this.plain = true;
38837     var ci = new Roo.menu.ColorItem(config);
38838     this.add(ci);
38839     /**
38840      * The {@link Roo.ColorPalette} instance for this ColorMenu
38841      * @type ColorPalette
38842      */
38843     this.palette = ci.palette;
38844     /**
38845      * @event select
38846      * @param {ColorPalette} palette
38847      * @param {String} color
38848      */
38849     this.relayEvents(ci, ["select"]);
38850 };
38851 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38852  * Based on:
38853  * Ext JS Library 1.1.1
38854  * Copyright(c) 2006-2007, Ext JS, LLC.
38855  *
38856  * Originally Released Under LGPL - original licence link has changed is not relivant.
38857  *
38858  * Fork - LGPL
38859  * <script type="text/javascript">
38860  */
38861  
38862 /**
38863  * @class Roo.form.TextItem
38864  * @extends Roo.BoxComponent
38865  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38866  * @constructor
38867  * Creates a new TextItem
38868  * @param {Object} config Configuration options
38869  */
38870 Roo.form.TextItem = function(config){
38871     Roo.form.TextItem.superclass.constructor.call(this, config);
38872 };
38873
38874 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
38875     
38876     /**
38877      * @cfg {String} tag the tag for this item (default div)
38878      */
38879     tag : 'div',
38880     /**
38881      * @cfg {String} html the content for this item
38882      */
38883     html : '',
38884     
38885     getAutoCreate : function()
38886     {
38887         var cfg = {
38888             id: this.id,
38889             tag: this.tag,
38890             html: this.html,
38891             cls: 'x-form-item'
38892         };
38893         
38894         return cfg;
38895         
38896     },
38897     
38898     onRender : function(ct, position)
38899     {
38900         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
38901         
38902         if(!this.el){
38903             var cfg = this.getAutoCreate();
38904             if(!cfg.name){
38905                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38906             }
38907             if (!cfg.name.length) {
38908                 delete cfg.name;
38909             }
38910             this.el = ct.createChild(cfg, position);
38911         }
38912     },
38913     /*
38914      * setHTML
38915      * @param {String} html update the Contents of the element.
38916      */
38917     setHTML : function(html)
38918     {
38919         this.fieldEl.dom.innerHTML = html;
38920     }
38921     
38922 });/*
38923  * Based on:
38924  * Ext JS Library 1.1.1
38925  * Copyright(c) 2006-2007, Ext JS, LLC.
38926  *
38927  * Originally Released Under LGPL - original licence link has changed is not relivant.
38928  *
38929  * Fork - LGPL
38930  * <script type="text/javascript">
38931  */
38932  
38933 /**
38934  * @class Roo.form.Field
38935  * @extends Roo.BoxComponent
38936  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38937  * @constructor
38938  * Creates a new Field
38939  * @param {Object} config Configuration options
38940  */
38941 Roo.form.Field = function(config){
38942     Roo.form.Field.superclass.constructor.call(this, config);
38943 };
38944
38945 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
38946     /**
38947      * @cfg {String} fieldLabel Label to use when rendering a form.
38948      */
38949        /**
38950      * @cfg {String} qtip Mouse over tip
38951      */
38952      
38953     /**
38954      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
38955      */
38956     invalidClass : "x-form-invalid",
38957     /**
38958      * @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")
38959      */
38960     invalidText : "The value in this field is invalid",
38961     /**
38962      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
38963      */
38964     focusClass : "x-form-focus",
38965     /**
38966      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
38967       automatic validation (defaults to "keyup").
38968      */
38969     validationEvent : "keyup",
38970     /**
38971      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
38972      */
38973     validateOnBlur : true,
38974     /**
38975      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
38976      */
38977     validationDelay : 250,
38978     /**
38979      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
38980      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
38981      */
38982     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
38983     /**
38984      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
38985      */
38986     fieldClass : "x-form-field",
38987     /**
38988      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
38989      *<pre>
38990 Value         Description
38991 -----------   ----------------------------------------------------------------------
38992 qtip          Display a quick tip when the user hovers over the field
38993 title         Display a default browser title attribute popup
38994 under         Add a block div beneath the field containing the error text
38995 side          Add an error icon to the right of the field with a popup on hover
38996 [element id]  Add the error text directly to the innerHTML of the specified element
38997 </pre>
38998      */
38999     msgTarget : 'qtip',
39000     /**
39001      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39002      */
39003     msgFx : 'normal',
39004
39005     /**
39006      * @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.
39007      */
39008     readOnly : false,
39009
39010     /**
39011      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39012      */
39013     disabled : false,
39014
39015     /**
39016      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39017      */
39018     inputType : undefined,
39019     
39020     /**
39021      * @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).
39022          */
39023         tabIndex : undefined,
39024         
39025     // private
39026     isFormField : true,
39027
39028     // private
39029     hasFocus : false,
39030     /**
39031      * @property {Roo.Element} fieldEl
39032      * Element Containing the rendered Field (with label etc.)
39033      */
39034     /**
39035      * @cfg {Mixed} value A value to initialize this field with.
39036      */
39037     value : undefined,
39038
39039     /**
39040      * @cfg {String} name The field's HTML name attribute.
39041      */
39042     /**
39043      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39044      */
39045     // private
39046     loadedValue : false,
39047      
39048      
39049         // private ??
39050         initComponent : function(){
39051         Roo.form.Field.superclass.initComponent.call(this);
39052         this.addEvents({
39053             /**
39054              * @event focus
39055              * Fires when this field receives input focus.
39056              * @param {Roo.form.Field} this
39057              */
39058             focus : true,
39059             /**
39060              * @event blur
39061              * Fires when this field loses input focus.
39062              * @param {Roo.form.Field} this
39063              */
39064             blur : true,
39065             /**
39066              * @event specialkey
39067              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39068              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39069              * @param {Roo.form.Field} this
39070              * @param {Roo.EventObject} e The event object
39071              */
39072             specialkey : true,
39073             /**
39074              * @event change
39075              * Fires just before the field blurs if the field value has changed.
39076              * @param {Roo.form.Field} this
39077              * @param {Mixed} newValue The new value
39078              * @param {Mixed} oldValue The original value
39079              */
39080             change : true,
39081             /**
39082              * @event invalid
39083              * Fires after the field has been marked as invalid.
39084              * @param {Roo.form.Field} this
39085              * @param {String} msg The validation message
39086              */
39087             invalid : true,
39088             /**
39089              * @event valid
39090              * Fires after the field has been validated with no errors.
39091              * @param {Roo.form.Field} this
39092              */
39093             valid : true,
39094              /**
39095              * @event keyup
39096              * Fires after the key up
39097              * @param {Roo.form.Field} this
39098              * @param {Roo.EventObject}  e The event Object
39099              */
39100             keyup : true
39101         });
39102     },
39103
39104     /**
39105      * Returns the name attribute of the field if available
39106      * @return {String} name The field name
39107      */
39108     getName: function(){
39109          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39110     },
39111
39112     // private
39113     onRender : function(ct, position){
39114         Roo.form.Field.superclass.onRender.call(this, ct, position);
39115         if(!this.el){
39116             var cfg = this.getAutoCreate();
39117             if(!cfg.name){
39118                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39119             }
39120             if (!cfg.name.length) {
39121                 delete cfg.name;
39122             }
39123             if(this.inputType){
39124                 cfg.type = this.inputType;
39125             }
39126             this.el = ct.createChild(cfg, position);
39127         }
39128         var type = this.el.dom.type;
39129         if(type){
39130             if(type == 'password'){
39131                 type = 'text';
39132             }
39133             this.el.addClass('x-form-'+type);
39134         }
39135         if(this.readOnly){
39136             this.el.dom.readOnly = true;
39137         }
39138         if(this.tabIndex !== undefined){
39139             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39140         }
39141
39142         this.el.addClass([this.fieldClass, this.cls]);
39143         this.initValue();
39144     },
39145
39146     /**
39147      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39148      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39149      * @return {Roo.form.Field} this
39150      */
39151     applyTo : function(target){
39152         this.allowDomMove = false;
39153         this.el = Roo.get(target);
39154         this.render(this.el.dom.parentNode);
39155         return this;
39156     },
39157
39158     // private
39159     initValue : function(){
39160         if(this.value !== undefined){
39161             this.setValue(this.value);
39162         }else if(this.el.dom.value.length > 0){
39163             this.setValue(this.el.dom.value);
39164         }
39165     },
39166
39167     /**
39168      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39169      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39170      */
39171     isDirty : function() {
39172         if(this.disabled) {
39173             return false;
39174         }
39175         return String(this.getValue()) !== String(this.originalValue);
39176     },
39177
39178     /**
39179      * stores the current value in loadedValue
39180      */
39181     resetHasChanged : function()
39182     {
39183         this.loadedValue = String(this.getValue());
39184     },
39185     /**
39186      * checks the current value against the 'loaded' value.
39187      * Note - will return false if 'resetHasChanged' has not been called first.
39188      */
39189     hasChanged : function()
39190     {
39191         if(this.disabled || this.readOnly) {
39192             return false;
39193         }
39194         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39195     },
39196     
39197     
39198     
39199     // private
39200     afterRender : function(){
39201         Roo.form.Field.superclass.afterRender.call(this);
39202         this.initEvents();
39203     },
39204
39205     // private
39206     fireKey : function(e){
39207         //Roo.log('field ' + e.getKey());
39208         if(e.isNavKeyPress()){
39209             this.fireEvent("specialkey", this, e);
39210         }
39211     },
39212
39213     /**
39214      * Resets the current field value to the originally loaded value and clears any validation messages
39215      */
39216     reset : function(){
39217         this.setValue(this.resetValue);
39218         this.originalValue = this.getValue();
39219         this.clearInvalid();
39220     },
39221
39222     // private
39223     initEvents : function(){
39224         // safari killled keypress - so keydown is now used..
39225         this.el.on("keydown" , this.fireKey,  this);
39226         this.el.on("focus", this.onFocus,  this);
39227         this.el.on("blur", this.onBlur,  this);
39228         this.el.relayEvent('keyup', this);
39229
39230         // reference to original value for reset
39231         this.originalValue = this.getValue();
39232         this.resetValue =  this.getValue();
39233     },
39234
39235     // private
39236     onFocus : function(){
39237         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39238             this.el.addClass(this.focusClass);
39239         }
39240         if(!this.hasFocus){
39241             this.hasFocus = true;
39242             this.startValue = this.getValue();
39243             this.fireEvent("focus", this);
39244         }
39245     },
39246
39247     beforeBlur : Roo.emptyFn,
39248
39249     // private
39250     onBlur : function(){
39251         this.beforeBlur();
39252         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39253             this.el.removeClass(this.focusClass);
39254         }
39255         this.hasFocus = false;
39256         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39257             this.validate();
39258         }
39259         var v = this.getValue();
39260         if(String(v) !== String(this.startValue)){
39261             this.fireEvent('change', this, v, this.startValue);
39262         }
39263         this.fireEvent("blur", this);
39264     },
39265
39266     /**
39267      * Returns whether or not the field value is currently valid
39268      * @param {Boolean} preventMark True to disable marking the field invalid
39269      * @return {Boolean} True if the value is valid, else false
39270      */
39271     isValid : function(preventMark){
39272         if(this.disabled){
39273             return true;
39274         }
39275         var restore = this.preventMark;
39276         this.preventMark = preventMark === true;
39277         var v = this.validateValue(this.processValue(this.getRawValue()));
39278         this.preventMark = restore;
39279         return v;
39280     },
39281
39282     /**
39283      * Validates the field value
39284      * @return {Boolean} True if the value is valid, else false
39285      */
39286     validate : function(){
39287         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39288             this.clearInvalid();
39289             return true;
39290         }
39291         return false;
39292     },
39293
39294     processValue : function(value){
39295         return value;
39296     },
39297
39298     // private
39299     // Subclasses should provide the validation implementation by overriding this
39300     validateValue : function(value){
39301         return true;
39302     },
39303
39304     /**
39305      * Mark this field as invalid
39306      * @param {String} msg The validation message
39307      */
39308     markInvalid : function(msg){
39309         if(!this.rendered || this.preventMark){ // not rendered
39310             return;
39311         }
39312         
39313         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39314         
39315         obj.el.addClass(this.invalidClass);
39316         msg = msg || this.invalidText;
39317         switch(this.msgTarget){
39318             case 'qtip':
39319                 obj.el.dom.qtip = msg;
39320                 obj.el.dom.qclass = 'x-form-invalid-tip';
39321                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39322                     Roo.QuickTips.enable();
39323                 }
39324                 break;
39325             case 'title':
39326                 this.el.dom.title = msg;
39327                 break;
39328             case 'under':
39329                 if(!this.errorEl){
39330                     var elp = this.el.findParent('.x-form-element', 5, true);
39331                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39332                     this.errorEl.setWidth(elp.getWidth(true)-20);
39333                 }
39334                 this.errorEl.update(msg);
39335                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39336                 break;
39337             case 'side':
39338                 if(!this.errorIcon){
39339                     var elp = this.el.findParent('.x-form-element', 5, true);
39340                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39341                 }
39342                 this.alignErrorIcon();
39343                 this.errorIcon.dom.qtip = msg;
39344                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39345                 this.errorIcon.show();
39346                 this.on('resize', this.alignErrorIcon, this);
39347                 break;
39348             default:
39349                 var t = Roo.getDom(this.msgTarget);
39350                 t.innerHTML = msg;
39351                 t.style.display = this.msgDisplay;
39352                 break;
39353         }
39354         this.fireEvent('invalid', this, msg);
39355     },
39356
39357     // private
39358     alignErrorIcon : function(){
39359         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39360     },
39361
39362     /**
39363      * Clear any invalid styles/messages for this field
39364      */
39365     clearInvalid : function(){
39366         if(!this.rendered || this.preventMark){ // not rendered
39367             return;
39368         }
39369         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39370         
39371         obj.el.removeClass(this.invalidClass);
39372         switch(this.msgTarget){
39373             case 'qtip':
39374                 obj.el.dom.qtip = '';
39375                 break;
39376             case 'title':
39377                 this.el.dom.title = '';
39378                 break;
39379             case 'under':
39380                 if(this.errorEl){
39381                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39382                 }
39383                 break;
39384             case 'side':
39385                 if(this.errorIcon){
39386                     this.errorIcon.dom.qtip = '';
39387                     this.errorIcon.hide();
39388                     this.un('resize', this.alignErrorIcon, this);
39389                 }
39390                 break;
39391             default:
39392                 var t = Roo.getDom(this.msgTarget);
39393                 t.innerHTML = '';
39394                 t.style.display = 'none';
39395                 break;
39396         }
39397         this.fireEvent('valid', this);
39398     },
39399
39400     /**
39401      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39402      * @return {Mixed} value The field value
39403      */
39404     getRawValue : function(){
39405         var v = this.el.getValue();
39406         
39407         return v;
39408     },
39409
39410     /**
39411      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39412      * @return {Mixed} value The field value
39413      */
39414     getValue : function(){
39415         var v = this.el.getValue();
39416          
39417         return v;
39418     },
39419
39420     /**
39421      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39422      * @param {Mixed} value The value to set
39423      */
39424     setRawValue : function(v){
39425         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39426     },
39427
39428     /**
39429      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39430      * @param {Mixed} value The value to set
39431      */
39432     setValue : function(v){
39433         this.value = v;
39434         if(this.rendered){
39435             this.el.dom.value = (v === null || v === undefined ? '' : v);
39436              this.validate();
39437         }
39438     },
39439
39440     adjustSize : function(w, h){
39441         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39442         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39443         return s;
39444     },
39445
39446     adjustWidth : function(tag, w){
39447         tag = tag.toLowerCase();
39448         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39449             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39450                 if(tag == 'input'){
39451                     return w + 2;
39452                 }
39453                 if(tag == 'textarea'){
39454                     return w-2;
39455                 }
39456             }else if(Roo.isOpera){
39457                 if(tag == 'input'){
39458                     return w + 2;
39459                 }
39460                 if(tag == 'textarea'){
39461                     return w-2;
39462                 }
39463             }
39464         }
39465         return w;
39466     }
39467 });
39468
39469
39470 // anything other than normal should be considered experimental
39471 Roo.form.Field.msgFx = {
39472     normal : {
39473         show: function(msgEl, f){
39474             msgEl.setDisplayed('block');
39475         },
39476
39477         hide : function(msgEl, f){
39478             msgEl.setDisplayed(false).update('');
39479         }
39480     },
39481
39482     slide : {
39483         show: function(msgEl, f){
39484             msgEl.slideIn('t', {stopFx:true});
39485         },
39486
39487         hide : function(msgEl, f){
39488             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39489         }
39490     },
39491
39492     slideRight : {
39493         show: function(msgEl, f){
39494             msgEl.fixDisplay();
39495             msgEl.alignTo(f.el, 'tl-tr');
39496             msgEl.slideIn('l', {stopFx:true});
39497         },
39498
39499         hide : function(msgEl, f){
39500             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39501         }
39502     }
39503 };/*
39504  * Based on:
39505  * Ext JS Library 1.1.1
39506  * Copyright(c) 2006-2007, Ext JS, LLC.
39507  *
39508  * Originally Released Under LGPL - original licence link has changed is not relivant.
39509  *
39510  * Fork - LGPL
39511  * <script type="text/javascript">
39512  */
39513  
39514
39515 /**
39516  * @class Roo.form.TextField
39517  * @extends Roo.form.Field
39518  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39519  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39520  * @constructor
39521  * Creates a new TextField
39522  * @param {Object} config Configuration options
39523  */
39524 Roo.form.TextField = function(config){
39525     Roo.form.TextField.superclass.constructor.call(this, config);
39526     this.addEvents({
39527         /**
39528          * @event autosize
39529          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39530          * according to the default logic, but this event provides a hook for the developer to apply additional
39531          * logic at runtime to resize the field if needed.
39532              * @param {Roo.form.Field} this This text field
39533              * @param {Number} width The new field width
39534              */
39535         autosize : true
39536     });
39537 };
39538
39539 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39540     /**
39541      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39542      */
39543     grow : false,
39544     /**
39545      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39546      */
39547     growMin : 30,
39548     /**
39549      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39550      */
39551     growMax : 800,
39552     /**
39553      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39554      */
39555     vtype : null,
39556     /**
39557      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39558      */
39559     maskRe : null,
39560     /**
39561      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39562      */
39563     disableKeyFilter : false,
39564     /**
39565      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39566      */
39567     allowBlank : true,
39568     /**
39569      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39570      */
39571     minLength : 0,
39572     /**
39573      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39574      */
39575     maxLength : Number.MAX_VALUE,
39576     /**
39577      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39578      */
39579     minLengthText : "The minimum length for this field is {0}",
39580     /**
39581      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39582      */
39583     maxLengthText : "The maximum length for this field is {0}",
39584     /**
39585      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39586      */
39587     selectOnFocus : false,
39588     /**
39589      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39590      */    
39591     allowLeadingSpace : false,
39592     /**
39593      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39594      */
39595     blankText : "This field is required",
39596     /**
39597      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39598      * If available, this function will be called only after the basic validators all return true, and will be passed the
39599      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39600      */
39601     validator : null,
39602     /**
39603      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39604      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39605      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39606      */
39607     regex : null,
39608     /**
39609      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39610      */
39611     regexText : "",
39612     /**
39613      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39614      */
39615     emptyText : null,
39616    
39617
39618     // private
39619     initEvents : function()
39620     {
39621         if (this.emptyText) {
39622             this.el.attr('placeholder', this.emptyText);
39623         }
39624         
39625         Roo.form.TextField.superclass.initEvents.call(this);
39626         if(this.validationEvent == 'keyup'){
39627             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39628             this.el.on('keyup', this.filterValidation, this);
39629         }
39630         else if(this.validationEvent !== false){
39631             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39632         }
39633         
39634         if(this.selectOnFocus){
39635             this.on("focus", this.preFocus, this);
39636         }
39637         if (!this.allowLeadingSpace) {
39638             this.on('blur', this.cleanLeadingSpace, this);
39639         }
39640         
39641         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39642             this.el.on("keypress", this.filterKeys, this);
39643         }
39644         if(this.grow){
39645             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39646             this.el.on("click", this.autoSize,  this);
39647         }
39648         if(this.el.is('input[type=password]') && Roo.isSafari){
39649             this.el.on('keydown', this.SafariOnKeyDown, this);
39650         }
39651     },
39652
39653     processValue : function(value){
39654         if(this.stripCharsRe){
39655             var newValue = value.replace(this.stripCharsRe, '');
39656             if(newValue !== value){
39657                 this.setRawValue(newValue);
39658                 return newValue;
39659             }
39660         }
39661         return value;
39662     },
39663
39664     filterValidation : function(e){
39665         if(!e.isNavKeyPress()){
39666             this.validationTask.delay(this.validationDelay);
39667         }
39668     },
39669
39670     // private
39671     onKeyUp : function(e){
39672         if(!e.isNavKeyPress()){
39673             this.autoSize();
39674         }
39675     },
39676     // private - clean the leading white space
39677     cleanLeadingSpace : function(e)
39678     {
39679         if ( this.inputType == 'file') {
39680             return;
39681         }
39682         
39683         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39684     },
39685     /**
39686      * Resets the current field value to the originally-loaded value and clears any validation messages.
39687      *  
39688      */
39689     reset : function(){
39690         Roo.form.TextField.superclass.reset.call(this);
39691        
39692     }, 
39693     // private
39694     preFocus : function(){
39695         
39696         if(this.selectOnFocus){
39697             this.el.dom.select();
39698         }
39699     },
39700
39701     
39702     // private
39703     filterKeys : function(e){
39704         var k = e.getKey();
39705         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39706             return;
39707         }
39708         var c = e.getCharCode(), cc = String.fromCharCode(c);
39709         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39710             return;
39711         }
39712         if(!this.maskRe.test(cc)){
39713             e.stopEvent();
39714         }
39715     },
39716
39717     setValue : function(v){
39718         
39719         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39720         
39721         this.autoSize();
39722     },
39723
39724     /**
39725      * Validates a value according to the field's validation rules and marks the field as invalid
39726      * if the validation fails
39727      * @param {Mixed} value The value to validate
39728      * @return {Boolean} True if the value is valid, else false
39729      */
39730     validateValue : function(value){
39731         if(value.length < 1)  { // if it's blank
39732              if(this.allowBlank){
39733                 this.clearInvalid();
39734                 return true;
39735              }else{
39736                 this.markInvalid(this.blankText);
39737                 return false;
39738              }
39739         }
39740         if(value.length < this.minLength){
39741             this.markInvalid(String.format(this.minLengthText, this.minLength));
39742             return false;
39743         }
39744         if(value.length > this.maxLength){
39745             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39746             return false;
39747         }
39748         if(this.vtype){
39749             var vt = Roo.form.VTypes;
39750             if(!vt[this.vtype](value, this)){
39751                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39752                 return false;
39753             }
39754         }
39755         if(typeof this.validator == "function"){
39756             var msg = this.validator(value);
39757             if(msg !== true){
39758                 this.markInvalid(msg);
39759                 return false;
39760             }
39761         }
39762         if(this.regex && !this.regex.test(value)){
39763             this.markInvalid(this.regexText);
39764             return false;
39765         }
39766         return true;
39767     },
39768
39769     /**
39770      * Selects text in this field
39771      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39772      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39773      */
39774     selectText : function(start, end){
39775         var v = this.getRawValue();
39776         if(v.length > 0){
39777             start = start === undefined ? 0 : start;
39778             end = end === undefined ? v.length : end;
39779             var d = this.el.dom;
39780             if(d.setSelectionRange){
39781                 d.setSelectionRange(start, end);
39782             }else if(d.createTextRange){
39783                 var range = d.createTextRange();
39784                 range.moveStart("character", start);
39785                 range.moveEnd("character", v.length-end);
39786                 range.select();
39787             }
39788         }
39789     },
39790
39791     /**
39792      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39793      * This only takes effect if grow = true, and fires the autosize event.
39794      */
39795     autoSize : function(){
39796         if(!this.grow || !this.rendered){
39797             return;
39798         }
39799         if(!this.metrics){
39800             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39801         }
39802         var el = this.el;
39803         var v = el.dom.value;
39804         var d = document.createElement('div');
39805         d.appendChild(document.createTextNode(v));
39806         v = d.innerHTML;
39807         d = null;
39808         v += "&#160;";
39809         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39810         this.el.setWidth(w);
39811         this.fireEvent("autosize", this, w);
39812     },
39813     
39814     // private
39815     SafariOnKeyDown : function(event)
39816     {
39817         // this is a workaround for a password hang bug on chrome/ webkit.
39818         
39819         var isSelectAll = false;
39820         
39821         if(this.el.dom.selectionEnd > 0){
39822             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39823         }
39824         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39825             event.preventDefault();
39826             this.setValue('');
39827             return;
39828         }
39829         
39830         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39831             
39832             event.preventDefault();
39833             // this is very hacky as keydown always get's upper case.
39834             
39835             var cc = String.fromCharCode(event.getCharCode());
39836             
39837             
39838             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39839             
39840         }
39841         
39842         
39843     }
39844 });/*
39845  * Based on:
39846  * Ext JS Library 1.1.1
39847  * Copyright(c) 2006-2007, Ext JS, LLC.
39848  *
39849  * Originally Released Under LGPL - original licence link has changed is not relivant.
39850  *
39851  * Fork - LGPL
39852  * <script type="text/javascript">
39853  */
39854  
39855 /**
39856  * @class Roo.form.Hidden
39857  * @extends Roo.form.TextField
39858  * Simple Hidden element used on forms 
39859  * 
39860  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39861  * 
39862  * @constructor
39863  * Creates a new Hidden form element.
39864  * @param {Object} config Configuration options
39865  */
39866
39867
39868
39869 // easy hidden field...
39870 Roo.form.Hidden = function(config){
39871     Roo.form.Hidden.superclass.constructor.call(this, config);
39872 };
39873   
39874 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39875     fieldLabel:      '',
39876     inputType:      'hidden',
39877     width:          50,
39878     allowBlank:     true,
39879     labelSeparator: '',
39880     hidden:         true,
39881     itemCls :       'x-form-item-display-none'
39882
39883
39884 });
39885
39886
39887 /*
39888  * Based on:
39889  * Ext JS Library 1.1.1
39890  * Copyright(c) 2006-2007, Ext JS, LLC.
39891  *
39892  * Originally Released Under LGPL - original licence link has changed is not relivant.
39893  *
39894  * Fork - LGPL
39895  * <script type="text/javascript">
39896  */
39897  
39898 /**
39899  * @class Roo.form.TriggerField
39900  * @extends Roo.form.TextField
39901  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39902  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39903  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39904  * for which you can provide a custom implementation.  For example:
39905  * <pre><code>
39906 var trigger = new Roo.form.TriggerField();
39907 trigger.onTriggerClick = myTriggerFn;
39908 trigger.applyTo('my-field');
39909 </code></pre>
39910  *
39911  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39912  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39913  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39914  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
39915  * @constructor
39916  * Create a new TriggerField.
39917  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
39918  * to the base TextField)
39919  */
39920 Roo.form.TriggerField = function(config){
39921     this.mimicing = false;
39922     Roo.form.TriggerField.superclass.constructor.call(this, config);
39923 };
39924
39925 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
39926     /**
39927      * @cfg {String} triggerClass A CSS class to apply to the trigger
39928      */
39929     /**
39930      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39931      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
39932      */
39933     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
39934     /**
39935      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
39936      */
39937     hideTrigger:false,
39938
39939     /** @cfg {Boolean} grow @hide */
39940     /** @cfg {Number} growMin @hide */
39941     /** @cfg {Number} growMax @hide */
39942
39943     /**
39944      * @hide 
39945      * @method
39946      */
39947     autoSize: Roo.emptyFn,
39948     // private
39949     monitorTab : true,
39950     // private
39951     deferHeight : true,
39952
39953     
39954     actionMode : 'wrap',
39955     // private
39956     onResize : function(w, h){
39957         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
39958         if(typeof w == 'number'){
39959             var x = w - this.trigger.getWidth();
39960             this.el.setWidth(this.adjustWidth('input', x));
39961             this.trigger.setStyle('left', x+'px');
39962         }
39963     },
39964
39965     // private
39966     adjustSize : Roo.BoxComponent.prototype.adjustSize,
39967
39968     // private
39969     getResizeEl : function(){
39970         return this.wrap;
39971     },
39972
39973     // private
39974     getPositionEl : function(){
39975         return this.wrap;
39976     },
39977
39978     // private
39979     alignErrorIcon : function(){
39980         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
39981     },
39982
39983     // private
39984     onRender : function(ct, position){
39985         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
39986         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
39987         this.trigger = this.wrap.createChild(this.triggerConfig ||
39988                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
39989         if(this.hideTrigger){
39990             this.trigger.setDisplayed(false);
39991         }
39992         this.initTrigger();
39993         if(!this.width){
39994             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
39995         }
39996     },
39997
39998     // private
39999     initTrigger : function(){
40000         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40001         this.trigger.addClassOnOver('x-form-trigger-over');
40002         this.trigger.addClassOnClick('x-form-trigger-click');
40003     },
40004
40005     // private
40006     onDestroy : function(){
40007         if(this.trigger){
40008             this.trigger.removeAllListeners();
40009             this.trigger.remove();
40010         }
40011         if(this.wrap){
40012             this.wrap.remove();
40013         }
40014         Roo.form.TriggerField.superclass.onDestroy.call(this);
40015     },
40016
40017     // private
40018     onFocus : function(){
40019         Roo.form.TriggerField.superclass.onFocus.call(this);
40020         if(!this.mimicing){
40021             this.wrap.addClass('x-trigger-wrap-focus');
40022             this.mimicing = true;
40023             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40024             if(this.monitorTab){
40025                 this.el.on("keydown", this.checkTab, this);
40026             }
40027         }
40028     },
40029
40030     // private
40031     checkTab : function(e){
40032         if(e.getKey() == e.TAB){
40033             this.triggerBlur();
40034         }
40035     },
40036
40037     // private
40038     onBlur : function(){
40039         // do nothing
40040     },
40041
40042     // private
40043     mimicBlur : function(e, t){
40044         if(!this.wrap.contains(t) && this.validateBlur()){
40045             this.triggerBlur();
40046         }
40047     },
40048
40049     // private
40050     triggerBlur : function(){
40051         this.mimicing = false;
40052         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40053         if(this.monitorTab){
40054             this.el.un("keydown", this.checkTab, this);
40055         }
40056         this.wrap.removeClass('x-trigger-wrap-focus');
40057         Roo.form.TriggerField.superclass.onBlur.call(this);
40058     },
40059
40060     // private
40061     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40062     validateBlur : function(e, t){
40063         return true;
40064     },
40065
40066     // private
40067     onDisable : function(){
40068         Roo.form.TriggerField.superclass.onDisable.call(this);
40069         if(this.wrap){
40070             this.wrap.addClass('x-item-disabled');
40071         }
40072     },
40073
40074     // private
40075     onEnable : function(){
40076         Roo.form.TriggerField.superclass.onEnable.call(this);
40077         if(this.wrap){
40078             this.wrap.removeClass('x-item-disabled');
40079         }
40080     },
40081
40082     // private
40083     onShow : function(){
40084         var ae = this.getActionEl();
40085         
40086         if(ae){
40087             ae.dom.style.display = '';
40088             ae.dom.style.visibility = 'visible';
40089         }
40090     },
40091
40092     // private
40093     
40094     onHide : function(){
40095         var ae = this.getActionEl();
40096         ae.dom.style.display = 'none';
40097     },
40098
40099     /**
40100      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40101      * by an implementing function.
40102      * @method
40103      * @param {EventObject} e
40104      */
40105     onTriggerClick : Roo.emptyFn
40106 });
40107
40108 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40109 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40110 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40111 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40112     initComponent : function(){
40113         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40114
40115         this.triggerConfig = {
40116             tag:'span', cls:'x-form-twin-triggers', cn:[
40117             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40118             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40119         ]};
40120     },
40121
40122     getTrigger : function(index){
40123         return this.triggers[index];
40124     },
40125
40126     initTrigger : function(){
40127         var ts = this.trigger.select('.x-form-trigger', true);
40128         this.wrap.setStyle('overflow', 'hidden');
40129         var triggerField = this;
40130         ts.each(function(t, all, index){
40131             t.hide = function(){
40132                 var w = triggerField.wrap.getWidth();
40133                 this.dom.style.display = 'none';
40134                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40135             };
40136             t.show = function(){
40137                 var w = triggerField.wrap.getWidth();
40138                 this.dom.style.display = '';
40139                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40140             };
40141             var triggerIndex = 'Trigger'+(index+1);
40142
40143             if(this['hide'+triggerIndex]){
40144                 t.dom.style.display = 'none';
40145             }
40146             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40147             t.addClassOnOver('x-form-trigger-over');
40148             t.addClassOnClick('x-form-trigger-click');
40149         }, this);
40150         this.triggers = ts.elements;
40151     },
40152
40153     onTrigger1Click : Roo.emptyFn,
40154     onTrigger2Click : Roo.emptyFn
40155 });/*
40156  * Based on:
40157  * Ext JS Library 1.1.1
40158  * Copyright(c) 2006-2007, Ext JS, LLC.
40159  *
40160  * Originally Released Under LGPL - original licence link has changed is not relivant.
40161  *
40162  * Fork - LGPL
40163  * <script type="text/javascript">
40164  */
40165  
40166 /**
40167  * @class Roo.form.TextArea
40168  * @extends Roo.form.TextField
40169  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40170  * support for auto-sizing.
40171  * @constructor
40172  * Creates a new TextArea
40173  * @param {Object} config Configuration options
40174  */
40175 Roo.form.TextArea = function(config){
40176     Roo.form.TextArea.superclass.constructor.call(this, config);
40177     // these are provided exchanges for backwards compat
40178     // minHeight/maxHeight were replaced by growMin/growMax to be
40179     // compatible with TextField growing config values
40180     if(this.minHeight !== undefined){
40181         this.growMin = this.minHeight;
40182     }
40183     if(this.maxHeight !== undefined){
40184         this.growMax = this.maxHeight;
40185     }
40186 };
40187
40188 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40189     /**
40190      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40191      */
40192     growMin : 60,
40193     /**
40194      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40195      */
40196     growMax: 1000,
40197     /**
40198      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40199      * in the field (equivalent to setting overflow: hidden, defaults to false)
40200      */
40201     preventScrollbars: false,
40202     /**
40203      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40204      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40205      */
40206
40207     // private
40208     onRender : function(ct, position){
40209         if(!this.el){
40210             this.defaultAutoCreate = {
40211                 tag: "textarea",
40212                 style:"width:300px;height:60px;",
40213                 autocomplete: "new-password"
40214             };
40215         }
40216         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40217         if(this.grow){
40218             this.textSizeEl = Roo.DomHelper.append(document.body, {
40219                 tag: "pre", cls: "x-form-grow-sizer"
40220             });
40221             if(this.preventScrollbars){
40222                 this.el.setStyle("overflow", "hidden");
40223             }
40224             this.el.setHeight(this.growMin);
40225         }
40226     },
40227
40228     onDestroy : function(){
40229         if(this.textSizeEl){
40230             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40231         }
40232         Roo.form.TextArea.superclass.onDestroy.call(this);
40233     },
40234
40235     // private
40236     onKeyUp : function(e){
40237         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40238             this.autoSize();
40239         }
40240     },
40241
40242     /**
40243      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40244      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40245      */
40246     autoSize : function(){
40247         if(!this.grow || !this.textSizeEl){
40248             return;
40249         }
40250         var el = this.el;
40251         var v = el.dom.value;
40252         var ts = this.textSizeEl;
40253
40254         ts.innerHTML = '';
40255         ts.appendChild(document.createTextNode(v));
40256         v = ts.innerHTML;
40257
40258         Roo.fly(ts).setWidth(this.el.getWidth());
40259         if(v.length < 1){
40260             v = "&#160;&#160;";
40261         }else{
40262             if(Roo.isIE){
40263                 v = v.replace(/\n/g, '<p>&#160;</p>');
40264             }
40265             v += "&#160;\n&#160;";
40266         }
40267         ts.innerHTML = v;
40268         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40269         if(h != this.lastHeight){
40270             this.lastHeight = h;
40271             this.el.setHeight(h);
40272             this.fireEvent("autosize", this, h);
40273         }
40274     }
40275 });/*
40276  * Based on:
40277  * Ext JS Library 1.1.1
40278  * Copyright(c) 2006-2007, Ext JS, LLC.
40279  *
40280  * Originally Released Under LGPL - original licence link has changed is not relivant.
40281  *
40282  * Fork - LGPL
40283  * <script type="text/javascript">
40284  */
40285  
40286
40287 /**
40288  * @class Roo.form.NumberField
40289  * @extends Roo.form.TextField
40290  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40291  * @constructor
40292  * Creates a new NumberField
40293  * @param {Object} config Configuration options
40294  */
40295 Roo.form.NumberField = function(config){
40296     Roo.form.NumberField.superclass.constructor.call(this, config);
40297 };
40298
40299 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40300     /**
40301      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40302      */
40303     fieldClass: "x-form-field x-form-num-field",
40304     /**
40305      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40306      */
40307     allowDecimals : true,
40308     /**
40309      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40310      */
40311     decimalSeparator : ".",
40312     /**
40313      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40314      */
40315     decimalPrecision : 2,
40316     /**
40317      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40318      */
40319     allowNegative : true,
40320     /**
40321      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40322      */
40323     minValue : Number.NEGATIVE_INFINITY,
40324     /**
40325      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40326      */
40327     maxValue : Number.MAX_VALUE,
40328     /**
40329      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40330      */
40331     minText : "The minimum value for this field is {0}",
40332     /**
40333      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40334      */
40335     maxText : "The maximum value for this field is {0}",
40336     /**
40337      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40338      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40339      */
40340     nanText : "{0} is not a valid number",
40341
40342     // private
40343     initEvents : function(){
40344         Roo.form.NumberField.superclass.initEvents.call(this);
40345         var allowed = "0123456789";
40346         if(this.allowDecimals){
40347             allowed += this.decimalSeparator;
40348         }
40349         if(this.allowNegative){
40350             allowed += "-";
40351         }
40352         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40353         var keyPress = function(e){
40354             var k = e.getKey();
40355             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40356                 return;
40357             }
40358             var c = e.getCharCode();
40359             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40360                 e.stopEvent();
40361             }
40362         };
40363         this.el.on("keypress", keyPress, this);
40364     },
40365
40366     // private
40367     validateValue : function(value){
40368         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40369             return false;
40370         }
40371         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40372              return true;
40373         }
40374         var num = this.parseValue(value);
40375         if(isNaN(num)){
40376             this.markInvalid(String.format(this.nanText, value));
40377             return false;
40378         }
40379         if(num < this.minValue){
40380             this.markInvalid(String.format(this.minText, this.minValue));
40381             return false;
40382         }
40383         if(num > this.maxValue){
40384             this.markInvalid(String.format(this.maxText, this.maxValue));
40385             return false;
40386         }
40387         return true;
40388     },
40389
40390     getValue : function(){
40391         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40392     },
40393
40394     // private
40395     parseValue : function(value){
40396         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40397         return isNaN(value) ? '' : value;
40398     },
40399
40400     // private
40401     fixPrecision : function(value){
40402         var nan = isNaN(value);
40403         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40404             return nan ? '' : value;
40405         }
40406         return parseFloat(value).toFixed(this.decimalPrecision);
40407     },
40408
40409     setValue : function(v){
40410         v = this.fixPrecision(v);
40411         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40412     },
40413
40414     // private
40415     decimalPrecisionFcn : function(v){
40416         return Math.floor(v);
40417     },
40418
40419     beforeBlur : function(){
40420         var v = this.parseValue(this.getRawValue());
40421         if(v){
40422             this.setValue(v);
40423         }
40424     }
40425 });/*
40426  * Based on:
40427  * Ext JS Library 1.1.1
40428  * Copyright(c) 2006-2007, Ext JS, LLC.
40429  *
40430  * Originally Released Under LGPL - original licence link has changed is not relivant.
40431  *
40432  * Fork - LGPL
40433  * <script type="text/javascript">
40434  */
40435  
40436 /**
40437  * @class Roo.form.DateField
40438  * @extends Roo.form.TriggerField
40439  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40440 * @constructor
40441 * Create a new DateField
40442 * @param {Object} config
40443  */
40444 Roo.form.DateField = function(config)
40445 {
40446     Roo.form.DateField.superclass.constructor.call(this, config);
40447     
40448       this.addEvents({
40449          
40450         /**
40451          * @event select
40452          * Fires when a date is selected
40453              * @param {Roo.form.DateField} combo This combo box
40454              * @param {Date} date The date selected
40455              */
40456         'select' : true
40457          
40458     });
40459     
40460     
40461     if(typeof this.minValue == "string") {
40462         this.minValue = this.parseDate(this.minValue);
40463     }
40464     if(typeof this.maxValue == "string") {
40465         this.maxValue = this.parseDate(this.maxValue);
40466     }
40467     this.ddMatch = null;
40468     if(this.disabledDates){
40469         var dd = this.disabledDates;
40470         var re = "(?:";
40471         for(var i = 0; i < dd.length; i++){
40472             re += dd[i];
40473             if(i != dd.length-1) {
40474                 re += "|";
40475             }
40476         }
40477         this.ddMatch = new RegExp(re + ")");
40478     }
40479 };
40480
40481 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40482     /**
40483      * @cfg {String} format
40484      * The default date format string which can be overriden for localization support.  The format must be
40485      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40486      */
40487     format : "m/d/y",
40488     /**
40489      * @cfg {String} altFormats
40490      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40491      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40492      */
40493     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40494     /**
40495      * @cfg {Array} disabledDays
40496      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40497      */
40498     disabledDays : null,
40499     /**
40500      * @cfg {String} disabledDaysText
40501      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40502      */
40503     disabledDaysText : "Disabled",
40504     /**
40505      * @cfg {Array} disabledDates
40506      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40507      * expression so they are very powerful. Some examples:
40508      * <ul>
40509      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40510      * <li>["03/08", "09/16"] would disable those days for every year</li>
40511      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40512      * <li>["03/../2006"] would disable every day in March 2006</li>
40513      * <li>["^03"] would disable every day in every March</li>
40514      * </ul>
40515      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40516      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40517      */
40518     disabledDates : null,
40519     /**
40520      * @cfg {String} disabledDatesText
40521      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40522      */
40523     disabledDatesText : "Disabled",
40524     /**
40525      * @cfg {Date/String} minValue
40526      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40527      * valid format (defaults to null).
40528      */
40529     minValue : null,
40530     /**
40531      * @cfg {Date/String} maxValue
40532      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40533      * valid format (defaults to null).
40534      */
40535     maxValue : null,
40536     /**
40537      * @cfg {String} minText
40538      * The error text to display when the date in the cell is before minValue (defaults to
40539      * 'The date in this field must be after {minValue}').
40540      */
40541     minText : "The date in this field must be equal to or after {0}",
40542     /**
40543      * @cfg {String} maxText
40544      * The error text to display when the date in the cell is after maxValue (defaults to
40545      * 'The date in this field must be before {maxValue}').
40546      */
40547     maxText : "The date in this field must be equal to or before {0}",
40548     /**
40549      * @cfg {String} invalidText
40550      * The error text to display when the date in the field is invalid (defaults to
40551      * '{value} is not a valid date - it must be in the format {format}').
40552      */
40553     invalidText : "{0} is not a valid date - it must be in the format {1}",
40554     /**
40555      * @cfg {String} triggerClass
40556      * An additional CSS class used to style the trigger button.  The trigger will always get the
40557      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40558      * which displays a calendar icon).
40559      */
40560     triggerClass : 'x-form-date-trigger',
40561     
40562
40563     /**
40564      * @cfg {Boolean} useIso
40565      * if enabled, then the date field will use a hidden field to store the 
40566      * real value as iso formated date. default (false)
40567      */ 
40568     useIso : false,
40569     /**
40570      * @cfg {String/Object} autoCreate
40571      * A DomHelper element spec, or true for a default element spec (defaults to
40572      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40573      */ 
40574     // private
40575     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40576     
40577     // private
40578     hiddenField: false,
40579     
40580     onRender : function(ct, position)
40581     {
40582         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40583         if (this.useIso) {
40584             //this.el.dom.removeAttribute('name'); 
40585             Roo.log("Changing name?");
40586             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40587             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40588                     'before', true);
40589             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40590             // prevent input submission
40591             this.hiddenName = this.name;
40592         }
40593             
40594             
40595     },
40596     
40597     // private
40598     validateValue : function(value)
40599     {
40600         value = this.formatDate(value);
40601         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40602             Roo.log('super failed');
40603             return false;
40604         }
40605         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40606              return true;
40607         }
40608         var svalue = value;
40609         value = this.parseDate(value);
40610         if(!value){
40611             Roo.log('parse date failed' + svalue);
40612             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40613             return false;
40614         }
40615         var time = value.getTime();
40616         if(this.minValue && time < this.minValue.getTime()){
40617             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40618             return false;
40619         }
40620         if(this.maxValue && time > this.maxValue.getTime()){
40621             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40622             return false;
40623         }
40624         if(this.disabledDays){
40625             var day = value.getDay();
40626             for(var i = 0; i < this.disabledDays.length; i++) {
40627                 if(day === this.disabledDays[i]){
40628                     this.markInvalid(this.disabledDaysText);
40629                     return false;
40630                 }
40631             }
40632         }
40633         var fvalue = this.formatDate(value);
40634         if(this.ddMatch && this.ddMatch.test(fvalue)){
40635             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40636             return false;
40637         }
40638         return true;
40639     },
40640
40641     // private
40642     // Provides logic to override the default TriggerField.validateBlur which just returns true
40643     validateBlur : function(){
40644         return !this.menu || !this.menu.isVisible();
40645     },
40646     
40647     getName: function()
40648     {
40649         // returns hidden if it's set..
40650         if (!this.rendered) {return ''};
40651         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40652         
40653     },
40654
40655     /**
40656      * Returns the current date value of the date field.
40657      * @return {Date} The date value
40658      */
40659     getValue : function(){
40660         
40661         return  this.hiddenField ?
40662                 this.hiddenField.value :
40663                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40664     },
40665
40666     /**
40667      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40668      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40669      * (the default format used is "m/d/y").
40670      * <br />Usage:
40671      * <pre><code>
40672 //All of these calls set the same date value (May 4, 2006)
40673
40674 //Pass a date object:
40675 var dt = new Date('5/4/06');
40676 dateField.setValue(dt);
40677
40678 //Pass a date string (default format):
40679 dateField.setValue('5/4/06');
40680
40681 //Pass a date string (custom format):
40682 dateField.format = 'Y-m-d';
40683 dateField.setValue('2006-5-4');
40684 </code></pre>
40685      * @param {String/Date} date The date or valid date string
40686      */
40687     setValue : function(date){
40688         if (this.hiddenField) {
40689             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40690         }
40691         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40692         // make sure the value field is always stored as a date..
40693         this.value = this.parseDate(date);
40694         
40695         
40696     },
40697
40698     // private
40699     parseDate : function(value){
40700         if(!value || value instanceof Date){
40701             return value;
40702         }
40703         var v = Date.parseDate(value, this.format);
40704          if (!v && this.useIso) {
40705             v = Date.parseDate(value, 'Y-m-d');
40706         }
40707         if(!v && this.altFormats){
40708             if(!this.altFormatsArray){
40709                 this.altFormatsArray = this.altFormats.split("|");
40710             }
40711             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40712                 v = Date.parseDate(value, this.altFormatsArray[i]);
40713             }
40714         }
40715         return v;
40716     },
40717
40718     // private
40719     formatDate : function(date, fmt){
40720         return (!date || !(date instanceof Date)) ?
40721                date : date.dateFormat(fmt || this.format);
40722     },
40723
40724     // private
40725     menuListeners : {
40726         select: function(m, d){
40727             
40728             this.setValue(d);
40729             this.fireEvent('select', this, d);
40730         },
40731         show : function(){ // retain focus styling
40732             this.onFocus();
40733         },
40734         hide : function(){
40735             this.focus.defer(10, this);
40736             var ml = this.menuListeners;
40737             this.menu.un("select", ml.select,  this);
40738             this.menu.un("show", ml.show,  this);
40739             this.menu.un("hide", ml.hide,  this);
40740         }
40741     },
40742
40743     // private
40744     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40745     onTriggerClick : function(){
40746         if(this.disabled){
40747             return;
40748         }
40749         if(this.menu == null){
40750             this.menu = new Roo.menu.DateMenu();
40751         }
40752         Roo.apply(this.menu.picker,  {
40753             showClear: this.allowBlank,
40754             minDate : this.minValue,
40755             maxDate : this.maxValue,
40756             disabledDatesRE : this.ddMatch,
40757             disabledDatesText : this.disabledDatesText,
40758             disabledDays : this.disabledDays,
40759             disabledDaysText : this.disabledDaysText,
40760             format : this.useIso ? 'Y-m-d' : this.format,
40761             minText : String.format(this.minText, this.formatDate(this.minValue)),
40762             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40763         });
40764         this.menu.on(Roo.apply({}, this.menuListeners, {
40765             scope:this
40766         }));
40767         this.menu.picker.setValue(this.getValue() || new Date());
40768         this.menu.show(this.el, "tl-bl?");
40769     },
40770
40771     beforeBlur : function(){
40772         var v = this.parseDate(this.getRawValue());
40773         if(v){
40774             this.setValue(v);
40775         }
40776     },
40777
40778     /*@
40779      * overide
40780      * 
40781      */
40782     isDirty : function() {
40783         if(this.disabled) {
40784             return false;
40785         }
40786         
40787         if(typeof(this.startValue) === 'undefined'){
40788             return false;
40789         }
40790         
40791         return String(this.getValue()) !== String(this.startValue);
40792         
40793     },
40794     // @overide
40795     cleanLeadingSpace : function(e)
40796     {
40797        return;
40798     }
40799     
40800 });/*
40801  * Based on:
40802  * Ext JS Library 1.1.1
40803  * Copyright(c) 2006-2007, Ext JS, LLC.
40804  *
40805  * Originally Released Under LGPL - original licence link has changed is not relivant.
40806  *
40807  * Fork - LGPL
40808  * <script type="text/javascript">
40809  */
40810  
40811 /**
40812  * @class Roo.form.MonthField
40813  * @extends Roo.form.TriggerField
40814  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40815 * @constructor
40816 * Create a new MonthField
40817 * @param {Object} config
40818  */
40819 Roo.form.MonthField = function(config){
40820     
40821     Roo.form.MonthField.superclass.constructor.call(this, config);
40822     
40823       this.addEvents({
40824          
40825         /**
40826          * @event select
40827          * Fires when a date is selected
40828              * @param {Roo.form.MonthFieeld} combo This combo box
40829              * @param {Date} date The date selected
40830              */
40831         'select' : true
40832          
40833     });
40834     
40835     
40836     if(typeof this.minValue == "string") {
40837         this.minValue = this.parseDate(this.minValue);
40838     }
40839     if(typeof this.maxValue == "string") {
40840         this.maxValue = this.parseDate(this.maxValue);
40841     }
40842     this.ddMatch = null;
40843     if(this.disabledDates){
40844         var dd = this.disabledDates;
40845         var re = "(?:";
40846         for(var i = 0; i < dd.length; i++){
40847             re += dd[i];
40848             if(i != dd.length-1) {
40849                 re += "|";
40850             }
40851         }
40852         this.ddMatch = new RegExp(re + ")");
40853     }
40854 };
40855
40856 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40857     /**
40858      * @cfg {String} format
40859      * The default date format string which can be overriden for localization support.  The format must be
40860      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40861      */
40862     format : "M Y",
40863     /**
40864      * @cfg {String} altFormats
40865      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40866      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40867      */
40868     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40869     /**
40870      * @cfg {Array} disabledDays
40871      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40872      */
40873     disabledDays : [0,1,2,3,4,5,6],
40874     /**
40875      * @cfg {String} disabledDaysText
40876      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40877      */
40878     disabledDaysText : "Disabled",
40879     /**
40880      * @cfg {Array} disabledDates
40881      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40882      * expression so they are very powerful. Some examples:
40883      * <ul>
40884      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40885      * <li>["03/08", "09/16"] would disable those days for every year</li>
40886      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40887      * <li>["03/../2006"] would disable every day in March 2006</li>
40888      * <li>["^03"] would disable every day in every March</li>
40889      * </ul>
40890      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40891      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40892      */
40893     disabledDates : null,
40894     /**
40895      * @cfg {String} disabledDatesText
40896      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40897      */
40898     disabledDatesText : "Disabled",
40899     /**
40900      * @cfg {Date/String} minValue
40901      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40902      * valid format (defaults to null).
40903      */
40904     minValue : null,
40905     /**
40906      * @cfg {Date/String} maxValue
40907      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40908      * valid format (defaults to null).
40909      */
40910     maxValue : null,
40911     /**
40912      * @cfg {String} minText
40913      * The error text to display when the date in the cell is before minValue (defaults to
40914      * 'The date in this field must be after {minValue}').
40915      */
40916     minText : "The date in this field must be equal to or after {0}",
40917     /**
40918      * @cfg {String} maxTextf
40919      * The error text to display when the date in the cell is after maxValue (defaults to
40920      * 'The date in this field must be before {maxValue}').
40921      */
40922     maxText : "The date in this field must be equal to or before {0}",
40923     /**
40924      * @cfg {String} invalidText
40925      * The error text to display when the date in the field is invalid (defaults to
40926      * '{value} is not a valid date - it must be in the format {format}').
40927      */
40928     invalidText : "{0} is not a valid date - it must be in the format {1}",
40929     /**
40930      * @cfg {String} triggerClass
40931      * An additional CSS class used to style the trigger button.  The trigger will always get the
40932      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40933      * which displays a calendar icon).
40934      */
40935     triggerClass : 'x-form-date-trigger',
40936     
40937
40938     /**
40939      * @cfg {Boolean} useIso
40940      * if enabled, then the date field will use a hidden field to store the 
40941      * real value as iso formated date. default (true)
40942      */ 
40943     useIso : true,
40944     /**
40945      * @cfg {String/Object} autoCreate
40946      * A DomHelper element spec, or true for a default element spec (defaults to
40947      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40948      */ 
40949     // private
40950     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
40951     
40952     // private
40953     hiddenField: false,
40954     
40955     hideMonthPicker : false,
40956     
40957     onRender : function(ct, position)
40958     {
40959         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
40960         if (this.useIso) {
40961             this.el.dom.removeAttribute('name'); 
40962             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40963                     'before', true);
40964             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40965             // prevent input submission
40966             this.hiddenName = this.name;
40967         }
40968             
40969             
40970     },
40971     
40972     // private
40973     validateValue : function(value)
40974     {
40975         value = this.formatDate(value);
40976         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
40977             return false;
40978         }
40979         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40980              return true;
40981         }
40982         var svalue = value;
40983         value = this.parseDate(value);
40984         if(!value){
40985             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40986             return false;
40987         }
40988         var time = value.getTime();
40989         if(this.minValue && time < this.minValue.getTime()){
40990             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40991             return false;
40992         }
40993         if(this.maxValue && time > this.maxValue.getTime()){
40994             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40995             return false;
40996         }
40997         /*if(this.disabledDays){
40998             var day = value.getDay();
40999             for(var i = 0; i < this.disabledDays.length; i++) {
41000                 if(day === this.disabledDays[i]){
41001                     this.markInvalid(this.disabledDaysText);
41002                     return false;
41003                 }
41004             }
41005         }
41006         */
41007         var fvalue = this.formatDate(value);
41008         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41009             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41010             return false;
41011         }
41012         */
41013         return true;
41014     },
41015
41016     // private
41017     // Provides logic to override the default TriggerField.validateBlur which just returns true
41018     validateBlur : function(){
41019         return !this.menu || !this.menu.isVisible();
41020     },
41021
41022     /**
41023      * Returns the current date value of the date field.
41024      * @return {Date} The date value
41025      */
41026     getValue : function(){
41027         
41028         
41029         
41030         return  this.hiddenField ?
41031                 this.hiddenField.value :
41032                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41033     },
41034
41035     /**
41036      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41037      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41038      * (the default format used is "m/d/y").
41039      * <br />Usage:
41040      * <pre><code>
41041 //All of these calls set the same date value (May 4, 2006)
41042
41043 //Pass a date object:
41044 var dt = new Date('5/4/06');
41045 monthField.setValue(dt);
41046
41047 //Pass a date string (default format):
41048 monthField.setValue('5/4/06');
41049
41050 //Pass a date string (custom format):
41051 monthField.format = 'Y-m-d';
41052 monthField.setValue('2006-5-4');
41053 </code></pre>
41054      * @param {String/Date} date The date or valid date string
41055      */
41056     setValue : function(date){
41057         Roo.log('month setValue' + date);
41058         // can only be first of month..
41059         
41060         var val = this.parseDate(date);
41061         
41062         if (this.hiddenField) {
41063             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41064         }
41065         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41066         this.value = this.parseDate(date);
41067     },
41068
41069     // private
41070     parseDate : function(value){
41071         if(!value || value instanceof Date){
41072             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41073             return value;
41074         }
41075         var v = Date.parseDate(value, this.format);
41076         if (!v && this.useIso) {
41077             v = Date.parseDate(value, 'Y-m-d');
41078         }
41079         if (v) {
41080             // 
41081             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41082         }
41083         
41084         
41085         if(!v && this.altFormats){
41086             if(!this.altFormatsArray){
41087                 this.altFormatsArray = this.altFormats.split("|");
41088             }
41089             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41090                 v = Date.parseDate(value, this.altFormatsArray[i]);
41091             }
41092         }
41093         return v;
41094     },
41095
41096     // private
41097     formatDate : function(date, fmt){
41098         return (!date || !(date instanceof Date)) ?
41099                date : date.dateFormat(fmt || this.format);
41100     },
41101
41102     // private
41103     menuListeners : {
41104         select: function(m, d){
41105             this.setValue(d);
41106             this.fireEvent('select', this, d);
41107         },
41108         show : function(){ // retain focus styling
41109             this.onFocus();
41110         },
41111         hide : function(){
41112             this.focus.defer(10, this);
41113             var ml = this.menuListeners;
41114             this.menu.un("select", ml.select,  this);
41115             this.menu.un("show", ml.show,  this);
41116             this.menu.un("hide", ml.hide,  this);
41117         }
41118     },
41119     // private
41120     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41121     onTriggerClick : function(){
41122         if(this.disabled){
41123             return;
41124         }
41125         if(this.menu == null){
41126             this.menu = new Roo.menu.DateMenu();
41127            
41128         }
41129         
41130         Roo.apply(this.menu.picker,  {
41131             
41132             showClear: this.allowBlank,
41133             minDate : this.minValue,
41134             maxDate : this.maxValue,
41135             disabledDatesRE : this.ddMatch,
41136             disabledDatesText : this.disabledDatesText,
41137             
41138             format : this.useIso ? 'Y-m-d' : this.format,
41139             minText : String.format(this.minText, this.formatDate(this.minValue)),
41140             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41141             
41142         });
41143          this.menu.on(Roo.apply({}, this.menuListeners, {
41144             scope:this
41145         }));
41146        
41147         
41148         var m = this.menu;
41149         var p = m.picker;
41150         
41151         // hide month picker get's called when we called by 'before hide';
41152         
41153         var ignorehide = true;
41154         p.hideMonthPicker  = function(disableAnim){
41155             if (ignorehide) {
41156                 return;
41157             }
41158              if(this.monthPicker){
41159                 Roo.log("hideMonthPicker called");
41160                 if(disableAnim === true){
41161                     this.monthPicker.hide();
41162                 }else{
41163                     this.monthPicker.slideOut('t', {duration:.2});
41164                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41165                     p.fireEvent("select", this, this.value);
41166                     m.hide();
41167                 }
41168             }
41169         }
41170         
41171         Roo.log('picker set value');
41172         Roo.log(this.getValue());
41173         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41174         m.show(this.el, 'tl-bl?');
41175         ignorehide  = false;
41176         // this will trigger hideMonthPicker..
41177         
41178         
41179         // hidden the day picker
41180         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41181         
41182         
41183         
41184       
41185         
41186         p.showMonthPicker.defer(100, p);
41187     
41188         
41189        
41190     },
41191
41192     beforeBlur : function(){
41193         var v = this.parseDate(this.getRawValue());
41194         if(v){
41195             this.setValue(v);
41196         }
41197     }
41198
41199     /** @cfg {Boolean} grow @hide */
41200     /** @cfg {Number} growMin @hide */
41201     /** @cfg {Number} growMax @hide */
41202     /**
41203      * @hide
41204      * @method autoSize
41205      */
41206 });/*
41207  * Based on:
41208  * Ext JS Library 1.1.1
41209  * Copyright(c) 2006-2007, Ext JS, LLC.
41210  *
41211  * Originally Released Under LGPL - original licence link has changed is not relivant.
41212  *
41213  * Fork - LGPL
41214  * <script type="text/javascript">
41215  */
41216  
41217
41218 /**
41219  * @class Roo.form.ComboBox
41220  * @extends Roo.form.TriggerField
41221  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41222  * @constructor
41223  * Create a new ComboBox.
41224  * @param {Object} config Configuration options
41225  */
41226 Roo.form.ComboBox = function(config){
41227     Roo.form.ComboBox.superclass.constructor.call(this, config);
41228     this.addEvents({
41229         /**
41230          * @event expand
41231          * Fires when the dropdown list is expanded
41232              * @param {Roo.form.ComboBox} combo This combo box
41233              */
41234         'expand' : true,
41235         /**
41236          * @event collapse
41237          * Fires when the dropdown list is collapsed
41238              * @param {Roo.form.ComboBox} combo This combo box
41239              */
41240         'collapse' : true,
41241         /**
41242          * @event beforeselect
41243          * Fires before a list item is selected. Return false to cancel the selection.
41244              * @param {Roo.form.ComboBox} combo This combo box
41245              * @param {Roo.data.Record} record The data record returned from the underlying store
41246              * @param {Number} index The index of the selected item in the dropdown list
41247              */
41248         'beforeselect' : true,
41249         /**
41250          * @event select
41251          * Fires when a list item is selected
41252              * @param {Roo.form.ComboBox} combo This combo box
41253              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41254              * @param {Number} index The index of the selected item in the dropdown list
41255              */
41256         'select' : true,
41257         /**
41258          * @event beforequery
41259          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41260          * The event object passed has these properties:
41261              * @param {Roo.form.ComboBox} combo This combo box
41262              * @param {String} query The query
41263              * @param {Boolean} forceAll true to force "all" query
41264              * @param {Boolean} cancel true to cancel the query
41265              * @param {Object} e The query event object
41266              */
41267         'beforequery': true,
41268          /**
41269          * @event add
41270          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41271              * @param {Roo.form.ComboBox} combo This combo box
41272              */
41273         'add' : true,
41274         /**
41275          * @event edit
41276          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41277              * @param {Roo.form.ComboBox} combo This combo box
41278              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41279              */
41280         'edit' : true
41281         
41282         
41283     });
41284     if(this.transform){
41285         this.allowDomMove = false;
41286         var s = Roo.getDom(this.transform);
41287         if(!this.hiddenName){
41288             this.hiddenName = s.name;
41289         }
41290         if(!this.store){
41291             this.mode = 'local';
41292             var d = [], opts = s.options;
41293             for(var i = 0, len = opts.length;i < len; i++){
41294                 var o = opts[i];
41295                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41296                 if(o.selected) {
41297                     this.value = value;
41298                 }
41299                 d.push([value, o.text]);
41300             }
41301             this.store = new Roo.data.SimpleStore({
41302                 'id': 0,
41303                 fields: ['value', 'text'],
41304                 data : d
41305             });
41306             this.valueField = 'value';
41307             this.displayField = 'text';
41308         }
41309         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41310         if(!this.lazyRender){
41311             this.target = true;
41312             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41313             s.parentNode.removeChild(s); // remove it
41314             this.render(this.el.parentNode);
41315         }else{
41316             s.parentNode.removeChild(s); // remove it
41317         }
41318
41319     }
41320     if (this.store) {
41321         this.store = Roo.factory(this.store, Roo.data);
41322     }
41323     
41324     this.selectedIndex = -1;
41325     if(this.mode == 'local'){
41326         if(config.queryDelay === undefined){
41327             this.queryDelay = 10;
41328         }
41329         if(config.minChars === undefined){
41330             this.minChars = 0;
41331         }
41332     }
41333 };
41334
41335 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41336     /**
41337      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41338      */
41339     /**
41340      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41341      * rendering into an Roo.Editor, defaults to false)
41342      */
41343     /**
41344      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41345      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41346      */
41347     /**
41348      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41349      */
41350     /**
41351      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41352      * the dropdown list (defaults to undefined, with no header element)
41353      */
41354
41355      /**
41356      * @cfg {String/Roo.Template} tpl The template to use to render the output
41357      */
41358      
41359     // private
41360     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41361     /**
41362      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41363      */
41364     listWidth: undefined,
41365     /**
41366      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41367      * mode = 'remote' or 'text' if mode = 'local')
41368      */
41369     displayField: undefined,
41370     /**
41371      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41372      * mode = 'remote' or 'value' if mode = 'local'). 
41373      * Note: use of a valueField requires the user make a selection
41374      * in order for a value to be mapped.
41375      */
41376     valueField: undefined,
41377     
41378     
41379     /**
41380      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41381      * field's data value (defaults to the underlying DOM element's name)
41382      */
41383     hiddenName: undefined,
41384     /**
41385      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41386      */
41387     listClass: '',
41388     /**
41389      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41390      */
41391     selectedClass: 'x-combo-selected',
41392     /**
41393      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41394      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41395      * which displays a downward arrow icon).
41396      */
41397     triggerClass : 'x-form-arrow-trigger',
41398     /**
41399      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41400      */
41401     shadow:'sides',
41402     /**
41403      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41404      * anchor positions (defaults to 'tl-bl')
41405      */
41406     listAlign: 'tl-bl?',
41407     /**
41408      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41409      */
41410     maxHeight: 300,
41411     /**
41412      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41413      * query specified by the allQuery config option (defaults to 'query')
41414      */
41415     triggerAction: 'query',
41416     /**
41417      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41418      * (defaults to 4, does not apply if editable = false)
41419      */
41420     minChars : 4,
41421     /**
41422      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41423      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41424      */
41425     typeAhead: false,
41426     /**
41427      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41428      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41429      */
41430     queryDelay: 500,
41431     /**
41432      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41433      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41434      */
41435     pageSize: 0,
41436     /**
41437      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41438      * when editable = true (defaults to false)
41439      */
41440     selectOnFocus:false,
41441     /**
41442      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41443      */
41444     queryParam: 'query',
41445     /**
41446      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41447      * when mode = 'remote' (defaults to 'Loading...')
41448      */
41449     loadingText: 'Loading...',
41450     /**
41451      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41452      */
41453     resizable: false,
41454     /**
41455      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41456      */
41457     handleHeight : 8,
41458     /**
41459      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41460      * traditional select (defaults to true)
41461      */
41462     editable: true,
41463     /**
41464      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41465      */
41466     allQuery: '',
41467     /**
41468      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41469      */
41470     mode: 'remote',
41471     /**
41472      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41473      * listWidth has a higher value)
41474      */
41475     minListWidth : 70,
41476     /**
41477      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41478      * allow the user to set arbitrary text into the field (defaults to false)
41479      */
41480     forceSelection:false,
41481     /**
41482      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41483      * if typeAhead = true (defaults to 250)
41484      */
41485     typeAheadDelay : 250,
41486     /**
41487      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41488      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41489      */
41490     valueNotFoundText : undefined,
41491     /**
41492      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41493      */
41494     blockFocus : false,
41495     
41496     /**
41497      * @cfg {Boolean} disableClear Disable showing of clear button.
41498      */
41499     disableClear : false,
41500     /**
41501      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41502      */
41503     alwaysQuery : false,
41504     
41505     //private
41506     addicon : false,
41507     editicon: false,
41508     
41509     // element that contains real text value.. (when hidden is used..)
41510      
41511     // private
41512     onRender : function(ct, position)
41513     {
41514         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41515         
41516         if(this.hiddenName){
41517             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41518                     'before', true);
41519             this.hiddenField.value =
41520                 this.hiddenValue !== undefined ? this.hiddenValue :
41521                 this.value !== undefined ? this.value : '';
41522
41523             // prevent input submission
41524             this.el.dom.removeAttribute('name');
41525              
41526              
41527         }
41528         
41529         if(Roo.isGecko){
41530             this.el.dom.setAttribute('autocomplete', 'off');
41531         }
41532
41533         var cls = 'x-combo-list';
41534
41535         this.list = new Roo.Layer({
41536             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41537         });
41538
41539         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41540         this.list.setWidth(lw);
41541         this.list.swallowEvent('mousewheel');
41542         this.assetHeight = 0;
41543
41544         if(this.title){
41545             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41546             this.assetHeight += this.header.getHeight();
41547         }
41548
41549         this.innerList = this.list.createChild({cls:cls+'-inner'});
41550         this.innerList.on('mouseover', this.onViewOver, this);
41551         this.innerList.on('mousemove', this.onViewMove, this);
41552         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41553         
41554         if(this.allowBlank && !this.pageSize && !this.disableClear){
41555             this.footer = this.list.createChild({cls:cls+'-ft'});
41556             this.pageTb = new Roo.Toolbar(this.footer);
41557            
41558         }
41559         if(this.pageSize){
41560             this.footer = this.list.createChild({cls:cls+'-ft'});
41561             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41562                     {pageSize: this.pageSize});
41563             
41564         }
41565         
41566         if (this.pageTb && this.allowBlank && !this.disableClear) {
41567             var _this = this;
41568             this.pageTb.add(new Roo.Toolbar.Fill(), {
41569                 cls: 'x-btn-icon x-btn-clear',
41570                 text: '&#160;',
41571                 handler: function()
41572                 {
41573                     _this.collapse();
41574                     _this.clearValue();
41575                     _this.onSelect(false, -1);
41576                 }
41577             });
41578         }
41579         if (this.footer) {
41580             this.assetHeight += this.footer.getHeight();
41581         }
41582         
41583
41584         if(!this.tpl){
41585             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41586         }
41587
41588         this.view = new Roo.View(this.innerList, this.tpl, {
41589             singleSelect:true,
41590             store: this.store,
41591             selectedClass: this.selectedClass
41592         });
41593
41594         this.view.on('click', this.onViewClick, this);
41595
41596         this.store.on('beforeload', this.onBeforeLoad, this);
41597         this.store.on('load', this.onLoad, this);
41598         this.store.on('loadexception', this.onLoadException, this);
41599
41600         if(this.resizable){
41601             this.resizer = new Roo.Resizable(this.list,  {
41602                pinned:true, handles:'se'
41603             });
41604             this.resizer.on('resize', function(r, w, h){
41605                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41606                 this.listWidth = w;
41607                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41608                 this.restrictHeight();
41609             }, this);
41610             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41611         }
41612         if(!this.editable){
41613             this.editable = true;
41614             this.setEditable(false);
41615         }  
41616         
41617         
41618         if (typeof(this.events.add.listeners) != 'undefined') {
41619             
41620             this.addicon = this.wrap.createChild(
41621                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41622        
41623             this.addicon.on('click', function(e) {
41624                 this.fireEvent('add', this);
41625             }, this);
41626         }
41627         if (typeof(this.events.edit.listeners) != 'undefined') {
41628             
41629             this.editicon = this.wrap.createChild(
41630                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41631             if (this.addicon) {
41632                 this.editicon.setStyle('margin-left', '40px');
41633             }
41634             this.editicon.on('click', function(e) {
41635                 
41636                 // we fire even  if inothing is selected..
41637                 this.fireEvent('edit', this, this.lastData );
41638                 
41639             }, this);
41640         }
41641         
41642         
41643         
41644     },
41645
41646     // private
41647     initEvents : function(){
41648         Roo.form.ComboBox.superclass.initEvents.call(this);
41649
41650         this.keyNav = new Roo.KeyNav(this.el, {
41651             "up" : function(e){
41652                 this.inKeyMode = true;
41653                 this.selectPrev();
41654             },
41655
41656             "down" : function(e){
41657                 if(!this.isExpanded()){
41658                     this.onTriggerClick();
41659                 }else{
41660                     this.inKeyMode = true;
41661                     this.selectNext();
41662                 }
41663             },
41664
41665             "enter" : function(e){
41666                 this.onViewClick();
41667                 //return true;
41668             },
41669
41670             "esc" : function(e){
41671                 this.collapse();
41672             },
41673
41674             "tab" : function(e){
41675                 this.onViewClick(false);
41676                 this.fireEvent("specialkey", this, e);
41677                 return true;
41678             },
41679
41680             scope : this,
41681
41682             doRelay : function(foo, bar, hname){
41683                 if(hname == 'down' || this.scope.isExpanded()){
41684                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41685                 }
41686                 return true;
41687             },
41688
41689             forceKeyDown: true
41690         });
41691         this.queryDelay = Math.max(this.queryDelay || 10,
41692                 this.mode == 'local' ? 10 : 250);
41693         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41694         if(this.typeAhead){
41695             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41696         }
41697         if(this.editable !== false){
41698             this.el.on("keyup", this.onKeyUp, this);
41699         }
41700         if(this.forceSelection){
41701             this.on('blur', this.doForce, this);
41702         }
41703     },
41704
41705     onDestroy : function(){
41706         if(this.view){
41707             this.view.setStore(null);
41708             this.view.el.removeAllListeners();
41709             this.view.el.remove();
41710             this.view.purgeListeners();
41711         }
41712         if(this.list){
41713             this.list.destroy();
41714         }
41715         if(this.store){
41716             this.store.un('beforeload', this.onBeforeLoad, this);
41717             this.store.un('load', this.onLoad, this);
41718             this.store.un('loadexception', this.onLoadException, this);
41719         }
41720         Roo.form.ComboBox.superclass.onDestroy.call(this);
41721     },
41722
41723     // private
41724     fireKey : function(e){
41725         if(e.isNavKeyPress() && !this.list.isVisible()){
41726             this.fireEvent("specialkey", this, e);
41727         }
41728     },
41729
41730     // private
41731     onResize: function(w, h){
41732         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41733         
41734         if(typeof w != 'number'){
41735             // we do not handle it!?!?
41736             return;
41737         }
41738         var tw = this.trigger.getWidth();
41739         tw += this.addicon ? this.addicon.getWidth() : 0;
41740         tw += this.editicon ? this.editicon.getWidth() : 0;
41741         var x = w - tw;
41742         this.el.setWidth( this.adjustWidth('input', x));
41743             
41744         this.trigger.setStyle('left', x+'px');
41745         
41746         if(this.list && this.listWidth === undefined){
41747             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41748             this.list.setWidth(lw);
41749             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41750         }
41751         
41752     
41753         
41754     },
41755
41756     /**
41757      * Allow or prevent the user from directly editing the field text.  If false is passed,
41758      * the user will only be able to select from the items defined in the dropdown list.  This method
41759      * is the runtime equivalent of setting the 'editable' config option at config time.
41760      * @param {Boolean} value True to allow the user to directly edit the field text
41761      */
41762     setEditable : function(value){
41763         if(value == this.editable){
41764             return;
41765         }
41766         this.editable = value;
41767         if(!value){
41768             this.el.dom.setAttribute('readOnly', true);
41769             this.el.on('mousedown', this.onTriggerClick,  this);
41770             this.el.addClass('x-combo-noedit');
41771         }else{
41772             this.el.dom.setAttribute('readOnly', false);
41773             this.el.un('mousedown', this.onTriggerClick,  this);
41774             this.el.removeClass('x-combo-noedit');
41775         }
41776     },
41777
41778     // private
41779     onBeforeLoad : function(){
41780         if(!this.hasFocus){
41781             return;
41782         }
41783         this.innerList.update(this.loadingText ?
41784                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41785         this.restrictHeight();
41786         this.selectedIndex = -1;
41787     },
41788
41789     // private
41790     onLoad : function(){
41791         if(!this.hasFocus){
41792             return;
41793         }
41794         if(this.store.getCount() > 0){
41795             this.expand();
41796             this.restrictHeight();
41797             if(this.lastQuery == this.allQuery){
41798                 if(this.editable){
41799                     this.el.dom.select();
41800                 }
41801                 if(!this.selectByValue(this.value, true)){
41802                     this.select(0, true);
41803                 }
41804             }else{
41805                 this.selectNext();
41806                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41807                     this.taTask.delay(this.typeAheadDelay);
41808                 }
41809             }
41810         }else{
41811             this.onEmptyResults();
41812         }
41813         //this.el.focus();
41814     },
41815     // private
41816     onLoadException : function()
41817     {
41818         this.collapse();
41819         Roo.log(this.store.reader.jsonData);
41820         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41821             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41822         }
41823         
41824         
41825     },
41826     // private
41827     onTypeAhead : function(){
41828         if(this.store.getCount() > 0){
41829             var r = this.store.getAt(0);
41830             var newValue = r.data[this.displayField];
41831             var len = newValue.length;
41832             var selStart = this.getRawValue().length;
41833             if(selStart != len){
41834                 this.setRawValue(newValue);
41835                 this.selectText(selStart, newValue.length);
41836             }
41837         }
41838     },
41839
41840     // private
41841     onSelect : function(record, index){
41842         if(this.fireEvent('beforeselect', this, record, index) !== false){
41843             this.setFromData(index > -1 ? record.data : false);
41844             this.collapse();
41845             this.fireEvent('select', this, record, index);
41846         }
41847     },
41848
41849     /**
41850      * Returns the currently selected field value or empty string if no value is set.
41851      * @return {String} value The selected value
41852      */
41853     getValue : function(){
41854         if(this.valueField){
41855             return typeof this.value != 'undefined' ? this.value : '';
41856         }
41857         return Roo.form.ComboBox.superclass.getValue.call(this);
41858     },
41859
41860     /**
41861      * Clears any text/value currently set in the field
41862      */
41863     clearValue : function(){
41864         if(this.hiddenField){
41865             this.hiddenField.value = '';
41866         }
41867         this.value = '';
41868         this.setRawValue('');
41869         this.lastSelectionText = '';
41870         
41871     },
41872
41873     /**
41874      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41875      * will be displayed in the field.  If the value does not match the data value of an existing item,
41876      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41877      * Otherwise the field will be blank (although the value will still be set).
41878      * @param {String} value The value to match
41879      */
41880     setValue : function(v){
41881         var text = v;
41882         if(this.valueField){
41883             var r = this.findRecord(this.valueField, v);
41884             if(r){
41885                 text = r.data[this.displayField];
41886             }else if(this.valueNotFoundText !== undefined){
41887                 text = this.valueNotFoundText;
41888             }
41889         }
41890         this.lastSelectionText = text;
41891         if(this.hiddenField){
41892             this.hiddenField.value = v;
41893         }
41894         Roo.form.ComboBox.superclass.setValue.call(this, text);
41895         this.value = v;
41896     },
41897     /**
41898      * @property {Object} the last set data for the element
41899      */
41900     
41901     lastData : false,
41902     /**
41903      * Sets the value of the field based on a object which is related to the record format for the store.
41904      * @param {Object} value the value to set as. or false on reset?
41905      */
41906     setFromData : function(o){
41907         var dv = ''; // display value
41908         var vv = ''; // value value..
41909         this.lastData = o;
41910         if (this.displayField) {
41911             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41912         } else {
41913             // this is an error condition!!!
41914             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
41915         }
41916         
41917         if(this.valueField){
41918             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
41919         }
41920         if(this.hiddenField){
41921             this.hiddenField.value = vv;
41922             
41923             this.lastSelectionText = dv;
41924             Roo.form.ComboBox.superclass.setValue.call(this, dv);
41925             this.value = vv;
41926             return;
41927         }
41928         // no hidden field.. - we store the value in 'value', but still display
41929         // display field!!!!
41930         this.lastSelectionText = dv;
41931         Roo.form.ComboBox.superclass.setValue.call(this, dv);
41932         this.value = vv;
41933         
41934         
41935     },
41936     // private
41937     reset : function(){
41938         // overridden so that last data is reset..
41939         this.setValue(this.resetValue);
41940         this.originalValue = this.getValue();
41941         this.clearInvalid();
41942         this.lastData = false;
41943         if (this.view) {
41944             this.view.clearSelections();
41945         }
41946     },
41947     // private
41948     findRecord : function(prop, value){
41949         var record;
41950         if(this.store.getCount() > 0){
41951             this.store.each(function(r){
41952                 if(r.data[prop] == value){
41953                     record = r;
41954                     return false;
41955                 }
41956                 return true;
41957             });
41958         }
41959         return record;
41960     },
41961     
41962     getName: function()
41963     {
41964         // returns hidden if it's set..
41965         if (!this.rendered) {return ''};
41966         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
41967         
41968     },
41969     // private
41970     onViewMove : function(e, t){
41971         this.inKeyMode = false;
41972     },
41973
41974     // private
41975     onViewOver : function(e, t){
41976         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
41977             return;
41978         }
41979         var item = this.view.findItemFromChild(t);
41980         if(item){
41981             var index = this.view.indexOf(item);
41982             this.select(index, false);
41983         }
41984     },
41985
41986     // private
41987     onViewClick : function(doFocus)
41988     {
41989         var index = this.view.getSelectedIndexes()[0];
41990         var r = this.store.getAt(index);
41991         if(r){
41992             this.onSelect(r, index);
41993         }
41994         if(doFocus !== false && !this.blockFocus){
41995             this.el.focus();
41996         }
41997     },
41998
41999     // private
42000     restrictHeight : function(){
42001         this.innerList.dom.style.height = '';
42002         var inner = this.innerList.dom;
42003         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42004         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42005         this.list.beginUpdate();
42006         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42007         this.list.alignTo(this.el, this.listAlign);
42008         this.list.endUpdate();
42009     },
42010
42011     // private
42012     onEmptyResults : function(){
42013         this.collapse();
42014     },
42015
42016     /**
42017      * Returns true if the dropdown list is expanded, else false.
42018      */
42019     isExpanded : function(){
42020         return this.list.isVisible();
42021     },
42022
42023     /**
42024      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42025      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42026      * @param {String} value The data value of the item to select
42027      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42028      * selected item if it is not currently in view (defaults to true)
42029      * @return {Boolean} True if the value matched an item in the list, else false
42030      */
42031     selectByValue : function(v, scrollIntoView){
42032         if(v !== undefined && v !== null){
42033             var r = this.findRecord(this.valueField || this.displayField, v);
42034             if(r){
42035                 this.select(this.store.indexOf(r), scrollIntoView);
42036                 return true;
42037             }
42038         }
42039         return false;
42040     },
42041
42042     /**
42043      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
42044      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42045      * @param {Number} index The zero-based index of the list item to select
42046      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42047      * selected item if it is not currently in view (defaults to true)
42048      */
42049     select : function(index, scrollIntoView){
42050         this.selectedIndex = index;
42051         this.view.select(index);
42052         if(scrollIntoView !== false){
42053             var el = this.view.getNode(index);
42054             if(el){
42055                 this.innerList.scrollChildIntoView(el, false);
42056             }
42057         }
42058     },
42059
42060     // private
42061     selectNext : function(){
42062         var ct = this.store.getCount();
42063         if(ct > 0){
42064             if(this.selectedIndex == -1){
42065                 this.select(0);
42066             }else if(this.selectedIndex < ct-1){
42067                 this.select(this.selectedIndex+1);
42068             }
42069         }
42070     },
42071
42072     // private
42073     selectPrev : function(){
42074         var ct = this.store.getCount();
42075         if(ct > 0){
42076             if(this.selectedIndex == -1){
42077                 this.select(0);
42078             }else if(this.selectedIndex != 0){
42079                 this.select(this.selectedIndex-1);
42080             }
42081         }
42082     },
42083
42084     // private
42085     onKeyUp : function(e){
42086         if(this.editable !== false && !e.isSpecialKey()){
42087             this.lastKey = e.getKey();
42088             this.dqTask.delay(this.queryDelay);
42089         }
42090     },
42091
42092     // private
42093     validateBlur : function(){
42094         return !this.list || !this.list.isVisible();   
42095     },
42096
42097     // private
42098     initQuery : function(){
42099         this.doQuery(this.getRawValue());
42100     },
42101
42102     // private
42103     doForce : function(){
42104         if(this.el.dom.value.length > 0){
42105             this.el.dom.value =
42106                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42107              
42108         }
42109     },
42110
42111     /**
42112      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42113      * query allowing the query action to be canceled if needed.
42114      * @param {String} query The SQL query to execute
42115      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42116      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42117      * saved in the current store (defaults to false)
42118      */
42119     doQuery : function(q, forceAll){
42120         if(q === undefined || q === null){
42121             q = '';
42122         }
42123         var qe = {
42124             query: q,
42125             forceAll: forceAll,
42126             combo: this,
42127             cancel:false
42128         };
42129         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42130             return false;
42131         }
42132         q = qe.query;
42133         forceAll = qe.forceAll;
42134         if(forceAll === true || (q.length >= this.minChars)){
42135             if(this.lastQuery != q || this.alwaysQuery){
42136                 this.lastQuery = q;
42137                 if(this.mode == 'local'){
42138                     this.selectedIndex = -1;
42139                     if(forceAll){
42140                         this.store.clearFilter();
42141                     }else{
42142                         this.store.filter(this.displayField, q);
42143                     }
42144                     this.onLoad();
42145                 }else{
42146                     this.store.baseParams[this.queryParam] = q;
42147                     this.store.load({
42148                         params: this.getParams(q)
42149                     });
42150                     this.expand();
42151                 }
42152             }else{
42153                 this.selectedIndex = -1;
42154                 this.onLoad();   
42155             }
42156         }
42157     },
42158
42159     // private
42160     getParams : function(q){
42161         var p = {};
42162         //p[this.queryParam] = q;
42163         if(this.pageSize){
42164             p.start = 0;
42165             p.limit = this.pageSize;
42166         }
42167         return p;
42168     },
42169
42170     /**
42171      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42172      */
42173     collapse : function(){
42174         if(!this.isExpanded()){
42175             return;
42176         }
42177         this.list.hide();
42178         Roo.get(document).un('mousedown', this.collapseIf, this);
42179         Roo.get(document).un('mousewheel', this.collapseIf, this);
42180         if (!this.editable) {
42181             Roo.get(document).un('keydown', this.listKeyPress, this);
42182         }
42183         this.fireEvent('collapse', this);
42184     },
42185
42186     // private
42187     collapseIf : function(e){
42188         if(!e.within(this.wrap) && !e.within(this.list)){
42189             this.collapse();
42190         }
42191     },
42192
42193     /**
42194      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42195      */
42196     expand : function(){
42197         if(this.isExpanded() || !this.hasFocus){
42198             return;
42199         }
42200         this.list.alignTo(this.el, this.listAlign);
42201         this.list.show();
42202         Roo.get(document).on('mousedown', this.collapseIf, this);
42203         Roo.get(document).on('mousewheel', this.collapseIf, this);
42204         if (!this.editable) {
42205             Roo.get(document).on('keydown', this.listKeyPress, this);
42206         }
42207         
42208         this.fireEvent('expand', this);
42209     },
42210
42211     // private
42212     // Implements the default empty TriggerField.onTriggerClick function
42213     onTriggerClick : function(){
42214         if(this.disabled){
42215             return;
42216         }
42217         if(this.isExpanded()){
42218             this.collapse();
42219             if (!this.blockFocus) {
42220                 this.el.focus();
42221             }
42222             
42223         }else {
42224             this.hasFocus = true;
42225             if(this.triggerAction == 'all') {
42226                 this.doQuery(this.allQuery, true);
42227             } else {
42228                 this.doQuery(this.getRawValue());
42229             }
42230             if (!this.blockFocus) {
42231                 this.el.focus();
42232             }
42233         }
42234     },
42235     listKeyPress : function(e)
42236     {
42237         //Roo.log('listkeypress');
42238         // scroll to first matching element based on key pres..
42239         if (e.isSpecialKey()) {
42240             return false;
42241         }
42242         var k = String.fromCharCode(e.getKey()).toUpperCase();
42243         //Roo.log(k);
42244         var match  = false;
42245         var csel = this.view.getSelectedNodes();
42246         var cselitem = false;
42247         if (csel.length) {
42248             var ix = this.view.indexOf(csel[0]);
42249             cselitem  = this.store.getAt(ix);
42250             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42251                 cselitem = false;
42252             }
42253             
42254         }
42255         
42256         this.store.each(function(v) { 
42257             if (cselitem) {
42258                 // start at existing selection.
42259                 if (cselitem.id == v.id) {
42260                     cselitem = false;
42261                 }
42262                 return;
42263             }
42264                 
42265             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42266                 match = this.store.indexOf(v);
42267                 return false;
42268             }
42269         }, this);
42270         
42271         if (match === false) {
42272             return true; // no more action?
42273         }
42274         // scroll to?
42275         this.view.select(match);
42276         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42277         sn.scrollIntoView(sn.dom.parentNode, false);
42278     } 
42279
42280     /** 
42281     * @cfg {Boolean} grow 
42282     * @hide 
42283     */
42284     /** 
42285     * @cfg {Number} growMin 
42286     * @hide 
42287     */
42288     /** 
42289     * @cfg {Number} growMax 
42290     * @hide 
42291     */
42292     /**
42293      * @hide
42294      * @method autoSize
42295      */
42296 });/*
42297  * Copyright(c) 2010-2012, Roo J Solutions Limited
42298  *
42299  * Licence LGPL
42300  *
42301  */
42302
42303 /**
42304  * @class Roo.form.ComboBoxArray
42305  * @extends Roo.form.TextField
42306  * A facebook style adder... for lists of email / people / countries  etc...
42307  * pick multiple items from a combo box, and shows each one.
42308  *
42309  *  Fred [x]  Brian [x]  [Pick another |v]
42310  *
42311  *
42312  *  For this to work: it needs various extra information
42313  *    - normal combo problay has
42314  *      name, hiddenName
42315  *    + displayField, valueField
42316  *
42317  *    For our purpose...
42318  *
42319  *
42320  *   If we change from 'extends' to wrapping...
42321  *   
42322  *  
42323  *
42324  
42325  
42326  * @constructor
42327  * Create a new ComboBoxArray.
42328  * @param {Object} config Configuration options
42329  */
42330  
42331
42332 Roo.form.ComboBoxArray = function(config)
42333 {
42334     this.addEvents({
42335         /**
42336          * @event beforeremove
42337          * Fires before remove the value from the list
42338              * @param {Roo.form.ComboBoxArray} _self This combo box array
42339              * @param {Roo.form.ComboBoxArray.Item} item removed item
42340              */
42341         'beforeremove' : true,
42342         /**
42343          * @event remove
42344          * Fires when remove the value from the list
42345              * @param {Roo.form.ComboBoxArray} _self This combo box array
42346              * @param {Roo.form.ComboBoxArray.Item} item removed item
42347              */
42348         'remove' : true
42349         
42350         
42351     });
42352     
42353     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42354     
42355     this.items = new Roo.util.MixedCollection(false);
42356     
42357     // construct the child combo...
42358     
42359     
42360     
42361     
42362    
42363     
42364 }
42365
42366  
42367 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42368
42369     /**
42370      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42371      */
42372     
42373     lastData : false,
42374     
42375     // behavies liek a hiddne field
42376     inputType:      'hidden',
42377     /**
42378      * @cfg {Number} width The width of the box that displays the selected element
42379      */ 
42380     width:          300,
42381
42382     
42383     
42384     /**
42385      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42386      */
42387     name : false,
42388     /**
42389      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42390      */
42391     hiddenName : false,
42392       /**
42393      * @cfg {String} seperator    The value seperator normally ',' 
42394      */
42395     seperator : ',',
42396     
42397     // private the array of items that are displayed..
42398     items  : false,
42399     // private - the hidden field el.
42400     hiddenEl : false,
42401     // private - the filed el..
42402     el : false,
42403     
42404     //validateValue : function() { return true; }, // all values are ok!
42405     //onAddClick: function() { },
42406     
42407     onRender : function(ct, position) 
42408     {
42409         
42410         // create the standard hidden element
42411         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42412         
42413         
42414         // give fake names to child combo;
42415         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42416         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42417         
42418         this.combo = Roo.factory(this.combo, Roo.form);
42419         this.combo.onRender(ct, position);
42420         if (typeof(this.combo.width) != 'undefined') {
42421             this.combo.onResize(this.combo.width,0);
42422         }
42423         
42424         this.combo.initEvents();
42425         
42426         // assigned so form know we need to do this..
42427         this.store          = this.combo.store;
42428         this.valueField     = this.combo.valueField;
42429         this.displayField   = this.combo.displayField ;
42430         
42431         
42432         this.combo.wrap.addClass('x-cbarray-grp');
42433         
42434         var cbwrap = this.combo.wrap.createChild(
42435             {tag: 'div', cls: 'x-cbarray-cb'},
42436             this.combo.el.dom
42437         );
42438         
42439              
42440         this.hiddenEl = this.combo.wrap.createChild({
42441             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42442         });
42443         this.el = this.combo.wrap.createChild({
42444             tag: 'input',  type:'hidden' , name: this.name, value : ''
42445         });
42446          //   this.el.dom.removeAttribute("name");
42447         
42448         
42449         this.outerWrap = this.combo.wrap;
42450         this.wrap = cbwrap;
42451         
42452         this.outerWrap.setWidth(this.width);
42453         this.outerWrap.dom.removeChild(this.el.dom);
42454         
42455         this.wrap.dom.appendChild(this.el.dom);
42456         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42457         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42458         
42459         this.combo.trigger.setStyle('position','relative');
42460         this.combo.trigger.setStyle('left', '0px');
42461         this.combo.trigger.setStyle('top', '2px');
42462         
42463         this.combo.el.setStyle('vertical-align', 'text-bottom');
42464         
42465         //this.trigger.setStyle('vertical-align', 'top');
42466         
42467         // this should use the code from combo really... on('add' ....)
42468         if (this.adder) {
42469             
42470         
42471             this.adder = this.outerWrap.createChild(
42472                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42473             var _t = this;
42474             this.adder.on('click', function(e) {
42475                 _t.fireEvent('adderclick', this, e);
42476             }, _t);
42477         }
42478         //var _t = this;
42479         //this.adder.on('click', this.onAddClick, _t);
42480         
42481         
42482         this.combo.on('select', function(cb, rec, ix) {
42483             this.addItem(rec.data);
42484             
42485             cb.setValue('');
42486             cb.el.dom.value = '';
42487             //cb.lastData = rec.data;
42488             // add to list
42489             
42490         }, this);
42491         
42492         
42493     },
42494     
42495     
42496     getName: function()
42497     {
42498         // returns hidden if it's set..
42499         if (!this.rendered) {return ''};
42500         return  this.hiddenName ? this.hiddenName : this.name;
42501         
42502     },
42503     
42504     
42505     onResize: function(w, h){
42506         
42507         return;
42508         // not sure if this is needed..
42509         //this.combo.onResize(w,h);
42510         
42511         if(typeof w != 'number'){
42512             // we do not handle it!?!?
42513             return;
42514         }
42515         var tw = this.combo.trigger.getWidth();
42516         tw += this.addicon ? this.addicon.getWidth() : 0;
42517         tw += this.editicon ? this.editicon.getWidth() : 0;
42518         var x = w - tw;
42519         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42520             
42521         this.combo.trigger.setStyle('left', '0px');
42522         
42523         if(this.list && this.listWidth === undefined){
42524             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42525             this.list.setWidth(lw);
42526             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42527         }
42528         
42529     
42530         
42531     },
42532     
42533     addItem: function(rec)
42534     {
42535         var valueField = this.combo.valueField;
42536         var displayField = this.combo.displayField;
42537         
42538         if (this.items.indexOfKey(rec[valueField]) > -1) {
42539             //console.log("GOT " + rec.data.id);
42540             return;
42541         }
42542         
42543         var x = new Roo.form.ComboBoxArray.Item({
42544             //id : rec[this.idField],
42545             data : rec,
42546             displayField : displayField ,
42547             tipField : displayField ,
42548             cb : this
42549         });
42550         // use the 
42551         this.items.add(rec[valueField],x);
42552         // add it before the element..
42553         this.updateHiddenEl();
42554         x.render(this.outerWrap, this.wrap.dom);
42555         // add the image handler..
42556     },
42557     
42558     updateHiddenEl : function()
42559     {
42560         this.validate();
42561         if (!this.hiddenEl) {
42562             return;
42563         }
42564         var ar = [];
42565         var idField = this.combo.valueField;
42566         
42567         this.items.each(function(f) {
42568             ar.push(f.data[idField]);
42569         });
42570         this.hiddenEl.dom.value = ar.join(this.seperator);
42571         this.validate();
42572     },
42573     
42574     reset : function()
42575     {
42576         this.items.clear();
42577         
42578         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42579            el.remove();
42580         });
42581         
42582         this.el.dom.value = '';
42583         if (this.hiddenEl) {
42584             this.hiddenEl.dom.value = '';
42585         }
42586         
42587     },
42588     getValue: function()
42589     {
42590         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42591     },
42592     setValue: function(v) // not a valid action - must use addItems..
42593     {
42594         
42595         this.reset();
42596          
42597         if (this.store.isLocal && (typeof(v) == 'string')) {
42598             // then we can use the store to find the values..
42599             // comma seperated at present.. this needs to allow JSON based encoding..
42600             this.hiddenEl.value  = v;
42601             var v_ar = [];
42602             Roo.each(v.split(this.seperator), function(k) {
42603                 Roo.log("CHECK " + this.valueField + ',' + k);
42604                 var li = this.store.query(this.valueField, k);
42605                 if (!li.length) {
42606                     return;
42607                 }
42608                 var add = {};
42609                 add[this.valueField] = k;
42610                 add[this.displayField] = li.item(0).data[this.displayField];
42611                 
42612                 this.addItem(add);
42613             }, this) 
42614              
42615         }
42616         if (typeof(v) == 'object' ) {
42617             // then let's assume it's an array of objects..
42618             Roo.each(v, function(l) {
42619                 var add = l;
42620                 if (typeof(l) == 'string') {
42621                     add = {};
42622                     add[this.valueField] = l;
42623                     add[this.displayField] = l
42624                 }
42625                 this.addItem(add);
42626             }, this);
42627              
42628         }
42629         
42630         
42631     },
42632     setFromData: function(v)
42633     {
42634         // this recieves an object, if setValues is called.
42635         this.reset();
42636         this.el.dom.value = v[this.displayField];
42637         this.hiddenEl.dom.value = v[this.valueField];
42638         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42639             return;
42640         }
42641         var kv = v[this.valueField];
42642         var dv = v[this.displayField];
42643         kv = typeof(kv) != 'string' ? '' : kv;
42644         dv = typeof(dv) != 'string' ? '' : dv;
42645         
42646         
42647         var keys = kv.split(this.seperator);
42648         var display = dv.split(this.seperator);
42649         for (var i = 0 ; i < keys.length; i++) {
42650             add = {};
42651             add[this.valueField] = keys[i];
42652             add[this.displayField] = display[i];
42653             this.addItem(add);
42654         }
42655       
42656         
42657     },
42658     
42659     /**
42660      * Validates the combox array value
42661      * @return {Boolean} True if the value is valid, else false
42662      */
42663     validate : function(){
42664         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42665             this.clearInvalid();
42666             return true;
42667         }
42668         return false;
42669     },
42670     
42671     validateValue : function(value){
42672         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42673         
42674     },
42675     
42676     /*@
42677      * overide
42678      * 
42679      */
42680     isDirty : function() {
42681         if(this.disabled) {
42682             return false;
42683         }
42684         
42685         try {
42686             var d = Roo.decode(String(this.originalValue));
42687         } catch (e) {
42688             return String(this.getValue()) !== String(this.originalValue);
42689         }
42690         
42691         var originalValue = [];
42692         
42693         for (var i = 0; i < d.length; i++){
42694             originalValue.push(d[i][this.valueField]);
42695         }
42696         
42697         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42698         
42699     }
42700     
42701 });
42702
42703
42704
42705 /**
42706  * @class Roo.form.ComboBoxArray.Item
42707  * @extends Roo.BoxComponent
42708  * A selected item in the list
42709  *  Fred [x]  Brian [x]  [Pick another |v]
42710  * 
42711  * @constructor
42712  * Create a new item.
42713  * @param {Object} config Configuration options
42714  */
42715  
42716 Roo.form.ComboBoxArray.Item = function(config) {
42717     config.id = Roo.id();
42718     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42719 }
42720
42721 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42722     data : {},
42723     cb: false,
42724     displayField : false,
42725     tipField : false,
42726     
42727     
42728     defaultAutoCreate : {
42729         tag: 'div',
42730         cls: 'x-cbarray-item',
42731         cn : [ 
42732             { tag: 'div' },
42733             {
42734                 tag: 'img',
42735                 width:16,
42736                 height : 16,
42737                 src : Roo.BLANK_IMAGE_URL ,
42738                 align: 'center'
42739             }
42740         ]
42741         
42742     },
42743     
42744  
42745     onRender : function(ct, position)
42746     {
42747         Roo.form.Field.superclass.onRender.call(this, ct, position);
42748         
42749         if(!this.el){
42750             var cfg = this.getAutoCreate();
42751             this.el = ct.createChild(cfg, position);
42752         }
42753         
42754         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42755         
42756         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42757             this.cb.renderer(this.data) :
42758             String.format('{0}',this.data[this.displayField]);
42759         
42760             
42761         this.el.child('div').dom.setAttribute('qtip',
42762                         String.format('{0}',this.data[this.tipField])
42763         );
42764         
42765         this.el.child('img').on('click', this.remove, this);
42766         
42767     },
42768    
42769     remove : function()
42770     {
42771         if(this.cb.disabled){
42772             return;
42773         }
42774         
42775         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42776             this.cb.items.remove(this);
42777             this.el.child('img').un('click', this.remove, this);
42778             this.el.remove();
42779             this.cb.updateHiddenEl();
42780
42781             this.cb.fireEvent('remove', this.cb, this);
42782         }
42783         
42784     }
42785 });/*
42786  * RooJS Library 1.1.1
42787  * Copyright(c) 2008-2011  Alan Knowles
42788  *
42789  * License - LGPL
42790  */
42791  
42792
42793 /**
42794  * @class Roo.form.ComboNested
42795  * @extends Roo.form.ComboBox
42796  * A combobox for that allows selection of nested items in a list,
42797  * eg.
42798  *
42799  *  Book
42800  *    -> red
42801  *    -> green
42802  *  Table
42803  *    -> square
42804  *      ->red
42805  *      ->green
42806  *    -> rectangle
42807  *      ->green
42808  *      
42809  * 
42810  * @constructor
42811  * Create a new ComboNested
42812  * @param {Object} config Configuration options
42813  */
42814 Roo.form.ComboNested = function(config){
42815     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42816     // should verify some data...
42817     // like
42818     // hiddenName = required..
42819     // displayField = required
42820     // valudField == required
42821     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42822     var _t = this;
42823     Roo.each(req, function(e) {
42824         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42825             throw "Roo.form.ComboNested : missing value for: " + e;
42826         }
42827     });
42828      
42829     
42830 };
42831
42832 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42833    
42834     /*
42835      * @config {Number} max Number of columns to show
42836      */
42837     
42838     maxColumns : 3,
42839    
42840     list : null, // the outermost div..
42841     innerLists : null, // the
42842     views : null,
42843     stores : null,
42844     // private
42845     loadingChildren : false,
42846     
42847     onRender : function(ct, position)
42848     {
42849         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42850         
42851         if(this.hiddenName){
42852             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42853                     'before', true);
42854             this.hiddenField.value =
42855                 this.hiddenValue !== undefined ? this.hiddenValue :
42856                 this.value !== undefined ? this.value : '';
42857
42858             // prevent input submission
42859             this.el.dom.removeAttribute('name');
42860              
42861              
42862         }
42863         
42864         if(Roo.isGecko){
42865             this.el.dom.setAttribute('autocomplete', 'off');
42866         }
42867
42868         var cls = 'x-combo-list';
42869
42870         this.list = new Roo.Layer({
42871             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
42872         });
42873
42874         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
42875         this.list.setWidth(lw);
42876         this.list.swallowEvent('mousewheel');
42877         this.assetHeight = 0;
42878
42879         if(this.title){
42880             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
42881             this.assetHeight += this.header.getHeight();
42882         }
42883         this.innerLists = [];
42884         this.views = [];
42885         this.stores = [];
42886         for (var i =0 ; i < this.maxColumns; i++) {
42887             this.onRenderList( cls, i);
42888         }
42889         
42890         // always needs footer, as we are going to have an 'OK' button.
42891         this.footer = this.list.createChild({cls:cls+'-ft'});
42892         this.pageTb = new Roo.Toolbar(this.footer);  
42893         var _this = this;
42894         this.pageTb.add(  {
42895             
42896             text: 'Done',
42897             handler: function()
42898             {
42899                 _this.collapse();
42900             }
42901         });
42902         
42903         if ( this.allowBlank && !this.disableClear) {
42904             
42905             this.pageTb.add(new Roo.Toolbar.Fill(), {
42906                 cls: 'x-btn-icon x-btn-clear',
42907                 text: '&#160;',
42908                 handler: function()
42909                 {
42910                     _this.collapse();
42911                     _this.clearValue();
42912                     _this.onSelect(false, -1);
42913                 }
42914             });
42915         }
42916         if (this.footer) {
42917             this.assetHeight += this.footer.getHeight();
42918         }
42919         
42920     },
42921     onRenderList : function (  cls, i)
42922     {
42923         
42924         var lw = Math.floor(
42925                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
42926         );
42927         
42928         this.list.setWidth(lw); // default to '1'
42929
42930         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
42931         //il.on('mouseover', this.onViewOver, this, { list:  i });
42932         //il.on('mousemove', this.onViewMove, this, { list:  i });
42933         il.setWidth(lw);
42934         il.setStyle({ 'overflow-x' : 'hidden'});
42935
42936         if(!this.tpl){
42937             this.tpl = new Roo.Template({
42938                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
42939                 isEmpty: function (value, allValues) {
42940                     //Roo.log(value);
42941                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
42942                     return dl ? 'has-children' : 'no-children'
42943                 }
42944             });
42945         }
42946         
42947         var store  = this.store;
42948         if (i > 0) {
42949             store  = new Roo.data.SimpleStore({
42950                 //fields : this.store.reader.meta.fields,
42951                 reader : this.store.reader,
42952                 data : [ ]
42953             });
42954         }
42955         this.stores[i]  = store;
42956                   
42957         var view = this.views[i] = new Roo.View(
42958             il,
42959             this.tpl,
42960             {
42961                 singleSelect:true,
42962                 store: store,
42963                 selectedClass: this.selectedClass
42964             }
42965         );
42966         view.getEl().setWidth(lw);
42967         view.getEl().setStyle({
42968             position: i < 1 ? 'relative' : 'absolute',
42969             top: 0,
42970             left: (i * lw ) + 'px',
42971             display : i > 0 ? 'none' : 'block'
42972         });
42973         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
42974         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
42975         //view.on('click', this.onViewClick, this, { list : i });
42976
42977         store.on('beforeload', this.onBeforeLoad, this);
42978         store.on('load',  this.onLoad, this, { list  : i});
42979         store.on('loadexception', this.onLoadException, this);
42980
42981         // hide the other vies..
42982         
42983         
42984         
42985     },
42986       
42987     restrictHeight : function()
42988     {
42989         var mh = 0;
42990         Roo.each(this.innerLists, function(il,i) {
42991             var el = this.views[i].getEl();
42992             el.dom.style.height = '';
42993             var inner = el.dom;
42994             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
42995             // only adjust heights on other ones..
42996             mh = Math.max(h, mh);
42997             if (i < 1) {
42998                 
42999                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43000                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43001                
43002             }
43003             
43004             
43005         }, this);
43006         
43007         this.list.beginUpdate();
43008         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43009         this.list.alignTo(this.el, this.listAlign);
43010         this.list.endUpdate();
43011         
43012     },
43013      
43014     
43015     // -- store handlers..
43016     // private
43017     onBeforeLoad : function()
43018     {
43019         if(!this.hasFocus){
43020             return;
43021         }
43022         this.innerLists[0].update(this.loadingText ?
43023                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43024         this.restrictHeight();
43025         this.selectedIndex = -1;
43026     },
43027     // private
43028     onLoad : function(a,b,c,d)
43029     {
43030         if (!this.loadingChildren) {
43031             // then we are loading the top level. - hide the children
43032             for (var i = 1;i < this.views.length; i++) {
43033                 this.views[i].getEl().setStyle({ display : 'none' });
43034             }
43035             var lw = Math.floor(
43036                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43037             );
43038         
43039              this.list.setWidth(lw); // default to '1'
43040
43041             
43042         }
43043         if(!this.hasFocus){
43044             return;
43045         }
43046         
43047         if(this.store.getCount() > 0) {
43048             this.expand();
43049             this.restrictHeight();   
43050         } else {
43051             this.onEmptyResults();
43052         }
43053         
43054         if (!this.loadingChildren) {
43055             this.selectActive();
43056         }
43057         /*
43058         this.stores[1].loadData([]);
43059         this.stores[2].loadData([]);
43060         this.views
43061         */    
43062     
43063         //this.el.focus();
43064     },
43065     
43066     
43067     // private
43068     onLoadException : function()
43069     {
43070         this.collapse();
43071         Roo.log(this.store.reader.jsonData);
43072         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43073             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43074         }
43075         
43076         
43077     },
43078     // no cleaning of leading spaces on blur here.
43079     cleanLeadingSpace : function(e) { },
43080     
43081
43082     onSelectChange : function (view, sels, opts )
43083     {
43084         var ix = view.getSelectedIndexes();
43085          
43086         if (opts.list > this.maxColumns - 2) {
43087             if (view.store.getCount()<  1) {
43088                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43089
43090             } else  {
43091                 if (ix.length) {
43092                     // used to clear ?? but if we are loading unselected 
43093                     this.setFromData(view.store.getAt(ix[0]).data);
43094                 }
43095                 
43096             }
43097             
43098             return;
43099         }
43100         
43101         if (!ix.length) {
43102             // this get's fired when trigger opens..
43103            // this.setFromData({});
43104             var str = this.stores[opts.list+1];
43105             str.data.clear(); // removeall wihtout the fire events..
43106             return;
43107         }
43108         
43109         var rec = view.store.getAt(ix[0]);
43110          
43111         this.setFromData(rec.data);
43112         this.fireEvent('select', this, rec, ix[0]);
43113         
43114         var lw = Math.floor(
43115              (
43116                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43117              ) / this.maxColumns
43118         );
43119         this.loadingChildren = true;
43120         this.stores[opts.list+1].loadDataFromChildren( rec );
43121         this.loadingChildren = false;
43122         var dl = this.stores[opts.list+1]. getTotalCount();
43123         
43124         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43125         
43126         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43127         for (var i = opts.list+2; i < this.views.length;i++) {
43128             this.views[i].getEl().setStyle({ display : 'none' });
43129         }
43130         
43131         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43132         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43133         
43134         if (this.isLoading) {
43135            // this.selectActive(opts.list);
43136         }
43137          
43138     },
43139     
43140     
43141     
43142     
43143     onDoubleClick : function()
43144     {
43145         this.collapse(); //??
43146     },
43147     
43148      
43149     
43150     
43151     
43152     // private
43153     recordToStack : function(store, prop, value, stack)
43154     {
43155         var cstore = new Roo.data.SimpleStore({
43156             //fields : this.store.reader.meta.fields, // we need array reader.. for
43157             reader : this.store.reader,
43158             data : [ ]
43159         });
43160         var _this = this;
43161         var record  = false;
43162         var srec = false;
43163         if(store.getCount() < 1){
43164             return false;
43165         }
43166         store.each(function(r){
43167             if(r.data[prop] == value){
43168                 record = r;
43169             srec = r;
43170                 return false;
43171             }
43172             if (r.data.cn && r.data.cn.length) {
43173                 cstore.loadDataFromChildren( r);
43174                 var cret = _this.recordToStack(cstore, prop, value, stack);
43175                 if (cret !== false) {
43176                     record = cret;
43177                     srec = r;
43178                     return false;
43179                 }
43180             }
43181              
43182             return true;
43183         });
43184         if (record == false) {
43185             return false
43186         }
43187         stack.unshift(srec);
43188         return record;
43189     },
43190     
43191     /*
43192      * find the stack of stores that match our value.
43193      *
43194      * 
43195      */
43196     
43197     selectActive : function ()
43198     {
43199         // if store is not loaded, then we will need to wait for that to happen first.
43200         var stack = [];
43201         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43202         for (var i = 0; i < stack.length; i++ ) {
43203             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43204         }
43205         
43206     }
43207         
43208          
43209     
43210     
43211     
43212     
43213 });/*
43214  * Based on:
43215  * Ext JS Library 1.1.1
43216  * Copyright(c) 2006-2007, Ext JS, LLC.
43217  *
43218  * Originally Released Under LGPL - original licence link has changed is not relivant.
43219  *
43220  * Fork - LGPL
43221  * <script type="text/javascript">
43222  */
43223 /**
43224  * @class Roo.form.Checkbox
43225  * @extends Roo.form.Field
43226  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43227  * @constructor
43228  * Creates a new Checkbox
43229  * @param {Object} config Configuration options
43230  */
43231 Roo.form.Checkbox = function(config){
43232     Roo.form.Checkbox.superclass.constructor.call(this, config);
43233     this.addEvents({
43234         /**
43235          * @event check
43236          * Fires when the checkbox is checked or unchecked.
43237              * @param {Roo.form.Checkbox} this This checkbox
43238              * @param {Boolean} checked The new checked value
43239              */
43240         check : true
43241     });
43242 };
43243
43244 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43245     /**
43246      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43247      */
43248     focusClass : undefined,
43249     /**
43250      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43251      */
43252     fieldClass: "x-form-field",
43253     /**
43254      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43255      */
43256     checked: false,
43257     /**
43258      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43259      * {tag: "input", type: "checkbox", autocomplete: "off"})
43260      */
43261     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43262     /**
43263      * @cfg {String} boxLabel The text that appears beside the checkbox
43264      */
43265     boxLabel : "",
43266     /**
43267      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43268      */  
43269     inputValue : '1',
43270     /**
43271      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43272      */
43273      valueOff: '0', // value when not checked..
43274
43275     actionMode : 'viewEl', 
43276     //
43277     // private
43278     itemCls : 'x-menu-check-item x-form-item',
43279     groupClass : 'x-menu-group-item',
43280     inputType : 'hidden',
43281     
43282     
43283     inSetChecked: false, // check that we are not calling self...
43284     
43285     inputElement: false, // real input element?
43286     basedOn: false, // ????
43287     
43288     isFormField: true, // not sure where this is needed!!!!
43289
43290     onResize : function(){
43291         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43292         if(!this.boxLabel){
43293             this.el.alignTo(this.wrap, 'c-c');
43294         }
43295     },
43296
43297     initEvents : function(){
43298         Roo.form.Checkbox.superclass.initEvents.call(this);
43299         this.el.on("click", this.onClick,  this);
43300         this.el.on("change", this.onClick,  this);
43301     },
43302
43303
43304     getResizeEl : function(){
43305         return this.wrap;
43306     },
43307
43308     getPositionEl : function(){
43309         return this.wrap;
43310     },
43311
43312     // private
43313     onRender : function(ct, position){
43314         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43315         /*
43316         if(this.inputValue !== undefined){
43317             this.el.dom.value = this.inputValue;
43318         }
43319         */
43320         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43321         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43322         var viewEl = this.wrap.createChild({ 
43323             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43324         this.viewEl = viewEl;   
43325         this.wrap.on('click', this.onClick,  this); 
43326         
43327         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43328         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43329         
43330         
43331         
43332         if(this.boxLabel){
43333             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43334         //    viewEl.on('click', this.onClick,  this); 
43335         }
43336         //if(this.checked){
43337             this.setChecked(this.checked);
43338         //}else{
43339             //this.checked = this.el.dom;
43340         //}
43341
43342     },
43343
43344     // private
43345     initValue : Roo.emptyFn,
43346
43347     /**
43348      * Returns the checked state of the checkbox.
43349      * @return {Boolean} True if checked, else false
43350      */
43351     getValue : function(){
43352         if(this.el){
43353             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43354         }
43355         return this.valueOff;
43356         
43357     },
43358
43359         // private
43360     onClick : function(){ 
43361         if (this.disabled) {
43362             return;
43363         }
43364         this.setChecked(!this.checked);
43365
43366         //if(this.el.dom.checked != this.checked){
43367         //    this.setValue(this.el.dom.checked);
43368        // }
43369     },
43370
43371     /**
43372      * Sets the checked state of the checkbox.
43373      * On is always based on a string comparison between inputValue and the param.
43374      * @param {Boolean/String} value - the value to set 
43375      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43376      */
43377     setValue : function(v,suppressEvent){
43378         
43379         
43380         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43381         //if(this.el && this.el.dom){
43382         //    this.el.dom.checked = this.checked;
43383         //    this.el.dom.defaultChecked = this.checked;
43384         //}
43385         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43386         //this.fireEvent("check", this, this.checked);
43387     },
43388     // private..
43389     setChecked : function(state,suppressEvent)
43390     {
43391         if (this.inSetChecked) {
43392             this.checked = state;
43393             return;
43394         }
43395         
43396     
43397         if(this.wrap){
43398             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43399         }
43400         this.checked = state;
43401         if(suppressEvent !== true){
43402             this.fireEvent('check', this, state);
43403         }
43404         this.inSetChecked = true;
43405         this.el.dom.value = state ? this.inputValue : this.valueOff;
43406         this.inSetChecked = false;
43407         
43408     },
43409     // handle setting of hidden value by some other method!!?!?
43410     setFromHidden: function()
43411     {
43412         if(!this.el){
43413             return;
43414         }
43415         //console.log("SET FROM HIDDEN");
43416         //alert('setFrom hidden');
43417         this.setValue(this.el.dom.value);
43418     },
43419     
43420     onDestroy : function()
43421     {
43422         if(this.viewEl){
43423             Roo.get(this.viewEl).remove();
43424         }
43425          
43426         Roo.form.Checkbox.superclass.onDestroy.call(this);
43427     },
43428     
43429     setBoxLabel : function(str)
43430     {
43431         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43432     }
43433
43434 });/*
43435  * Based on:
43436  * Ext JS Library 1.1.1
43437  * Copyright(c) 2006-2007, Ext JS, LLC.
43438  *
43439  * Originally Released Under LGPL - original licence link has changed is not relivant.
43440  *
43441  * Fork - LGPL
43442  * <script type="text/javascript">
43443  */
43444  
43445 /**
43446  * @class Roo.form.Radio
43447  * @extends Roo.form.Checkbox
43448  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43449  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43450  * @constructor
43451  * Creates a new Radio
43452  * @param {Object} config Configuration options
43453  */
43454 Roo.form.Radio = function(){
43455     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43456 };
43457 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43458     inputType: 'radio',
43459
43460     /**
43461      * If this radio is part of a group, it will return the selected value
43462      * @return {String}
43463      */
43464     getGroupValue : function(){
43465         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43466     },
43467     
43468     
43469     onRender : function(ct, position){
43470         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43471         
43472         if(this.inputValue !== undefined){
43473             this.el.dom.value = this.inputValue;
43474         }
43475          
43476         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43477         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43478         //var viewEl = this.wrap.createChild({ 
43479         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43480         //this.viewEl = viewEl;   
43481         //this.wrap.on('click', this.onClick,  this); 
43482         
43483         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43484         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43485         
43486         
43487         
43488         if(this.boxLabel){
43489             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43490         //    viewEl.on('click', this.onClick,  this); 
43491         }
43492          if(this.checked){
43493             this.el.dom.checked =   'checked' ;
43494         }
43495          
43496     } 
43497     
43498     
43499 });//<script type="text/javascript">
43500
43501 /*
43502  * Based  Ext JS Library 1.1.1
43503  * Copyright(c) 2006-2007, Ext JS, LLC.
43504  * LGPL
43505  *
43506  */
43507  
43508 /**
43509  * @class Roo.HtmlEditorCore
43510  * @extends Roo.Component
43511  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43512  *
43513  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43514  */
43515
43516 Roo.HtmlEditorCore = function(config){
43517     
43518     
43519     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43520     
43521     
43522     this.addEvents({
43523         /**
43524          * @event initialize
43525          * Fires when the editor is fully initialized (including the iframe)
43526          * @param {Roo.HtmlEditorCore} this
43527          */
43528         initialize: true,
43529         /**
43530          * @event activate
43531          * Fires when the editor is first receives the focus. Any insertion must wait
43532          * until after this event.
43533          * @param {Roo.HtmlEditorCore} this
43534          */
43535         activate: true,
43536          /**
43537          * @event beforesync
43538          * Fires before the textarea is updated with content from the editor iframe. Return false
43539          * to cancel the sync.
43540          * @param {Roo.HtmlEditorCore} this
43541          * @param {String} html
43542          */
43543         beforesync: true,
43544          /**
43545          * @event beforepush
43546          * Fires before the iframe editor is updated with content from the textarea. Return false
43547          * to cancel the push.
43548          * @param {Roo.HtmlEditorCore} this
43549          * @param {String} html
43550          */
43551         beforepush: true,
43552          /**
43553          * @event sync
43554          * Fires when the textarea is updated with content from the editor iframe.
43555          * @param {Roo.HtmlEditorCore} this
43556          * @param {String} html
43557          */
43558         sync: true,
43559          /**
43560          * @event push
43561          * Fires when the iframe editor is updated with content from the textarea.
43562          * @param {Roo.HtmlEditorCore} this
43563          * @param {String} html
43564          */
43565         push: true,
43566         
43567         /**
43568          * @event editorevent
43569          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43570          * @param {Roo.HtmlEditorCore} this
43571          */
43572         editorevent: true
43573         
43574     });
43575     
43576     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43577     
43578     // defaults : white / black...
43579     this.applyBlacklists();
43580     
43581     
43582     
43583 };
43584
43585
43586 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43587
43588
43589      /**
43590      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43591      */
43592     
43593     owner : false,
43594     
43595      /**
43596      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43597      *                        Roo.resizable.
43598      */
43599     resizable : false,
43600      /**
43601      * @cfg {Number} height (in pixels)
43602      */   
43603     height: 300,
43604    /**
43605      * @cfg {Number} width (in pixels)
43606      */   
43607     width: 500,
43608     
43609     /**
43610      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43611      * 
43612      */
43613     stylesheets: false,
43614     
43615     // id of frame..
43616     frameId: false,
43617     
43618     // private properties
43619     validationEvent : false,
43620     deferHeight: true,
43621     initialized : false,
43622     activated : false,
43623     sourceEditMode : false,
43624     onFocus : Roo.emptyFn,
43625     iframePad:3,
43626     hideMode:'offsets',
43627     
43628     clearUp: true,
43629     
43630     // blacklist + whitelisted elements..
43631     black: false,
43632     white: false,
43633      
43634     bodyCls : '',
43635
43636     /**
43637      * Protected method that will not generally be called directly. It
43638      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43639      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43640      */
43641     getDocMarkup : function(){
43642         // body styles..
43643         var st = '';
43644         
43645         // inherit styels from page...?? 
43646         if (this.stylesheets === false) {
43647             
43648             Roo.get(document.head).select('style').each(function(node) {
43649                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43650             });
43651             
43652             Roo.get(document.head).select('link').each(function(node) { 
43653                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43654             });
43655             
43656         } else if (!this.stylesheets.length) {
43657                 // simple..
43658                 st = '<style type="text/css">' +
43659                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43660                    '</style>';
43661         } else {
43662             for (var i in this.stylesheets) { 
43663                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43664             }
43665             
43666         }
43667         
43668         st +=  '<style type="text/css">' +
43669             'IMG { cursor: pointer } ' +
43670         '</style>';
43671
43672         var cls = 'roo-htmleditor-body';
43673         
43674         if(this.bodyCls.length){
43675             cls += ' ' + this.bodyCls;
43676         }
43677         
43678         return '<html><head>' + st  +
43679             //<style type="text/css">' +
43680             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43681             //'</style>' +
43682             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43683     },
43684
43685     // private
43686     onRender : function(ct, position)
43687     {
43688         var _t = this;
43689         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43690         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43691         
43692         
43693         this.el.dom.style.border = '0 none';
43694         this.el.dom.setAttribute('tabIndex', -1);
43695         this.el.addClass('x-hidden hide');
43696         
43697         
43698         
43699         if(Roo.isIE){ // fix IE 1px bogus margin
43700             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43701         }
43702        
43703         
43704         this.frameId = Roo.id();
43705         
43706          
43707         
43708         var iframe = this.owner.wrap.createChild({
43709             tag: 'iframe',
43710             cls: 'form-control', // bootstrap..
43711             id: this.frameId,
43712             name: this.frameId,
43713             frameBorder : 'no',
43714             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43715         }, this.el
43716         );
43717         
43718         
43719         this.iframe = iframe.dom;
43720
43721          this.assignDocWin();
43722         
43723         this.doc.designMode = 'on';
43724        
43725         this.doc.open();
43726         this.doc.write(this.getDocMarkup());
43727         this.doc.close();
43728
43729         
43730         var task = { // must defer to wait for browser to be ready
43731             run : function(){
43732                 //console.log("run task?" + this.doc.readyState);
43733                 this.assignDocWin();
43734                 if(this.doc.body || this.doc.readyState == 'complete'){
43735                     try {
43736                         this.doc.designMode="on";
43737                     } catch (e) {
43738                         return;
43739                     }
43740                     Roo.TaskMgr.stop(task);
43741                     this.initEditor.defer(10, this);
43742                 }
43743             },
43744             interval : 10,
43745             duration: 10000,
43746             scope: this
43747         };
43748         Roo.TaskMgr.start(task);
43749
43750     },
43751
43752     // private
43753     onResize : function(w, h)
43754     {
43755          Roo.log('resize: ' +w + ',' + h );
43756         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43757         if(!this.iframe){
43758             return;
43759         }
43760         if(typeof w == 'number'){
43761             
43762             this.iframe.style.width = w + 'px';
43763         }
43764         if(typeof h == 'number'){
43765             
43766             this.iframe.style.height = h + 'px';
43767             if(this.doc){
43768                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43769             }
43770         }
43771         
43772     },
43773
43774     /**
43775      * Toggles the editor between standard and source edit mode.
43776      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43777      */
43778     toggleSourceEdit : function(sourceEditMode){
43779         
43780         this.sourceEditMode = sourceEditMode === true;
43781         
43782         if(this.sourceEditMode){
43783  
43784             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43785             
43786         }else{
43787             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43788             //this.iframe.className = '';
43789             this.deferFocus();
43790         }
43791         //this.setSize(this.owner.wrap.getSize());
43792         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43793     },
43794
43795     
43796   
43797
43798     /**
43799      * Protected method that will not generally be called directly. If you need/want
43800      * custom HTML cleanup, this is the method you should override.
43801      * @param {String} html The HTML to be cleaned
43802      * return {String} The cleaned HTML
43803      */
43804     cleanHtml : function(html){
43805         html = String(html);
43806         if(html.length > 5){
43807             if(Roo.isSafari){ // strip safari nonsense
43808                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43809             }
43810         }
43811         if(html == '&nbsp;'){
43812             html = '';
43813         }
43814         return html;
43815     },
43816
43817     /**
43818      * HTML Editor -> Textarea
43819      * Protected method that will not generally be called directly. Syncs the contents
43820      * of the editor iframe with the textarea.
43821      */
43822     syncValue : function(){
43823         if(this.initialized){
43824             var bd = (this.doc.body || this.doc.documentElement);
43825             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43826             var html = bd.innerHTML;
43827             if(Roo.isSafari){
43828                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43829                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43830                 if(m && m[1]){
43831                     html = '<div style="'+m[0]+'">' + html + '</div>';
43832                 }
43833             }
43834             html = this.cleanHtml(html);
43835             // fix up the special chars.. normaly like back quotes in word...
43836             // however we do not want to do this with chinese..
43837             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43838                 
43839                 var cc = match.charCodeAt();
43840
43841                 // Get the character value, handling surrogate pairs
43842                 if (match.length == 2) {
43843                     // It's a surrogate pair, calculate the Unicode code point
43844                     var high = match.charCodeAt(0) - 0xD800;
43845                     var low  = match.charCodeAt(1) - 0xDC00;
43846                     cc = (high * 0x400) + low + 0x10000;
43847                 }  else if (
43848                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43849                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43850                     (cc >= 0xf900 && cc < 0xfb00 )
43851                 ) {
43852                         return match;
43853                 }  
43854          
43855                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43856                 return "&#" + cc + ";";
43857                 
43858                 
43859             });
43860             
43861             
43862              
43863             if(this.owner.fireEvent('beforesync', this, html) !== false){
43864                 this.el.dom.value = html;
43865                 this.owner.fireEvent('sync', this, html);
43866             }
43867         }
43868     },
43869
43870     /**
43871      * Protected method that will not generally be called directly. Pushes the value of the textarea
43872      * into the iframe editor.
43873      */
43874     pushValue : function(){
43875         if(this.initialized){
43876             var v = this.el.dom.value.trim();
43877             
43878 //            if(v.length < 1){
43879 //                v = '&#160;';
43880 //            }
43881             
43882             if(this.owner.fireEvent('beforepush', this, v) !== false){
43883                 var d = (this.doc.body || this.doc.documentElement);
43884                 d.innerHTML = v;
43885                 this.cleanUpPaste();
43886                 this.el.dom.value = d.innerHTML;
43887                 this.owner.fireEvent('push', this, v);
43888             }
43889         }
43890     },
43891
43892     // private
43893     deferFocus : function(){
43894         this.focus.defer(10, this);
43895     },
43896
43897     // doc'ed in Field
43898     focus : function(){
43899         if(this.win && !this.sourceEditMode){
43900             this.win.focus();
43901         }else{
43902             this.el.focus();
43903         }
43904     },
43905     
43906     assignDocWin: function()
43907     {
43908         var iframe = this.iframe;
43909         
43910          if(Roo.isIE){
43911             this.doc = iframe.contentWindow.document;
43912             this.win = iframe.contentWindow;
43913         } else {
43914 //            if (!Roo.get(this.frameId)) {
43915 //                return;
43916 //            }
43917 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43918 //            this.win = Roo.get(this.frameId).dom.contentWindow;
43919             
43920             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
43921                 return;
43922             }
43923             
43924             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43925             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
43926         }
43927     },
43928     
43929     // private
43930     initEditor : function(){
43931         //console.log("INIT EDITOR");
43932         this.assignDocWin();
43933         
43934         
43935         
43936         this.doc.designMode="on";
43937         this.doc.open();
43938         this.doc.write(this.getDocMarkup());
43939         this.doc.close();
43940         
43941         var dbody = (this.doc.body || this.doc.documentElement);
43942         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
43943         // this copies styles from the containing element into thsi one..
43944         // not sure why we need all of this..
43945         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
43946         
43947         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
43948         //ss['background-attachment'] = 'fixed'; // w3c
43949         dbody.bgProperties = 'fixed'; // ie
43950         //Roo.DomHelper.applyStyles(dbody, ss);
43951         Roo.EventManager.on(this.doc, {
43952             //'mousedown': this.onEditorEvent,
43953             'mouseup': this.onEditorEvent,
43954             'dblclick': this.onEditorEvent,
43955             'click': this.onEditorEvent,
43956             'keyup': this.onEditorEvent,
43957             buffer:100,
43958             scope: this
43959         });
43960         if(Roo.isGecko){
43961             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
43962         }
43963         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
43964             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
43965         }
43966         this.initialized = true;
43967
43968         this.owner.fireEvent('initialize', this);
43969         this.pushValue();
43970     },
43971
43972     // private
43973     onDestroy : function(){
43974         
43975         
43976         
43977         if(this.rendered){
43978             
43979             //for (var i =0; i < this.toolbars.length;i++) {
43980             //    // fixme - ask toolbars for heights?
43981             //    this.toolbars[i].onDestroy();
43982            // }
43983             
43984             //this.wrap.dom.innerHTML = '';
43985             //this.wrap.remove();
43986         }
43987     },
43988
43989     // private
43990     onFirstFocus : function(){
43991         
43992         this.assignDocWin();
43993         
43994         
43995         this.activated = true;
43996          
43997     
43998         if(Roo.isGecko){ // prevent silly gecko errors
43999             this.win.focus();
44000             var s = this.win.getSelection();
44001             if(!s.focusNode || s.focusNode.nodeType != 3){
44002                 var r = s.getRangeAt(0);
44003                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44004                 r.collapse(true);
44005                 this.deferFocus();
44006             }
44007             try{
44008                 this.execCmd('useCSS', true);
44009                 this.execCmd('styleWithCSS', false);
44010             }catch(e){}
44011         }
44012         this.owner.fireEvent('activate', this);
44013     },
44014
44015     // private
44016     adjustFont: function(btn){
44017         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44018         //if(Roo.isSafari){ // safari
44019         //    adjust *= 2;
44020        // }
44021         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44022         if(Roo.isSafari){ // safari
44023             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44024             v =  (v < 10) ? 10 : v;
44025             v =  (v > 48) ? 48 : v;
44026             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44027             
44028         }
44029         
44030         
44031         v = Math.max(1, v+adjust);
44032         
44033         this.execCmd('FontSize', v  );
44034     },
44035
44036     onEditorEvent : function(e)
44037     {
44038         this.owner.fireEvent('editorevent', this, e);
44039       //  this.updateToolbar();
44040         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44041     },
44042
44043     insertTag : function(tg)
44044     {
44045         // could be a bit smarter... -> wrap the current selected tRoo..
44046         if (tg.toLowerCase() == 'span' ||
44047             tg.toLowerCase() == 'code' ||
44048             tg.toLowerCase() == 'sup' ||
44049             tg.toLowerCase() == 'sub' 
44050             ) {
44051             
44052             range = this.createRange(this.getSelection());
44053             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44054             wrappingNode.appendChild(range.extractContents());
44055             range.insertNode(wrappingNode);
44056
44057             return;
44058             
44059             
44060             
44061         }
44062         this.execCmd("formatblock",   tg);
44063         
44064     },
44065     
44066     insertText : function(txt)
44067     {
44068         
44069         
44070         var range = this.createRange();
44071         range.deleteContents();
44072                //alert(Sender.getAttribute('label'));
44073                
44074         range.insertNode(this.doc.createTextNode(txt));
44075     } ,
44076     
44077      
44078
44079     /**
44080      * Executes a Midas editor command on the editor document and performs necessary focus and
44081      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44082      * @param {String} cmd The Midas command
44083      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44084      */
44085     relayCmd : function(cmd, value){
44086         this.win.focus();
44087         this.execCmd(cmd, value);
44088         this.owner.fireEvent('editorevent', this);
44089         //this.updateToolbar();
44090         this.owner.deferFocus();
44091     },
44092
44093     /**
44094      * Executes a Midas editor command directly on the editor document.
44095      * For visual commands, you should use {@link #relayCmd} instead.
44096      * <b>This should only be called after the editor is initialized.</b>
44097      * @param {String} cmd The Midas command
44098      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44099      */
44100     execCmd : function(cmd, value){
44101         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44102         this.syncValue();
44103     },
44104  
44105  
44106    
44107     /**
44108      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44109      * to insert tRoo.
44110      * @param {String} text | dom node.. 
44111      */
44112     insertAtCursor : function(text)
44113     {
44114         
44115         if(!this.activated){
44116             return;
44117         }
44118         /*
44119         if(Roo.isIE){
44120             this.win.focus();
44121             var r = this.doc.selection.createRange();
44122             if(r){
44123                 r.collapse(true);
44124                 r.pasteHTML(text);
44125                 this.syncValue();
44126                 this.deferFocus();
44127             
44128             }
44129             return;
44130         }
44131         */
44132         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44133             this.win.focus();
44134             
44135             
44136             // from jquery ui (MIT licenced)
44137             var range, node;
44138             var win = this.win;
44139             
44140             if (win.getSelection && win.getSelection().getRangeAt) {
44141                 range = win.getSelection().getRangeAt(0);
44142                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44143                 range.insertNode(node);
44144             } else if (win.document.selection && win.document.selection.createRange) {
44145                 // no firefox support
44146                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44147                 win.document.selection.createRange().pasteHTML(txt);
44148             } else {
44149                 // no firefox support
44150                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44151                 this.execCmd('InsertHTML', txt);
44152             } 
44153             
44154             this.syncValue();
44155             
44156             this.deferFocus();
44157         }
44158     },
44159  // private
44160     mozKeyPress : function(e){
44161         if(e.ctrlKey){
44162             var c = e.getCharCode(), cmd;
44163           
44164             if(c > 0){
44165                 c = String.fromCharCode(c).toLowerCase();
44166                 switch(c){
44167                     case 'b':
44168                         cmd = 'bold';
44169                         break;
44170                     case 'i':
44171                         cmd = 'italic';
44172                         break;
44173                     
44174                     case 'u':
44175                         cmd = 'underline';
44176                         break;
44177                     
44178                     case 'v':
44179                         this.cleanUpPaste.defer(100, this);
44180                         return;
44181                         
44182                 }
44183                 if(cmd){
44184                     this.win.focus();
44185                     this.execCmd(cmd);
44186                     this.deferFocus();
44187                     e.preventDefault();
44188                 }
44189                 
44190             }
44191         }
44192     },
44193
44194     // private
44195     fixKeys : function(){ // load time branching for fastest keydown performance
44196         if(Roo.isIE){
44197             return function(e){
44198                 var k = e.getKey(), r;
44199                 if(k == e.TAB){
44200                     e.stopEvent();
44201                     r = this.doc.selection.createRange();
44202                     if(r){
44203                         r.collapse(true);
44204                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44205                         this.deferFocus();
44206                     }
44207                     return;
44208                 }
44209                 
44210                 if(k == e.ENTER){
44211                     r = this.doc.selection.createRange();
44212                     if(r){
44213                         var target = r.parentElement();
44214                         if(!target || target.tagName.toLowerCase() != 'li'){
44215                             e.stopEvent();
44216                             r.pasteHTML('<br />');
44217                             r.collapse(false);
44218                             r.select();
44219                         }
44220                     }
44221                 }
44222                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44223                     this.cleanUpPaste.defer(100, this);
44224                     return;
44225                 }
44226                 
44227                 
44228             };
44229         }else if(Roo.isOpera){
44230             return function(e){
44231                 var k = e.getKey();
44232                 if(k == e.TAB){
44233                     e.stopEvent();
44234                     this.win.focus();
44235                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44236                     this.deferFocus();
44237                 }
44238                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44239                     this.cleanUpPaste.defer(100, this);
44240                     return;
44241                 }
44242                 
44243             };
44244         }else if(Roo.isSafari){
44245             return function(e){
44246                 var k = e.getKey();
44247                 
44248                 if(k == e.TAB){
44249                     e.stopEvent();
44250                     this.execCmd('InsertText','\t');
44251                     this.deferFocus();
44252                     return;
44253                 }
44254                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44255                     this.cleanUpPaste.defer(100, this);
44256                     return;
44257                 }
44258                 
44259              };
44260         }
44261     }(),
44262     
44263     getAllAncestors: function()
44264     {
44265         var p = this.getSelectedNode();
44266         var a = [];
44267         if (!p) {
44268             a.push(p); // push blank onto stack..
44269             p = this.getParentElement();
44270         }
44271         
44272         
44273         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44274             a.push(p);
44275             p = p.parentNode;
44276         }
44277         a.push(this.doc.body);
44278         return a;
44279     },
44280     lastSel : false,
44281     lastSelNode : false,
44282     
44283     
44284     getSelection : function() 
44285     {
44286         this.assignDocWin();
44287         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44288     },
44289     
44290     getSelectedNode: function() 
44291     {
44292         // this may only work on Gecko!!!
44293         
44294         // should we cache this!!!!
44295         
44296         
44297         
44298          
44299         var range = this.createRange(this.getSelection()).cloneRange();
44300         
44301         if (Roo.isIE) {
44302             var parent = range.parentElement();
44303             while (true) {
44304                 var testRange = range.duplicate();
44305                 testRange.moveToElementText(parent);
44306                 if (testRange.inRange(range)) {
44307                     break;
44308                 }
44309                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44310                     break;
44311                 }
44312                 parent = parent.parentElement;
44313             }
44314             return parent;
44315         }
44316         
44317         // is ancestor a text element.
44318         var ac =  range.commonAncestorContainer;
44319         if (ac.nodeType == 3) {
44320             ac = ac.parentNode;
44321         }
44322         
44323         var ar = ac.childNodes;
44324          
44325         var nodes = [];
44326         var other_nodes = [];
44327         var has_other_nodes = false;
44328         for (var i=0;i<ar.length;i++) {
44329             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44330                 continue;
44331             }
44332             // fullly contained node.
44333             
44334             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44335                 nodes.push(ar[i]);
44336                 continue;
44337             }
44338             
44339             // probably selected..
44340             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44341                 other_nodes.push(ar[i]);
44342                 continue;
44343             }
44344             // outer..
44345             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44346                 continue;
44347             }
44348             
44349             
44350             has_other_nodes = true;
44351         }
44352         if (!nodes.length && other_nodes.length) {
44353             nodes= other_nodes;
44354         }
44355         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44356             return false;
44357         }
44358         
44359         return nodes[0];
44360     },
44361     createRange: function(sel)
44362     {
44363         // this has strange effects when using with 
44364         // top toolbar - not sure if it's a great idea.
44365         //this.editor.contentWindow.focus();
44366         if (typeof sel != "undefined") {
44367             try {
44368                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44369             } catch(e) {
44370                 return this.doc.createRange();
44371             }
44372         } else {
44373             return this.doc.createRange();
44374         }
44375     },
44376     getParentElement: function()
44377     {
44378         
44379         this.assignDocWin();
44380         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44381         
44382         var range = this.createRange(sel);
44383          
44384         try {
44385             var p = range.commonAncestorContainer;
44386             while (p.nodeType == 3) { // text node
44387                 p = p.parentNode;
44388             }
44389             return p;
44390         } catch (e) {
44391             return null;
44392         }
44393     
44394     },
44395     /***
44396      *
44397      * Range intersection.. the hard stuff...
44398      *  '-1' = before
44399      *  '0' = hits..
44400      *  '1' = after.
44401      *         [ -- selected range --- ]
44402      *   [fail]                        [fail]
44403      *
44404      *    basically..
44405      *      if end is before start or  hits it. fail.
44406      *      if start is after end or hits it fail.
44407      *
44408      *   if either hits (but other is outside. - then it's not 
44409      *   
44410      *    
44411      **/
44412     
44413     
44414     // @see http://www.thismuchiknow.co.uk/?p=64.
44415     rangeIntersectsNode : function(range, node)
44416     {
44417         var nodeRange = node.ownerDocument.createRange();
44418         try {
44419             nodeRange.selectNode(node);
44420         } catch (e) {
44421             nodeRange.selectNodeContents(node);
44422         }
44423     
44424         var rangeStartRange = range.cloneRange();
44425         rangeStartRange.collapse(true);
44426     
44427         var rangeEndRange = range.cloneRange();
44428         rangeEndRange.collapse(false);
44429     
44430         var nodeStartRange = nodeRange.cloneRange();
44431         nodeStartRange.collapse(true);
44432     
44433         var nodeEndRange = nodeRange.cloneRange();
44434         nodeEndRange.collapse(false);
44435     
44436         return rangeStartRange.compareBoundaryPoints(
44437                  Range.START_TO_START, nodeEndRange) == -1 &&
44438                rangeEndRange.compareBoundaryPoints(
44439                  Range.START_TO_START, nodeStartRange) == 1;
44440         
44441          
44442     },
44443     rangeCompareNode : function(range, node)
44444     {
44445         var nodeRange = node.ownerDocument.createRange();
44446         try {
44447             nodeRange.selectNode(node);
44448         } catch (e) {
44449             nodeRange.selectNodeContents(node);
44450         }
44451         
44452         
44453         range.collapse(true);
44454     
44455         nodeRange.collapse(true);
44456      
44457         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44458         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44459          
44460         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44461         
44462         var nodeIsBefore   =  ss == 1;
44463         var nodeIsAfter    = ee == -1;
44464         
44465         if (nodeIsBefore && nodeIsAfter) {
44466             return 0; // outer
44467         }
44468         if (!nodeIsBefore && nodeIsAfter) {
44469             return 1; //right trailed.
44470         }
44471         
44472         if (nodeIsBefore && !nodeIsAfter) {
44473             return 2;  // left trailed.
44474         }
44475         // fully contined.
44476         return 3;
44477     },
44478
44479     // private? - in a new class?
44480     cleanUpPaste :  function()
44481     {
44482         // cleans up the whole document..
44483         Roo.log('cleanuppaste');
44484         
44485         this.cleanUpChildren(this.doc.body);
44486         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44487         if (clean != this.doc.body.innerHTML) {
44488             this.doc.body.innerHTML = clean;
44489         }
44490         
44491     },
44492     
44493     cleanWordChars : function(input) {// change the chars to hex code
44494         var he = Roo.HtmlEditorCore;
44495         
44496         var output = input;
44497         Roo.each(he.swapCodes, function(sw) { 
44498             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44499             
44500             output = output.replace(swapper, sw[1]);
44501         });
44502         
44503         return output;
44504     },
44505     
44506     
44507     cleanUpChildren : function (n)
44508     {
44509         if (!n.childNodes.length) {
44510             return;
44511         }
44512         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44513            this.cleanUpChild(n.childNodes[i]);
44514         }
44515     },
44516     
44517     
44518         
44519     
44520     cleanUpChild : function (node)
44521     {
44522         var ed = this;
44523         //console.log(node);
44524         if (node.nodeName == "#text") {
44525             // clean up silly Windows -- stuff?
44526             return; 
44527         }
44528         if (node.nodeName == "#comment") {
44529             node.parentNode.removeChild(node);
44530             // clean up silly Windows -- stuff?
44531             return; 
44532         }
44533         var lcname = node.tagName.toLowerCase();
44534         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44535         // whitelist of tags..
44536         
44537         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44538             // remove node.
44539             node.parentNode.removeChild(node);
44540             return;
44541             
44542         }
44543         
44544         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44545         
44546         // spans with no attributes - just remove them..
44547         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44548             remove_keep_children = true;
44549         }
44550         
44551         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44552         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44553         
44554         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44555         //    remove_keep_children = true;
44556         //}
44557         
44558         if (remove_keep_children) {
44559             this.cleanUpChildren(node);
44560             // inserts everything just before this node...
44561             while (node.childNodes.length) {
44562                 var cn = node.childNodes[0];
44563                 node.removeChild(cn);
44564                 node.parentNode.insertBefore(cn, node);
44565             }
44566             node.parentNode.removeChild(node);
44567             return;
44568         }
44569         
44570         if (!node.attributes || !node.attributes.length) {
44571             
44572           
44573             
44574             
44575             this.cleanUpChildren(node);
44576             return;
44577         }
44578         
44579         function cleanAttr(n,v)
44580         {
44581             
44582             if (v.match(/^\./) || v.match(/^\//)) {
44583                 return;
44584             }
44585             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44586                 return;
44587             }
44588             if (v.match(/^#/)) {
44589                 return;
44590             }
44591             if (v.match(/^\{/)) { // allow template editing.
44592                 return;
44593             }
44594 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44595             node.removeAttribute(n);
44596             
44597         }
44598         
44599         var cwhite = this.cwhite;
44600         var cblack = this.cblack;
44601             
44602         function cleanStyle(n,v)
44603         {
44604             if (v.match(/expression/)) { //XSS?? should we even bother..
44605                 node.removeAttribute(n);
44606                 return;
44607             }
44608             
44609             var parts = v.split(/;/);
44610             var clean = [];
44611             
44612             Roo.each(parts, function(p) {
44613                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44614                 if (!p.length) {
44615                     return true;
44616                 }
44617                 var l = p.split(':').shift().replace(/\s+/g,'');
44618                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44619                 
44620                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44621 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44622                     //node.removeAttribute(n);
44623                     return true;
44624                 }
44625                 //Roo.log()
44626                 // only allow 'c whitelisted system attributes'
44627                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44628 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44629                     //node.removeAttribute(n);
44630                     return true;
44631                 }
44632                 
44633                 
44634                  
44635                 
44636                 clean.push(p);
44637                 return true;
44638             });
44639             if (clean.length) { 
44640                 node.setAttribute(n, clean.join(';'));
44641             } else {
44642                 node.removeAttribute(n);
44643             }
44644             
44645         }
44646         
44647         
44648         for (var i = node.attributes.length-1; i > -1 ; i--) {
44649             var a = node.attributes[i];
44650             //console.log(a);
44651             
44652             if (a.name.toLowerCase().substr(0,2)=='on')  {
44653                 node.removeAttribute(a.name);
44654                 continue;
44655             }
44656             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44657                 node.removeAttribute(a.name);
44658                 continue;
44659             }
44660             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44661                 cleanAttr(a.name,a.value); // fixme..
44662                 continue;
44663             }
44664             if (a.name == 'style') {
44665                 cleanStyle(a.name,a.value);
44666                 continue;
44667             }
44668             /// clean up MS crap..
44669             // tecnically this should be a list of valid class'es..
44670             
44671             
44672             if (a.name == 'class') {
44673                 if (a.value.match(/^Mso/)) {
44674                     node.removeAttribute('class');
44675                 }
44676                 
44677                 if (a.value.match(/^body$/)) {
44678                     node.removeAttribute('class');
44679                 }
44680                 continue;
44681             }
44682             
44683             // style cleanup!?
44684             // class cleanup?
44685             
44686         }
44687         
44688         
44689         this.cleanUpChildren(node);
44690         
44691         
44692     },
44693     
44694     /**
44695      * Clean up MS wordisms...
44696      */
44697     cleanWord : function(node)
44698     {
44699         if (!node) {
44700             this.cleanWord(this.doc.body);
44701             return;
44702         }
44703         
44704         if(
44705                 node.nodeName == 'SPAN' &&
44706                 !node.hasAttributes() &&
44707                 node.childNodes.length == 1 &&
44708                 node.firstChild.nodeName == "#text"  
44709         ) {
44710             var textNode = node.firstChild;
44711             node.removeChild(textNode);
44712             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44713                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44714             }
44715             node.parentNode.insertBefore(textNode, node);
44716             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44717                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44718             }
44719             node.parentNode.removeChild(node);
44720         }
44721         
44722         if (node.nodeName == "#text") {
44723             // clean up silly Windows -- stuff?
44724             return; 
44725         }
44726         if (node.nodeName == "#comment") {
44727             node.parentNode.removeChild(node);
44728             // clean up silly Windows -- stuff?
44729             return; 
44730         }
44731         
44732         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44733             node.parentNode.removeChild(node);
44734             return;
44735         }
44736         //Roo.log(node.tagName);
44737         // remove - but keep children..
44738         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44739             //Roo.log('-- removed');
44740             while (node.childNodes.length) {
44741                 var cn = node.childNodes[0];
44742                 node.removeChild(cn);
44743                 node.parentNode.insertBefore(cn, node);
44744                 // move node to parent - and clean it..
44745                 this.cleanWord(cn);
44746             }
44747             node.parentNode.removeChild(node);
44748             /// no need to iterate chidlren = it's got none..
44749             //this.iterateChildren(node, this.cleanWord);
44750             return;
44751         }
44752         // clean styles
44753         if (node.className.length) {
44754             
44755             var cn = node.className.split(/\W+/);
44756             var cna = [];
44757             Roo.each(cn, function(cls) {
44758                 if (cls.match(/Mso[a-zA-Z]+/)) {
44759                     return;
44760                 }
44761                 cna.push(cls);
44762             });
44763             node.className = cna.length ? cna.join(' ') : '';
44764             if (!cna.length) {
44765                 node.removeAttribute("class");
44766             }
44767         }
44768         
44769         if (node.hasAttribute("lang")) {
44770             node.removeAttribute("lang");
44771         }
44772         
44773         if (node.hasAttribute("style")) {
44774             
44775             var styles = node.getAttribute("style").split(";");
44776             var nstyle = [];
44777             Roo.each(styles, function(s) {
44778                 if (!s.match(/:/)) {
44779                     return;
44780                 }
44781                 var kv = s.split(":");
44782                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44783                     return;
44784                 }
44785                 // what ever is left... we allow.
44786                 nstyle.push(s);
44787             });
44788             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44789             if (!nstyle.length) {
44790                 node.removeAttribute('style');
44791             }
44792         }
44793         this.iterateChildren(node, this.cleanWord);
44794         
44795         
44796         
44797     },
44798     /**
44799      * iterateChildren of a Node, calling fn each time, using this as the scole..
44800      * @param {DomNode} node node to iterate children of.
44801      * @param {Function} fn method of this class to call on each item.
44802      */
44803     iterateChildren : function(node, fn)
44804     {
44805         if (!node.childNodes.length) {
44806                 return;
44807         }
44808         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44809            fn.call(this, node.childNodes[i])
44810         }
44811     },
44812     
44813     
44814     /**
44815      * cleanTableWidths.
44816      *
44817      * Quite often pasting from word etc.. results in tables with column and widths.
44818      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44819      *
44820      */
44821     cleanTableWidths : function(node)
44822     {
44823          
44824          
44825         if (!node) {
44826             this.cleanTableWidths(this.doc.body);
44827             return;
44828         }
44829         
44830         // ignore list...
44831         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44832             return; 
44833         }
44834         Roo.log(node.tagName);
44835         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44836             this.iterateChildren(node, this.cleanTableWidths);
44837             return;
44838         }
44839         if (node.hasAttribute('width')) {
44840             node.removeAttribute('width');
44841         }
44842         
44843          
44844         if (node.hasAttribute("style")) {
44845             // pretty basic...
44846             
44847             var styles = node.getAttribute("style").split(";");
44848             var nstyle = [];
44849             Roo.each(styles, function(s) {
44850                 if (!s.match(/:/)) {
44851                     return;
44852                 }
44853                 var kv = s.split(":");
44854                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44855                     return;
44856                 }
44857                 // what ever is left... we allow.
44858                 nstyle.push(s);
44859             });
44860             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44861             if (!nstyle.length) {
44862                 node.removeAttribute('style');
44863             }
44864         }
44865         
44866         this.iterateChildren(node, this.cleanTableWidths);
44867         
44868         
44869     },
44870     
44871     
44872     
44873     
44874     domToHTML : function(currentElement, depth, nopadtext) {
44875         
44876         depth = depth || 0;
44877         nopadtext = nopadtext || false;
44878     
44879         if (!currentElement) {
44880             return this.domToHTML(this.doc.body);
44881         }
44882         
44883         //Roo.log(currentElement);
44884         var j;
44885         var allText = false;
44886         var nodeName = currentElement.nodeName;
44887         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44888         
44889         if  (nodeName == '#text') {
44890             
44891             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44892         }
44893         
44894         
44895         var ret = '';
44896         if (nodeName != 'BODY') {
44897              
44898             var i = 0;
44899             // Prints the node tagName, such as <A>, <IMG>, etc
44900             if (tagName) {
44901                 var attr = [];
44902                 for(i = 0; i < currentElement.attributes.length;i++) {
44903                     // quoting?
44904                     var aname = currentElement.attributes.item(i).name;
44905                     if (!currentElement.attributes.item(i).value.length) {
44906                         continue;
44907                     }
44908                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44909                 }
44910                 
44911                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44912             } 
44913             else {
44914                 
44915                 // eack
44916             }
44917         } else {
44918             tagName = false;
44919         }
44920         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
44921             return ret;
44922         }
44923         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
44924             nopadtext = true;
44925         }
44926         
44927         
44928         // Traverse the tree
44929         i = 0;
44930         var currentElementChild = currentElement.childNodes.item(i);
44931         var allText = true;
44932         var innerHTML  = '';
44933         lastnode = '';
44934         while (currentElementChild) {
44935             // Formatting code (indent the tree so it looks nice on the screen)
44936             var nopad = nopadtext;
44937             if (lastnode == 'SPAN') {
44938                 nopad  = true;
44939             }
44940             // text
44941             if  (currentElementChild.nodeName == '#text') {
44942                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
44943                 toadd = nopadtext ? toadd : toadd.trim();
44944                 if (!nopad && toadd.length > 80) {
44945                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
44946                 }
44947                 innerHTML  += toadd;
44948                 
44949                 i++;
44950                 currentElementChild = currentElement.childNodes.item(i);
44951                 lastNode = '';
44952                 continue;
44953             }
44954             allText = false;
44955             
44956             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
44957                 
44958             // Recursively traverse the tree structure of the child node
44959             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
44960             lastnode = currentElementChild.nodeName;
44961             i++;
44962             currentElementChild=currentElement.childNodes.item(i);
44963         }
44964         
44965         ret += innerHTML;
44966         
44967         if (!allText) {
44968                 // The remaining code is mostly for formatting the tree
44969             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
44970         }
44971         
44972         
44973         if (tagName) {
44974             ret+= "</"+tagName+">";
44975         }
44976         return ret;
44977         
44978     },
44979         
44980     applyBlacklists : function()
44981     {
44982         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
44983         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
44984         
44985         this.white = [];
44986         this.black = [];
44987         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
44988             if (b.indexOf(tag) > -1) {
44989                 return;
44990             }
44991             this.white.push(tag);
44992             
44993         }, this);
44994         
44995         Roo.each(w, function(tag) {
44996             if (b.indexOf(tag) > -1) {
44997                 return;
44998             }
44999             if (this.white.indexOf(tag) > -1) {
45000                 return;
45001             }
45002             this.white.push(tag);
45003             
45004         }, this);
45005         
45006         
45007         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45008             if (w.indexOf(tag) > -1) {
45009                 return;
45010             }
45011             this.black.push(tag);
45012             
45013         }, this);
45014         
45015         Roo.each(b, function(tag) {
45016             if (w.indexOf(tag) > -1) {
45017                 return;
45018             }
45019             if (this.black.indexOf(tag) > -1) {
45020                 return;
45021             }
45022             this.black.push(tag);
45023             
45024         }, this);
45025         
45026         
45027         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45028         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45029         
45030         this.cwhite = [];
45031         this.cblack = [];
45032         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45033             if (b.indexOf(tag) > -1) {
45034                 return;
45035             }
45036             this.cwhite.push(tag);
45037             
45038         }, this);
45039         
45040         Roo.each(w, function(tag) {
45041             if (b.indexOf(tag) > -1) {
45042                 return;
45043             }
45044             if (this.cwhite.indexOf(tag) > -1) {
45045                 return;
45046             }
45047             this.cwhite.push(tag);
45048             
45049         }, this);
45050         
45051         
45052         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45053             if (w.indexOf(tag) > -1) {
45054                 return;
45055             }
45056             this.cblack.push(tag);
45057             
45058         }, this);
45059         
45060         Roo.each(b, function(tag) {
45061             if (w.indexOf(tag) > -1) {
45062                 return;
45063             }
45064             if (this.cblack.indexOf(tag) > -1) {
45065                 return;
45066             }
45067             this.cblack.push(tag);
45068             
45069         }, this);
45070     },
45071     
45072     setStylesheets : function(stylesheets)
45073     {
45074         if(typeof(stylesheets) == 'string'){
45075             Roo.get(this.iframe.contentDocument.head).createChild({
45076                 tag : 'link',
45077                 rel : 'stylesheet',
45078                 type : 'text/css',
45079                 href : stylesheets
45080             });
45081             
45082             return;
45083         }
45084         var _this = this;
45085      
45086         Roo.each(stylesheets, function(s) {
45087             if(!s.length){
45088                 return;
45089             }
45090             
45091             Roo.get(_this.iframe.contentDocument.head).createChild({
45092                 tag : 'link',
45093                 rel : 'stylesheet',
45094                 type : 'text/css',
45095                 href : s
45096             });
45097         });
45098
45099         
45100     },
45101     
45102     removeStylesheets : function()
45103     {
45104         var _this = this;
45105         
45106         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45107             s.remove();
45108         });
45109     },
45110     
45111     setStyle : function(style)
45112     {
45113         Roo.get(this.iframe.contentDocument.head).createChild({
45114             tag : 'style',
45115             type : 'text/css',
45116             html : style
45117         });
45118
45119         return;
45120     }
45121     
45122     // hide stuff that is not compatible
45123     /**
45124      * @event blur
45125      * @hide
45126      */
45127     /**
45128      * @event change
45129      * @hide
45130      */
45131     /**
45132      * @event focus
45133      * @hide
45134      */
45135     /**
45136      * @event specialkey
45137      * @hide
45138      */
45139     /**
45140      * @cfg {String} fieldClass @hide
45141      */
45142     /**
45143      * @cfg {String} focusClass @hide
45144      */
45145     /**
45146      * @cfg {String} autoCreate @hide
45147      */
45148     /**
45149      * @cfg {String} inputType @hide
45150      */
45151     /**
45152      * @cfg {String} invalidClass @hide
45153      */
45154     /**
45155      * @cfg {String} invalidText @hide
45156      */
45157     /**
45158      * @cfg {String} msgFx @hide
45159      */
45160     /**
45161      * @cfg {String} validateOnBlur @hide
45162      */
45163 });
45164
45165 Roo.HtmlEditorCore.white = [
45166         'area', 'br', 'img', 'input', 'hr', 'wbr',
45167         
45168        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45169        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45170        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45171        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45172        'table',   'ul',         'xmp', 
45173        
45174        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45175       'thead',   'tr', 
45176      
45177       'dir', 'menu', 'ol', 'ul', 'dl',
45178        
45179       'embed',  'object'
45180 ];
45181
45182
45183 Roo.HtmlEditorCore.black = [
45184     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45185         'applet', // 
45186         'base',   'basefont', 'bgsound', 'blink',  'body', 
45187         'frame',  'frameset', 'head',    'html',   'ilayer', 
45188         'iframe', 'layer',  'link',     'meta',    'object',   
45189         'script', 'style' ,'title',  'xml' // clean later..
45190 ];
45191 Roo.HtmlEditorCore.clean = [
45192     'script', 'style', 'title', 'xml'
45193 ];
45194 Roo.HtmlEditorCore.remove = [
45195     'font'
45196 ];
45197 // attributes..
45198
45199 Roo.HtmlEditorCore.ablack = [
45200     'on'
45201 ];
45202     
45203 Roo.HtmlEditorCore.aclean = [ 
45204     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45205 ];
45206
45207 // protocols..
45208 Roo.HtmlEditorCore.pwhite= [
45209         'http',  'https',  'mailto'
45210 ];
45211
45212 // white listed style attributes.
45213 Roo.HtmlEditorCore.cwhite= [
45214       //  'text-align', /// default is to allow most things..
45215       
45216          
45217 //        'font-size'//??
45218 ];
45219
45220 // black listed style attributes.
45221 Roo.HtmlEditorCore.cblack= [
45222       //  'font-size' -- this can be set by the project 
45223 ];
45224
45225
45226 Roo.HtmlEditorCore.swapCodes   =[ 
45227     [    8211, "&#8211;" ], 
45228     [    8212, "&#8212;" ], 
45229     [    8216,  "'" ],  
45230     [    8217, "'" ],  
45231     [    8220, '"' ],  
45232     [    8221, '"' ],  
45233     [    8226, "*" ],  
45234     [    8230, "..." ]
45235 ]; 
45236
45237     //<script type="text/javascript">
45238
45239 /*
45240  * Ext JS Library 1.1.1
45241  * Copyright(c) 2006-2007, Ext JS, LLC.
45242  * Licence LGPL
45243  * 
45244  */
45245  
45246  
45247 Roo.form.HtmlEditor = function(config){
45248     
45249     
45250     
45251     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45252     
45253     if (!this.toolbars) {
45254         this.toolbars = [];
45255     }
45256     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45257     
45258     
45259 };
45260
45261 /**
45262  * @class Roo.form.HtmlEditor
45263  * @extends Roo.form.Field
45264  * Provides a lightweight HTML Editor component.
45265  *
45266  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45267  * 
45268  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45269  * supported by this editor.</b><br/><br/>
45270  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45271  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45272  */
45273 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45274     /**
45275      * @cfg {Boolean} clearUp
45276      */
45277     clearUp : true,
45278       /**
45279      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45280      */
45281     toolbars : false,
45282    
45283      /**
45284      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45285      *                        Roo.resizable.
45286      */
45287     resizable : false,
45288      /**
45289      * @cfg {Number} height (in pixels)
45290      */   
45291     height: 300,
45292    /**
45293      * @cfg {Number} width (in pixels)
45294      */   
45295     width: 500,
45296     
45297     /**
45298      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45299      * 
45300      */
45301     stylesheets: false,
45302     
45303     
45304      /**
45305      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45306      * 
45307      */
45308     cblack: false,
45309     /**
45310      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45311      * 
45312      */
45313     cwhite: false,
45314     
45315      /**
45316      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45317      * 
45318      */
45319     black: false,
45320     /**
45321      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45322      * 
45323      */
45324     white: false,
45325     
45326     // id of frame..
45327     frameId: false,
45328     
45329     // private properties
45330     validationEvent : false,
45331     deferHeight: true,
45332     initialized : false,
45333     activated : false,
45334     
45335     onFocus : Roo.emptyFn,
45336     iframePad:3,
45337     hideMode:'offsets',
45338     
45339     actionMode : 'container', // defaults to hiding it...
45340     
45341     defaultAutoCreate : { // modified by initCompnoent..
45342         tag: "textarea",
45343         style:"width:500px;height:300px;",
45344         autocomplete: "new-password"
45345     },
45346
45347     // private
45348     initComponent : function(){
45349         this.addEvents({
45350             /**
45351              * @event initialize
45352              * Fires when the editor is fully initialized (including the iframe)
45353              * @param {HtmlEditor} this
45354              */
45355             initialize: true,
45356             /**
45357              * @event activate
45358              * Fires when the editor is first receives the focus. Any insertion must wait
45359              * until after this event.
45360              * @param {HtmlEditor} this
45361              */
45362             activate: true,
45363              /**
45364              * @event beforesync
45365              * Fires before the textarea is updated with content from the editor iframe. Return false
45366              * to cancel the sync.
45367              * @param {HtmlEditor} this
45368              * @param {String} html
45369              */
45370             beforesync: true,
45371              /**
45372              * @event beforepush
45373              * Fires before the iframe editor is updated with content from the textarea. Return false
45374              * to cancel the push.
45375              * @param {HtmlEditor} this
45376              * @param {String} html
45377              */
45378             beforepush: true,
45379              /**
45380              * @event sync
45381              * Fires when the textarea is updated with content from the editor iframe.
45382              * @param {HtmlEditor} this
45383              * @param {String} html
45384              */
45385             sync: true,
45386              /**
45387              * @event push
45388              * Fires when the iframe editor is updated with content from the textarea.
45389              * @param {HtmlEditor} this
45390              * @param {String} html
45391              */
45392             push: true,
45393              /**
45394              * @event editmodechange
45395              * Fires when the editor switches edit modes
45396              * @param {HtmlEditor} this
45397              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45398              */
45399             editmodechange: true,
45400             /**
45401              * @event editorevent
45402              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45403              * @param {HtmlEditor} this
45404              */
45405             editorevent: true,
45406             /**
45407              * @event firstfocus
45408              * Fires when on first focus - needed by toolbars..
45409              * @param {HtmlEditor} this
45410              */
45411             firstfocus: true,
45412             /**
45413              * @event autosave
45414              * Auto save the htmlEditor value as a file into Events
45415              * @param {HtmlEditor} this
45416              */
45417             autosave: true,
45418             /**
45419              * @event savedpreview
45420              * preview the saved version of htmlEditor
45421              * @param {HtmlEditor} this
45422              */
45423             savedpreview: true,
45424             
45425             /**
45426             * @event stylesheetsclick
45427             * Fires when press the Sytlesheets button
45428             * @param {Roo.HtmlEditorCore} this
45429             */
45430             stylesheetsclick: true
45431         });
45432         this.defaultAutoCreate =  {
45433             tag: "textarea",
45434             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45435             autocomplete: "new-password"
45436         };
45437     },
45438
45439     /**
45440      * Protected method that will not generally be called directly. It
45441      * is called when the editor creates its toolbar. Override this method if you need to
45442      * add custom toolbar buttons.
45443      * @param {HtmlEditor} editor
45444      */
45445     createToolbar : function(editor){
45446         Roo.log("create toolbars");
45447         if (!editor.toolbars || !editor.toolbars.length) {
45448             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45449         }
45450         
45451         for (var i =0 ; i < editor.toolbars.length;i++) {
45452             editor.toolbars[i] = Roo.factory(
45453                     typeof(editor.toolbars[i]) == 'string' ?
45454                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45455                 Roo.form.HtmlEditor);
45456             editor.toolbars[i].init(editor);
45457         }
45458          
45459         
45460     },
45461
45462      
45463     // private
45464     onRender : function(ct, position)
45465     {
45466         var _t = this;
45467         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45468         
45469         this.wrap = this.el.wrap({
45470             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45471         });
45472         
45473         this.editorcore.onRender(ct, position);
45474          
45475         if (this.resizable) {
45476             this.resizeEl = new Roo.Resizable(this.wrap, {
45477                 pinned : true,
45478                 wrap: true,
45479                 dynamic : true,
45480                 minHeight : this.height,
45481                 height: this.height,
45482                 handles : this.resizable,
45483                 width: this.width,
45484                 listeners : {
45485                     resize : function(r, w, h) {
45486                         _t.onResize(w,h); // -something
45487                     }
45488                 }
45489             });
45490             
45491         }
45492         this.createToolbar(this);
45493        
45494         
45495         if(!this.width){
45496             this.setSize(this.wrap.getSize());
45497         }
45498         if (this.resizeEl) {
45499             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45500             // should trigger onReize..
45501         }
45502         
45503         this.keyNav = new Roo.KeyNav(this.el, {
45504             
45505             "tab" : function(e){
45506                 e.preventDefault();
45507                 
45508                 var value = this.getValue();
45509                 
45510                 var start = this.el.dom.selectionStart;
45511                 var end = this.el.dom.selectionEnd;
45512                 
45513                 if(!e.shiftKey){
45514                     
45515                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45516                     this.el.dom.setSelectionRange(end + 1, end + 1);
45517                     return;
45518                 }
45519                 
45520                 var f = value.substring(0, start).split("\t");
45521                 
45522                 if(f.pop().length != 0){
45523                     return;
45524                 }
45525                 
45526                 this.setValue(f.join("\t") + value.substring(end));
45527                 this.el.dom.setSelectionRange(start - 1, start - 1);
45528                 
45529             },
45530             
45531             "home" : function(e){
45532                 e.preventDefault();
45533                 
45534                 var curr = this.el.dom.selectionStart;
45535                 var lines = this.getValue().split("\n");
45536                 
45537                 if(!lines.length){
45538                     return;
45539                 }
45540                 
45541                 if(e.ctrlKey){
45542                     this.el.dom.setSelectionRange(0, 0);
45543                     return;
45544                 }
45545                 
45546                 var pos = 0;
45547                 
45548                 for (var i = 0; i < lines.length;i++) {
45549                     pos += lines[i].length;
45550                     
45551                     if(i != 0){
45552                         pos += 1;
45553                     }
45554                     
45555                     if(pos < curr){
45556                         continue;
45557                     }
45558                     
45559                     pos -= lines[i].length;
45560                     
45561                     break;
45562                 }
45563                 
45564                 if(!e.shiftKey){
45565                     this.el.dom.setSelectionRange(pos, pos);
45566                     return;
45567                 }
45568                 
45569                 this.el.dom.selectionStart = pos;
45570                 this.el.dom.selectionEnd = curr;
45571             },
45572             
45573             "end" : function(e){
45574                 e.preventDefault();
45575                 
45576                 var curr = this.el.dom.selectionStart;
45577                 var lines = this.getValue().split("\n");
45578                 
45579                 if(!lines.length){
45580                     return;
45581                 }
45582                 
45583                 if(e.ctrlKey){
45584                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45585                     return;
45586                 }
45587                 
45588                 var pos = 0;
45589                 
45590                 for (var i = 0; i < lines.length;i++) {
45591                     
45592                     pos += lines[i].length;
45593                     
45594                     if(i != 0){
45595                         pos += 1;
45596                     }
45597                     
45598                     if(pos < curr){
45599                         continue;
45600                     }
45601                     
45602                     break;
45603                 }
45604                 
45605                 if(!e.shiftKey){
45606                     this.el.dom.setSelectionRange(pos, pos);
45607                     return;
45608                 }
45609                 
45610                 this.el.dom.selectionStart = curr;
45611                 this.el.dom.selectionEnd = pos;
45612             },
45613
45614             scope : this,
45615
45616             doRelay : function(foo, bar, hname){
45617                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45618             },
45619
45620             forceKeyDown: true
45621         });
45622         
45623 //        if(this.autosave && this.w){
45624 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45625 //        }
45626     },
45627
45628     // private
45629     onResize : function(w, h)
45630     {
45631         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45632         var ew = false;
45633         var eh = false;
45634         
45635         if(this.el ){
45636             if(typeof w == 'number'){
45637                 var aw = w - this.wrap.getFrameWidth('lr');
45638                 this.el.setWidth(this.adjustWidth('textarea', aw));
45639                 ew = aw;
45640             }
45641             if(typeof h == 'number'){
45642                 var tbh = 0;
45643                 for (var i =0; i < this.toolbars.length;i++) {
45644                     // fixme - ask toolbars for heights?
45645                     tbh += this.toolbars[i].tb.el.getHeight();
45646                     if (this.toolbars[i].footer) {
45647                         tbh += this.toolbars[i].footer.el.getHeight();
45648                     }
45649                 }
45650                 
45651                 
45652                 
45653                 
45654                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45655                 ah -= 5; // knock a few pixes off for look..
45656 //                Roo.log(ah);
45657                 this.el.setHeight(this.adjustWidth('textarea', ah));
45658                 var eh = ah;
45659             }
45660         }
45661         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45662         this.editorcore.onResize(ew,eh);
45663         
45664     },
45665
45666     /**
45667      * Toggles the editor between standard and source edit mode.
45668      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45669      */
45670     toggleSourceEdit : function(sourceEditMode)
45671     {
45672         this.editorcore.toggleSourceEdit(sourceEditMode);
45673         
45674         if(this.editorcore.sourceEditMode){
45675             Roo.log('editor - showing textarea');
45676             
45677 //            Roo.log('in');
45678 //            Roo.log(this.syncValue());
45679             this.editorcore.syncValue();
45680             this.el.removeClass('x-hidden');
45681             this.el.dom.removeAttribute('tabIndex');
45682             this.el.focus();
45683             
45684             for (var i = 0; i < this.toolbars.length; i++) {
45685                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45686                     this.toolbars[i].tb.hide();
45687                     this.toolbars[i].footer.hide();
45688                 }
45689             }
45690             
45691         }else{
45692             Roo.log('editor - hiding textarea');
45693 //            Roo.log('out')
45694 //            Roo.log(this.pushValue()); 
45695             this.editorcore.pushValue();
45696             
45697             this.el.addClass('x-hidden');
45698             this.el.dom.setAttribute('tabIndex', -1);
45699             
45700             for (var i = 0; i < this.toolbars.length; i++) {
45701                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45702                     this.toolbars[i].tb.show();
45703                     this.toolbars[i].footer.show();
45704                 }
45705             }
45706             
45707             //this.deferFocus();
45708         }
45709         
45710         this.setSize(this.wrap.getSize());
45711         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45712         
45713         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45714     },
45715  
45716     // private (for BoxComponent)
45717     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45718
45719     // private (for BoxComponent)
45720     getResizeEl : function(){
45721         return this.wrap;
45722     },
45723
45724     // private (for BoxComponent)
45725     getPositionEl : function(){
45726         return this.wrap;
45727     },
45728
45729     // private
45730     initEvents : function(){
45731         this.originalValue = this.getValue();
45732     },
45733
45734     /**
45735      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45736      * @method
45737      */
45738     markInvalid : Roo.emptyFn,
45739     /**
45740      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45741      * @method
45742      */
45743     clearInvalid : Roo.emptyFn,
45744
45745     setValue : function(v){
45746         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45747         this.editorcore.pushValue();
45748     },
45749
45750      
45751     // private
45752     deferFocus : function(){
45753         this.focus.defer(10, this);
45754     },
45755
45756     // doc'ed in Field
45757     focus : function(){
45758         this.editorcore.focus();
45759         
45760     },
45761       
45762
45763     // private
45764     onDestroy : function(){
45765         
45766         
45767         
45768         if(this.rendered){
45769             
45770             for (var i =0; i < this.toolbars.length;i++) {
45771                 // fixme - ask toolbars for heights?
45772                 this.toolbars[i].onDestroy();
45773             }
45774             
45775             this.wrap.dom.innerHTML = '';
45776             this.wrap.remove();
45777         }
45778     },
45779
45780     // private
45781     onFirstFocus : function(){
45782         //Roo.log("onFirstFocus");
45783         this.editorcore.onFirstFocus();
45784          for (var i =0; i < this.toolbars.length;i++) {
45785             this.toolbars[i].onFirstFocus();
45786         }
45787         
45788     },
45789     
45790     // private
45791     syncValue : function()
45792     {
45793         this.editorcore.syncValue();
45794     },
45795     
45796     pushValue : function()
45797     {
45798         this.editorcore.pushValue();
45799     },
45800     
45801     setStylesheets : function(stylesheets)
45802     {
45803         this.editorcore.setStylesheets(stylesheets);
45804     },
45805     
45806     removeStylesheets : function()
45807     {
45808         this.editorcore.removeStylesheets();
45809     }
45810      
45811     
45812     // hide stuff that is not compatible
45813     /**
45814      * @event blur
45815      * @hide
45816      */
45817     /**
45818      * @event change
45819      * @hide
45820      */
45821     /**
45822      * @event focus
45823      * @hide
45824      */
45825     /**
45826      * @event specialkey
45827      * @hide
45828      */
45829     /**
45830      * @cfg {String} fieldClass @hide
45831      */
45832     /**
45833      * @cfg {String} focusClass @hide
45834      */
45835     /**
45836      * @cfg {String} autoCreate @hide
45837      */
45838     /**
45839      * @cfg {String} inputType @hide
45840      */
45841     /**
45842      * @cfg {String} invalidClass @hide
45843      */
45844     /**
45845      * @cfg {String} invalidText @hide
45846      */
45847     /**
45848      * @cfg {String} msgFx @hide
45849      */
45850     /**
45851      * @cfg {String} validateOnBlur @hide
45852      */
45853 });
45854  
45855     // <script type="text/javascript">
45856 /*
45857  * Based on
45858  * Ext JS Library 1.1.1
45859  * Copyright(c) 2006-2007, Ext JS, LLC.
45860  *  
45861  
45862  */
45863
45864 /**
45865  * @class Roo.form.HtmlEditorToolbar1
45866  * Basic Toolbar
45867  * 
45868  * Usage:
45869  *
45870  new Roo.form.HtmlEditor({
45871     ....
45872     toolbars : [
45873         new Roo.form.HtmlEditorToolbar1({
45874             disable : { fonts: 1 , format: 1, ..., ... , ...],
45875             btns : [ .... ]
45876         })
45877     }
45878      
45879  * 
45880  * @cfg {Object} disable List of elements to disable..
45881  * @cfg {Array} btns List of additional buttons.
45882  * 
45883  * 
45884  * NEEDS Extra CSS? 
45885  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45886  */
45887  
45888 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45889 {
45890     
45891     Roo.apply(this, config);
45892     
45893     // default disabled, based on 'good practice'..
45894     this.disable = this.disable || {};
45895     Roo.applyIf(this.disable, {
45896         fontSize : true,
45897         colors : true,
45898         specialElements : true
45899     });
45900     
45901     
45902     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45903     // dont call parent... till later.
45904 }
45905
45906 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45907     
45908     tb: false,
45909     
45910     rendered: false,
45911     
45912     editor : false,
45913     editorcore : false,
45914     /**
45915      * @cfg {Object} disable  List of toolbar elements to disable
45916          
45917      */
45918     disable : false,
45919     
45920     
45921      /**
45922      * @cfg {String} createLinkText The default text for the create link prompt
45923      */
45924     createLinkText : 'Please enter the URL for the link:',
45925     /**
45926      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
45927      */
45928     defaultLinkValue : 'http:/'+'/',
45929    
45930     
45931       /**
45932      * @cfg {Array} fontFamilies An array of available font families
45933      */
45934     fontFamilies : [
45935         'Arial',
45936         'Courier New',
45937         'Tahoma',
45938         'Times New Roman',
45939         'Verdana'
45940     ],
45941     
45942     specialChars : [
45943            "&#169;",
45944           "&#174;",     
45945           "&#8482;",    
45946           "&#163;" ,    
45947          // "&#8212;",    
45948           "&#8230;",    
45949           "&#247;" ,    
45950         //  "&#225;" ,     ?? a acute?
45951            "&#8364;"    , //Euro
45952        //   "&#8220;"    ,
45953         //  "&#8221;"    ,
45954         //  "&#8226;"    ,
45955           "&#176;"  //   , // degrees
45956
45957          // "&#233;"     , // e ecute
45958          // "&#250;"     , // u ecute?
45959     ],
45960     
45961     specialElements : [
45962         {
45963             text: "Insert Table",
45964             xtype: 'MenuItem',
45965             xns : Roo.Menu,
45966             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
45967                 
45968         },
45969         {    
45970             text: "Insert Image",
45971             xtype: 'MenuItem',
45972             xns : Roo.Menu,
45973             ihtml : '<img src="about:blank"/>'
45974             
45975         }
45976         
45977          
45978     ],
45979     
45980     
45981     inputElements : [ 
45982             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
45983             "input:submit", "input:button", "select", "textarea", "label" ],
45984     formats : [
45985         ["p"] ,  
45986         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
45987         ["pre"],[ "code"], 
45988         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
45989         ['div'],['span'],
45990         ['sup'],['sub']
45991     ],
45992     
45993     cleanStyles : [
45994         "font-size"
45995     ],
45996      /**
45997      * @cfg {String} defaultFont default font to use.
45998      */
45999     defaultFont: 'tahoma',
46000    
46001     fontSelect : false,
46002     
46003     
46004     formatCombo : false,
46005     
46006     init : function(editor)
46007     {
46008         this.editor = editor;
46009         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46010         var editorcore = this.editorcore;
46011         
46012         var _t = this;
46013         
46014         var fid = editorcore.frameId;
46015         var etb = this;
46016         function btn(id, toggle, handler){
46017             var xid = fid + '-'+ id ;
46018             return {
46019                 id : xid,
46020                 cmd : id,
46021                 cls : 'x-btn-icon x-edit-'+id,
46022                 enableToggle:toggle !== false,
46023                 scope: _t, // was editor...
46024                 handler:handler||_t.relayBtnCmd,
46025                 clickEvent:'mousedown',
46026                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46027                 tabIndex:-1
46028             };
46029         }
46030         
46031         
46032         
46033         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46034         this.tb = tb;
46035          // stop form submits
46036         tb.el.on('click', function(e){
46037             e.preventDefault(); // what does this do?
46038         });
46039
46040         if(!this.disable.font) { // && !Roo.isSafari){
46041             /* why no safari for fonts 
46042             editor.fontSelect = tb.el.createChild({
46043                 tag:'select',
46044                 tabIndex: -1,
46045                 cls:'x-font-select',
46046                 html: this.createFontOptions()
46047             });
46048             
46049             editor.fontSelect.on('change', function(){
46050                 var font = editor.fontSelect.dom.value;
46051                 editor.relayCmd('fontname', font);
46052                 editor.deferFocus();
46053             }, editor);
46054             
46055             tb.add(
46056                 editor.fontSelect.dom,
46057                 '-'
46058             );
46059             */
46060             
46061         };
46062         if(!this.disable.formats){
46063             this.formatCombo = new Roo.form.ComboBox({
46064                 store: new Roo.data.SimpleStore({
46065                     id : 'tag',
46066                     fields: ['tag'],
46067                     data : this.formats // from states.js
46068                 }),
46069                 blockFocus : true,
46070                 name : '',
46071                 //autoCreate : {tag: "div",  size: "20"},
46072                 displayField:'tag',
46073                 typeAhead: false,
46074                 mode: 'local',
46075                 editable : false,
46076                 triggerAction: 'all',
46077                 emptyText:'Add tag',
46078                 selectOnFocus:true,
46079                 width:135,
46080                 listeners : {
46081                     'select': function(c, r, i) {
46082                         editorcore.insertTag(r.get('tag'));
46083                         editor.focus();
46084                     }
46085                 }
46086
46087             });
46088             tb.addField(this.formatCombo);
46089             
46090         }
46091         
46092         if(!this.disable.format){
46093             tb.add(
46094                 btn('bold'),
46095                 btn('italic'),
46096                 btn('underline'),
46097                 btn('strikethrough')
46098             );
46099         };
46100         if(!this.disable.fontSize){
46101             tb.add(
46102                 '-',
46103                 
46104                 
46105                 btn('increasefontsize', false, editorcore.adjustFont),
46106                 btn('decreasefontsize', false, editorcore.adjustFont)
46107             );
46108         };
46109         
46110         
46111         if(!this.disable.colors){
46112             tb.add(
46113                 '-', {
46114                     id:editorcore.frameId +'-forecolor',
46115                     cls:'x-btn-icon x-edit-forecolor',
46116                     clickEvent:'mousedown',
46117                     tooltip: this.buttonTips['forecolor'] || undefined,
46118                     tabIndex:-1,
46119                     menu : new Roo.menu.ColorMenu({
46120                         allowReselect: true,
46121                         focus: Roo.emptyFn,
46122                         value:'000000',
46123                         plain:true,
46124                         selectHandler: function(cp, color){
46125                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46126                             editor.deferFocus();
46127                         },
46128                         scope: editorcore,
46129                         clickEvent:'mousedown'
46130                     })
46131                 }, {
46132                     id:editorcore.frameId +'backcolor',
46133                     cls:'x-btn-icon x-edit-backcolor',
46134                     clickEvent:'mousedown',
46135                     tooltip: this.buttonTips['backcolor'] || undefined,
46136                     tabIndex:-1,
46137                     menu : new Roo.menu.ColorMenu({
46138                         focus: Roo.emptyFn,
46139                         value:'FFFFFF',
46140                         plain:true,
46141                         allowReselect: true,
46142                         selectHandler: function(cp, color){
46143                             if(Roo.isGecko){
46144                                 editorcore.execCmd('useCSS', false);
46145                                 editorcore.execCmd('hilitecolor', color);
46146                                 editorcore.execCmd('useCSS', true);
46147                                 editor.deferFocus();
46148                             }else{
46149                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46150                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46151                                 editor.deferFocus();
46152                             }
46153                         },
46154                         scope:editorcore,
46155                         clickEvent:'mousedown'
46156                     })
46157                 }
46158             );
46159         };
46160         // now add all the items...
46161         
46162
46163         if(!this.disable.alignments){
46164             tb.add(
46165                 '-',
46166                 btn('justifyleft'),
46167                 btn('justifycenter'),
46168                 btn('justifyright')
46169             );
46170         };
46171
46172         //if(!Roo.isSafari){
46173             if(!this.disable.links){
46174                 tb.add(
46175                     '-',
46176                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46177                 );
46178             };
46179
46180             if(!this.disable.lists){
46181                 tb.add(
46182                     '-',
46183                     btn('insertorderedlist'),
46184                     btn('insertunorderedlist')
46185                 );
46186             }
46187             if(!this.disable.sourceEdit){
46188                 tb.add(
46189                     '-',
46190                     btn('sourceedit', true, function(btn){
46191                         this.toggleSourceEdit(btn.pressed);
46192                     })
46193                 );
46194             }
46195         //}
46196         
46197         var smenu = { };
46198         // special menu.. - needs to be tidied up..
46199         if (!this.disable.special) {
46200             smenu = {
46201                 text: "&#169;",
46202                 cls: 'x-edit-none',
46203                 
46204                 menu : {
46205                     items : []
46206                 }
46207             };
46208             for (var i =0; i < this.specialChars.length; i++) {
46209                 smenu.menu.items.push({
46210                     
46211                     html: this.specialChars[i],
46212                     handler: function(a,b) {
46213                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46214                         //editor.insertAtCursor(a.html);
46215                         
46216                     },
46217                     tabIndex:-1
46218                 });
46219             }
46220             
46221             
46222             tb.add(smenu);
46223             
46224             
46225         }
46226         
46227         var cmenu = { };
46228         if (!this.disable.cleanStyles) {
46229             cmenu = {
46230                 cls: 'x-btn-icon x-btn-clear',
46231                 
46232                 menu : {
46233                     items : []
46234                 }
46235             };
46236             for (var i =0; i < this.cleanStyles.length; i++) {
46237                 cmenu.menu.items.push({
46238                     actiontype : this.cleanStyles[i],
46239                     html: 'Remove ' + this.cleanStyles[i],
46240                     handler: function(a,b) {
46241 //                        Roo.log(a);
46242 //                        Roo.log(b);
46243                         var c = Roo.get(editorcore.doc.body);
46244                         c.select('[style]').each(function(s) {
46245                             s.dom.style.removeProperty(a.actiontype);
46246                         });
46247                         editorcore.syncValue();
46248                     },
46249                     tabIndex:-1
46250                 });
46251             }
46252              cmenu.menu.items.push({
46253                 actiontype : 'tablewidths',
46254                 html: 'Remove Table Widths',
46255                 handler: function(a,b) {
46256                     editorcore.cleanTableWidths();
46257                     editorcore.syncValue();
46258                 },
46259                 tabIndex:-1
46260             });
46261             cmenu.menu.items.push({
46262                 actiontype : 'word',
46263                 html: 'Remove MS Word Formating',
46264                 handler: function(a,b) {
46265                     editorcore.cleanWord();
46266                     editorcore.syncValue();
46267                 },
46268                 tabIndex:-1
46269             });
46270             
46271             cmenu.menu.items.push({
46272                 actiontype : 'all',
46273                 html: 'Remove All Styles',
46274                 handler: function(a,b) {
46275                     
46276                     var c = Roo.get(editorcore.doc.body);
46277                     c.select('[style]').each(function(s) {
46278                         s.dom.removeAttribute('style');
46279                     });
46280                     editorcore.syncValue();
46281                 },
46282                 tabIndex:-1
46283             });
46284             
46285             cmenu.menu.items.push({
46286                 actiontype : 'all',
46287                 html: 'Remove All CSS Classes',
46288                 handler: function(a,b) {
46289                     
46290                     var c = Roo.get(editorcore.doc.body);
46291                     c.select('[class]').each(function(s) {
46292                         s.dom.removeAttribute('class');
46293                     });
46294                     editorcore.cleanWord();
46295                     editorcore.syncValue();
46296                 },
46297                 tabIndex:-1
46298             });
46299             
46300              cmenu.menu.items.push({
46301                 actiontype : 'tidy',
46302                 html: 'Tidy HTML Source',
46303                 handler: function(a,b) {
46304                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46305                     editorcore.syncValue();
46306                 },
46307                 tabIndex:-1
46308             });
46309             
46310             
46311             tb.add(cmenu);
46312         }
46313          
46314         if (!this.disable.specialElements) {
46315             var semenu = {
46316                 text: "Other;",
46317                 cls: 'x-edit-none',
46318                 menu : {
46319                     items : []
46320                 }
46321             };
46322             for (var i =0; i < this.specialElements.length; i++) {
46323                 semenu.menu.items.push(
46324                     Roo.apply({ 
46325                         handler: function(a,b) {
46326                             editor.insertAtCursor(this.ihtml);
46327                         }
46328                     }, this.specialElements[i])
46329                 );
46330                     
46331             }
46332             
46333             tb.add(semenu);
46334             
46335             
46336         }
46337          
46338         
46339         if (this.btns) {
46340             for(var i =0; i< this.btns.length;i++) {
46341                 var b = Roo.factory(this.btns[i],Roo.form);
46342                 b.cls =  'x-edit-none';
46343                 
46344                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46345                     b.cls += ' x-init-enable';
46346                 }
46347                 
46348                 b.scope = editorcore;
46349                 tb.add(b);
46350             }
46351         
46352         }
46353         
46354         
46355         
46356         // disable everything...
46357         
46358         this.tb.items.each(function(item){
46359             
46360            if(
46361                 item.id != editorcore.frameId+ '-sourceedit' && 
46362                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46363             ){
46364                 
46365                 item.disable();
46366             }
46367         });
46368         this.rendered = true;
46369         
46370         // the all the btns;
46371         editor.on('editorevent', this.updateToolbar, this);
46372         // other toolbars need to implement this..
46373         //editor.on('editmodechange', this.updateToolbar, this);
46374     },
46375     
46376     
46377     relayBtnCmd : function(btn) {
46378         this.editorcore.relayCmd(btn.cmd);
46379     },
46380     // private used internally
46381     createLink : function(){
46382         Roo.log("create link?");
46383         var url = prompt(this.createLinkText, this.defaultLinkValue);
46384         if(url && url != 'http:/'+'/'){
46385             this.editorcore.relayCmd('createlink', url);
46386         }
46387     },
46388
46389     
46390     /**
46391      * Protected method that will not generally be called directly. It triggers
46392      * a toolbar update by reading the markup state of the current selection in the editor.
46393      */
46394     updateToolbar: function(){
46395
46396         if(!this.editorcore.activated){
46397             this.editor.onFirstFocus();
46398             return;
46399         }
46400
46401         var btns = this.tb.items.map, 
46402             doc = this.editorcore.doc,
46403             frameId = this.editorcore.frameId;
46404
46405         if(!this.disable.font && !Roo.isSafari){
46406             /*
46407             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46408             if(name != this.fontSelect.dom.value){
46409                 this.fontSelect.dom.value = name;
46410             }
46411             */
46412         }
46413         if(!this.disable.format){
46414             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46415             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46416             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46417             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46418         }
46419         if(!this.disable.alignments){
46420             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46421             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46422             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46423         }
46424         if(!Roo.isSafari && !this.disable.lists){
46425             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46426             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46427         }
46428         
46429         var ans = this.editorcore.getAllAncestors();
46430         if (this.formatCombo) {
46431             
46432             
46433             var store = this.formatCombo.store;
46434             this.formatCombo.setValue("");
46435             for (var i =0; i < ans.length;i++) {
46436                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46437                     // select it..
46438                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46439                     break;
46440                 }
46441             }
46442         }
46443         
46444         
46445         
46446         // hides menus... - so this cant be on a menu...
46447         Roo.menu.MenuMgr.hideAll();
46448
46449         //this.editorsyncValue();
46450     },
46451    
46452     
46453     createFontOptions : function(){
46454         var buf = [], fs = this.fontFamilies, ff, lc;
46455         
46456         
46457         
46458         for(var i = 0, len = fs.length; i< len; i++){
46459             ff = fs[i];
46460             lc = ff.toLowerCase();
46461             buf.push(
46462                 '<option value="',lc,'" style="font-family:',ff,';"',
46463                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46464                     ff,
46465                 '</option>'
46466             );
46467         }
46468         return buf.join('');
46469     },
46470     
46471     toggleSourceEdit : function(sourceEditMode){
46472         
46473         Roo.log("toolbar toogle");
46474         if(sourceEditMode === undefined){
46475             sourceEditMode = !this.sourceEditMode;
46476         }
46477         this.sourceEditMode = sourceEditMode === true;
46478         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46479         // just toggle the button?
46480         if(btn.pressed !== this.sourceEditMode){
46481             btn.toggle(this.sourceEditMode);
46482             return;
46483         }
46484         
46485         if(sourceEditMode){
46486             Roo.log("disabling buttons");
46487             this.tb.items.each(function(item){
46488                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46489                     item.disable();
46490                 }
46491             });
46492           
46493         }else{
46494             Roo.log("enabling buttons");
46495             if(this.editorcore.initialized){
46496                 this.tb.items.each(function(item){
46497                     item.enable();
46498                 });
46499             }
46500             
46501         }
46502         Roo.log("calling toggole on editor");
46503         // tell the editor that it's been pressed..
46504         this.editor.toggleSourceEdit(sourceEditMode);
46505        
46506     },
46507      /**
46508      * Object collection of toolbar tooltips for the buttons in the editor. The key
46509      * is the command id associated with that button and the value is a valid QuickTips object.
46510      * For example:
46511 <pre><code>
46512 {
46513     bold : {
46514         title: 'Bold (Ctrl+B)',
46515         text: 'Make the selected text bold.',
46516         cls: 'x-html-editor-tip'
46517     },
46518     italic : {
46519         title: 'Italic (Ctrl+I)',
46520         text: 'Make the selected text italic.',
46521         cls: 'x-html-editor-tip'
46522     },
46523     ...
46524 </code></pre>
46525     * @type Object
46526      */
46527     buttonTips : {
46528         bold : {
46529             title: 'Bold (Ctrl+B)',
46530             text: 'Make the selected text bold.',
46531             cls: 'x-html-editor-tip'
46532         },
46533         italic : {
46534             title: 'Italic (Ctrl+I)',
46535             text: 'Make the selected text italic.',
46536             cls: 'x-html-editor-tip'
46537         },
46538         underline : {
46539             title: 'Underline (Ctrl+U)',
46540             text: 'Underline the selected text.',
46541             cls: 'x-html-editor-tip'
46542         },
46543         strikethrough : {
46544             title: 'Strikethrough',
46545             text: 'Strikethrough the selected text.',
46546             cls: 'x-html-editor-tip'
46547         },
46548         increasefontsize : {
46549             title: 'Grow Text',
46550             text: 'Increase the font size.',
46551             cls: 'x-html-editor-tip'
46552         },
46553         decreasefontsize : {
46554             title: 'Shrink Text',
46555             text: 'Decrease the font size.',
46556             cls: 'x-html-editor-tip'
46557         },
46558         backcolor : {
46559             title: 'Text Highlight Color',
46560             text: 'Change the background color of the selected text.',
46561             cls: 'x-html-editor-tip'
46562         },
46563         forecolor : {
46564             title: 'Font Color',
46565             text: 'Change the color of the selected text.',
46566             cls: 'x-html-editor-tip'
46567         },
46568         justifyleft : {
46569             title: 'Align Text Left',
46570             text: 'Align text to the left.',
46571             cls: 'x-html-editor-tip'
46572         },
46573         justifycenter : {
46574             title: 'Center Text',
46575             text: 'Center text in the editor.',
46576             cls: 'x-html-editor-tip'
46577         },
46578         justifyright : {
46579             title: 'Align Text Right',
46580             text: 'Align text to the right.',
46581             cls: 'x-html-editor-tip'
46582         },
46583         insertunorderedlist : {
46584             title: 'Bullet List',
46585             text: 'Start a bulleted list.',
46586             cls: 'x-html-editor-tip'
46587         },
46588         insertorderedlist : {
46589             title: 'Numbered List',
46590             text: 'Start a numbered list.',
46591             cls: 'x-html-editor-tip'
46592         },
46593         createlink : {
46594             title: 'Hyperlink',
46595             text: 'Make the selected text a hyperlink.',
46596             cls: 'x-html-editor-tip'
46597         },
46598         sourceedit : {
46599             title: 'Source Edit',
46600             text: 'Switch to source editing mode.',
46601             cls: 'x-html-editor-tip'
46602         }
46603     },
46604     // private
46605     onDestroy : function(){
46606         if(this.rendered){
46607             
46608             this.tb.items.each(function(item){
46609                 if(item.menu){
46610                     item.menu.removeAll();
46611                     if(item.menu.el){
46612                         item.menu.el.destroy();
46613                     }
46614                 }
46615                 item.destroy();
46616             });
46617              
46618         }
46619     },
46620     onFirstFocus: function() {
46621         this.tb.items.each(function(item){
46622            item.enable();
46623         });
46624     }
46625 });
46626
46627
46628
46629
46630 // <script type="text/javascript">
46631 /*
46632  * Based on
46633  * Ext JS Library 1.1.1
46634  * Copyright(c) 2006-2007, Ext JS, LLC.
46635  *  
46636  
46637  */
46638
46639  
46640 /**
46641  * @class Roo.form.HtmlEditor.ToolbarContext
46642  * Context Toolbar
46643  * 
46644  * Usage:
46645  *
46646  new Roo.form.HtmlEditor({
46647     ....
46648     toolbars : [
46649         { xtype: 'ToolbarStandard', styles : {} }
46650         { xtype: 'ToolbarContext', disable : {} }
46651     ]
46652 })
46653
46654      
46655  * 
46656  * @config : {Object} disable List of elements to disable.. (not done yet.)
46657  * @config : {Object} styles  Map of styles available.
46658  * 
46659  */
46660
46661 Roo.form.HtmlEditor.ToolbarContext = function(config)
46662 {
46663     
46664     Roo.apply(this, config);
46665     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46666     // dont call parent... till later.
46667     this.styles = this.styles || {};
46668 }
46669
46670  
46671
46672 Roo.form.HtmlEditor.ToolbarContext.types = {
46673     'IMG' : {
46674         width : {
46675             title: "Width",
46676             width: 40
46677         },
46678         height:  {
46679             title: "Height",
46680             width: 40
46681         },
46682         align: {
46683             title: "Align",
46684             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46685             width : 80
46686             
46687         },
46688         border: {
46689             title: "Border",
46690             width: 40
46691         },
46692         alt: {
46693             title: "Alt",
46694             width: 120
46695         },
46696         src : {
46697             title: "Src",
46698             width: 220
46699         }
46700         
46701     },
46702     'A' : {
46703         name : {
46704             title: "Name",
46705             width: 50
46706         },
46707         target:  {
46708             title: "Target",
46709             width: 120
46710         },
46711         href:  {
46712             title: "Href",
46713             width: 220
46714         } // border?
46715         
46716     },
46717     'TABLE' : {
46718         rows : {
46719             title: "Rows",
46720             width: 20
46721         },
46722         cols : {
46723             title: "Cols",
46724             width: 20
46725         },
46726         width : {
46727             title: "Width",
46728             width: 40
46729         },
46730         height : {
46731             title: "Height",
46732             width: 40
46733         },
46734         border : {
46735             title: "Border",
46736             width: 20
46737         }
46738     },
46739     'TD' : {
46740         width : {
46741             title: "Width",
46742             width: 40
46743         },
46744         height : {
46745             title: "Height",
46746             width: 40
46747         },   
46748         align: {
46749             title: "Align",
46750             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46751             width: 80
46752         },
46753         valign: {
46754             title: "Valign",
46755             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46756             width: 80
46757         },
46758         colspan: {
46759             title: "Colspan",
46760             width: 20
46761             
46762         },
46763          'font-family'  : {
46764             title : "Font",
46765             style : 'fontFamily',
46766             displayField: 'display',
46767             optname : 'font-family',
46768             width: 140
46769         }
46770     },
46771     'INPUT' : {
46772         name : {
46773             title: "name",
46774             width: 120
46775         },
46776         value : {
46777             title: "Value",
46778             width: 120
46779         },
46780         width : {
46781             title: "Width",
46782             width: 40
46783         }
46784     },
46785     'LABEL' : {
46786         'for' : {
46787             title: "For",
46788             width: 120
46789         }
46790     },
46791     'TEXTAREA' : {
46792           name : {
46793             title: "name",
46794             width: 120
46795         },
46796         rows : {
46797             title: "Rows",
46798             width: 20
46799         },
46800         cols : {
46801             title: "Cols",
46802             width: 20
46803         }
46804     },
46805     'SELECT' : {
46806         name : {
46807             title: "name",
46808             width: 120
46809         },
46810         selectoptions : {
46811             title: "Options",
46812             width: 200
46813         }
46814     },
46815     
46816     // should we really allow this??
46817     // should this just be 
46818     'BODY' : {
46819         title : {
46820             title: "Title",
46821             width: 200,
46822             disabled : true
46823         }
46824     },
46825     'SPAN' : {
46826         'font-family'  : {
46827             title : "Font",
46828             style : 'fontFamily',
46829             displayField: 'display',
46830             optname : 'font-family',
46831             width: 140
46832         }
46833     },
46834     'DIV' : {
46835         'font-family'  : {
46836             title : "Font",
46837             style : 'fontFamily',
46838             displayField: 'display',
46839             optname : 'font-family',
46840             width: 140
46841         }
46842     },
46843      'P' : {
46844         'font-family'  : {
46845             title : "Font",
46846             style : 'fontFamily',
46847             displayField: 'display',
46848             optname : 'font-family',
46849             width: 140
46850         }
46851     },
46852     
46853     '*' : {
46854         // empty..
46855     }
46856
46857 };
46858
46859 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46860 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46861
46862 Roo.form.HtmlEditor.ToolbarContext.options = {
46863         'font-family'  : [ 
46864                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46865                 [ 'Courier New', 'Courier New'],
46866                 [ 'Tahoma', 'Tahoma'],
46867                 [ 'Times New Roman,serif', 'Times'],
46868                 [ 'Verdana','Verdana' ]
46869         ]
46870 };
46871
46872 // fixme - these need to be configurable..
46873  
46874
46875 //Roo.form.HtmlEditor.ToolbarContext.types
46876
46877
46878 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46879     
46880     tb: false,
46881     
46882     rendered: false,
46883     
46884     editor : false,
46885     editorcore : false,
46886     /**
46887      * @cfg {Object} disable  List of toolbar elements to disable
46888          
46889      */
46890     disable : false,
46891     /**
46892      * @cfg {Object} styles List of styles 
46893      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46894      *
46895      * These must be defined in the page, so they get rendered correctly..
46896      * .headline { }
46897      * TD.underline { }
46898      * 
46899      */
46900     styles : false,
46901     
46902     options: false,
46903     
46904     toolbars : false,
46905     
46906     init : function(editor)
46907     {
46908         this.editor = editor;
46909         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46910         var editorcore = this.editorcore;
46911         
46912         var fid = editorcore.frameId;
46913         var etb = this;
46914         function btn(id, toggle, handler){
46915             var xid = fid + '-'+ id ;
46916             return {
46917                 id : xid,
46918                 cmd : id,
46919                 cls : 'x-btn-icon x-edit-'+id,
46920                 enableToggle:toggle !== false,
46921                 scope: editorcore, // was editor...
46922                 handler:handler||editorcore.relayBtnCmd,
46923                 clickEvent:'mousedown',
46924                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46925                 tabIndex:-1
46926             };
46927         }
46928         // create a new element.
46929         var wdiv = editor.wrap.createChild({
46930                 tag: 'div'
46931             }, editor.wrap.dom.firstChild.nextSibling, true);
46932         
46933         // can we do this more than once??
46934         
46935          // stop form submits
46936       
46937  
46938         // disable everything...
46939         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46940         this.toolbars = {};
46941            
46942         for (var i in  ty) {
46943           
46944             this.toolbars[i] = this.buildToolbar(ty[i],i);
46945         }
46946         this.tb = this.toolbars.BODY;
46947         this.tb.el.show();
46948         this.buildFooter();
46949         this.footer.show();
46950         editor.on('hide', function( ) { this.footer.hide() }, this);
46951         editor.on('show', function( ) { this.footer.show() }, this);
46952         
46953          
46954         this.rendered = true;
46955         
46956         // the all the btns;
46957         editor.on('editorevent', this.updateToolbar, this);
46958         // other toolbars need to implement this..
46959         //editor.on('editmodechange', this.updateToolbar, this);
46960     },
46961     
46962     
46963     
46964     /**
46965      * Protected method that will not generally be called directly. It triggers
46966      * a toolbar update by reading the markup state of the current selection in the editor.
46967      *
46968      * Note you can force an update by calling on('editorevent', scope, false)
46969      */
46970     updateToolbar: function(editor,ev,sel){
46971
46972         //Roo.log(ev);
46973         // capture mouse up - this is handy for selecting images..
46974         // perhaps should go somewhere else...
46975         if(!this.editorcore.activated){
46976              this.editor.onFirstFocus();
46977             return;
46978         }
46979         
46980         
46981         
46982         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
46983         // selectNode - might want to handle IE?
46984         if (ev &&
46985             (ev.type == 'mouseup' || ev.type == 'click' ) &&
46986             ev.target && ev.target.tagName == 'IMG') {
46987             // they have click on an image...
46988             // let's see if we can change the selection...
46989             sel = ev.target;
46990          
46991               var nodeRange = sel.ownerDocument.createRange();
46992             try {
46993                 nodeRange.selectNode(sel);
46994             } catch (e) {
46995                 nodeRange.selectNodeContents(sel);
46996             }
46997             //nodeRange.collapse(true);
46998             var s = this.editorcore.win.getSelection();
46999             s.removeAllRanges();
47000             s.addRange(nodeRange);
47001         }  
47002         
47003       
47004         var updateFooter = sel ? false : true;
47005         
47006         
47007         var ans = this.editorcore.getAllAncestors();
47008         
47009         // pick
47010         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47011         
47012         if (!sel) { 
47013             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47014             sel = sel ? sel : this.editorcore.doc.body;
47015             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47016             
47017         }
47018         // pick a menu that exists..
47019         var tn = sel.tagName.toUpperCase();
47020         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47021         
47022         tn = sel.tagName.toUpperCase();
47023         
47024         var lastSel = this.tb.selectedNode;
47025         
47026         this.tb.selectedNode = sel;
47027         
47028         // if current menu does not match..
47029         
47030         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47031                 
47032             this.tb.el.hide();
47033             ///console.log("show: " + tn);
47034             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47035             this.tb.el.show();
47036             // update name
47037             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47038             
47039             
47040             // update attributes
47041             if (this.tb.fields) {
47042                 this.tb.fields.each(function(e) {
47043                     if (e.stylename) {
47044                         e.setValue(sel.style[e.stylename]);
47045                         return;
47046                     } 
47047                    e.setValue(sel.getAttribute(e.attrname));
47048                 });
47049             }
47050             
47051             var hasStyles = false;
47052             for(var i in this.styles) {
47053                 hasStyles = true;
47054                 break;
47055             }
47056             
47057             // update styles
47058             if (hasStyles) { 
47059                 var st = this.tb.fields.item(0);
47060                 
47061                 st.store.removeAll();
47062                
47063                 
47064                 var cn = sel.className.split(/\s+/);
47065                 
47066                 var avs = [];
47067                 if (this.styles['*']) {
47068                     
47069                     Roo.each(this.styles['*'], function(v) {
47070                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47071                     });
47072                 }
47073                 if (this.styles[tn]) { 
47074                     Roo.each(this.styles[tn], function(v) {
47075                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47076                     });
47077                 }
47078                 
47079                 st.store.loadData(avs);
47080                 st.collapse();
47081                 st.setValue(cn);
47082             }
47083             // flag our selected Node.
47084             this.tb.selectedNode = sel;
47085            
47086            
47087             Roo.menu.MenuMgr.hideAll();
47088
47089         }
47090         
47091         if (!updateFooter) {
47092             //this.footDisp.dom.innerHTML = ''; 
47093             return;
47094         }
47095         // update the footer
47096         //
47097         var html = '';
47098         
47099         this.footerEls = ans.reverse();
47100         Roo.each(this.footerEls, function(a,i) {
47101             if (!a) { return; }
47102             html += html.length ? ' &gt; '  :  '';
47103             
47104             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47105             
47106         });
47107        
47108         // 
47109         var sz = this.footDisp.up('td').getSize();
47110         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47111         this.footDisp.dom.style.marginLeft = '5px';
47112         
47113         this.footDisp.dom.style.overflow = 'hidden';
47114         
47115         this.footDisp.dom.innerHTML = html;
47116             
47117         //this.editorsyncValue();
47118     },
47119      
47120     
47121    
47122        
47123     // private
47124     onDestroy : function(){
47125         if(this.rendered){
47126             
47127             this.tb.items.each(function(item){
47128                 if(item.menu){
47129                     item.menu.removeAll();
47130                     if(item.menu.el){
47131                         item.menu.el.destroy();
47132                     }
47133                 }
47134                 item.destroy();
47135             });
47136              
47137         }
47138     },
47139     onFirstFocus: function() {
47140         // need to do this for all the toolbars..
47141         this.tb.items.each(function(item){
47142            item.enable();
47143         });
47144     },
47145     buildToolbar: function(tlist, nm)
47146     {
47147         var editor = this.editor;
47148         var editorcore = this.editorcore;
47149          // create a new element.
47150         var wdiv = editor.wrap.createChild({
47151                 tag: 'div'
47152             }, editor.wrap.dom.firstChild.nextSibling, true);
47153         
47154        
47155         var tb = new Roo.Toolbar(wdiv);
47156         // add the name..
47157         
47158         tb.add(nm+ ":&nbsp;");
47159         
47160         var styles = [];
47161         for(var i in this.styles) {
47162             styles.push(i);
47163         }
47164         
47165         // styles...
47166         if (styles && styles.length) {
47167             
47168             // this needs a multi-select checkbox...
47169             tb.addField( new Roo.form.ComboBox({
47170                 store: new Roo.data.SimpleStore({
47171                     id : 'val',
47172                     fields: ['val', 'selected'],
47173                     data : [] 
47174                 }),
47175                 name : '-roo-edit-className',
47176                 attrname : 'className',
47177                 displayField: 'val',
47178                 typeAhead: false,
47179                 mode: 'local',
47180                 editable : false,
47181                 triggerAction: 'all',
47182                 emptyText:'Select Style',
47183                 selectOnFocus:true,
47184                 width: 130,
47185                 listeners : {
47186                     'select': function(c, r, i) {
47187                         // initial support only for on class per el..
47188                         tb.selectedNode.className =  r ? r.get('val') : '';
47189                         editorcore.syncValue();
47190                     }
47191                 }
47192     
47193             }));
47194         }
47195         
47196         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47197         var tbops = tbc.options;
47198         
47199         for (var i in tlist) {
47200             
47201             var item = tlist[i];
47202             tb.add(item.title + ":&nbsp;");
47203             
47204             
47205             //optname == used so you can configure the options available..
47206             var opts = item.opts ? item.opts : false;
47207             if (item.optname) {
47208                 opts = tbops[item.optname];
47209            
47210             }
47211             
47212             if (opts) {
47213                 // opts == pulldown..
47214                 tb.addField( new Roo.form.ComboBox({
47215                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47216                         id : 'val',
47217                         fields: ['val', 'display'],
47218                         data : opts  
47219                     }),
47220                     name : '-roo-edit-' + i,
47221                     attrname : i,
47222                     stylename : item.style ? item.style : false,
47223                     displayField: item.displayField ? item.displayField : 'val',
47224                     valueField :  'val',
47225                     typeAhead: false,
47226                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47227                     editable : false,
47228                     triggerAction: 'all',
47229                     emptyText:'Select',
47230                     selectOnFocus:true,
47231                     width: item.width ? item.width  : 130,
47232                     listeners : {
47233                         'select': function(c, r, i) {
47234                             if (c.stylename) {
47235                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47236                                 return;
47237                             }
47238                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47239                         }
47240                     }
47241
47242                 }));
47243                 continue;
47244                     
47245                  
47246                 
47247                 tb.addField( new Roo.form.TextField({
47248                     name: i,
47249                     width: 100,
47250                     //allowBlank:false,
47251                     value: ''
47252                 }));
47253                 continue;
47254             }
47255             tb.addField( new Roo.form.TextField({
47256                 name: '-roo-edit-' + i,
47257                 attrname : i,
47258                 
47259                 width: item.width,
47260                 //allowBlank:true,
47261                 value: '',
47262                 listeners: {
47263                     'change' : function(f, nv, ov) {
47264                         tb.selectedNode.setAttribute(f.attrname, nv);
47265                         editorcore.syncValue();
47266                     }
47267                 }
47268             }));
47269              
47270         }
47271         
47272         var _this = this;
47273         
47274         if(nm == 'BODY'){
47275             tb.addSeparator();
47276         
47277             tb.addButton( {
47278                 text: 'Stylesheets',
47279
47280                 listeners : {
47281                     click : function ()
47282                     {
47283                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47284                     }
47285                 }
47286             });
47287         }
47288         
47289         tb.addFill();
47290         tb.addButton( {
47291             text: 'Remove Tag',
47292     
47293             listeners : {
47294                 click : function ()
47295                 {
47296                     // remove
47297                     // undo does not work.
47298                      
47299                     var sn = tb.selectedNode;
47300                     
47301                     var pn = sn.parentNode;
47302                     
47303                     var stn =  sn.childNodes[0];
47304                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47305                     while (sn.childNodes.length) {
47306                         var node = sn.childNodes[0];
47307                         sn.removeChild(node);
47308                         //Roo.log(node);
47309                         pn.insertBefore(node, sn);
47310                         
47311                     }
47312                     pn.removeChild(sn);
47313                     var range = editorcore.createRange();
47314         
47315                     range.setStart(stn,0);
47316                     range.setEnd(en,0); //????
47317                     //range.selectNode(sel);
47318                     
47319                     
47320                     var selection = editorcore.getSelection();
47321                     selection.removeAllRanges();
47322                     selection.addRange(range);
47323                     
47324                     
47325                     
47326                     //_this.updateToolbar(null, null, pn);
47327                     _this.updateToolbar(null, null, null);
47328                     _this.footDisp.dom.innerHTML = ''; 
47329                 }
47330             }
47331             
47332                     
47333                 
47334             
47335         });
47336         
47337         
47338         tb.el.on('click', function(e){
47339             e.preventDefault(); // what does this do?
47340         });
47341         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47342         tb.el.hide();
47343         tb.name = nm;
47344         // dont need to disable them... as they will get hidden
47345         return tb;
47346          
47347         
47348     },
47349     buildFooter : function()
47350     {
47351         
47352         var fel = this.editor.wrap.createChild();
47353         this.footer = new Roo.Toolbar(fel);
47354         // toolbar has scrolly on left / right?
47355         var footDisp= new Roo.Toolbar.Fill();
47356         var _t = this;
47357         this.footer.add(
47358             {
47359                 text : '&lt;',
47360                 xtype: 'Button',
47361                 handler : function() {
47362                     _t.footDisp.scrollTo('left',0,true)
47363                 }
47364             }
47365         );
47366         this.footer.add( footDisp );
47367         this.footer.add( 
47368             {
47369                 text : '&gt;',
47370                 xtype: 'Button',
47371                 handler : function() {
47372                     // no animation..
47373                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47374                 }
47375             }
47376         );
47377         var fel = Roo.get(footDisp.el);
47378         fel.addClass('x-editor-context');
47379         this.footDispWrap = fel; 
47380         this.footDispWrap.overflow  = 'hidden';
47381         
47382         this.footDisp = fel.createChild();
47383         this.footDispWrap.on('click', this.onContextClick, this)
47384         
47385         
47386     },
47387     onContextClick : function (ev,dom)
47388     {
47389         ev.preventDefault();
47390         var  cn = dom.className;
47391         //Roo.log(cn);
47392         if (!cn.match(/x-ed-loc-/)) {
47393             return;
47394         }
47395         var n = cn.split('-').pop();
47396         var ans = this.footerEls;
47397         var sel = ans[n];
47398         
47399          // pick
47400         var range = this.editorcore.createRange();
47401         
47402         range.selectNodeContents(sel);
47403         //range.selectNode(sel);
47404         
47405         
47406         var selection = this.editorcore.getSelection();
47407         selection.removeAllRanges();
47408         selection.addRange(range);
47409         
47410         
47411         
47412         this.updateToolbar(null, null, sel);
47413         
47414         
47415     }
47416     
47417     
47418     
47419     
47420     
47421 });
47422
47423
47424
47425
47426
47427 /*
47428  * Based on:
47429  * Ext JS Library 1.1.1
47430  * Copyright(c) 2006-2007, Ext JS, LLC.
47431  *
47432  * Originally Released Under LGPL - original licence link has changed is not relivant.
47433  *
47434  * Fork - LGPL
47435  * <script type="text/javascript">
47436  */
47437  
47438 /**
47439  * @class Roo.form.BasicForm
47440  * @extends Roo.util.Observable
47441  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47442  * @constructor
47443  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47444  * @param {Object} config Configuration options
47445  */
47446 Roo.form.BasicForm = function(el, config){
47447     this.allItems = [];
47448     this.childForms = [];
47449     Roo.apply(this, config);
47450     /*
47451      * The Roo.form.Field items in this form.
47452      * @type MixedCollection
47453      */
47454      
47455      
47456     this.items = new Roo.util.MixedCollection(false, function(o){
47457         return o.id || (o.id = Roo.id());
47458     });
47459     this.addEvents({
47460         /**
47461          * @event beforeaction
47462          * Fires before any action is performed. Return false to cancel the action.
47463          * @param {Form} this
47464          * @param {Action} action The action to be performed
47465          */
47466         beforeaction: true,
47467         /**
47468          * @event actionfailed
47469          * Fires when an action fails.
47470          * @param {Form} this
47471          * @param {Action} action The action that failed
47472          */
47473         actionfailed : true,
47474         /**
47475          * @event actioncomplete
47476          * Fires when an action is completed.
47477          * @param {Form} this
47478          * @param {Action} action The action that completed
47479          */
47480         actioncomplete : true
47481     });
47482     if(el){
47483         this.initEl(el);
47484     }
47485     Roo.form.BasicForm.superclass.constructor.call(this);
47486     
47487     Roo.form.BasicForm.popover.apply();
47488 };
47489
47490 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47491     /**
47492      * @cfg {String} method
47493      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47494      */
47495     /**
47496      * @cfg {DataReader} reader
47497      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47498      * This is optional as there is built-in support for processing JSON.
47499      */
47500     /**
47501      * @cfg {DataReader} errorReader
47502      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47503      * This is completely optional as there is built-in support for processing JSON.
47504      */
47505     /**
47506      * @cfg {String} url
47507      * The URL to use for form actions if one isn't supplied in the action options.
47508      */
47509     /**
47510      * @cfg {Boolean} fileUpload
47511      * Set to true if this form is a file upload.
47512      */
47513      
47514     /**
47515      * @cfg {Object} baseParams
47516      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47517      */
47518      /**
47519      
47520     /**
47521      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47522      */
47523     timeout: 30,
47524
47525     // private
47526     activeAction : null,
47527
47528     /**
47529      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47530      * or setValues() data instead of when the form was first created.
47531      */
47532     trackResetOnLoad : false,
47533     
47534     
47535     /**
47536      * childForms - used for multi-tab forms
47537      * @type {Array}
47538      */
47539     childForms : false,
47540     
47541     /**
47542      * allItems - full list of fields.
47543      * @type {Array}
47544      */
47545     allItems : false,
47546     
47547     /**
47548      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47549      * element by passing it or its id or mask the form itself by passing in true.
47550      * @type Mixed
47551      */
47552     waitMsgTarget : false,
47553     
47554     /**
47555      * @type Boolean
47556      */
47557     disableMask : false,
47558     
47559     /**
47560      * @cfg {Boolean} errorMask (true|false) default false
47561      */
47562     errorMask : false,
47563     
47564     /**
47565      * @cfg {Number} maskOffset Default 100
47566      */
47567     maskOffset : 100,
47568
47569     // private
47570     initEl : function(el){
47571         this.el = Roo.get(el);
47572         this.id = this.el.id || Roo.id();
47573         this.el.on('submit', this.onSubmit, this);
47574         this.el.addClass('x-form');
47575     },
47576
47577     // private
47578     onSubmit : function(e){
47579         e.stopEvent();
47580     },
47581
47582     /**
47583      * Returns true if client-side validation on the form is successful.
47584      * @return Boolean
47585      */
47586     isValid : function(){
47587         var valid = true;
47588         var target = false;
47589         this.items.each(function(f){
47590             if(f.validate()){
47591                 return;
47592             }
47593             
47594             valid = false;
47595                 
47596             if(!target && f.el.isVisible(true)){
47597                 target = f;
47598             }
47599         });
47600         
47601         if(this.errorMask && !valid){
47602             Roo.form.BasicForm.popover.mask(this, target);
47603         }
47604         
47605         return valid;
47606     },
47607     /**
47608      * Returns array of invalid form fields.
47609      * @return Array
47610      */
47611     
47612     invalidFields : function()
47613     {
47614         var ret = [];
47615         this.items.each(function(f){
47616             if(f.validate()){
47617                 return;
47618             }
47619             ret.push(f);
47620             
47621         });
47622         
47623         return ret;
47624     },
47625     
47626     
47627     /**
47628      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47629      * @return Boolean
47630      */
47631     isDirty : function(){
47632         var dirty = false;
47633         this.items.each(function(f){
47634            if(f.isDirty()){
47635                dirty = true;
47636                return false;
47637            }
47638         });
47639         return dirty;
47640     },
47641     
47642     /**
47643      * Returns true if any fields in this form have changed since their original load. (New version)
47644      * @return Boolean
47645      */
47646     
47647     hasChanged : function()
47648     {
47649         var dirty = false;
47650         this.items.each(function(f){
47651            if(f.hasChanged()){
47652                dirty = true;
47653                return false;
47654            }
47655         });
47656         return dirty;
47657         
47658     },
47659     /**
47660      * Resets all hasChanged to 'false' -
47661      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47662      * So hasChanged storage is only to be used for this purpose
47663      * @return Boolean
47664      */
47665     resetHasChanged : function()
47666     {
47667         this.items.each(function(f){
47668            f.resetHasChanged();
47669         });
47670         
47671     },
47672     
47673     
47674     /**
47675      * Performs a predefined action (submit or load) or custom actions you define on this form.
47676      * @param {String} actionName The name of the action type
47677      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47678      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47679      * accept other config options):
47680      * <pre>
47681 Property          Type             Description
47682 ----------------  ---------------  ----------------------------------------------------------------------------------
47683 url               String           The url for the action (defaults to the form's url)
47684 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47685 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47686 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47687                                    validate the form on the client (defaults to false)
47688      * </pre>
47689      * @return {BasicForm} this
47690      */
47691     doAction : function(action, options){
47692         if(typeof action == 'string'){
47693             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47694         }
47695         if(this.fireEvent('beforeaction', this, action) !== false){
47696             this.beforeAction(action);
47697             action.run.defer(100, action);
47698         }
47699         return this;
47700     },
47701
47702     /**
47703      * Shortcut to do a submit action.
47704      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47705      * @return {BasicForm} this
47706      */
47707     submit : function(options){
47708         this.doAction('submit', options);
47709         return this;
47710     },
47711
47712     /**
47713      * Shortcut to do a load action.
47714      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47715      * @return {BasicForm} this
47716      */
47717     load : function(options){
47718         this.doAction('load', options);
47719         return this;
47720     },
47721
47722     /**
47723      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47724      * @param {Record} record The record to edit
47725      * @return {BasicForm} this
47726      */
47727     updateRecord : function(record){
47728         record.beginEdit();
47729         var fs = record.fields;
47730         fs.each(function(f){
47731             var field = this.findField(f.name);
47732             if(field){
47733                 record.set(f.name, field.getValue());
47734             }
47735         }, this);
47736         record.endEdit();
47737         return this;
47738     },
47739
47740     /**
47741      * Loads an Roo.data.Record into this form.
47742      * @param {Record} record The record to load
47743      * @return {BasicForm} this
47744      */
47745     loadRecord : function(record){
47746         this.setValues(record.data);
47747         return this;
47748     },
47749
47750     // private
47751     beforeAction : function(action){
47752         var o = action.options;
47753         
47754         if(!this.disableMask) {
47755             if(this.waitMsgTarget === true){
47756                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47757             }else if(this.waitMsgTarget){
47758                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47759                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47760             }else {
47761                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47762             }
47763         }
47764         
47765          
47766     },
47767
47768     // private
47769     afterAction : function(action, success){
47770         this.activeAction = null;
47771         var o = action.options;
47772         
47773         if(!this.disableMask) {
47774             if(this.waitMsgTarget === true){
47775                 this.el.unmask();
47776             }else if(this.waitMsgTarget){
47777                 this.waitMsgTarget.unmask();
47778             }else{
47779                 Roo.MessageBox.updateProgress(1);
47780                 Roo.MessageBox.hide();
47781             }
47782         }
47783         
47784         if(success){
47785             if(o.reset){
47786                 this.reset();
47787             }
47788             Roo.callback(o.success, o.scope, [this, action]);
47789             this.fireEvent('actioncomplete', this, action);
47790             
47791         }else{
47792             
47793             // failure condition..
47794             // we have a scenario where updates need confirming.
47795             // eg. if a locking scenario exists..
47796             // we look for { errors : { needs_confirm : true }} in the response.
47797             if (
47798                 (typeof(action.result) != 'undefined')  &&
47799                 (typeof(action.result.errors) != 'undefined')  &&
47800                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47801            ){
47802                 var _t = this;
47803                 Roo.MessageBox.confirm(
47804                     "Change requires confirmation",
47805                     action.result.errorMsg,
47806                     function(r) {
47807                         if (r != 'yes') {
47808                             return;
47809                         }
47810                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47811                     }
47812                     
47813                 );
47814                 
47815                 
47816                 
47817                 return;
47818             }
47819             
47820             Roo.callback(o.failure, o.scope, [this, action]);
47821             // show an error message if no failed handler is set..
47822             if (!this.hasListener('actionfailed')) {
47823                 Roo.MessageBox.alert("Error",
47824                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47825                         action.result.errorMsg :
47826                         "Saving Failed, please check your entries or try again"
47827                 );
47828             }
47829             
47830             this.fireEvent('actionfailed', this, action);
47831         }
47832         
47833     },
47834
47835     /**
47836      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47837      * @param {String} id The value to search for
47838      * @return Field
47839      */
47840     findField : function(id){
47841         var field = this.items.get(id);
47842         if(!field){
47843             this.items.each(function(f){
47844                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47845                     field = f;
47846                     return false;
47847                 }
47848             });
47849         }
47850         return field || null;
47851     },
47852
47853     /**
47854      * Add a secondary form to this one, 
47855      * Used to provide tabbed forms. One form is primary, with hidden values 
47856      * which mirror the elements from the other forms.
47857      * 
47858      * @param {Roo.form.Form} form to add.
47859      * 
47860      */
47861     addForm : function(form)
47862     {
47863        
47864         if (this.childForms.indexOf(form) > -1) {
47865             // already added..
47866             return;
47867         }
47868         this.childForms.push(form);
47869         var n = '';
47870         Roo.each(form.allItems, function (fe) {
47871             
47872             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47873             if (this.findField(n)) { // already added..
47874                 return;
47875             }
47876             var add = new Roo.form.Hidden({
47877                 name : n
47878             });
47879             add.render(this.el);
47880             
47881             this.add( add );
47882         }, this);
47883         
47884     },
47885     /**
47886      * Mark fields in this form invalid in bulk.
47887      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47888      * @return {BasicForm} this
47889      */
47890     markInvalid : function(errors){
47891         if(errors instanceof Array){
47892             for(var i = 0, len = errors.length; i < len; i++){
47893                 var fieldError = errors[i];
47894                 var f = this.findField(fieldError.id);
47895                 if(f){
47896                     f.markInvalid(fieldError.msg);
47897                 }
47898             }
47899         }else{
47900             var field, id;
47901             for(id in errors){
47902                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
47903                     field.markInvalid(errors[id]);
47904                 }
47905             }
47906         }
47907         Roo.each(this.childForms || [], function (f) {
47908             f.markInvalid(errors);
47909         });
47910         
47911         return this;
47912     },
47913
47914     /**
47915      * Set values for fields in this form in bulk.
47916      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
47917      * @return {BasicForm} this
47918      */
47919     setValues : function(values){
47920         if(values instanceof Array){ // array of objects
47921             for(var i = 0, len = values.length; i < len; i++){
47922                 var v = values[i];
47923                 var f = this.findField(v.id);
47924                 if(f){
47925                     f.setValue(v.value);
47926                     if(this.trackResetOnLoad){
47927                         f.originalValue = f.getValue();
47928                     }
47929                 }
47930             }
47931         }else{ // object hash
47932             var field, id;
47933             for(id in values){
47934                 if(typeof values[id] != 'function' && (field = this.findField(id))){
47935                     
47936                     if (field.setFromData && 
47937                         field.valueField && 
47938                         field.displayField &&
47939                         // combos' with local stores can 
47940                         // be queried via setValue()
47941                         // to set their value..
47942                         (field.store && !field.store.isLocal)
47943                         ) {
47944                         // it's a combo
47945                         var sd = { };
47946                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
47947                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
47948                         field.setFromData(sd);
47949                         
47950                     } else {
47951                         field.setValue(values[id]);
47952                     }
47953                     
47954                     
47955                     if(this.trackResetOnLoad){
47956                         field.originalValue = field.getValue();
47957                     }
47958                 }
47959             }
47960         }
47961         this.resetHasChanged();
47962         
47963         
47964         Roo.each(this.childForms || [], function (f) {
47965             f.setValues(values);
47966             f.resetHasChanged();
47967         });
47968                 
47969         return this;
47970     },
47971  
47972     /**
47973      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
47974      * they are returned as an array.
47975      * @param {Boolean} asString
47976      * @return {Object}
47977      */
47978     getValues : function(asString){
47979         if (this.childForms) {
47980             // copy values from the child forms
47981             Roo.each(this.childForms, function (f) {
47982                 this.setValues(f.getValues());
47983             }, this);
47984         }
47985         
47986         // use formdata
47987         if (typeof(FormData) != 'undefined' && asString !== true) {
47988             // this relies on a 'recent' version of chrome apparently...
47989             try {
47990                 var fd = (new FormData(this.el.dom)).entries();
47991                 var ret = {};
47992                 var ent = fd.next();
47993                 while (!ent.done) {
47994                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
47995                     ent = fd.next();
47996                 };
47997                 return ret;
47998             } catch(e) {
47999                 
48000             }
48001             
48002         }
48003         
48004         
48005         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48006         if(asString === true){
48007             return fs;
48008         }
48009         return Roo.urlDecode(fs);
48010     },
48011     
48012     /**
48013      * Returns the fields in this form as an object with key/value pairs. 
48014      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48015      * @return {Object}
48016      */
48017     getFieldValues : function(with_hidden)
48018     {
48019         if (this.childForms) {
48020             // copy values from the child forms
48021             // should this call getFieldValues - probably not as we do not currently copy
48022             // hidden fields when we generate..
48023             Roo.each(this.childForms, function (f) {
48024                 this.setValues(f.getValues());
48025             }, this);
48026         }
48027         
48028         var ret = {};
48029         this.items.each(function(f){
48030             if (!f.getName()) {
48031                 return;
48032             }
48033             var v = f.getValue();
48034             if (f.inputType =='radio') {
48035                 if (typeof(ret[f.getName()]) == 'undefined') {
48036                     ret[f.getName()] = ''; // empty..
48037                 }
48038                 
48039                 if (!f.el.dom.checked) {
48040                     return;
48041                     
48042                 }
48043                 v = f.el.dom.value;
48044                 
48045             }
48046             
48047             // not sure if this supported any more..
48048             if ((typeof(v) == 'object') && f.getRawValue) {
48049                 v = f.getRawValue() ; // dates..
48050             }
48051             // combo boxes where name != hiddenName...
48052             if (f.name != f.getName()) {
48053                 ret[f.name] = f.getRawValue();
48054             }
48055             ret[f.getName()] = v;
48056         });
48057         
48058         return ret;
48059     },
48060
48061     /**
48062      * Clears all invalid messages in this form.
48063      * @return {BasicForm} this
48064      */
48065     clearInvalid : function(){
48066         this.items.each(function(f){
48067            f.clearInvalid();
48068         });
48069         
48070         Roo.each(this.childForms || [], function (f) {
48071             f.clearInvalid();
48072         });
48073         
48074         
48075         return this;
48076     },
48077
48078     /**
48079      * Resets this form.
48080      * @return {BasicForm} this
48081      */
48082     reset : function(){
48083         this.items.each(function(f){
48084             f.reset();
48085         });
48086         
48087         Roo.each(this.childForms || [], function (f) {
48088             f.reset();
48089         });
48090         this.resetHasChanged();
48091         
48092         return this;
48093     },
48094
48095     /**
48096      * Add Roo.form components to this form.
48097      * @param {Field} field1
48098      * @param {Field} field2 (optional)
48099      * @param {Field} etc (optional)
48100      * @return {BasicForm} this
48101      */
48102     add : function(){
48103         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48104         return this;
48105     },
48106
48107
48108     /**
48109      * Removes a field from the items collection (does NOT remove its markup).
48110      * @param {Field} field
48111      * @return {BasicForm} this
48112      */
48113     remove : function(field){
48114         this.items.remove(field);
48115         return this;
48116     },
48117
48118     /**
48119      * Looks at the fields in this form, checks them for an id attribute,
48120      * and calls applyTo on the existing dom element with that id.
48121      * @return {BasicForm} this
48122      */
48123     render : function(){
48124         this.items.each(function(f){
48125             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48126                 f.applyTo(f.id);
48127             }
48128         });
48129         return this;
48130     },
48131
48132     /**
48133      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48134      * @param {Object} values
48135      * @return {BasicForm} this
48136      */
48137     applyToFields : function(o){
48138         this.items.each(function(f){
48139            Roo.apply(f, o);
48140         });
48141         return this;
48142     },
48143
48144     /**
48145      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48146      * @param {Object} values
48147      * @return {BasicForm} this
48148      */
48149     applyIfToFields : function(o){
48150         this.items.each(function(f){
48151            Roo.applyIf(f, o);
48152         });
48153         return this;
48154     }
48155 });
48156
48157 // back compat
48158 Roo.BasicForm = Roo.form.BasicForm;
48159
48160 Roo.apply(Roo.form.BasicForm, {
48161     
48162     popover : {
48163         
48164         padding : 5,
48165         
48166         isApplied : false,
48167         
48168         isMasked : false,
48169         
48170         form : false,
48171         
48172         target : false,
48173         
48174         intervalID : false,
48175         
48176         maskEl : false,
48177         
48178         apply : function()
48179         {
48180             if(this.isApplied){
48181                 return;
48182             }
48183             
48184             this.maskEl = {
48185                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48186                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48187                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48188                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48189             };
48190             
48191             this.maskEl.top.enableDisplayMode("block");
48192             this.maskEl.left.enableDisplayMode("block");
48193             this.maskEl.bottom.enableDisplayMode("block");
48194             this.maskEl.right.enableDisplayMode("block");
48195             
48196             Roo.get(document.body).on('click', function(){
48197                 this.unmask();
48198             }, this);
48199             
48200             Roo.get(document.body).on('touchstart', function(){
48201                 this.unmask();
48202             }, this);
48203             
48204             this.isApplied = true
48205         },
48206         
48207         mask : function(form, target)
48208         {
48209             this.form = form;
48210             
48211             this.target = target;
48212             
48213             if(!this.form.errorMask || !target.el){
48214                 return;
48215             }
48216             
48217             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48218             
48219             var ot = this.target.el.calcOffsetsTo(scrollable);
48220             
48221             var scrollTo = ot[1] - this.form.maskOffset;
48222             
48223             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48224             
48225             scrollable.scrollTo('top', scrollTo);
48226             
48227             var el = this.target.wrap || this.target.el;
48228             
48229             var box = el.getBox();
48230             
48231             this.maskEl.top.setStyle('position', 'absolute');
48232             this.maskEl.top.setStyle('z-index', 10000);
48233             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48234             this.maskEl.top.setLeft(0);
48235             this.maskEl.top.setTop(0);
48236             this.maskEl.top.show();
48237             
48238             this.maskEl.left.setStyle('position', 'absolute');
48239             this.maskEl.left.setStyle('z-index', 10000);
48240             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48241             this.maskEl.left.setLeft(0);
48242             this.maskEl.left.setTop(box.y - this.padding);
48243             this.maskEl.left.show();
48244
48245             this.maskEl.bottom.setStyle('position', 'absolute');
48246             this.maskEl.bottom.setStyle('z-index', 10000);
48247             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48248             this.maskEl.bottom.setLeft(0);
48249             this.maskEl.bottom.setTop(box.bottom + this.padding);
48250             this.maskEl.bottom.show();
48251
48252             this.maskEl.right.setStyle('position', 'absolute');
48253             this.maskEl.right.setStyle('z-index', 10000);
48254             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48255             this.maskEl.right.setLeft(box.right + this.padding);
48256             this.maskEl.right.setTop(box.y - this.padding);
48257             this.maskEl.right.show();
48258
48259             this.intervalID = window.setInterval(function() {
48260                 Roo.form.BasicForm.popover.unmask();
48261             }, 10000);
48262
48263             window.onwheel = function(){ return false;};
48264             
48265             (function(){ this.isMasked = true; }).defer(500, this);
48266             
48267         },
48268         
48269         unmask : function()
48270         {
48271             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48272                 return;
48273             }
48274             
48275             this.maskEl.top.setStyle('position', 'absolute');
48276             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48277             this.maskEl.top.hide();
48278
48279             this.maskEl.left.setStyle('position', 'absolute');
48280             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48281             this.maskEl.left.hide();
48282
48283             this.maskEl.bottom.setStyle('position', 'absolute');
48284             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48285             this.maskEl.bottom.hide();
48286
48287             this.maskEl.right.setStyle('position', 'absolute');
48288             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48289             this.maskEl.right.hide();
48290             
48291             window.onwheel = function(){ return true;};
48292             
48293             if(this.intervalID){
48294                 window.clearInterval(this.intervalID);
48295                 this.intervalID = false;
48296             }
48297             
48298             this.isMasked = false;
48299             
48300         }
48301         
48302     }
48303     
48304 });/*
48305  * Based on:
48306  * Ext JS Library 1.1.1
48307  * Copyright(c) 2006-2007, Ext JS, LLC.
48308  *
48309  * Originally Released Under LGPL - original licence link has changed is not relivant.
48310  *
48311  * Fork - LGPL
48312  * <script type="text/javascript">
48313  */
48314
48315 /**
48316  * @class Roo.form.Form
48317  * @extends Roo.form.BasicForm
48318  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48319  * @constructor
48320  * @param {Object} config Configuration options
48321  */
48322 Roo.form.Form = function(config){
48323     var xitems =  [];
48324     if (config.items) {
48325         xitems = config.items;
48326         delete config.items;
48327     }
48328    
48329     
48330     Roo.form.Form.superclass.constructor.call(this, null, config);
48331     this.url = this.url || this.action;
48332     if(!this.root){
48333         this.root = new Roo.form.Layout(Roo.applyIf({
48334             id: Roo.id()
48335         }, config));
48336     }
48337     this.active = this.root;
48338     /**
48339      * Array of all the buttons that have been added to this form via {@link addButton}
48340      * @type Array
48341      */
48342     this.buttons = [];
48343     this.allItems = [];
48344     this.addEvents({
48345         /**
48346          * @event clientvalidation
48347          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48348          * @param {Form} this
48349          * @param {Boolean} valid true if the form has passed client-side validation
48350          */
48351         clientvalidation: true,
48352         /**
48353          * @event rendered
48354          * Fires when the form is rendered
48355          * @param {Roo.form.Form} form
48356          */
48357         rendered : true
48358     });
48359     
48360     if (this.progressUrl) {
48361             // push a hidden field onto the list of fields..
48362             this.addxtype( {
48363                     xns: Roo.form, 
48364                     xtype : 'Hidden', 
48365                     name : 'UPLOAD_IDENTIFIER' 
48366             });
48367         }
48368         
48369     
48370     Roo.each(xitems, this.addxtype, this);
48371     
48372 };
48373
48374 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48375     /**
48376      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48377      */
48378     /**
48379      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48380      */
48381     /**
48382      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48383      */
48384     buttonAlign:'center',
48385
48386     /**
48387      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48388      */
48389     minButtonWidth:75,
48390
48391     /**
48392      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48393      * This property cascades to child containers if not set.
48394      */
48395     labelAlign:'left',
48396
48397     /**
48398      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48399      * fires a looping event with that state. This is required to bind buttons to the valid
48400      * state using the config value formBind:true on the button.
48401      */
48402     monitorValid : false,
48403
48404     /**
48405      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48406      */
48407     monitorPoll : 200,
48408     
48409     /**
48410      * @cfg {String} progressUrl - Url to return progress data 
48411      */
48412     
48413     progressUrl : false,
48414     /**
48415      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48416      * sending a formdata with extra parameters - eg uploaded elements.
48417      */
48418     
48419     formData : false,
48420     
48421     /**
48422      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48423      * fields are added and the column is closed. If no fields are passed the column remains open
48424      * until end() is called.
48425      * @param {Object} config The config to pass to the column
48426      * @param {Field} field1 (optional)
48427      * @param {Field} field2 (optional)
48428      * @param {Field} etc (optional)
48429      * @return Column The column container object
48430      */
48431     column : function(c){
48432         var col = new Roo.form.Column(c);
48433         this.start(col);
48434         if(arguments.length > 1){ // duplicate code required because of Opera
48435             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48436             this.end();
48437         }
48438         return col;
48439     },
48440
48441     /**
48442      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48443      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48444      * until end() is called.
48445      * @param {Object} config The config to pass to the fieldset
48446      * @param {Field} field1 (optional)
48447      * @param {Field} field2 (optional)
48448      * @param {Field} etc (optional)
48449      * @return FieldSet The fieldset container object
48450      */
48451     fieldset : function(c){
48452         var fs = new Roo.form.FieldSet(c);
48453         this.start(fs);
48454         if(arguments.length > 1){ // duplicate code required because of Opera
48455             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48456             this.end();
48457         }
48458         return fs;
48459     },
48460
48461     /**
48462      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48463      * fields are added and the container is closed. If no fields are passed the container remains open
48464      * until end() is called.
48465      * @param {Object} config The config to pass to the Layout
48466      * @param {Field} field1 (optional)
48467      * @param {Field} field2 (optional)
48468      * @param {Field} etc (optional)
48469      * @return Layout The container object
48470      */
48471     container : function(c){
48472         var l = new Roo.form.Layout(c);
48473         this.start(l);
48474         if(arguments.length > 1){ // duplicate code required because of Opera
48475             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48476             this.end();
48477         }
48478         return l;
48479     },
48480
48481     /**
48482      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48483      * @param {Object} container A Roo.form.Layout or subclass of Layout
48484      * @return {Form} this
48485      */
48486     start : function(c){
48487         // cascade label info
48488         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48489         this.active.stack.push(c);
48490         c.ownerCt = this.active;
48491         this.active = c;
48492         return this;
48493     },
48494
48495     /**
48496      * Closes the current open container
48497      * @return {Form} this
48498      */
48499     end : function(){
48500         if(this.active == this.root){
48501             return this;
48502         }
48503         this.active = this.active.ownerCt;
48504         return this;
48505     },
48506
48507     /**
48508      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48509      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48510      * as the label of the field.
48511      * @param {Field} field1
48512      * @param {Field} field2 (optional)
48513      * @param {Field} etc. (optional)
48514      * @return {Form} this
48515      */
48516     add : function(){
48517         this.active.stack.push.apply(this.active.stack, arguments);
48518         this.allItems.push.apply(this.allItems,arguments);
48519         var r = [];
48520         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48521             if(a[i].isFormField){
48522                 r.push(a[i]);
48523             }
48524         }
48525         if(r.length > 0){
48526             Roo.form.Form.superclass.add.apply(this, r);
48527         }
48528         return this;
48529     },
48530     
48531
48532     
48533     
48534     
48535      /**
48536      * Find any element that has been added to a form, using it's ID or name
48537      * This can include framesets, columns etc. along with regular fields..
48538      * @param {String} id - id or name to find.
48539      
48540      * @return {Element} e - or false if nothing found.
48541      */
48542     findbyId : function(id)
48543     {
48544         var ret = false;
48545         if (!id) {
48546             return ret;
48547         }
48548         Roo.each(this.allItems, function(f){
48549             if (f.id == id || f.name == id ){
48550                 ret = f;
48551                 return false;
48552             }
48553         });
48554         return ret;
48555     },
48556
48557     
48558     
48559     /**
48560      * Render this form into the passed container. This should only be called once!
48561      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48562      * @return {Form} this
48563      */
48564     render : function(ct)
48565     {
48566         
48567         
48568         
48569         ct = Roo.get(ct);
48570         var o = this.autoCreate || {
48571             tag: 'form',
48572             method : this.method || 'POST',
48573             id : this.id || Roo.id()
48574         };
48575         this.initEl(ct.createChild(o));
48576
48577         this.root.render(this.el);
48578         
48579        
48580              
48581         this.items.each(function(f){
48582             f.render('x-form-el-'+f.id);
48583         });
48584
48585         if(this.buttons.length > 0){
48586             // tables are required to maintain order and for correct IE layout
48587             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48588                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48589                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48590             }}, null, true);
48591             var tr = tb.getElementsByTagName('tr')[0];
48592             for(var i = 0, len = this.buttons.length; i < len; i++) {
48593                 var b = this.buttons[i];
48594                 var td = document.createElement('td');
48595                 td.className = 'x-form-btn-td';
48596                 b.render(tr.appendChild(td));
48597             }
48598         }
48599         if(this.monitorValid){ // initialize after render
48600             this.startMonitoring();
48601         }
48602         this.fireEvent('rendered', this);
48603         return this;
48604     },
48605
48606     /**
48607      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48608      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48609      * object or a valid Roo.DomHelper element config
48610      * @param {Function} handler The function called when the button is clicked
48611      * @param {Object} scope (optional) The scope of the handler function
48612      * @return {Roo.Button}
48613      */
48614     addButton : function(config, handler, scope){
48615         var bc = {
48616             handler: handler,
48617             scope: scope,
48618             minWidth: this.minButtonWidth,
48619             hideParent:true
48620         };
48621         if(typeof config == "string"){
48622             bc.text = config;
48623         }else{
48624             Roo.apply(bc, config);
48625         }
48626         var btn = new Roo.Button(null, bc);
48627         this.buttons.push(btn);
48628         return btn;
48629     },
48630
48631      /**
48632      * Adds a series of form elements (using the xtype property as the factory method.
48633      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48634      * @param {Object} config 
48635      */
48636     
48637     addxtype : function()
48638     {
48639         var ar = Array.prototype.slice.call(arguments, 0);
48640         var ret = false;
48641         for(var i = 0; i < ar.length; i++) {
48642             if (!ar[i]) {
48643                 continue; // skip -- if this happends something invalid got sent, we 
48644                 // should ignore it, as basically that interface element will not show up
48645                 // and that should be pretty obvious!!
48646             }
48647             
48648             if (Roo.form[ar[i].xtype]) {
48649                 ar[i].form = this;
48650                 var fe = Roo.factory(ar[i], Roo.form);
48651                 if (!ret) {
48652                     ret = fe;
48653                 }
48654                 fe.form = this;
48655                 if (fe.store) {
48656                     fe.store.form = this;
48657                 }
48658                 if (fe.isLayout) {  
48659                          
48660                     this.start(fe);
48661                     this.allItems.push(fe);
48662                     if (fe.items && fe.addxtype) {
48663                         fe.addxtype.apply(fe, fe.items);
48664                         delete fe.items;
48665                     }
48666                      this.end();
48667                     continue;
48668                 }
48669                 
48670                 
48671                  
48672                 this.add(fe);
48673               //  console.log('adding ' + ar[i].xtype);
48674             }
48675             if (ar[i].xtype == 'Button') {  
48676                 //console.log('adding button');
48677                 //console.log(ar[i]);
48678                 this.addButton(ar[i]);
48679                 this.allItems.push(fe);
48680                 continue;
48681             }
48682             
48683             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48684                 alert('end is not supported on xtype any more, use items');
48685             //    this.end();
48686             //    //console.log('adding end');
48687             }
48688             
48689         }
48690         return ret;
48691     },
48692     
48693     /**
48694      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48695      * option "monitorValid"
48696      */
48697     startMonitoring : function(){
48698         if(!this.bound){
48699             this.bound = true;
48700             Roo.TaskMgr.start({
48701                 run : this.bindHandler,
48702                 interval : this.monitorPoll || 200,
48703                 scope: this
48704             });
48705         }
48706     },
48707
48708     /**
48709      * Stops monitoring of the valid state of this form
48710      */
48711     stopMonitoring : function(){
48712         this.bound = false;
48713     },
48714
48715     // private
48716     bindHandler : function(){
48717         if(!this.bound){
48718             return false; // stops binding
48719         }
48720         var valid = true;
48721         this.items.each(function(f){
48722             if(!f.isValid(true)){
48723                 valid = false;
48724                 return false;
48725             }
48726         });
48727         for(var i = 0, len = this.buttons.length; i < len; i++){
48728             var btn = this.buttons[i];
48729             if(btn.formBind === true && btn.disabled === valid){
48730                 btn.setDisabled(!valid);
48731             }
48732         }
48733         this.fireEvent('clientvalidation', this, valid);
48734     }
48735     
48736     
48737     
48738     
48739     
48740     
48741     
48742     
48743 });
48744
48745
48746 // back compat
48747 Roo.Form = Roo.form.Form;
48748 /*
48749  * Based on:
48750  * Ext JS Library 1.1.1
48751  * Copyright(c) 2006-2007, Ext JS, LLC.
48752  *
48753  * Originally Released Under LGPL - original licence link has changed is not relivant.
48754  *
48755  * Fork - LGPL
48756  * <script type="text/javascript">
48757  */
48758
48759 // as we use this in bootstrap.
48760 Roo.namespace('Roo.form');
48761  /**
48762  * @class Roo.form.Action
48763  * Internal Class used to handle form actions
48764  * @constructor
48765  * @param {Roo.form.BasicForm} el The form element or its id
48766  * @param {Object} config Configuration options
48767  */
48768
48769  
48770  
48771 // define the action interface
48772 Roo.form.Action = function(form, options){
48773     this.form = form;
48774     this.options = options || {};
48775 };
48776 /**
48777  * Client Validation Failed
48778  * @const 
48779  */
48780 Roo.form.Action.CLIENT_INVALID = 'client';
48781 /**
48782  * Server Validation Failed
48783  * @const 
48784  */
48785 Roo.form.Action.SERVER_INVALID = 'server';
48786  /**
48787  * Connect to Server Failed
48788  * @const 
48789  */
48790 Roo.form.Action.CONNECT_FAILURE = 'connect';
48791 /**
48792  * Reading Data from Server Failed
48793  * @const 
48794  */
48795 Roo.form.Action.LOAD_FAILURE = 'load';
48796
48797 Roo.form.Action.prototype = {
48798     type : 'default',
48799     failureType : undefined,
48800     response : undefined,
48801     result : undefined,
48802
48803     // interface method
48804     run : function(options){
48805
48806     },
48807
48808     // interface method
48809     success : function(response){
48810
48811     },
48812
48813     // interface method
48814     handleResponse : function(response){
48815
48816     },
48817
48818     // default connection failure
48819     failure : function(response){
48820         
48821         this.response = response;
48822         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48823         this.form.afterAction(this, false);
48824     },
48825
48826     processResponse : function(response){
48827         this.response = response;
48828         if(!response.responseText){
48829             return true;
48830         }
48831         this.result = this.handleResponse(response);
48832         return this.result;
48833     },
48834
48835     // utility functions used internally
48836     getUrl : function(appendParams){
48837         var url = this.options.url || this.form.url || this.form.el.dom.action;
48838         if(appendParams){
48839             var p = this.getParams();
48840             if(p){
48841                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48842             }
48843         }
48844         return url;
48845     },
48846
48847     getMethod : function(){
48848         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48849     },
48850
48851     getParams : function(){
48852         var bp = this.form.baseParams;
48853         var p = this.options.params;
48854         if(p){
48855             if(typeof p == "object"){
48856                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48857             }else if(typeof p == 'string' && bp){
48858                 p += '&' + Roo.urlEncode(bp);
48859             }
48860         }else if(bp){
48861             p = Roo.urlEncode(bp);
48862         }
48863         return p;
48864     },
48865
48866     createCallback : function(){
48867         return {
48868             success: this.success,
48869             failure: this.failure,
48870             scope: this,
48871             timeout: (this.form.timeout*1000),
48872             upload: this.form.fileUpload ? this.success : undefined
48873         };
48874     }
48875 };
48876
48877 Roo.form.Action.Submit = function(form, options){
48878     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
48879 };
48880
48881 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
48882     type : 'submit',
48883
48884     haveProgress : false,
48885     uploadComplete : false,
48886     
48887     // uploadProgress indicator.
48888     uploadProgress : function()
48889     {
48890         if (!this.form.progressUrl) {
48891             return;
48892         }
48893         
48894         if (!this.haveProgress) {
48895             Roo.MessageBox.progress("Uploading", "Uploading");
48896         }
48897         if (this.uploadComplete) {
48898            Roo.MessageBox.hide();
48899            return;
48900         }
48901         
48902         this.haveProgress = true;
48903    
48904         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
48905         
48906         var c = new Roo.data.Connection();
48907         c.request({
48908             url : this.form.progressUrl,
48909             params: {
48910                 id : uid
48911             },
48912             method: 'GET',
48913             success : function(req){
48914                //console.log(data);
48915                 var rdata = false;
48916                 var edata;
48917                 try  {
48918                    rdata = Roo.decode(req.responseText)
48919                 } catch (e) {
48920                     Roo.log("Invalid data from server..");
48921                     Roo.log(edata);
48922                     return;
48923                 }
48924                 if (!rdata || !rdata.success) {
48925                     Roo.log(rdata);
48926                     Roo.MessageBox.alert(Roo.encode(rdata));
48927                     return;
48928                 }
48929                 var data = rdata.data;
48930                 
48931                 if (this.uploadComplete) {
48932                    Roo.MessageBox.hide();
48933                    return;
48934                 }
48935                    
48936                 if (data){
48937                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
48938                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
48939                     );
48940                 }
48941                 this.uploadProgress.defer(2000,this);
48942             },
48943        
48944             failure: function(data) {
48945                 Roo.log('progress url failed ');
48946                 Roo.log(data);
48947             },
48948             scope : this
48949         });
48950            
48951     },
48952     
48953     
48954     run : function()
48955     {
48956         // run get Values on the form, so it syncs any secondary forms.
48957         this.form.getValues();
48958         
48959         var o = this.options;
48960         var method = this.getMethod();
48961         var isPost = method == 'POST';
48962         if(o.clientValidation === false || this.form.isValid()){
48963             
48964             if (this.form.progressUrl) {
48965                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
48966                     (new Date() * 1) + '' + Math.random());
48967                     
48968             } 
48969             
48970             
48971             Roo.Ajax.request(Roo.apply(this.createCallback(), {
48972                 form:this.form.el.dom,
48973                 url:this.getUrl(!isPost),
48974                 method: method,
48975                 params:isPost ? this.getParams() : null,
48976                 isUpload: this.form.fileUpload,
48977                 formData : this.form.formData
48978             }));
48979             
48980             this.uploadProgress();
48981
48982         }else if (o.clientValidation !== false){ // client validation failed
48983             this.failureType = Roo.form.Action.CLIENT_INVALID;
48984             this.form.afterAction(this, false);
48985         }
48986     },
48987
48988     success : function(response)
48989     {
48990         this.uploadComplete= true;
48991         if (this.haveProgress) {
48992             Roo.MessageBox.hide();
48993         }
48994         
48995         
48996         var result = this.processResponse(response);
48997         if(result === true || result.success){
48998             this.form.afterAction(this, true);
48999             return;
49000         }
49001         if(result.errors){
49002             this.form.markInvalid(result.errors);
49003             this.failureType = Roo.form.Action.SERVER_INVALID;
49004         }
49005         this.form.afterAction(this, false);
49006     },
49007     failure : function(response)
49008     {
49009         this.uploadComplete= true;
49010         if (this.haveProgress) {
49011             Roo.MessageBox.hide();
49012         }
49013         
49014         this.response = response;
49015         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49016         this.form.afterAction(this, false);
49017     },
49018     
49019     handleResponse : function(response){
49020         if(this.form.errorReader){
49021             var rs = this.form.errorReader.read(response);
49022             var errors = [];
49023             if(rs.records){
49024                 for(var i = 0, len = rs.records.length; i < len; i++) {
49025                     var r = rs.records[i];
49026                     errors[i] = r.data;
49027                 }
49028             }
49029             if(errors.length < 1){
49030                 errors = null;
49031             }
49032             return {
49033                 success : rs.success,
49034                 errors : errors
49035             };
49036         }
49037         var ret = false;
49038         try {
49039             ret = Roo.decode(response.responseText);
49040         } catch (e) {
49041             ret = {
49042                 success: false,
49043                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49044                 errors : []
49045             };
49046         }
49047         return ret;
49048         
49049     }
49050 });
49051
49052
49053 Roo.form.Action.Load = function(form, options){
49054     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49055     this.reader = this.form.reader;
49056 };
49057
49058 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49059     type : 'load',
49060
49061     run : function(){
49062         
49063         Roo.Ajax.request(Roo.apply(
49064                 this.createCallback(), {
49065                     method:this.getMethod(),
49066                     url:this.getUrl(false),
49067                     params:this.getParams()
49068         }));
49069     },
49070
49071     success : function(response){
49072         
49073         var result = this.processResponse(response);
49074         if(result === true || !result.success || !result.data){
49075             this.failureType = Roo.form.Action.LOAD_FAILURE;
49076             this.form.afterAction(this, false);
49077             return;
49078         }
49079         this.form.clearInvalid();
49080         this.form.setValues(result.data);
49081         this.form.afterAction(this, true);
49082     },
49083
49084     handleResponse : function(response){
49085         if(this.form.reader){
49086             var rs = this.form.reader.read(response);
49087             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49088             return {
49089                 success : rs.success,
49090                 data : data
49091             };
49092         }
49093         return Roo.decode(response.responseText);
49094     }
49095 });
49096
49097 Roo.form.Action.ACTION_TYPES = {
49098     'load' : Roo.form.Action.Load,
49099     'submit' : Roo.form.Action.Submit
49100 };/*
49101  * Based on:
49102  * Ext JS Library 1.1.1
49103  * Copyright(c) 2006-2007, Ext JS, LLC.
49104  *
49105  * Originally Released Under LGPL - original licence link has changed is not relivant.
49106  *
49107  * Fork - LGPL
49108  * <script type="text/javascript">
49109  */
49110  
49111 /**
49112  * @class Roo.form.Layout
49113  * @extends Roo.Component
49114  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49115  * @constructor
49116  * @param {Object} config Configuration options
49117  */
49118 Roo.form.Layout = function(config){
49119     var xitems = [];
49120     if (config.items) {
49121         xitems = config.items;
49122         delete config.items;
49123     }
49124     Roo.form.Layout.superclass.constructor.call(this, config);
49125     this.stack = [];
49126     Roo.each(xitems, this.addxtype, this);
49127      
49128 };
49129
49130 Roo.extend(Roo.form.Layout, Roo.Component, {
49131     /**
49132      * @cfg {String/Object} autoCreate
49133      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49134      */
49135     /**
49136      * @cfg {String/Object/Function} style
49137      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49138      * a function which returns such a specification.
49139      */
49140     /**
49141      * @cfg {String} labelAlign
49142      * Valid values are "left," "top" and "right" (defaults to "left")
49143      */
49144     /**
49145      * @cfg {Number} labelWidth
49146      * Fixed width in pixels of all field labels (defaults to undefined)
49147      */
49148     /**
49149      * @cfg {Boolean} clear
49150      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49151      */
49152     clear : true,
49153     /**
49154      * @cfg {String} labelSeparator
49155      * The separator to use after field labels (defaults to ':')
49156      */
49157     labelSeparator : ':',
49158     /**
49159      * @cfg {Boolean} hideLabels
49160      * True to suppress the display of field labels in this layout (defaults to false)
49161      */
49162     hideLabels : false,
49163
49164     // private
49165     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49166     
49167     isLayout : true,
49168     
49169     // private
49170     onRender : function(ct, position){
49171         if(this.el){ // from markup
49172             this.el = Roo.get(this.el);
49173         }else {  // generate
49174             var cfg = this.getAutoCreate();
49175             this.el = ct.createChild(cfg, position);
49176         }
49177         if(this.style){
49178             this.el.applyStyles(this.style);
49179         }
49180         if(this.labelAlign){
49181             this.el.addClass('x-form-label-'+this.labelAlign);
49182         }
49183         if(this.hideLabels){
49184             this.labelStyle = "display:none";
49185             this.elementStyle = "padding-left:0;";
49186         }else{
49187             if(typeof this.labelWidth == 'number'){
49188                 this.labelStyle = "width:"+this.labelWidth+"px;";
49189                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49190             }
49191             if(this.labelAlign == 'top'){
49192                 this.labelStyle = "width:auto;";
49193                 this.elementStyle = "padding-left:0;";
49194             }
49195         }
49196         var stack = this.stack;
49197         var slen = stack.length;
49198         if(slen > 0){
49199             if(!this.fieldTpl){
49200                 var t = new Roo.Template(
49201                     '<div class="x-form-item {5}">',
49202                         '<label for="{0}" style="{2}">{1}{4}</label>',
49203                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49204                         '</div>',
49205                     '</div><div class="x-form-clear-left"></div>'
49206                 );
49207                 t.disableFormats = true;
49208                 t.compile();
49209                 Roo.form.Layout.prototype.fieldTpl = t;
49210             }
49211             for(var i = 0; i < slen; i++) {
49212                 if(stack[i].isFormField){
49213                     this.renderField(stack[i]);
49214                 }else{
49215                     this.renderComponent(stack[i]);
49216                 }
49217             }
49218         }
49219         if(this.clear){
49220             this.el.createChild({cls:'x-form-clear'});
49221         }
49222     },
49223
49224     // private
49225     renderField : function(f){
49226         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49227                f.id, //0
49228                f.fieldLabel, //1
49229                f.labelStyle||this.labelStyle||'', //2
49230                this.elementStyle||'', //3
49231                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49232                f.itemCls||this.itemCls||''  //5
49233        ], true).getPrevSibling());
49234     },
49235
49236     // private
49237     renderComponent : function(c){
49238         c.render(c.isLayout ? this.el : this.el.createChild());    
49239     },
49240     /**
49241      * Adds a object form elements (using the xtype property as the factory method.)
49242      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49243      * @param {Object} config 
49244      */
49245     addxtype : function(o)
49246     {
49247         // create the lement.
49248         o.form = this.form;
49249         var fe = Roo.factory(o, Roo.form);
49250         this.form.allItems.push(fe);
49251         this.stack.push(fe);
49252         
49253         if (fe.isFormField) {
49254             this.form.items.add(fe);
49255         }
49256          
49257         return fe;
49258     }
49259 });
49260
49261 /**
49262  * @class Roo.form.Column
49263  * @extends Roo.form.Layout
49264  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49265  * @constructor
49266  * @param {Object} config Configuration options
49267  */
49268 Roo.form.Column = function(config){
49269     Roo.form.Column.superclass.constructor.call(this, config);
49270 };
49271
49272 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49273     /**
49274      * @cfg {Number/String} width
49275      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49276      */
49277     /**
49278      * @cfg {String/Object} autoCreate
49279      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49280      */
49281
49282     // private
49283     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49284
49285     // private
49286     onRender : function(ct, position){
49287         Roo.form.Column.superclass.onRender.call(this, ct, position);
49288         if(this.width){
49289             this.el.setWidth(this.width);
49290         }
49291     }
49292 });
49293
49294
49295 /**
49296  * @class Roo.form.Row
49297  * @extends Roo.form.Layout
49298  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49299  * @constructor
49300  * @param {Object} config Configuration options
49301  */
49302
49303  
49304 Roo.form.Row = function(config){
49305     Roo.form.Row.superclass.constructor.call(this, config);
49306 };
49307  
49308 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49309       /**
49310      * @cfg {Number/String} width
49311      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49312      */
49313     /**
49314      * @cfg {Number/String} height
49315      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49316      */
49317     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49318     
49319     padWidth : 20,
49320     // private
49321     onRender : function(ct, position){
49322         //console.log('row render');
49323         if(!this.rowTpl){
49324             var t = new Roo.Template(
49325                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49326                     '<label for="{0}" style="{2}">{1}{4}</label>',
49327                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49328                     '</div>',
49329                 '</div>'
49330             );
49331             t.disableFormats = true;
49332             t.compile();
49333             Roo.form.Layout.prototype.rowTpl = t;
49334         }
49335         this.fieldTpl = this.rowTpl;
49336         
49337         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49338         var labelWidth = 100;
49339         
49340         if ((this.labelAlign != 'top')) {
49341             if (typeof this.labelWidth == 'number') {
49342                 labelWidth = this.labelWidth
49343             }
49344             this.padWidth =  20 + labelWidth;
49345             
49346         }
49347         
49348         Roo.form.Column.superclass.onRender.call(this, ct, position);
49349         if(this.width){
49350             this.el.setWidth(this.width);
49351         }
49352         if(this.height){
49353             this.el.setHeight(this.height);
49354         }
49355     },
49356     
49357     // private
49358     renderField : function(f){
49359         f.fieldEl = this.fieldTpl.append(this.el, [
49360                f.id, f.fieldLabel,
49361                f.labelStyle||this.labelStyle||'',
49362                this.elementStyle||'',
49363                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49364                f.itemCls||this.itemCls||'',
49365                f.width ? f.width + this.padWidth : 160 + this.padWidth
49366        ],true);
49367     }
49368 });
49369  
49370
49371 /**
49372  * @class Roo.form.FieldSet
49373  * @extends Roo.form.Layout
49374  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49375  * @constructor
49376  * @param {Object} config Configuration options
49377  */
49378 Roo.form.FieldSet = function(config){
49379     Roo.form.FieldSet.superclass.constructor.call(this, config);
49380 };
49381
49382 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49383     /**
49384      * @cfg {String} legend
49385      * The text to display as the legend for the FieldSet (defaults to '')
49386      */
49387     /**
49388      * @cfg {String/Object} autoCreate
49389      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49390      */
49391
49392     // private
49393     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49394
49395     // private
49396     onRender : function(ct, position){
49397         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49398         if(this.legend){
49399             this.setLegend(this.legend);
49400         }
49401     },
49402
49403     // private
49404     setLegend : function(text){
49405         if(this.rendered){
49406             this.el.child('legend').update(text);
49407         }
49408     }
49409 });/*
49410  * Based on:
49411  * Ext JS Library 1.1.1
49412  * Copyright(c) 2006-2007, Ext JS, LLC.
49413  *
49414  * Originally Released Under LGPL - original licence link has changed is not relivant.
49415  *
49416  * Fork - LGPL
49417  * <script type="text/javascript">
49418  */
49419 /**
49420  * @class Roo.form.VTypes
49421  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49422  * @singleton
49423  */
49424 Roo.form.VTypes = function(){
49425     // closure these in so they are only created once.
49426     var alpha = /^[a-zA-Z_]+$/;
49427     var alphanum = /^[a-zA-Z0-9_]+$/;
49428     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49429     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49430
49431     // All these messages and functions are configurable
49432     return {
49433         /**
49434          * The function used to validate email addresses
49435          * @param {String} value The email address
49436          */
49437         'email' : function(v){
49438             return email.test(v);
49439         },
49440         /**
49441          * The error text to display when the email validation function returns false
49442          * @type String
49443          */
49444         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49445         /**
49446          * The keystroke filter mask to be applied on email input
49447          * @type RegExp
49448          */
49449         'emailMask' : /[a-z0-9_\.\-@]/i,
49450
49451         /**
49452          * The function used to validate URLs
49453          * @param {String} value The URL
49454          */
49455         'url' : function(v){
49456             return url.test(v);
49457         },
49458         /**
49459          * The error text to display when the url validation function returns false
49460          * @type String
49461          */
49462         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49463         
49464         /**
49465          * The function used to validate alpha values
49466          * @param {String} value The value
49467          */
49468         'alpha' : function(v){
49469             return alpha.test(v);
49470         },
49471         /**
49472          * The error text to display when the alpha validation function returns false
49473          * @type String
49474          */
49475         'alphaText' : 'This field should only contain letters and _',
49476         /**
49477          * The keystroke filter mask to be applied on alpha input
49478          * @type RegExp
49479          */
49480         'alphaMask' : /[a-z_]/i,
49481
49482         /**
49483          * The function used to validate alphanumeric values
49484          * @param {String} value The value
49485          */
49486         'alphanum' : function(v){
49487             return alphanum.test(v);
49488         },
49489         /**
49490          * The error text to display when the alphanumeric validation function returns false
49491          * @type String
49492          */
49493         'alphanumText' : 'This field should only contain letters, numbers and _',
49494         /**
49495          * The keystroke filter mask to be applied on alphanumeric input
49496          * @type RegExp
49497          */
49498         'alphanumMask' : /[a-z0-9_]/i
49499     };
49500 }();//<script type="text/javascript">
49501
49502 /**
49503  * @class Roo.form.FCKeditor
49504  * @extends Roo.form.TextArea
49505  * Wrapper around the FCKEditor http://www.fckeditor.net
49506  * @constructor
49507  * Creates a new FCKeditor
49508  * @param {Object} config Configuration options
49509  */
49510 Roo.form.FCKeditor = function(config){
49511     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49512     this.addEvents({
49513          /**
49514          * @event editorinit
49515          * Fired when the editor is initialized - you can add extra handlers here..
49516          * @param {FCKeditor} this
49517          * @param {Object} the FCK object.
49518          */
49519         editorinit : true
49520     });
49521     
49522     
49523 };
49524 Roo.form.FCKeditor.editors = { };
49525 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49526 {
49527     //defaultAutoCreate : {
49528     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49529     //},
49530     // private
49531     /**
49532      * @cfg {Object} fck options - see fck manual for details.
49533      */
49534     fckconfig : false,
49535     
49536     /**
49537      * @cfg {Object} fck toolbar set (Basic or Default)
49538      */
49539     toolbarSet : 'Basic',
49540     /**
49541      * @cfg {Object} fck BasePath
49542      */ 
49543     basePath : '/fckeditor/',
49544     
49545     
49546     frame : false,
49547     
49548     value : '',
49549     
49550    
49551     onRender : function(ct, position)
49552     {
49553         if(!this.el){
49554             this.defaultAutoCreate = {
49555                 tag: "textarea",
49556                 style:"width:300px;height:60px;",
49557                 autocomplete: "new-password"
49558             };
49559         }
49560         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49561         /*
49562         if(this.grow){
49563             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49564             if(this.preventScrollbars){
49565                 this.el.setStyle("overflow", "hidden");
49566             }
49567             this.el.setHeight(this.growMin);
49568         }
49569         */
49570         //console.log('onrender' + this.getId() );
49571         Roo.form.FCKeditor.editors[this.getId()] = this;
49572          
49573
49574         this.replaceTextarea() ;
49575         
49576     },
49577     
49578     getEditor : function() {
49579         return this.fckEditor;
49580     },
49581     /**
49582      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49583      * @param {Mixed} value The value to set
49584      */
49585     
49586     
49587     setValue : function(value)
49588     {
49589         //console.log('setValue: ' + value);
49590         
49591         if(typeof(value) == 'undefined') { // not sure why this is happending...
49592             return;
49593         }
49594         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49595         
49596         //if(!this.el || !this.getEditor()) {
49597         //    this.value = value;
49598             //this.setValue.defer(100,this,[value]);    
49599         //    return;
49600         //} 
49601         
49602         if(!this.getEditor()) {
49603             return;
49604         }
49605         
49606         this.getEditor().SetData(value);
49607         
49608         //
49609
49610     },
49611
49612     /**
49613      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49614      * @return {Mixed} value The field value
49615      */
49616     getValue : function()
49617     {
49618         
49619         if (this.frame && this.frame.dom.style.display == 'none') {
49620             return Roo.form.FCKeditor.superclass.getValue.call(this);
49621         }
49622         
49623         if(!this.el || !this.getEditor()) {
49624            
49625            // this.getValue.defer(100,this); 
49626             return this.value;
49627         }
49628        
49629         
49630         var value=this.getEditor().GetData();
49631         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49632         return Roo.form.FCKeditor.superclass.getValue.call(this);
49633         
49634
49635     },
49636
49637     /**
49638      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49639      * @return {Mixed} value The field value
49640      */
49641     getRawValue : function()
49642     {
49643         if (this.frame && this.frame.dom.style.display == 'none') {
49644             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49645         }
49646         
49647         if(!this.el || !this.getEditor()) {
49648             //this.getRawValue.defer(100,this); 
49649             return this.value;
49650             return;
49651         }
49652         
49653         
49654         
49655         var value=this.getEditor().GetData();
49656         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49657         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49658          
49659     },
49660     
49661     setSize : function(w,h) {
49662         
49663         
49664         
49665         //if (this.frame && this.frame.dom.style.display == 'none') {
49666         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49667         //    return;
49668         //}
49669         //if(!this.el || !this.getEditor()) {
49670         //    this.setSize.defer(100,this, [w,h]); 
49671         //    return;
49672         //}
49673         
49674         
49675         
49676         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49677         
49678         this.frame.dom.setAttribute('width', w);
49679         this.frame.dom.setAttribute('height', h);
49680         this.frame.setSize(w,h);
49681         
49682     },
49683     
49684     toggleSourceEdit : function(value) {
49685         
49686       
49687          
49688         this.el.dom.style.display = value ? '' : 'none';
49689         this.frame.dom.style.display = value ?  'none' : '';
49690         
49691     },
49692     
49693     
49694     focus: function(tag)
49695     {
49696         if (this.frame.dom.style.display == 'none') {
49697             return Roo.form.FCKeditor.superclass.focus.call(this);
49698         }
49699         if(!this.el || !this.getEditor()) {
49700             this.focus.defer(100,this, [tag]); 
49701             return;
49702         }
49703         
49704         
49705         
49706         
49707         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49708         this.getEditor().Focus();
49709         if (tgs.length) {
49710             if (!this.getEditor().Selection.GetSelection()) {
49711                 this.focus.defer(100,this, [tag]); 
49712                 return;
49713             }
49714             
49715             
49716             var r = this.getEditor().EditorDocument.createRange();
49717             r.setStart(tgs[0],0);
49718             r.setEnd(tgs[0],0);
49719             this.getEditor().Selection.GetSelection().removeAllRanges();
49720             this.getEditor().Selection.GetSelection().addRange(r);
49721             this.getEditor().Focus();
49722         }
49723         
49724     },
49725     
49726     
49727     
49728     replaceTextarea : function()
49729     {
49730         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49731             return ;
49732         }
49733         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49734         //{
49735             // We must check the elements firstly using the Id and then the name.
49736         var oTextarea = document.getElementById( this.getId() );
49737         
49738         var colElementsByName = document.getElementsByName( this.getId() ) ;
49739          
49740         oTextarea.style.display = 'none' ;
49741
49742         if ( oTextarea.tabIndex ) {            
49743             this.TabIndex = oTextarea.tabIndex ;
49744         }
49745         
49746         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49747         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49748         this.frame = Roo.get(this.getId() + '___Frame')
49749     },
49750     
49751     _getConfigHtml : function()
49752     {
49753         var sConfig = '' ;
49754
49755         for ( var o in this.fckconfig ) {
49756             sConfig += sConfig.length > 0  ? '&amp;' : '';
49757             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49758         }
49759
49760         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49761     },
49762     
49763     
49764     _getIFrameHtml : function()
49765     {
49766         var sFile = 'fckeditor.html' ;
49767         /* no idea what this is about..
49768         try
49769         {
49770             if ( (/fcksource=true/i).test( window.top.location.search ) )
49771                 sFile = 'fckeditor.original.html' ;
49772         }
49773         catch (e) { 
49774         */
49775
49776         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49777         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49778         
49779         
49780         var html = '<iframe id="' + this.getId() +
49781             '___Frame" src="' + sLink +
49782             '" width="' + this.width +
49783             '" height="' + this.height + '"' +
49784             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49785             ' frameborder="0" scrolling="no"></iframe>' ;
49786
49787         return html ;
49788     },
49789     
49790     _insertHtmlBefore : function( html, element )
49791     {
49792         if ( element.insertAdjacentHTML )       {
49793             // IE
49794             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49795         } else { // Gecko
49796             var oRange = document.createRange() ;
49797             oRange.setStartBefore( element ) ;
49798             var oFragment = oRange.createContextualFragment( html );
49799             element.parentNode.insertBefore( oFragment, element ) ;
49800         }
49801     }
49802     
49803     
49804   
49805     
49806     
49807     
49808     
49809
49810 });
49811
49812 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49813
49814 function FCKeditor_OnComplete(editorInstance){
49815     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49816     f.fckEditor = editorInstance;
49817     //console.log("loaded");
49818     f.fireEvent('editorinit', f, editorInstance);
49819
49820   
49821
49822  
49823
49824
49825
49826
49827
49828
49829
49830
49831
49832
49833
49834
49835
49836
49837
49838 //<script type="text/javascript">
49839 /**
49840  * @class Roo.form.GridField
49841  * @extends Roo.form.Field
49842  * Embed a grid (or editable grid into a form)
49843  * STATUS ALPHA
49844  * 
49845  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49846  * it needs 
49847  * xgrid.store = Roo.data.Store
49848  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49849  * xgrid.store.reader = Roo.data.JsonReader 
49850  * 
49851  * 
49852  * @constructor
49853  * Creates a new GridField
49854  * @param {Object} config Configuration options
49855  */
49856 Roo.form.GridField = function(config){
49857     Roo.form.GridField.superclass.constructor.call(this, config);
49858      
49859 };
49860
49861 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49862     /**
49863      * @cfg {Number} width  - used to restrict width of grid..
49864      */
49865     width : 100,
49866     /**
49867      * @cfg {Number} height - used to restrict height of grid..
49868      */
49869     height : 50,
49870      /**
49871      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
49872          * 
49873          *}
49874      */
49875     xgrid : false, 
49876     /**
49877      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49878      * {tag: "input", type: "checkbox", autocomplete: "off"})
49879      */
49880    // defaultAutoCreate : { tag: 'div' },
49881     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
49882     /**
49883      * @cfg {String} addTitle Text to include for adding a title.
49884      */
49885     addTitle : false,
49886     //
49887     onResize : function(){
49888         Roo.form.Field.superclass.onResize.apply(this, arguments);
49889     },
49890
49891     initEvents : function(){
49892         // Roo.form.Checkbox.superclass.initEvents.call(this);
49893         // has no events...
49894        
49895     },
49896
49897
49898     getResizeEl : function(){
49899         return this.wrap;
49900     },
49901
49902     getPositionEl : function(){
49903         return this.wrap;
49904     },
49905
49906     // private
49907     onRender : function(ct, position){
49908         
49909         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
49910         var style = this.style;
49911         delete this.style;
49912         
49913         Roo.form.GridField.superclass.onRender.call(this, ct, position);
49914         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
49915         this.viewEl = this.wrap.createChild({ tag: 'div' });
49916         if (style) {
49917             this.viewEl.applyStyles(style);
49918         }
49919         if (this.width) {
49920             this.viewEl.setWidth(this.width);
49921         }
49922         if (this.height) {
49923             this.viewEl.setHeight(this.height);
49924         }
49925         //if(this.inputValue !== undefined){
49926         //this.setValue(this.value);
49927         
49928         
49929         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
49930         
49931         
49932         this.grid.render();
49933         this.grid.getDataSource().on('remove', this.refreshValue, this);
49934         this.grid.getDataSource().on('update', this.refreshValue, this);
49935         this.grid.on('afteredit', this.refreshValue, this);
49936  
49937     },
49938      
49939     
49940     /**
49941      * Sets the value of the item. 
49942      * @param {String} either an object  or a string..
49943      */
49944     setValue : function(v){
49945         //this.value = v;
49946         v = v || []; // empty set..
49947         // this does not seem smart - it really only affects memoryproxy grids..
49948         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
49949             var ds = this.grid.getDataSource();
49950             // assumes a json reader..
49951             var data = {}
49952             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
49953             ds.loadData( data);
49954         }
49955         // clear selection so it does not get stale.
49956         if (this.grid.sm) { 
49957             this.grid.sm.clearSelections();
49958         }
49959         
49960         Roo.form.GridField.superclass.setValue.call(this, v);
49961         this.refreshValue();
49962         // should load data in the grid really....
49963     },
49964     
49965     // private
49966     refreshValue: function() {
49967          var val = [];
49968         this.grid.getDataSource().each(function(r) {
49969             val.push(r.data);
49970         });
49971         this.el.dom.value = Roo.encode(val);
49972     }
49973     
49974      
49975     
49976     
49977 });/*
49978  * Based on:
49979  * Ext JS Library 1.1.1
49980  * Copyright(c) 2006-2007, Ext JS, LLC.
49981  *
49982  * Originally Released Under LGPL - original licence link has changed is not relivant.
49983  *
49984  * Fork - LGPL
49985  * <script type="text/javascript">
49986  */
49987 /**
49988  * @class Roo.form.DisplayField
49989  * @extends Roo.form.Field
49990  * A generic Field to display non-editable data.
49991  * @cfg {Boolean} closable (true|false) default false
49992  * @constructor
49993  * Creates a new Display Field item.
49994  * @param {Object} config Configuration options
49995  */
49996 Roo.form.DisplayField = function(config){
49997     Roo.form.DisplayField.superclass.constructor.call(this, config);
49998     
49999     this.addEvents({
50000         /**
50001          * @event close
50002          * Fires after the click the close btn
50003              * @param {Roo.form.DisplayField} this
50004              */
50005         close : true
50006     });
50007 };
50008
50009 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50010     inputType:      'hidden',
50011     allowBlank:     true,
50012     readOnly:         true,
50013     
50014  
50015     /**
50016      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50017      */
50018     focusClass : undefined,
50019     /**
50020      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50021      */
50022     fieldClass: 'x-form-field',
50023     
50024      /**
50025      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50026      */
50027     valueRenderer: undefined,
50028     
50029     width: 100,
50030     /**
50031      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50032      * {tag: "input", type: "checkbox", autocomplete: "off"})
50033      */
50034      
50035  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50036  
50037     closable : false,
50038     
50039     onResize : function(){
50040         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50041         
50042     },
50043
50044     initEvents : function(){
50045         // Roo.form.Checkbox.superclass.initEvents.call(this);
50046         // has no events...
50047         
50048         if(this.closable){
50049             this.closeEl.on('click', this.onClose, this);
50050         }
50051        
50052     },
50053
50054
50055     getResizeEl : function(){
50056         return this.wrap;
50057     },
50058
50059     getPositionEl : function(){
50060         return this.wrap;
50061     },
50062
50063     // private
50064     onRender : function(ct, position){
50065         
50066         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50067         //if(this.inputValue !== undefined){
50068         this.wrap = this.el.wrap();
50069         
50070         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50071         
50072         if(this.closable){
50073             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50074         }
50075         
50076         if (this.bodyStyle) {
50077             this.viewEl.applyStyles(this.bodyStyle);
50078         }
50079         //this.viewEl.setStyle('padding', '2px');
50080         
50081         this.setValue(this.value);
50082         
50083     },
50084 /*
50085     // private
50086     initValue : Roo.emptyFn,
50087
50088   */
50089
50090         // private
50091     onClick : function(){
50092         
50093     },
50094
50095     /**
50096      * Sets the checked state of the checkbox.
50097      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50098      */
50099     setValue : function(v){
50100         this.value = v;
50101         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50102         // this might be called before we have a dom element..
50103         if (!this.viewEl) {
50104             return;
50105         }
50106         this.viewEl.dom.innerHTML = html;
50107         Roo.form.DisplayField.superclass.setValue.call(this, v);
50108
50109     },
50110     
50111     onClose : function(e)
50112     {
50113         e.preventDefault();
50114         
50115         this.fireEvent('close', this);
50116     }
50117 });/*
50118  * 
50119  * Licence- LGPL
50120  * 
50121  */
50122
50123 /**
50124  * @class Roo.form.DayPicker
50125  * @extends Roo.form.Field
50126  * A Day picker show [M] [T] [W] ....
50127  * @constructor
50128  * Creates a new Day Picker
50129  * @param {Object} config Configuration options
50130  */
50131 Roo.form.DayPicker= function(config){
50132     Roo.form.DayPicker.superclass.constructor.call(this, config);
50133      
50134 };
50135
50136 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50137     /**
50138      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50139      */
50140     focusClass : undefined,
50141     /**
50142      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50143      */
50144     fieldClass: "x-form-field",
50145    
50146     /**
50147      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50148      * {tag: "input", type: "checkbox", autocomplete: "off"})
50149      */
50150     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50151     
50152    
50153     actionMode : 'viewEl', 
50154     //
50155     // private
50156  
50157     inputType : 'hidden',
50158     
50159      
50160     inputElement: false, // real input element?
50161     basedOn: false, // ????
50162     
50163     isFormField: true, // not sure where this is needed!!!!
50164
50165     onResize : function(){
50166         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50167         if(!this.boxLabel){
50168             this.el.alignTo(this.wrap, 'c-c');
50169         }
50170     },
50171
50172     initEvents : function(){
50173         Roo.form.Checkbox.superclass.initEvents.call(this);
50174         this.el.on("click", this.onClick,  this);
50175         this.el.on("change", this.onClick,  this);
50176     },
50177
50178
50179     getResizeEl : function(){
50180         return this.wrap;
50181     },
50182
50183     getPositionEl : function(){
50184         return this.wrap;
50185     },
50186
50187     
50188     // private
50189     onRender : function(ct, position){
50190         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50191        
50192         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50193         
50194         var r1 = '<table><tr>';
50195         var r2 = '<tr class="x-form-daypick-icons">';
50196         for (var i=0; i < 7; i++) {
50197             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50198             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50199         }
50200         
50201         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50202         viewEl.select('img').on('click', this.onClick, this);
50203         this.viewEl = viewEl;   
50204         
50205         
50206         // this will not work on Chrome!!!
50207         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50208         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50209         
50210         
50211           
50212
50213     },
50214
50215     // private
50216     initValue : Roo.emptyFn,
50217
50218     /**
50219      * Returns the checked state of the checkbox.
50220      * @return {Boolean} True if checked, else false
50221      */
50222     getValue : function(){
50223         return this.el.dom.value;
50224         
50225     },
50226
50227         // private
50228     onClick : function(e){ 
50229         //this.setChecked(!this.checked);
50230         Roo.get(e.target).toggleClass('x-menu-item-checked');
50231         this.refreshValue();
50232         //if(this.el.dom.checked != this.checked){
50233         //    this.setValue(this.el.dom.checked);
50234        // }
50235     },
50236     
50237     // private
50238     refreshValue : function()
50239     {
50240         var val = '';
50241         this.viewEl.select('img',true).each(function(e,i,n)  {
50242             val += e.is(".x-menu-item-checked") ? String(n) : '';
50243         });
50244         this.setValue(val, true);
50245     },
50246
50247     /**
50248      * Sets the checked state of the checkbox.
50249      * On is always based on a string comparison between inputValue and the param.
50250      * @param {Boolean/String} value - the value to set 
50251      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50252      */
50253     setValue : function(v,suppressEvent){
50254         if (!this.el.dom) {
50255             return;
50256         }
50257         var old = this.el.dom.value ;
50258         this.el.dom.value = v;
50259         if (suppressEvent) {
50260             return ;
50261         }
50262          
50263         // update display..
50264         this.viewEl.select('img',true).each(function(e,i,n)  {
50265             
50266             var on = e.is(".x-menu-item-checked");
50267             var newv = v.indexOf(String(n)) > -1;
50268             if (on != newv) {
50269                 e.toggleClass('x-menu-item-checked');
50270             }
50271             
50272         });
50273         
50274         
50275         this.fireEvent('change', this, v, old);
50276         
50277         
50278     },
50279    
50280     // handle setting of hidden value by some other method!!?!?
50281     setFromHidden: function()
50282     {
50283         if(!this.el){
50284             return;
50285         }
50286         //console.log("SET FROM HIDDEN");
50287         //alert('setFrom hidden');
50288         this.setValue(this.el.dom.value);
50289     },
50290     
50291     onDestroy : function()
50292     {
50293         if(this.viewEl){
50294             Roo.get(this.viewEl).remove();
50295         }
50296          
50297         Roo.form.DayPicker.superclass.onDestroy.call(this);
50298     }
50299
50300 });/*
50301  * RooJS Library 1.1.1
50302  * Copyright(c) 2008-2011  Alan Knowles
50303  *
50304  * License - LGPL
50305  */
50306  
50307
50308 /**
50309  * @class Roo.form.ComboCheck
50310  * @extends Roo.form.ComboBox
50311  * A combobox for multiple select items.
50312  *
50313  * FIXME - could do with a reset button..
50314  * 
50315  * @constructor
50316  * Create a new ComboCheck
50317  * @param {Object} config Configuration options
50318  */
50319 Roo.form.ComboCheck = function(config){
50320     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50321     // should verify some data...
50322     // like
50323     // hiddenName = required..
50324     // displayField = required
50325     // valudField == required
50326     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50327     var _t = this;
50328     Roo.each(req, function(e) {
50329         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50330             throw "Roo.form.ComboCheck : missing value for: " + e;
50331         }
50332     });
50333     
50334     
50335 };
50336
50337 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50338      
50339      
50340     editable : false,
50341      
50342     selectedClass: 'x-menu-item-checked', 
50343     
50344     // private
50345     onRender : function(ct, position){
50346         var _t = this;
50347         
50348         
50349         
50350         if(!this.tpl){
50351             var cls = 'x-combo-list';
50352
50353             
50354             this.tpl =  new Roo.Template({
50355                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50356                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50357                    '<span>{' + this.displayField + '}</span>' +
50358                     '</div>' 
50359                 
50360             });
50361         }
50362  
50363         
50364         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50365         this.view.singleSelect = false;
50366         this.view.multiSelect = true;
50367         this.view.toggleSelect = true;
50368         this.pageTb.add(new Roo.Toolbar.Fill(), {
50369             
50370             text: 'Done',
50371             handler: function()
50372             {
50373                 _t.collapse();
50374             }
50375         });
50376     },
50377     
50378     onViewOver : function(e, t){
50379         // do nothing...
50380         return;
50381         
50382     },
50383     
50384     onViewClick : function(doFocus,index){
50385         return;
50386         
50387     },
50388     select: function () {
50389         //Roo.log("SELECT CALLED");
50390     },
50391      
50392     selectByValue : function(xv, scrollIntoView){
50393         var ar = this.getValueArray();
50394         var sels = [];
50395         
50396         Roo.each(ar, function(v) {
50397             if(v === undefined || v === null){
50398                 return;
50399             }
50400             var r = this.findRecord(this.valueField, v);
50401             if(r){
50402                 sels.push(this.store.indexOf(r))
50403                 
50404             }
50405         },this);
50406         this.view.select(sels);
50407         return false;
50408     },
50409     
50410     
50411     
50412     onSelect : function(record, index){
50413        // Roo.log("onselect Called");
50414        // this is only called by the clear button now..
50415         this.view.clearSelections();
50416         this.setValue('[]');
50417         if (this.value != this.valueBefore) {
50418             this.fireEvent('change', this, this.value, this.valueBefore);
50419             this.valueBefore = this.value;
50420         }
50421     },
50422     getValueArray : function()
50423     {
50424         var ar = [] ;
50425         
50426         try {
50427             //Roo.log(this.value);
50428             if (typeof(this.value) == 'undefined') {
50429                 return [];
50430             }
50431             var ar = Roo.decode(this.value);
50432             return  ar instanceof Array ? ar : []; //?? valid?
50433             
50434         } catch(e) {
50435             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50436             return [];
50437         }
50438          
50439     },
50440     expand : function ()
50441     {
50442         
50443         Roo.form.ComboCheck.superclass.expand.call(this);
50444         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50445         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50446         
50447
50448     },
50449     
50450     collapse : function(){
50451         Roo.form.ComboCheck.superclass.collapse.call(this);
50452         var sl = this.view.getSelectedIndexes();
50453         var st = this.store;
50454         var nv = [];
50455         var tv = [];
50456         var r;
50457         Roo.each(sl, function(i) {
50458             r = st.getAt(i);
50459             nv.push(r.get(this.valueField));
50460         },this);
50461         this.setValue(Roo.encode(nv));
50462         if (this.value != this.valueBefore) {
50463
50464             this.fireEvent('change', this, this.value, this.valueBefore);
50465             this.valueBefore = this.value;
50466         }
50467         
50468     },
50469     
50470     setValue : function(v){
50471         // Roo.log(v);
50472         this.value = v;
50473         
50474         var vals = this.getValueArray();
50475         var tv = [];
50476         Roo.each(vals, function(k) {
50477             var r = this.findRecord(this.valueField, k);
50478             if(r){
50479                 tv.push(r.data[this.displayField]);
50480             }else if(this.valueNotFoundText !== undefined){
50481                 tv.push( this.valueNotFoundText );
50482             }
50483         },this);
50484        // Roo.log(tv);
50485         
50486         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50487         this.hiddenField.value = v;
50488         this.value = v;
50489     }
50490     
50491 });/*
50492  * Based on:
50493  * Ext JS Library 1.1.1
50494  * Copyright(c) 2006-2007, Ext JS, LLC.
50495  *
50496  * Originally Released Under LGPL - original licence link has changed is not relivant.
50497  *
50498  * Fork - LGPL
50499  * <script type="text/javascript">
50500  */
50501  
50502 /**
50503  * @class Roo.form.Signature
50504  * @extends Roo.form.Field
50505  * Signature field.  
50506  * @constructor
50507  * 
50508  * @param {Object} config Configuration options
50509  */
50510
50511 Roo.form.Signature = function(config){
50512     Roo.form.Signature.superclass.constructor.call(this, config);
50513     
50514     this.addEvents({// not in used??
50515          /**
50516          * @event confirm
50517          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50518              * @param {Roo.form.Signature} combo This combo box
50519              */
50520         'confirm' : true,
50521         /**
50522          * @event reset
50523          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50524              * @param {Roo.form.ComboBox} combo This combo box
50525              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50526              */
50527         'reset' : true
50528     });
50529 };
50530
50531 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50532     /**
50533      * @cfg {Object} labels Label to use when rendering a form.
50534      * defaults to 
50535      * labels : { 
50536      *      clear : "Clear",
50537      *      confirm : "Confirm"
50538      *  }
50539      */
50540     labels : { 
50541         clear : "Clear",
50542         confirm : "Confirm"
50543     },
50544     /**
50545      * @cfg {Number} width The signature panel width (defaults to 300)
50546      */
50547     width: 300,
50548     /**
50549      * @cfg {Number} height The signature panel height (defaults to 100)
50550      */
50551     height : 100,
50552     /**
50553      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50554      */
50555     allowBlank : false,
50556     
50557     //private
50558     // {Object} signPanel The signature SVG panel element (defaults to {})
50559     signPanel : {},
50560     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50561     isMouseDown : false,
50562     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50563     isConfirmed : false,
50564     // {String} signatureTmp SVG mapping string (defaults to empty string)
50565     signatureTmp : '',
50566     
50567     
50568     defaultAutoCreate : { // modified by initCompnoent..
50569         tag: "input",
50570         type:"hidden"
50571     },
50572
50573     // private
50574     onRender : function(ct, position){
50575         
50576         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50577         
50578         this.wrap = this.el.wrap({
50579             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50580         });
50581         
50582         this.createToolbar(this);
50583         this.signPanel = this.wrap.createChild({
50584                 tag: 'div',
50585                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50586             }, this.el
50587         );
50588             
50589         this.svgID = Roo.id();
50590         this.svgEl = this.signPanel.createChild({
50591               xmlns : 'http://www.w3.org/2000/svg',
50592               tag : 'svg',
50593               id : this.svgID + "-svg",
50594               width: this.width,
50595               height: this.height,
50596               viewBox: '0 0 '+this.width+' '+this.height,
50597               cn : [
50598                 {
50599                     tag: "rect",
50600                     id: this.svgID + "-svg-r",
50601                     width: this.width,
50602                     height: this.height,
50603                     fill: "#ffa"
50604                 },
50605                 {
50606                     tag: "line",
50607                     id: this.svgID + "-svg-l",
50608                     x1: "0", // start
50609                     y1: (this.height*0.8), // start set the line in 80% of height
50610                     x2: this.width, // end
50611                     y2: (this.height*0.8), // end set the line in 80% of height
50612                     'stroke': "#666",
50613                     'stroke-width': "1",
50614                     'stroke-dasharray': "3",
50615                     'shape-rendering': "crispEdges",
50616                     'pointer-events': "none"
50617                 },
50618                 {
50619                     tag: "path",
50620                     id: this.svgID + "-svg-p",
50621                     'stroke': "navy",
50622                     'stroke-width': "3",
50623                     'fill': "none",
50624                     'pointer-events': 'none'
50625                 }
50626               ]
50627         });
50628         this.createSVG();
50629         this.svgBox = this.svgEl.dom.getScreenCTM();
50630     },
50631     createSVG : function(){ 
50632         var svg = this.signPanel;
50633         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50634         var t = this;
50635
50636         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50637         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50638         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50639         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50640         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50641         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50642         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50643         
50644     },
50645     isTouchEvent : function(e){
50646         return e.type.match(/^touch/);
50647     },
50648     getCoords : function (e) {
50649         var pt    = this.svgEl.dom.createSVGPoint();
50650         pt.x = e.clientX; 
50651         pt.y = e.clientY;
50652         if (this.isTouchEvent(e)) {
50653             pt.x =  e.targetTouches[0].clientX;
50654             pt.y = e.targetTouches[0].clientY;
50655         }
50656         var a = this.svgEl.dom.getScreenCTM();
50657         var b = a.inverse();
50658         var mx = pt.matrixTransform(b);
50659         return mx.x + ',' + mx.y;
50660     },
50661     //mouse event headler 
50662     down : function (e) {
50663         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50664         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50665         
50666         this.isMouseDown = true;
50667         
50668         e.preventDefault();
50669     },
50670     move : function (e) {
50671         if (this.isMouseDown) {
50672             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50673             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50674         }
50675         
50676         e.preventDefault();
50677     },
50678     up : function (e) {
50679         this.isMouseDown = false;
50680         var sp = this.signatureTmp.split(' ');
50681         
50682         if(sp.length > 1){
50683             if(!sp[sp.length-2].match(/^L/)){
50684                 sp.pop();
50685                 sp.pop();
50686                 sp.push("");
50687                 this.signatureTmp = sp.join(" ");
50688             }
50689         }
50690         if(this.getValue() != this.signatureTmp){
50691             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50692             this.isConfirmed = false;
50693         }
50694         e.preventDefault();
50695     },
50696     
50697     /**
50698      * Protected method that will not generally be called directly. It
50699      * is called when the editor creates its toolbar. Override this method if you need to
50700      * add custom toolbar buttons.
50701      * @param {HtmlEditor} editor
50702      */
50703     createToolbar : function(editor){
50704          function btn(id, toggle, handler){
50705             var xid = fid + '-'+ id ;
50706             return {
50707                 id : xid,
50708                 cmd : id,
50709                 cls : 'x-btn-icon x-edit-'+id,
50710                 enableToggle:toggle !== false,
50711                 scope: editor, // was editor...
50712                 handler:handler||editor.relayBtnCmd,
50713                 clickEvent:'mousedown',
50714                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50715                 tabIndex:-1
50716             };
50717         }
50718         
50719         
50720         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50721         this.tb = tb;
50722         this.tb.add(
50723            {
50724                 cls : ' x-signature-btn x-signature-'+id,
50725                 scope: editor, // was editor...
50726                 handler: this.reset,
50727                 clickEvent:'mousedown',
50728                 text: this.labels.clear
50729             },
50730             {
50731                  xtype : 'Fill',
50732                  xns: Roo.Toolbar
50733             }, 
50734             {
50735                 cls : '  x-signature-btn x-signature-'+id,
50736                 scope: editor, // was editor...
50737                 handler: this.confirmHandler,
50738                 clickEvent:'mousedown',
50739                 text: this.labels.confirm
50740             }
50741         );
50742     
50743     },
50744     //public
50745     /**
50746      * when user is clicked confirm then show this image.....
50747      * 
50748      * @return {String} Image Data URI
50749      */
50750     getImageDataURI : function(){
50751         var svg = this.svgEl.dom.parentNode.innerHTML;
50752         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50753         return src; 
50754     },
50755     /**
50756      * 
50757      * @return {Boolean} this.isConfirmed
50758      */
50759     getConfirmed : function(){
50760         return this.isConfirmed;
50761     },
50762     /**
50763      * 
50764      * @return {Number} this.width
50765      */
50766     getWidth : function(){
50767         return this.width;
50768     },
50769     /**
50770      * 
50771      * @return {Number} this.height
50772      */
50773     getHeight : function(){
50774         return this.height;
50775     },
50776     // private
50777     getSignature : function(){
50778         return this.signatureTmp;
50779     },
50780     // private
50781     reset : function(){
50782         this.signatureTmp = '';
50783         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50784         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50785         this.isConfirmed = false;
50786         Roo.form.Signature.superclass.reset.call(this);
50787     },
50788     setSignature : function(s){
50789         this.signatureTmp = s;
50790         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50791         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50792         this.setValue(s);
50793         this.isConfirmed = false;
50794         Roo.form.Signature.superclass.reset.call(this);
50795     }, 
50796     test : function(){
50797 //        Roo.log(this.signPanel.dom.contentWindow.up())
50798     },
50799     //private
50800     setConfirmed : function(){
50801         
50802         
50803         
50804 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50805     },
50806     // private
50807     confirmHandler : function(){
50808         if(!this.getSignature()){
50809             return;
50810         }
50811         
50812         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50813         this.setValue(this.getSignature());
50814         this.isConfirmed = true;
50815         
50816         this.fireEvent('confirm', this);
50817     },
50818     // private
50819     // Subclasses should provide the validation implementation by overriding this
50820     validateValue : function(value){
50821         if(this.allowBlank){
50822             return true;
50823         }
50824         
50825         if(this.isConfirmed){
50826             return true;
50827         }
50828         return false;
50829     }
50830 });/*
50831  * Based on:
50832  * Ext JS Library 1.1.1
50833  * Copyright(c) 2006-2007, Ext JS, LLC.
50834  *
50835  * Originally Released Under LGPL - original licence link has changed is not relivant.
50836  *
50837  * Fork - LGPL
50838  * <script type="text/javascript">
50839  */
50840  
50841
50842 /**
50843  * @class Roo.form.ComboBox
50844  * @extends Roo.form.TriggerField
50845  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50846  * @constructor
50847  * Create a new ComboBox.
50848  * @param {Object} config Configuration options
50849  */
50850 Roo.form.Select = function(config){
50851     Roo.form.Select.superclass.constructor.call(this, config);
50852      
50853 };
50854
50855 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50856     /**
50857      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50858      */
50859     /**
50860      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50861      * rendering into an Roo.Editor, defaults to false)
50862      */
50863     /**
50864      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50865      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
50866      */
50867     /**
50868      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
50869      */
50870     /**
50871      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
50872      * the dropdown list (defaults to undefined, with no header element)
50873      */
50874
50875      /**
50876      * @cfg {String/Roo.Template} tpl The template to use to render the output
50877      */
50878      
50879     // private
50880     defaultAutoCreate : {tag: "select"  },
50881     /**
50882      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
50883      */
50884     listWidth: undefined,
50885     /**
50886      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
50887      * mode = 'remote' or 'text' if mode = 'local')
50888      */
50889     displayField: undefined,
50890     /**
50891      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
50892      * mode = 'remote' or 'value' if mode = 'local'). 
50893      * Note: use of a valueField requires the user make a selection
50894      * in order for a value to be mapped.
50895      */
50896     valueField: undefined,
50897     
50898     
50899     /**
50900      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
50901      * field's data value (defaults to the underlying DOM element's name)
50902      */
50903     hiddenName: undefined,
50904     /**
50905      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
50906      */
50907     listClass: '',
50908     /**
50909      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
50910      */
50911     selectedClass: 'x-combo-selected',
50912     /**
50913      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
50914      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
50915      * which displays a downward arrow icon).
50916      */
50917     triggerClass : 'x-form-arrow-trigger',
50918     /**
50919      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
50920      */
50921     shadow:'sides',
50922     /**
50923      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
50924      * anchor positions (defaults to 'tl-bl')
50925      */
50926     listAlign: 'tl-bl?',
50927     /**
50928      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
50929      */
50930     maxHeight: 300,
50931     /**
50932      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
50933      * query specified by the allQuery config option (defaults to 'query')
50934      */
50935     triggerAction: 'query',
50936     /**
50937      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
50938      * (defaults to 4, does not apply if editable = false)
50939      */
50940     minChars : 4,
50941     /**
50942      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
50943      * delay (typeAheadDelay) if it matches a known value (defaults to false)
50944      */
50945     typeAhead: false,
50946     /**
50947      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
50948      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
50949      */
50950     queryDelay: 500,
50951     /**
50952      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
50953      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
50954      */
50955     pageSize: 0,
50956     /**
50957      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
50958      * when editable = true (defaults to false)
50959      */
50960     selectOnFocus:false,
50961     /**
50962      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
50963      */
50964     queryParam: 'query',
50965     /**
50966      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
50967      * when mode = 'remote' (defaults to 'Loading...')
50968      */
50969     loadingText: 'Loading...',
50970     /**
50971      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
50972      */
50973     resizable: false,
50974     /**
50975      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
50976      */
50977     handleHeight : 8,
50978     /**
50979      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
50980      * traditional select (defaults to true)
50981      */
50982     editable: true,
50983     /**
50984      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
50985      */
50986     allQuery: '',
50987     /**
50988      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
50989      */
50990     mode: 'remote',
50991     /**
50992      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
50993      * listWidth has a higher value)
50994      */
50995     minListWidth : 70,
50996     /**
50997      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
50998      * allow the user to set arbitrary text into the field (defaults to false)
50999      */
51000     forceSelection:false,
51001     /**
51002      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51003      * if typeAhead = true (defaults to 250)
51004      */
51005     typeAheadDelay : 250,
51006     /**
51007      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51008      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51009      */
51010     valueNotFoundText : undefined,
51011     
51012     /**
51013      * @cfg {String} defaultValue The value displayed after loading the store.
51014      */
51015     defaultValue: '',
51016     
51017     /**
51018      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51019      */
51020     blockFocus : false,
51021     
51022     /**
51023      * @cfg {Boolean} disableClear Disable showing of clear button.
51024      */
51025     disableClear : false,
51026     /**
51027      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51028      */
51029     alwaysQuery : false,
51030     
51031     //private
51032     addicon : false,
51033     editicon: false,
51034     
51035     // element that contains real text value.. (when hidden is used..)
51036      
51037     // private
51038     onRender : function(ct, position){
51039         Roo.form.Field.prototype.onRender.call(this, ct, position);
51040         
51041         if(this.store){
51042             this.store.on('beforeload', this.onBeforeLoad, this);
51043             this.store.on('load', this.onLoad, this);
51044             this.store.on('loadexception', this.onLoadException, this);
51045             this.store.load({});
51046         }
51047         
51048         
51049         
51050     },
51051
51052     // private
51053     initEvents : function(){
51054         //Roo.form.ComboBox.superclass.initEvents.call(this);
51055  
51056     },
51057
51058     onDestroy : function(){
51059        
51060         if(this.store){
51061             this.store.un('beforeload', this.onBeforeLoad, this);
51062             this.store.un('load', this.onLoad, this);
51063             this.store.un('loadexception', this.onLoadException, this);
51064         }
51065         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51066     },
51067
51068     // private
51069     fireKey : function(e){
51070         if(e.isNavKeyPress() && !this.list.isVisible()){
51071             this.fireEvent("specialkey", this, e);
51072         }
51073     },
51074
51075     // private
51076     onResize: function(w, h){
51077         
51078         return; 
51079     
51080         
51081     },
51082
51083     /**
51084      * Allow or prevent the user from directly editing the field text.  If false is passed,
51085      * the user will only be able to select from the items defined in the dropdown list.  This method
51086      * is the runtime equivalent of setting the 'editable' config option at config time.
51087      * @param {Boolean} value True to allow the user to directly edit the field text
51088      */
51089     setEditable : function(value){
51090          
51091     },
51092
51093     // private
51094     onBeforeLoad : function(){
51095         
51096         Roo.log("Select before load");
51097         return;
51098     
51099         this.innerList.update(this.loadingText ?
51100                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51101         //this.restrictHeight();
51102         this.selectedIndex = -1;
51103     },
51104
51105     // private
51106     onLoad : function(){
51107
51108     
51109         var dom = this.el.dom;
51110         dom.innerHTML = '';
51111          var od = dom.ownerDocument;
51112          
51113         if (this.emptyText) {
51114             var op = od.createElement('option');
51115             op.setAttribute('value', '');
51116             op.innerHTML = String.format('{0}', this.emptyText);
51117             dom.appendChild(op);
51118         }
51119         if(this.store.getCount() > 0){
51120            
51121             var vf = this.valueField;
51122             var df = this.displayField;
51123             this.store.data.each(function(r) {
51124                 // which colmsn to use... testing - cdoe / title..
51125                 var op = od.createElement('option');
51126                 op.setAttribute('value', r.data[vf]);
51127                 op.innerHTML = String.format('{0}', r.data[df]);
51128                 dom.appendChild(op);
51129             });
51130             if (typeof(this.defaultValue != 'undefined')) {
51131                 this.setValue(this.defaultValue);
51132             }
51133             
51134              
51135         }else{
51136             //this.onEmptyResults();
51137         }
51138         //this.el.focus();
51139     },
51140     // private
51141     onLoadException : function()
51142     {
51143         dom.innerHTML = '';
51144             
51145         Roo.log("Select on load exception");
51146         return;
51147     
51148         this.collapse();
51149         Roo.log(this.store.reader.jsonData);
51150         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51151             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51152         }
51153         
51154         
51155     },
51156     // private
51157     onTypeAhead : function(){
51158          
51159     },
51160
51161     // private
51162     onSelect : function(record, index){
51163         Roo.log('on select?');
51164         return;
51165         if(this.fireEvent('beforeselect', this, record, index) !== false){
51166             this.setFromData(index > -1 ? record.data : false);
51167             this.collapse();
51168             this.fireEvent('select', this, record, index);
51169         }
51170     },
51171
51172     /**
51173      * Returns the currently selected field value or empty string if no value is set.
51174      * @return {String} value The selected value
51175      */
51176     getValue : function(){
51177         var dom = this.el.dom;
51178         this.value = dom.options[dom.selectedIndex].value;
51179         return this.value;
51180         
51181     },
51182
51183     /**
51184      * Clears any text/value currently set in the field
51185      */
51186     clearValue : function(){
51187         this.value = '';
51188         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51189         
51190     },
51191
51192     /**
51193      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51194      * will be displayed in the field.  If the value does not match the data value of an existing item,
51195      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51196      * Otherwise the field will be blank (although the value will still be set).
51197      * @param {String} value The value to match
51198      */
51199     setValue : function(v){
51200         var d = this.el.dom;
51201         for (var i =0; i < d.options.length;i++) {
51202             if (v == d.options[i].value) {
51203                 d.selectedIndex = i;
51204                 this.value = v;
51205                 return;
51206             }
51207         }
51208         this.clearValue();
51209     },
51210     /**
51211      * @property {Object} the last set data for the element
51212      */
51213     
51214     lastData : false,
51215     /**
51216      * Sets the value of the field based on a object which is related to the record format for the store.
51217      * @param {Object} value the value to set as. or false on reset?
51218      */
51219     setFromData : function(o){
51220         Roo.log('setfrom data?');
51221          
51222         
51223         
51224     },
51225     // private
51226     reset : function(){
51227         this.clearValue();
51228     },
51229     // private
51230     findRecord : function(prop, value){
51231         
51232         return false;
51233     
51234         var record;
51235         if(this.store.getCount() > 0){
51236             this.store.each(function(r){
51237                 if(r.data[prop] == value){
51238                     record = r;
51239                     return false;
51240                 }
51241                 return true;
51242             });
51243         }
51244         return record;
51245     },
51246     
51247     getName: function()
51248     {
51249         // returns hidden if it's set..
51250         if (!this.rendered) {return ''};
51251         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51252         
51253     },
51254      
51255
51256     
51257
51258     // private
51259     onEmptyResults : function(){
51260         Roo.log('empty results');
51261         //this.collapse();
51262     },
51263
51264     /**
51265      * Returns true if the dropdown list is expanded, else false.
51266      */
51267     isExpanded : function(){
51268         return false;
51269     },
51270
51271     /**
51272      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51273      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51274      * @param {String} value The data value of the item to select
51275      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51276      * selected item if it is not currently in view (defaults to true)
51277      * @return {Boolean} True if the value matched an item in the list, else false
51278      */
51279     selectByValue : function(v, scrollIntoView){
51280         Roo.log('select By Value');
51281         return false;
51282     
51283         if(v !== undefined && v !== null){
51284             var r = this.findRecord(this.valueField || this.displayField, v);
51285             if(r){
51286                 this.select(this.store.indexOf(r), scrollIntoView);
51287                 return true;
51288             }
51289         }
51290         return false;
51291     },
51292
51293     /**
51294      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51295      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51296      * @param {Number} index The zero-based index of the list item to select
51297      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51298      * selected item if it is not currently in view (defaults to true)
51299      */
51300     select : function(index, scrollIntoView){
51301         Roo.log('select ');
51302         return  ;
51303         
51304         this.selectedIndex = index;
51305         this.view.select(index);
51306         if(scrollIntoView !== false){
51307             var el = this.view.getNode(index);
51308             if(el){
51309                 this.innerList.scrollChildIntoView(el, false);
51310             }
51311         }
51312     },
51313
51314       
51315
51316     // private
51317     validateBlur : function(){
51318         
51319         return;
51320         
51321     },
51322
51323     // private
51324     initQuery : function(){
51325         this.doQuery(this.getRawValue());
51326     },
51327
51328     // private
51329     doForce : function(){
51330         if(this.el.dom.value.length > 0){
51331             this.el.dom.value =
51332                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51333              
51334         }
51335     },
51336
51337     /**
51338      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51339      * query allowing the query action to be canceled if needed.
51340      * @param {String} query The SQL query to execute
51341      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51342      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51343      * saved in the current store (defaults to false)
51344      */
51345     doQuery : function(q, forceAll){
51346         
51347         Roo.log('doQuery?');
51348         if(q === undefined || q === null){
51349             q = '';
51350         }
51351         var qe = {
51352             query: q,
51353             forceAll: forceAll,
51354             combo: this,
51355             cancel:false
51356         };
51357         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51358             return false;
51359         }
51360         q = qe.query;
51361         forceAll = qe.forceAll;
51362         if(forceAll === true || (q.length >= this.minChars)){
51363             if(this.lastQuery != q || this.alwaysQuery){
51364                 this.lastQuery = q;
51365                 if(this.mode == 'local'){
51366                     this.selectedIndex = -1;
51367                     if(forceAll){
51368                         this.store.clearFilter();
51369                     }else{
51370                         this.store.filter(this.displayField, q);
51371                     }
51372                     this.onLoad();
51373                 }else{
51374                     this.store.baseParams[this.queryParam] = q;
51375                     this.store.load({
51376                         params: this.getParams(q)
51377                     });
51378                     this.expand();
51379                 }
51380             }else{
51381                 this.selectedIndex = -1;
51382                 this.onLoad();   
51383             }
51384         }
51385     },
51386
51387     // private
51388     getParams : function(q){
51389         var p = {};
51390         //p[this.queryParam] = q;
51391         if(this.pageSize){
51392             p.start = 0;
51393             p.limit = this.pageSize;
51394         }
51395         return p;
51396     },
51397
51398     /**
51399      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51400      */
51401     collapse : function(){
51402         
51403     },
51404
51405     // private
51406     collapseIf : function(e){
51407         
51408     },
51409
51410     /**
51411      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51412      */
51413     expand : function(){
51414         
51415     } ,
51416
51417     // private
51418      
51419
51420     /** 
51421     * @cfg {Boolean} grow 
51422     * @hide 
51423     */
51424     /** 
51425     * @cfg {Number} growMin 
51426     * @hide 
51427     */
51428     /** 
51429     * @cfg {Number} growMax 
51430     * @hide 
51431     */
51432     /**
51433      * @hide
51434      * @method autoSize
51435      */
51436     
51437     setWidth : function()
51438     {
51439         
51440     },
51441     getResizeEl : function(){
51442         return this.el;
51443     }
51444 });//<script type="text/javasscript">
51445  
51446
51447 /**
51448  * @class Roo.DDView
51449  * A DnD enabled version of Roo.View.
51450  * @param {Element/String} container The Element in which to create the View.
51451  * @param {String} tpl The template string used to create the markup for each element of the View
51452  * @param {Object} config The configuration properties. These include all the config options of
51453  * {@link Roo.View} plus some specific to this class.<br>
51454  * <p>
51455  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51456  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51457  * <p>
51458  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51459 .x-view-drag-insert-above {
51460         border-top:1px dotted #3366cc;
51461 }
51462 .x-view-drag-insert-below {
51463         border-bottom:1px dotted #3366cc;
51464 }
51465 </code></pre>
51466  * 
51467  */
51468  
51469 Roo.DDView = function(container, tpl, config) {
51470     Roo.DDView.superclass.constructor.apply(this, arguments);
51471     this.getEl().setStyle("outline", "0px none");
51472     this.getEl().unselectable();
51473     if (this.dragGroup) {
51474         this.setDraggable(this.dragGroup.split(","));
51475     }
51476     if (this.dropGroup) {
51477         this.setDroppable(this.dropGroup.split(","));
51478     }
51479     if (this.deletable) {
51480         this.setDeletable();
51481     }
51482     this.isDirtyFlag = false;
51483         this.addEvents({
51484                 "drop" : true
51485         });
51486 };
51487
51488 Roo.extend(Roo.DDView, Roo.View, {
51489 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51490 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51491 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51492 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51493
51494         isFormField: true,
51495
51496         reset: Roo.emptyFn,
51497         
51498         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51499
51500         validate: function() {
51501                 return true;
51502         },
51503         
51504         destroy: function() {
51505                 this.purgeListeners();
51506                 this.getEl.removeAllListeners();
51507                 this.getEl().remove();
51508                 if (this.dragZone) {
51509                         if (this.dragZone.destroy) {
51510                                 this.dragZone.destroy();
51511                         }
51512                 }
51513                 if (this.dropZone) {
51514                         if (this.dropZone.destroy) {
51515                                 this.dropZone.destroy();
51516                         }
51517                 }
51518         },
51519
51520 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51521         getName: function() {
51522                 return this.name;
51523         },
51524
51525 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51526         setValue: function(v) {
51527                 if (!this.store) {
51528                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51529                 }
51530                 var data = {};
51531                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51532                 this.store.proxy = new Roo.data.MemoryProxy(data);
51533                 this.store.load();
51534         },
51535
51536 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51537         getValue: function() {
51538                 var result = '(';
51539                 this.store.each(function(rec) {
51540                         result += rec.id + ',';
51541                 });
51542                 return result.substr(0, result.length - 1) + ')';
51543         },
51544         
51545         getIds: function() {
51546                 var i = 0, result = new Array(this.store.getCount());
51547                 this.store.each(function(rec) {
51548                         result[i++] = rec.id;
51549                 });
51550                 return result;
51551         },
51552         
51553         isDirty: function() {
51554                 return this.isDirtyFlag;
51555         },
51556
51557 /**
51558  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51559  *      whole Element becomes the target, and this causes the drop gesture to append.
51560  */
51561     getTargetFromEvent : function(e) {
51562                 var target = e.getTarget();
51563                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51564                 target = target.parentNode;
51565                 }
51566                 if (!target) {
51567                         target = this.el.dom.lastChild || this.el.dom;
51568                 }
51569                 return target;
51570     },
51571
51572 /**
51573  *      Create the drag data which consists of an object which has the property "ddel" as
51574  *      the drag proxy element. 
51575  */
51576     getDragData : function(e) {
51577         var target = this.findItemFromChild(e.getTarget());
51578                 if(target) {
51579                         this.handleSelection(e);
51580                         var selNodes = this.getSelectedNodes();
51581             var dragData = {
51582                 source: this,
51583                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51584                 nodes: selNodes,
51585                 records: []
51586                         };
51587                         var selectedIndices = this.getSelectedIndexes();
51588                         for (var i = 0; i < selectedIndices.length; i++) {
51589                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51590                         }
51591                         if (selNodes.length == 1) {
51592                                 dragData.ddel = target.cloneNode(true); // the div element
51593                         } else {
51594                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51595                                 div.className = 'multi-proxy';
51596                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51597                                         div.appendChild(selNodes[i].cloneNode(true));
51598                                 }
51599                                 dragData.ddel = div;
51600                         }
51601             //console.log(dragData)
51602             //console.log(dragData.ddel.innerHTML)
51603                         return dragData;
51604                 }
51605         //console.log('nodragData')
51606                 return false;
51607     },
51608     
51609 /**     Specify to which ddGroup items in this DDView may be dragged. */
51610     setDraggable: function(ddGroup) {
51611         if (ddGroup instanceof Array) {
51612                 Roo.each(ddGroup, this.setDraggable, this);
51613                 return;
51614         }
51615         if (this.dragZone) {
51616                 this.dragZone.addToGroup(ddGroup);
51617         } else {
51618                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51619                                 containerScroll: true,
51620                                 ddGroup: ddGroup 
51621
51622                         });
51623 //                      Draggability implies selection. DragZone's mousedown selects the element.
51624                         if (!this.multiSelect) { this.singleSelect = true; }
51625
51626 //                      Wire the DragZone's handlers up to methods in *this*
51627                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51628                 }
51629     },
51630
51631 /**     Specify from which ddGroup this DDView accepts drops. */
51632     setDroppable: function(ddGroup) {
51633         if (ddGroup instanceof Array) {
51634                 Roo.each(ddGroup, this.setDroppable, this);
51635                 return;
51636         }
51637         if (this.dropZone) {
51638                 this.dropZone.addToGroup(ddGroup);
51639         } else {
51640                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51641                                 containerScroll: true,
51642                                 ddGroup: ddGroup
51643                         });
51644
51645 //                      Wire the DropZone's handlers up to methods in *this*
51646                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51647                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51648                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51649                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51650                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51651                 }
51652     },
51653
51654 /**     Decide whether to drop above or below a View node. */
51655     getDropPoint : function(e, n, dd){
51656         if (n == this.el.dom) { return "above"; }
51657                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51658                 var c = t + (b - t) / 2;
51659                 var y = Roo.lib.Event.getPageY(e);
51660                 if(y <= c) {
51661                         return "above";
51662                 }else{
51663                         return "below";
51664                 }
51665     },
51666
51667     onNodeEnter : function(n, dd, e, data){
51668                 return false;
51669     },
51670     
51671     onNodeOver : function(n, dd, e, data){
51672                 var pt = this.getDropPoint(e, n, dd);
51673                 // set the insert point style on the target node
51674                 var dragElClass = this.dropNotAllowed;
51675                 if (pt) {
51676                         var targetElClass;
51677                         if (pt == "above"){
51678                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51679                                 targetElClass = "x-view-drag-insert-above";
51680                         } else {
51681                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51682                                 targetElClass = "x-view-drag-insert-below";
51683                         }
51684                         if (this.lastInsertClass != targetElClass){
51685                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51686                                 this.lastInsertClass = targetElClass;
51687                         }
51688                 }
51689                 return dragElClass;
51690         },
51691
51692     onNodeOut : function(n, dd, e, data){
51693                 this.removeDropIndicators(n);
51694     },
51695
51696     onNodeDrop : function(n, dd, e, data){
51697         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51698                 return false;
51699         }
51700         var pt = this.getDropPoint(e, n, dd);
51701                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51702                 if (pt == "below") { insertAt++; }
51703                 for (var i = 0; i < data.records.length; i++) {
51704                         var r = data.records[i];
51705                         var dup = this.store.getById(r.id);
51706                         if (dup && (dd != this.dragZone)) {
51707                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51708                         } else {
51709                                 if (data.copy) {
51710                                         this.store.insert(insertAt++, r.copy());
51711                                 } else {
51712                                         data.source.isDirtyFlag = true;
51713                                         r.store.remove(r);
51714                                         this.store.insert(insertAt++, r);
51715                                 }
51716                                 this.isDirtyFlag = true;
51717                         }
51718                 }
51719                 this.dragZone.cachedTarget = null;
51720                 return true;
51721     },
51722
51723     removeDropIndicators : function(n){
51724                 if(n){
51725                         Roo.fly(n).removeClass([
51726                                 "x-view-drag-insert-above",
51727                                 "x-view-drag-insert-below"]);
51728                         this.lastInsertClass = "_noclass";
51729                 }
51730     },
51731
51732 /**
51733  *      Utility method. Add a delete option to the DDView's context menu.
51734  *      @param {String} imageUrl The URL of the "delete" icon image.
51735  */
51736         setDeletable: function(imageUrl) {
51737                 if (!this.singleSelect && !this.multiSelect) {
51738                         this.singleSelect = true;
51739                 }
51740                 var c = this.getContextMenu();
51741                 this.contextMenu.on("itemclick", function(item) {
51742                         switch (item.id) {
51743                                 case "delete":
51744                                         this.remove(this.getSelectedIndexes());
51745                                         break;
51746                         }
51747                 }, this);
51748                 this.contextMenu.add({
51749                         icon: imageUrl,
51750                         id: "delete",
51751                         text: 'Delete'
51752                 });
51753         },
51754         
51755 /**     Return the context menu for this DDView. */
51756         getContextMenu: function() {
51757                 if (!this.contextMenu) {
51758 //                      Create the View's context menu
51759                         this.contextMenu = new Roo.menu.Menu({
51760                                 id: this.id + "-contextmenu"
51761                         });
51762                         this.el.on("contextmenu", this.showContextMenu, this);
51763                 }
51764                 return this.contextMenu;
51765         },
51766         
51767         disableContextMenu: function() {
51768                 if (this.contextMenu) {
51769                         this.el.un("contextmenu", this.showContextMenu, this);
51770                 }
51771         },
51772
51773         showContextMenu: function(e, item) {
51774         item = this.findItemFromChild(e.getTarget());
51775                 if (item) {
51776                         e.stopEvent();
51777                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51778                         this.contextMenu.showAt(e.getXY());
51779             }
51780     },
51781
51782 /**
51783  *      Remove {@link Roo.data.Record}s at the specified indices.
51784  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51785  */
51786     remove: function(selectedIndices) {
51787                 selectedIndices = [].concat(selectedIndices);
51788                 for (var i = 0; i < selectedIndices.length; i++) {
51789                         var rec = this.store.getAt(selectedIndices[i]);
51790                         this.store.remove(rec);
51791                 }
51792     },
51793
51794 /**
51795  *      Double click fires the event, but also, if this is draggable, and there is only one other
51796  *      related DropZone, it transfers the selected node.
51797  */
51798     onDblClick : function(e){
51799         var item = this.findItemFromChild(e.getTarget());
51800         if(item){
51801             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51802                 return false;
51803             }
51804             if (this.dragGroup) {
51805                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51806                     while (targets.indexOf(this.dropZone) > -1) {
51807                             targets.remove(this.dropZone);
51808                                 }
51809                     if (targets.length == 1) {
51810                                         this.dragZone.cachedTarget = null;
51811                         var el = Roo.get(targets[0].getEl());
51812                         var box = el.getBox(true);
51813                         targets[0].onNodeDrop(el.dom, {
51814                                 target: el.dom,
51815                                 xy: [box.x, box.y + box.height - 1]
51816                         }, null, this.getDragData(e));
51817                     }
51818                 }
51819         }
51820     },
51821     
51822     handleSelection: function(e) {
51823                 this.dragZone.cachedTarget = null;
51824         var item = this.findItemFromChild(e.getTarget());
51825         if (!item) {
51826                 this.clearSelections(true);
51827                 return;
51828         }
51829                 if (item && (this.multiSelect || this.singleSelect)){
51830                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51831                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51832                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51833                                 this.unselect(item);
51834                         } else {
51835                                 this.select(item, this.multiSelect && e.ctrlKey);
51836                                 this.lastSelection = item;
51837                         }
51838                 }
51839     },
51840
51841     onItemClick : function(item, index, e){
51842                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51843                         return false;
51844                 }
51845                 return true;
51846     },
51847
51848     unselect : function(nodeInfo, suppressEvent){
51849                 var node = this.getNode(nodeInfo);
51850                 if(node && this.isSelected(node)){
51851                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51852                                 Roo.fly(node).removeClass(this.selectedClass);
51853                                 this.selections.remove(node);
51854                                 if(!suppressEvent){
51855                                         this.fireEvent("selectionchange", this, this.selections);
51856                                 }
51857                         }
51858                 }
51859     }
51860 });
51861 /*
51862  * Based on:
51863  * Ext JS Library 1.1.1
51864  * Copyright(c) 2006-2007, Ext JS, LLC.
51865  *
51866  * Originally Released Under LGPL - original licence link has changed is not relivant.
51867  *
51868  * Fork - LGPL
51869  * <script type="text/javascript">
51870  */
51871  
51872 /**
51873  * @class Roo.LayoutManager
51874  * @extends Roo.util.Observable
51875  * Base class for layout managers.
51876  */
51877 Roo.LayoutManager = function(container, config){
51878     Roo.LayoutManager.superclass.constructor.call(this);
51879     this.el = Roo.get(container);
51880     // ie scrollbar fix
51881     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
51882         document.body.scroll = "no";
51883     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
51884         this.el.position('relative');
51885     }
51886     this.id = this.el.id;
51887     this.el.addClass("x-layout-container");
51888     /** false to disable window resize monitoring @type Boolean */
51889     this.monitorWindowResize = true;
51890     this.regions = {};
51891     this.addEvents({
51892         /**
51893          * @event layout
51894          * Fires when a layout is performed. 
51895          * @param {Roo.LayoutManager} this
51896          */
51897         "layout" : true,
51898         /**
51899          * @event regionresized
51900          * Fires when the user resizes a region. 
51901          * @param {Roo.LayoutRegion} region The resized region
51902          * @param {Number} newSize The new size (width for east/west, height for north/south)
51903          */
51904         "regionresized" : true,
51905         /**
51906          * @event regioncollapsed
51907          * Fires when a region is collapsed. 
51908          * @param {Roo.LayoutRegion} region The collapsed region
51909          */
51910         "regioncollapsed" : true,
51911         /**
51912          * @event regionexpanded
51913          * Fires when a region is expanded.  
51914          * @param {Roo.LayoutRegion} region The expanded region
51915          */
51916         "regionexpanded" : true
51917     });
51918     this.updating = false;
51919     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
51920 };
51921
51922 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
51923     /**
51924      * Returns true if this layout is currently being updated
51925      * @return {Boolean}
51926      */
51927     isUpdating : function(){
51928         return this.updating; 
51929     },
51930     
51931     /**
51932      * Suspend the LayoutManager from doing auto-layouts while
51933      * making multiple add or remove calls
51934      */
51935     beginUpdate : function(){
51936         this.updating = true;    
51937     },
51938     
51939     /**
51940      * Restore auto-layouts and optionally disable the manager from performing a layout
51941      * @param {Boolean} noLayout true to disable a layout update 
51942      */
51943     endUpdate : function(noLayout){
51944         this.updating = false;
51945         if(!noLayout){
51946             this.layout();
51947         }    
51948     },
51949     
51950     layout: function(){
51951         
51952     },
51953     
51954     onRegionResized : function(region, newSize){
51955         this.fireEvent("regionresized", region, newSize);
51956         this.layout();
51957     },
51958     
51959     onRegionCollapsed : function(region){
51960         this.fireEvent("regioncollapsed", region);
51961     },
51962     
51963     onRegionExpanded : function(region){
51964         this.fireEvent("regionexpanded", region);
51965     },
51966         
51967     /**
51968      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
51969      * performs box-model adjustments.
51970      * @return {Object} The size as an object {width: (the width), height: (the height)}
51971      */
51972     getViewSize : function(){
51973         var size;
51974         if(this.el.dom != document.body){
51975             size = this.el.getSize();
51976         }else{
51977             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
51978         }
51979         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
51980         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
51981         return size;
51982     },
51983     
51984     /**
51985      * Returns the Element this layout is bound to.
51986      * @return {Roo.Element}
51987      */
51988     getEl : function(){
51989         return this.el;
51990     },
51991     
51992     /**
51993      * Returns the specified region.
51994      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
51995      * @return {Roo.LayoutRegion}
51996      */
51997     getRegion : function(target){
51998         return this.regions[target.toLowerCase()];
51999     },
52000     
52001     onWindowResize : function(){
52002         if(this.monitorWindowResize){
52003             this.layout();
52004         }
52005     }
52006 });/*
52007  * Based on:
52008  * Ext JS Library 1.1.1
52009  * Copyright(c) 2006-2007, Ext JS, LLC.
52010  *
52011  * Originally Released Under LGPL - original licence link has changed is not relivant.
52012  *
52013  * Fork - LGPL
52014  * <script type="text/javascript">
52015  */
52016 /**
52017  * @class Roo.BorderLayout
52018  * @extends Roo.LayoutManager
52019  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52020  * please see: <br><br>
52021  * <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>
52022  * <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>
52023  * Example:
52024  <pre><code>
52025  var layout = new Roo.BorderLayout(document.body, {
52026     north: {
52027         initialSize: 25,
52028         titlebar: false
52029     },
52030     west: {
52031         split:true,
52032         initialSize: 200,
52033         minSize: 175,
52034         maxSize: 400,
52035         titlebar: true,
52036         collapsible: true
52037     },
52038     east: {
52039         split:true,
52040         initialSize: 202,
52041         minSize: 175,
52042         maxSize: 400,
52043         titlebar: true,
52044         collapsible: true
52045     },
52046     south: {
52047         split:true,
52048         initialSize: 100,
52049         minSize: 100,
52050         maxSize: 200,
52051         titlebar: true,
52052         collapsible: true
52053     },
52054     center: {
52055         titlebar: true,
52056         autoScroll:true,
52057         resizeTabs: true,
52058         minTabWidth: 50,
52059         preferredTabWidth: 150
52060     }
52061 });
52062
52063 // shorthand
52064 var CP = Roo.ContentPanel;
52065
52066 layout.beginUpdate();
52067 layout.add("north", new CP("north", "North"));
52068 layout.add("south", new CP("south", {title: "South", closable: true}));
52069 layout.add("west", new CP("west", {title: "West"}));
52070 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52071 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52072 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52073 layout.getRegion("center").showPanel("center1");
52074 layout.endUpdate();
52075 </code></pre>
52076
52077 <b>The container the layout is rendered into can be either the body element or any other element.
52078 If it is not the body element, the container needs to either be an absolute positioned element,
52079 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52080 the container size if it is not the body element.</b>
52081
52082 * @constructor
52083 * Create a new BorderLayout
52084 * @param {String/HTMLElement/Element} container The container this layout is bound to
52085 * @param {Object} config Configuration options
52086  */
52087 Roo.BorderLayout = function(container, config){
52088     config = config || {};
52089     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52090     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52091     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52092         var target = this.factory.validRegions[i];
52093         if(config[target]){
52094             this.addRegion(target, config[target]);
52095         }
52096     }
52097 };
52098
52099 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52100     /**
52101      * Creates and adds a new region if it doesn't already exist.
52102      * @param {String} target The target region key (north, south, east, west or center).
52103      * @param {Object} config The regions config object
52104      * @return {BorderLayoutRegion} The new region
52105      */
52106     addRegion : function(target, config){
52107         if(!this.regions[target]){
52108             var r = this.factory.create(target, this, config);
52109             this.bindRegion(target, r);
52110         }
52111         return this.regions[target];
52112     },
52113
52114     // private (kinda)
52115     bindRegion : function(name, r){
52116         this.regions[name] = r;
52117         r.on("visibilitychange", this.layout, this);
52118         r.on("paneladded", this.layout, this);
52119         r.on("panelremoved", this.layout, this);
52120         r.on("invalidated", this.layout, this);
52121         r.on("resized", this.onRegionResized, this);
52122         r.on("collapsed", this.onRegionCollapsed, this);
52123         r.on("expanded", this.onRegionExpanded, this);
52124     },
52125
52126     /**
52127      * Performs a layout update.
52128      */
52129     layout : function(){
52130         if(this.updating) {
52131             return;
52132         }
52133         var size = this.getViewSize();
52134         var w = size.width;
52135         var h = size.height;
52136         var centerW = w;
52137         var centerH = h;
52138         var centerY = 0;
52139         var centerX = 0;
52140         //var x = 0, y = 0;
52141
52142         var rs = this.regions;
52143         var north = rs["north"];
52144         var south = rs["south"]; 
52145         var west = rs["west"];
52146         var east = rs["east"];
52147         var center = rs["center"];
52148         //if(this.hideOnLayout){ // not supported anymore
52149             //c.el.setStyle("display", "none");
52150         //}
52151         if(north && north.isVisible()){
52152             var b = north.getBox();
52153             var m = north.getMargins();
52154             b.width = w - (m.left+m.right);
52155             b.x = m.left;
52156             b.y = m.top;
52157             centerY = b.height + b.y + m.bottom;
52158             centerH -= centerY;
52159             north.updateBox(this.safeBox(b));
52160         }
52161         if(south && south.isVisible()){
52162             var b = south.getBox();
52163             var m = south.getMargins();
52164             b.width = w - (m.left+m.right);
52165             b.x = m.left;
52166             var totalHeight = (b.height + m.top + m.bottom);
52167             b.y = h - totalHeight + m.top;
52168             centerH -= totalHeight;
52169             south.updateBox(this.safeBox(b));
52170         }
52171         if(west && west.isVisible()){
52172             var b = west.getBox();
52173             var m = west.getMargins();
52174             b.height = centerH - (m.top+m.bottom);
52175             b.x = m.left;
52176             b.y = centerY + m.top;
52177             var totalWidth = (b.width + m.left + m.right);
52178             centerX += totalWidth;
52179             centerW -= totalWidth;
52180             west.updateBox(this.safeBox(b));
52181         }
52182         if(east && east.isVisible()){
52183             var b = east.getBox();
52184             var m = east.getMargins();
52185             b.height = centerH - (m.top+m.bottom);
52186             var totalWidth = (b.width + m.left + m.right);
52187             b.x = w - totalWidth + m.left;
52188             b.y = centerY + m.top;
52189             centerW -= totalWidth;
52190             east.updateBox(this.safeBox(b));
52191         }
52192         if(center){
52193             var m = center.getMargins();
52194             var centerBox = {
52195                 x: centerX + m.left,
52196                 y: centerY + m.top,
52197                 width: centerW - (m.left+m.right),
52198                 height: centerH - (m.top+m.bottom)
52199             };
52200             //if(this.hideOnLayout){
52201                 //center.el.setStyle("display", "block");
52202             //}
52203             center.updateBox(this.safeBox(centerBox));
52204         }
52205         this.el.repaint();
52206         this.fireEvent("layout", this);
52207     },
52208
52209     // private
52210     safeBox : function(box){
52211         box.width = Math.max(0, box.width);
52212         box.height = Math.max(0, box.height);
52213         return box;
52214     },
52215
52216     /**
52217      * Adds a ContentPanel (or subclass) to this layout.
52218      * @param {String} target The target region key (north, south, east, west or center).
52219      * @param {Roo.ContentPanel} panel The panel to add
52220      * @return {Roo.ContentPanel} The added panel
52221      */
52222     add : function(target, panel){
52223          
52224         target = target.toLowerCase();
52225         return this.regions[target].add(panel);
52226     },
52227
52228     /**
52229      * Remove a ContentPanel (or subclass) to this layout.
52230      * @param {String} target The target region key (north, south, east, west or center).
52231      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52232      * @return {Roo.ContentPanel} The removed panel
52233      */
52234     remove : function(target, panel){
52235         target = target.toLowerCase();
52236         return this.regions[target].remove(panel);
52237     },
52238
52239     /**
52240      * Searches all regions for a panel with the specified id
52241      * @param {String} panelId
52242      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52243      */
52244     findPanel : function(panelId){
52245         var rs = this.regions;
52246         for(var target in rs){
52247             if(typeof rs[target] != "function"){
52248                 var p = rs[target].getPanel(panelId);
52249                 if(p){
52250                     return p;
52251                 }
52252             }
52253         }
52254         return null;
52255     },
52256
52257     /**
52258      * Searches all regions for a panel with the specified id and activates (shows) it.
52259      * @param {String/ContentPanel} panelId The panels id or the panel itself
52260      * @return {Roo.ContentPanel} The shown panel or null
52261      */
52262     showPanel : function(panelId) {
52263       var rs = this.regions;
52264       for(var target in rs){
52265          var r = rs[target];
52266          if(typeof r != "function"){
52267             if(r.hasPanel(panelId)){
52268                return r.showPanel(panelId);
52269             }
52270          }
52271       }
52272       return null;
52273    },
52274
52275    /**
52276      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52277      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52278      */
52279     restoreState : function(provider){
52280         if(!provider){
52281             provider = Roo.state.Manager;
52282         }
52283         var sm = new Roo.LayoutStateManager();
52284         sm.init(this, provider);
52285     },
52286
52287     /**
52288      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52289      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52290      * a valid ContentPanel config object.  Example:
52291      * <pre><code>
52292 // Create the main layout
52293 var layout = new Roo.BorderLayout('main-ct', {
52294     west: {
52295         split:true,
52296         minSize: 175,
52297         titlebar: true
52298     },
52299     center: {
52300         title:'Components'
52301     }
52302 }, 'main-ct');
52303
52304 // Create and add multiple ContentPanels at once via configs
52305 layout.batchAdd({
52306    west: {
52307        id: 'source-files',
52308        autoCreate:true,
52309        title:'Ext Source Files',
52310        autoScroll:true,
52311        fitToFrame:true
52312    },
52313    center : {
52314        el: cview,
52315        autoScroll:true,
52316        fitToFrame:true,
52317        toolbar: tb,
52318        resizeEl:'cbody'
52319    }
52320 });
52321 </code></pre>
52322      * @param {Object} regions An object containing ContentPanel configs by region name
52323      */
52324     batchAdd : function(regions){
52325         this.beginUpdate();
52326         for(var rname in regions){
52327             var lr = this.regions[rname];
52328             if(lr){
52329                 this.addTypedPanels(lr, regions[rname]);
52330             }
52331         }
52332         this.endUpdate();
52333     },
52334
52335     // private
52336     addTypedPanels : function(lr, ps){
52337         if(typeof ps == 'string'){
52338             lr.add(new Roo.ContentPanel(ps));
52339         }
52340         else if(ps instanceof Array){
52341             for(var i =0, len = ps.length; i < len; i++){
52342                 this.addTypedPanels(lr, ps[i]);
52343             }
52344         }
52345         else if(!ps.events){ // raw config?
52346             var el = ps.el;
52347             delete ps.el; // prevent conflict
52348             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52349         }
52350         else {  // panel object assumed!
52351             lr.add(ps);
52352         }
52353     },
52354     /**
52355      * Adds a xtype elements to the layout.
52356      * <pre><code>
52357
52358 layout.addxtype({
52359        xtype : 'ContentPanel',
52360        region: 'west',
52361        items: [ .... ]
52362    }
52363 );
52364
52365 layout.addxtype({
52366         xtype : 'NestedLayoutPanel',
52367         region: 'west',
52368         layout: {
52369            center: { },
52370            west: { }   
52371         },
52372         items : [ ... list of content panels or nested layout panels.. ]
52373    }
52374 );
52375 </code></pre>
52376      * @param {Object} cfg Xtype definition of item to add.
52377      */
52378     addxtype : function(cfg)
52379     {
52380         // basically accepts a pannel...
52381         // can accept a layout region..!?!?
52382         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52383         
52384         if (!cfg.xtype.match(/Panel$/)) {
52385             return false;
52386         }
52387         var ret = false;
52388         
52389         if (typeof(cfg.region) == 'undefined') {
52390             Roo.log("Failed to add Panel, region was not set");
52391             Roo.log(cfg);
52392             return false;
52393         }
52394         var region = cfg.region;
52395         delete cfg.region;
52396         
52397           
52398         var xitems = [];
52399         if (cfg.items) {
52400             xitems = cfg.items;
52401             delete cfg.items;
52402         }
52403         var nb = false;
52404         
52405         switch(cfg.xtype) 
52406         {
52407             case 'ContentPanel':  // ContentPanel (el, cfg)
52408             case 'ScrollPanel':  // ContentPanel (el, cfg)
52409             case 'ViewPanel': 
52410                 if(cfg.autoCreate) {
52411                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52412                 } else {
52413                     var el = this.el.createChild();
52414                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52415                 }
52416                 
52417                 this.add(region, ret);
52418                 break;
52419             
52420             
52421             case 'TreePanel': // our new panel!
52422                 cfg.el = this.el.createChild();
52423                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52424                 this.add(region, ret);
52425                 break;
52426             
52427             case 'NestedLayoutPanel': 
52428                 // create a new Layout (which is  a Border Layout...
52429                 var el = this.el.createChild();
52430                 var clayout = cfg.layout;
52431                 delete cfg.layout;
52432                 clayout.items   = clayout.items  || [];
52433                 // replace this exitems with the clayout ones..
52434                 xitems = clayout.items;
52435                  
52436                 
52437                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52438                     cfg.background = false;
52439                 }
52440                 var layout = new Roo.BorderLayout(el, clayout);
52441                 
52442                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52443                 //console.log('adding nested layout panel '  + cfg.toSource());
52444                 this.add(region, ret);
52445                 nb = {}; /// find first...
52446                 break;
52447                 
52448             case 'GridPanel': 
52449             
52450                 // needs grid and region
52451                 
52452                 //var el = this.getRegion(region).el.createChild();
52453                 var el = this.el.createChild();
52454                 // create the grid first...
52455                 
52456                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52457                 delete cfg.grid;
52458                 if (region == 'center' && this.active ) {
52459                     cfg.background = false;
52460                 }
52461                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52462                 
52463                 this.add(region, ret);
52464                 if (cfg.background) {
52465                     ret.on('activate', function(gp) {
52466                         if (!gp.grid.rendered) {
52467                             gp.grid.render();
52468                         }
52469                     });
52470                 } else {
52471                     grid.render();
52472                 }
52473                 break;
52474            
52475            
52476            
52477                 
52478                 
52479                 
52480             default:
52481                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52482                     
52483                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52484                     this.add(region, ret);
52485                 } else {
52486                 
52487                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52488                     return null;
52489                 }
52490                 
52491              // GridPanel (grid, cfg)
52492             
52493         }
52494         this.beginUpdate();
52495         // add children..
52496         var region = '';
52497         var abn = {};
52498         Roo.each(xitems, function(i)  {
52499             region = nb && i.region ? i.region : false;
52500             
52501             var add = ret.addxtype(i);
52502            
52503             if (region) {
52504                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52505                 if (!i.background) {
52506                     abn[region] = nb[region] ;
52507                 }
52508             }
52509             
52510         });
52511         this.endUpdate();
52512
52513         // make the last non-background panel active..
52514         //if (nb) { Roo.log(abn); }
52515         if (nb) {
52516             
52517             for(var r in abn) {
52518                 region = this.getRegion(r);
52519                 if (region) {
52520                     // tried using nb[r], but it does not work..
52521                      
52522                     region.showPanel(abn[r]);
52523                    
52524                 }
52525             }
52526         }
52527         return ret;
52528         
52529     }
52530 });
52531
52532 /**
52533  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52534  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52535  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52536  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52537  * <pre><code>
52538 // shorthand
52539 var CP = Roo.ContentPanel;
52540
52541 var layout = Roo.BorderLayout.create({
52542     north: {
52543         initialSize: 25,
52544         titlebar: false,
52545         panels: [new CP("north", "North")]
52546     },
52547     west: {
52548         split:true,
52549         initialSize: 200,
52550         minSize: 175,
52551         maxSize: 400,
52552         titlebar: true,
52553         collapsible: true,
52554         panels: [new CP("west", {title: "West"})]
52555     },
52556     east: {
52557         split:true,
52558         initialSize: 202,
52559         minSize: 175,
52560         maxSize: 400,
52561         titlebar: true,
52562         collapsible: true,
52563         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52564     },
52565     south: {
52566         split:true,
52567         initialSize: 100,
52568         minSize: 100,
52569         maxSize: 200,
52570         titlebar: true,
52571         collapsible: true,
52572         panels: [new CP("south", {title: "South", closable: true})]
52573     },
52574     center: {
52575         titlebar: true,
52576         autoScroll:true,
52577         resizeTabs: true,
52578         minTabWidth: 50,
52579         preferredTabWidth: 150,
52580         panels: [
52581             new CP("center1", {title: "Close Me", closable: true}),
52582             new CP("center2", {title: "Center Panel", closable: false})
52583         ]
52584     }
52585 }, document.body);
52586
52587 layout.getRegion("center").showPanel("center1");
52588 </code></pre>
52589  * @param config
52590  * @param targetEl
52591  */
52592 Roo.BorderLayout.create = function(config, targetEl){
52593     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52594     layout.beginUpdate();
52595     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52596     for(var j = 0, jlen = regions.length; j < jlen; j++){
52597         var lr = regions[j];
52598         if(layout.regions[lr] && config[lr].panels){
52599             var r = layout.regions[lr];
52600             var ps = config[lr].panels;
52601             layout.addTypedPanels(r, ps);
52602         }
52603     }
52604     layout.endUpdate();
52605     return layout;
52606 };
52607
52608 // private
52609 Roo.BorderLayout.RegionFactory = {
52610     // private
52611     validRegions : ["north","south","east","west","center"],
52612
52613     // private
52614     create : function(target, mgr, config){
52615         target = target.toLowerCase();
52616         if(config.lightweight || config.basic){
52617             return new Roo.BasicLayoutRegion(mgr, config, target);
52618         }
52619         switch(target){
52620             case "north":
52621                 return new Roo.NorthLayoutRegion(mgr, config);
52622             case "south":
52623                 return new Roo.SouthLayoutRegion(mgr, config);
52624             case "east":
52625                 return new Roo.EastLayoutRegion(mgr, config);
52626             case "west":
52627                 return new Roo.WestLayoutRegion(mgr, config);
52628             case "center":
52629                 return new Roo.CenterLayoutRegion(mgr, config);
52630         }
52631         throw 'Layout region "'+target+'" not supported.';
52632     }
52633 };/*
52634  * Based on:
52635  * Ext JS Library 1.1.1
52636  * Copyright(c) 2006-2007, Ext JS, LLC.
52637  *
52638  * Originally Released Under LGPL - original licence link has changed is not relivant.
52639  *
52640  * Fork - LGPL
52641  * <script type="text/javascript">
52642  */
52643  
52644 /**
52645  * @class Roo.BasicLayoutRegion
52646  * @extends Roo.util.Observable
52647  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52648  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52649  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52650  */
52651 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52652     this.mgr = mgr;
52653     this.position  = pos;
52654     this.events = {
52655         /**
52656          * @scope Roo.BasicLayoutRegion
52657          */
52658         
52659         /**
52660          * @event beforeremove
52661          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52662          * @param {Roo.LayoutRegion} this
52663          * @param {Roo.ContentPanel} panel The panel
52664          * @param {Object} e The cancel event object
52665          */
52666         "beforeremove" : true,
52667         /**
52668          * @event invalidated
52669          * Fires when the layout for this region is changed.
52670          * @param {Roo.LayoutRegion} this
52671          */
52672         "invalidated" : true,
52673         /**
52674          * @event visibilitychange
52675          * Fires when this region is shown or hidden 
52676          * @param {Roo.LayoutRegion} this
52677          * @param {Boolean} visibility true or false
52678          */
52679         "visibilitychange" : true,
52680         /**
52681          * @event paneladded
52682          * Fires when a panel is added. 
52683          * @param {Roo.LayoutRegion} this
52684          * @param {Roo.ContentPanel} panel The panel
52685          */
52686         "paneladded" : true,
52687         /**
52688          * @event panelremoved
52689          * Fires when a panel is removed. 
52690          * @param {Roo.LayoutRegion} this
52691          * @param {Roo.ContentPanel} panel The panel
52692          */
52693         "panelremoved" : true,
52694         /**
52695          * @event beforecollapse
52696          * Fires when this region before collapse.
52697          * @param {Roo.LayoutRegion} this
52698          */
52699         "beforecollapse" : true,
52700         /**
52701          * @event collapsed
52702          * Fires when this region is collapsed.
52703          * @param {Roo.LayoutRegion} this
52704          */
52705         "collapsed" : true,
52706         /**
52707          * @event expanded
52708          * Fires when this region is expanded.
52709          * @param {Roo.LayoutRegion} this
52710          */
52711         "expanded" : true,
52712         /**
52713          * @event slideshow
52714          * Fires when this region is slid into view.
52715          * @param {Roo.LayoutRegion} this
52716          */
52717         "slideshow" : true,
52718         /**
52719          * @event slidehide
52720          * Fires when this region slides out of view. 
52721          * @param {Roo.LayoutRegion} this
52722          */
52723         "slidehide" : true,
52724         /**
52725          * @event panelactivated
52726          * Fires when a panel is activated. 
52727          * @param {Roo.LayoutRegion} this
52728          * @param {Roo.ContentPanel} panel The activated panel
52729          */
52730         "panelactivated" : true,
52731         /**
52732          * @event resized
52733          * Fires when the user resizes this region. 
52734          * @param {Roo.LayoutRegion} this
52735          * @param {Number} newSize The new size (width for east/west, height for north/south)
52736          */
52737         "resized" : true
52738     };
52739     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52740     this.panels = new Roo.util.MixedCollection();
52741     this.panels.getKey = this.getPanelId.createDelegate(this);
52742     this.box = null;
52743     this.activePanel = null;
52744     // ensure listeners are added...
52745     
52746     if (config.listeners || config.events) {
52747         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52748             listeners : config.listeners || {},
52749             events : config.events || {}
52750         });
52751     }
52752     
52753     if(skipConfig !== true){
52754         this.applyConfig(config);
52755     }
52756 };
52757
52758 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52759     getPanelId : function(p){
52760         return p.getId();
52761     },
52762     
52763     applyConfig : function(config){
52764         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52765         this.config = config;
52766         
52767     },
52768     
52769     /**
52770      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52771      * the width, for horizontal (north, south) the height.
52772      * @param {Number} newSize The new width or height
52773      */
52774     resizeTo : function(newSize){
52775         var el = this.el ? this.el :
52776                  (this.activePanel ? this.activePanel.getEl() : null);
52777         if(el){
52778             switch(this.position){
52779                 case "east":
52780                 case "west":
52781                     el.setWidth(newSize);
52782                     this.fireEvent("resized", this, newSize);
52783                 break;
52784                 case "north":
52785                 case "south":
52786                     el.setHeight(newSize);
52787                     this.fireEvent("resized", this, newSize);
52788                 break;                
52789             }
52790         }
52791     },
52792     
52793     getBox : function(){
52794         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52795     },
52796     
52797     getMargins : function(){
52798         return this.margins;
52799     },
52800     
52801     updateBox : function(box){
52802         this.box = box;
52803         var el = this.activePanel.getEl();
52804         el.dom.style.left = box.x + "px";
52805         el.dom.style.top = box.y + "px";
52806         this.activePanel.setSize(box.width, box.height);
52807     },
52808     
52809     /**
52810      * Returns the container element for this region.
52811      * @return {Roo.Element}
52812      */
52813     getEl : function(){
52814         return this.activePanel;
52815     },
52816     
52817     /**
52818      * Returns true if this region is currently visible.
52819      * @return {Boolean}
52820      */
52821     isVisible : function(){
52822         return this.activePanel ? true : false;
52823     },
52824     
52825     setActivePanel : function(panel){
52826         panel = this.getPanel(panel);
52827         if(this.activePanel && this.activePanel != panel){
52828             this.activePanel.setActiveState(false);
52829             this.activePanel.getEl().setLeftTop(-10000,-10000);
52830         }
52831         this.activePanel = panel;
52832         panel.setActiveState(true);
52833         if(this.box){
52834             panel.setSize(this.box.width, this.box.height);
52835         }
52836         this.fireEvent("panelactivated", this, panel);
52837         this.fireEvent("invalidated");
52838     },
52839     
52840     /**
52841      * Show the specified panel.
52842      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52843      * @return {Roo.ContentPanel} The shown panel or null
52844      */
52845     showPanel : function(panel){
52846         if(panel = this.getPanel(panel)){
52847             this.setActivePanel(panel);
52848         }
52849         return panel;
52850     },
52851     
52852     /**
52853      * Get the active panel for this region.
52854      * @return {Roo.ContentPanel} The active panel or null
52855      */
52856     getActivePanel : function(){
52857         return this.activePanel;
52858     },
52859     
52860     /**
52861      * Add the passed ContentPanel(s)
52862      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52863      * @return {Roo.ContentPanel} The panel added (if only one was added)
52864      */
52865     add : function(panel){
52866         if(arguments.length > 1){
52867             for(var i = 0, len = arguments.length; i < len; i++) {
52868                 this.add(arguments[i]);
52869             }
52870             return null;
52871         }
52872         if(this.hasPanel(panel)){
52873             this.showPanel(panel);
52874             return panel;
52875         }
52876         var el = panel.getEl();
52877         if(el.dom.parentNode != this.mgr.el.dom){
52878             this.mgr.el.dom.appendChild(el.dom);
52879         }
52880         if(panel.setRegion){
52881             panel.setRegion(this);
52882         }
52883         this.panels.add(panel);
52884         el.setStyle("position", "absolute");
52885         if(!panel.background){
52886             this.setActivePanel(panel);
52887             if(this.config.initialSize && this.panels.getCount()==1){
52888                 this.resizeTo(this.config.initialSize);
52889             }
52890         }
52891         this.fireEvent("paneladded", this, panel);
52892         return panel;
52893     },
52894     
52895     /**
52896      * Returns true if the panel is in this region.
52897      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52898      * @return {Boolean}
52899      */
52900     hasPanel : function(panel){
52901         if(typeof panel == "object"){ // must be panel obj
52902             panel = panel.getId();
52903         }
52904         return this.getPanel(panel) ? true : false;
52905     },
52906     
52907     /**
52908      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52909      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52910      * @param {Boolean} preservePanel Overrides the config preservePanel option
52911      * @return {Roo.ContentPanel} The panel that was removed
52912      */
52913     remove : function(panel, preservePanel){
52914         panel = this.getPanel(panel);
52915         if(!panel){
52916             return null;
52917         }
52918         var e = {};
52919         this.fireEvent("beforeremove", this, panel, e);
52920         if(e.cancel === true){
52921             return null;
52922         }
52923         var panelId = panel.getId();
52924         this.panels.removeKey(panelId);
52925         return panel;
52926     },
52927     
52928     /**
52929      * Returns the panel specified or null if it's not in this region.
52930      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52931      * @return {Roo.ContentPanel}
52932      */
52933     getPanel : function(id){
52934         if(typeof id == "object"){ // must be panel obj
52935             return id;
52936         }
52937         return this.panels.get(id);
52938     },
52939     
52940     /**
52941      * Returns this regions position (north/south/east/west/center).
52942      * @return {String} 
52943      */
52944     getPosition: function(){
52945         return this.position;    
52946     }
52947 });/*
52948  * Based on:
52949  * Ext JS Library 1.1.1
52950  * Copyright(c) 2006-2007, Ext JS, LLC.
52951  *
52952  * Originally Released Under LGPL - original licence link has changed is not relivant.
52953  *
52954  * Fork - LGPL
52955  * <script type="text/javascript">
52956  */
52957  
52958 /**
52959  * @class Roo.LayoutRegion
52960  * @extends Roo.BasicLayoutRegion
52961  * This class represents a region in a layout manager.
52962  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
52963  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
52964  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
52965  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
52966  * @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})
52967  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
52968  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
52969  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
52970  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
52971  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
52972  * @cfg {String}    title           The title for the region (overrides panel titles)
52973  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
52974  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
52975  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
52976  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
52977  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
52978  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
52979  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
52980  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
52981  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
52982  * @cfg {Boolean}   showPin         True to show a pin button
52983  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
52984  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
52985  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
52986  * @cfg {Number}    width           For East/West panels
52987  * @cfg {Number}    height          For North/South panels
52988  * @cfg {Boolean}   split           To show the splitter
52989  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
52990  */
52991 Roo.LayoutRegion = function(mgr, config, pos){
52992     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
52993     var dh = Roo.DomHelper;
52994     /** This region's container element 
52995     * @type Roo.Element */
52996     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
52997     /** This region's title element 
52998     * @type Roo.Element */
52999
53000     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53001         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53002         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53003     ]}, true);
53004     this.titleEl.enableDisplayMode();
53005     /** This region's title text element 
53006     * @type HTMLElement */
53007     this.titleTextEl = this.titleEl.dom.firstChild;
53008     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53009     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53010     this.closeBtn.enableDisplayMode();
53011     this.closeBtn.on("click", this.closeClicked, this);
53012     this.closeBtn.hide();
53013
53014     this.createBody(config);
53015     this.visible = true;
53016     this.collapsed = false;
53017
53018     if(config.hideWhenEmpty){
53019         this.hide();
53020         this.on("paneladded", this.validateVisibility, this);
53021         this.on("panelremoved", this.validateVisibility, this);
53022     }
53023     this.applyConfig(config);
53024 };
53025
53026 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53027
53028     createBody : function(){
53029         /** This region's body element 
53030         * @type Roo.Element */
53031         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53032     },
53033
53034     applyConfig : function(c){
53035         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53036             var dh = Roo.DomHelper;
53037             if(c.titlebar !== false){
53038                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53039                 this.collapseBtn.on("click", this.collapse, this);
53040                 this.collapseBtn.enableDisplayMode();
53041
53042                 if(c.showPin === true || this.showPin){
53043                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53044                     this.stickBtn.enableDisplayMode();
53045                     this.stickBtn.on("click", this.expand, this);
53046                     this.stickBtn.hide();
53047                 }
53048             }
53049             /** This region's collapsed element
53050             * @type Roo.Element */
53051             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53052                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53053             ]}, true);
53054             if(c.floatable !== false){
53055                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53056                this.collapsedEl.on("click", this.collapseClick, this);
53057             }
53058
53059             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53060                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53061                    id: "message", unselectable: "on", style:{"float":"left"}});
53062                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53063              }
53064             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53065             this.expandBtn.on("click", this.expand, this);
53066         }
53067         if(this.collapseBtn){
53068             this.collapseBtn.setVisible(c.collapsible == true);
53069         }
53070         this.cmargins = c.cmargins || this.cmargins ||
53071                          (this.position == "west" || this.position == "east" ?
53072                              {top: 0, left: 2, right:2, bottom: 0} :
53073                              {top: 2, left: 0, right:0, bottom: 2});
53074         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53075         this.bottomTabs = c.tabPosition != "top";
53076         this.autoScroll = c.autoScroll || false;
53077         if(this.autoScroll){
53078             this.bodyEl.setStyle("overflow", "auto");
53079         }else{
53080             this.bodyEl.setStyle("overflow", "hidden");
53081         }
53082         //if(c.titlebar !== false){
53083             if((!c.titlebar && !c.title) || c.titlebar === false){
53084                 this.titleEl.hide();
53085             }else{
53086                 this.titleEl.show();
53087                 if(c.title){
53088                     this.titleTextEl.innerHTML = c.title;
53089                 }
53090             }
53091         //}
53092         this.duration = c.duration || .30;
53093         this.slideDuration = c.slideDuration || .45;
53094         this.config = c;
53095         if(c.collapsed){
53096             this.collapse(true);
53097         }
53098         if(c.hidden){
53099             this.hide();
53100         }
53101     },
53102     /**
53103      * Returns true if this region is currently visible.
53104      * @return {Boolean}
53105      */
53106     isVisible : function(){
53107         return this.visible;
53108     },
53109
53110     /**
53111      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53112      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53113      */
53114     setCollapsedTitle : function(title){
53115         title = title || "&#160;";
53116         if(this.collapsedTitleTextEl){
53117             this.collapsedTitleTextEl.innerHTML = title;
53118         }
53119     },
53120
53121     getBox : function(){
53122         var b;
53123         if(!this.collapsed){
53124             b = this.el.getBox(false, true);
53125         }else{
53126             b = this.collapsedEl.getBox(false, true);
53127         }
53128         return b;
53129     },
53130
53131     getMargins : function(){
53132         return this.collapsed ? this.cmargins : this.margins;
53133     },
53134
53135     highlight : function(){
53136         this.el.addClass("x-layout-panel-dragover");
53137     },
53138
53139     unhighlight : function(){
53140         this.el.removeClass("x-layout-panel-dragover");
53141     },
53142
53143     updateBox : function(box){
53144         this.box = box;
53145         if(!this.collapsed){
53146             this.el.dom.style.left = box.x + "px";
53147             this.el.dom.style.top = box.y + "px";
53148             this.updateBody(box.width, box.height);
53149         }else{
53150             this.collapsedEl.dom.style.left = box.x + "px";
53151             this.collapsedEl.dom.style.top = box.y + "px";
53152             this.collapsedEl.setSize(box.width, box.height);
53153         }
53154         if(this.tabs){
53155             this.tabs.autoSizeTabs();
53156         }
53157     },
53158
53159     updateBody : function(w, h){
53160         if(w !== null){
53161             this.el.setWidth(w);
53162             w -= this.el.getBorderWidth("rl");
53163             if(this.config.adjustments){
53164                 w += this.config.adjustments[0];
53165             }
53166         }
53167         if(h !== null){
53168             this.el.setHeight(h);
53169             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53170             h -= this.el.getBorderWidth("tb");
53171             if(this.config.adjustments){
53172                 h += this.config.adjustments[1];
53173             }
53174             this.bodyEl.setHeight(h);
53175             if(this.tabs){
53176                 h = this.tabs.syncHeight(h);
53177             }
53178         }
53179         if(this.panelSize){
53180             w = w !== null ? w : this.panelSize.width;
53181             h = h !== null ? h : this.panelSize.height;
53182         }
53183         if(this.activePanel){
53184             var el = this.activePanel.getEl();
53185             w = w !== null ? w : el.getWidth();
53186             h = h !== null ? h : el.getHeight();
53187             this.panelSize = {width: w, height: h};
53188             this.activePanel.setSize(w, h);
53189         }
53190         if(Roo.isIE && this.tabs){
53191             this.tabs.el.repaint();
53192         }
53193     },
53194
53195     /**
53196      * Returns the container element for this region.
53197      * @return {Roo.Element}
53198      */
53199     getEl : function(){
53200         return this.el;
53201     },
53202
53203     /**
53204      * Hides this region.
53205      */
53206     hide : function(){
53207         if(!this.collapsed){
53208             this.el.dom.style.left = "-2000px";
53209             this.el.hide();
53210         }else{
53211             this.collapsedEl.dom.style.left = "-2000px";
53212             this.collapsedEl.hide();
53213         }
53214         this.visible = false;
53215         this.fireEvent("visibilitychange", this, false);
53216     },
53217
53218     /**
53219      * Shows this region if it was previously hidden.
53220      */
53221     show : function(){
53222         if(!this.collapsed){
53223             this.el.show();
53224         }else{
53225             this.collapsedEl.show();
53226         }
53227         this.visible = true;
53228         this.fireEvent("visibilitychange", this, true);
53229     },
53230
53231     closeClicked : function(){
53232         if(this.activePanel){
53233             this.remove(this.activePanel);
53234         }
53235     },
53236
53237     collapseClick : function(e){
53238         if(this.isSlid){
53239            e.stopPropagation();
53240            this.slideIn();
53241         }else{
53242            e.stopPropagation();
53243            this.slideOut();
53244         }
53245     },
53246
53247     /**
53248      * Collapses this region.
53249      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53250      */
53251     collapse : function(skipAnim, skipCheck){
53252         if(this.collapsed) {
53253             return;
53254         }
53255         
53256         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53257             
53258             this.collapsed = true;
53259             if(this.split){
53260                 this.split.el.hide();
53261             }
53262             if(this.config.animate && skipAnim !== true){
53263                 this.fireEvent("invalidated", this);
53264                 this.animateCollapse();
53265             }else{
53266                 this.el.setLocation(-20000,-20000);
53267                 this.el.hide();
53268                 this.collapsedEl.show();
53269                 this.fireEvent("collapsed", this);
53270                 this.fireEvent("invalidated", this);
53271             }
53272         }
53273         
53274     },
53275
53276     animateCollapse : function(){
53277         // overridden
53278     },
53279
53280     /**
53281      * Expands this region if it was previously collapsed.
53282      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53283      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53284      */
53285     expand : function(e, skipAnim){
53286         if(e) {
53287             e.stopPropagation();
53288         }
53289         if(!this.collapsed || this.el.hasActiveFx()) {
53290             return;
53291         }
53292         if(this.isSlid){
53293             this.afterSlideIn();
53294             skipAnim = true;
53295         }
53296         this.collapsed = false;
53297         if(this.config.animate && skipAnim !== true){
53298             this.animateExpand();
53299         }else{
53300             this.el.show();
53301             if(this.split){
53302                 this.split.el.show();
53303             }
53304             this.collapsedEl.setLocation(-2000,-2000);
53305             this.collapsedEl.hide();
53306             this.fireEvent("invalidated", this);
53307             this.fireEvent("expanded", this);
53308         }
53309     },
53310
53311     animateExpand : function(){
53312         // overridden
53313     },
53314
53315     initTabs : function()
53316     {
53317         this.bodyEl.setStyle("overflow", "hidden");
53318         var ts = new Roo.TabPanel(
53319                 this.bodyEl.dom,
53320                 {
53321                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53322                     disableTooltips: this.config.disableTabTips,
53323                     toolbar : this.config.toolbar
53324                 }
53325         );
53326         if(this.config.hideTabs){
53327             ts.stripWrap.setDisplayed(false);
53328         }
53329         this.tabs = ts;
53330         ts.resizeTabs = this.config.resizeTabs === true;
53331         ts.minTabWidth = this.config.minTabWidth || 40;
53332         ts.maxTabWidth = this.config.maxTabWidth || 250;
53333         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53334         ts.monitorResize = false;
53335         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53336         ts.bodyEl.addClass('x-layout-tabs-body');
53337         this.panels.each(this.initPanelAsTab, this);
53338     },
53339
53340     initPanelAsTab : function(panel){
53341         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53342                     this.config.closeOnTab && panel.isClosable());
53343         if(panel.tabTip !== undefined){
53344             ti.setTooltip(panel.tabTip);
53345         }
53346         ti.on("activate", function(){
53347               this.setActivePanel(panel);
53348         }, this);
53349         if(this.config.closeOnTab){
53350             ti.on("beforeclose", function(t, e){
53351                 e.cancel = true;
53352                 this.remove(panel);
53353             }, this);
53354         }
53355         return ti;
53356     },
53357
53358     updatePanelTitle : function(panel, title){
53359         if(this.activePanel == panel){
53360             this.updateTitle(title);
53361         }
53362         if(this.tabs){
53363             var ti = this.tabs.getTab(panel.getEl().id);
53364             ti.setText(title);
53365             if(panel.tabTip !== undefined){
53366                 ti.setTooltip(panel.tabTip);
53367             }
53368         }
53369     },
53370
53371     updateTitle : function(title){
53372         if(this.titleTextEl && !this.config.title){
53373             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53374         }
53375     },
53376
53377     setActivePanel : function(panel){
53378         panel = this.getPanel(panel);
53379         if(this.activePanel && this.activePanel != panel){
53380             this.activePanel.setActiveState(false);
53381         }
53382         this.activePanel = panel;
53383         panel.setActiveState(true);
53384         if(this.panelSize){
53385             panel.setSize(this.panelSize.width, this.panelSize.height);
53386         }
53387         if(this.closeBtn){
53388             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53389         }
53390         this.updateTitle(panel.getTitle());
53391         if(this.tabs){
53392             this.fireEvent("invalidated", this);
53393         }
53394         this.fireEvent("panelactivated", this, panel);
53395     },
53396
53397     /**
53398      * Shows the specified panel.
53399      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53400      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53401      */
53402     showPanel : function(panel)
53403     {
53404         panel = this.getPanel(panel);
53405         if(panel){
53406             if(this.tabs){
53407                 var tab = this.tabs.getTab(panel.getEl().id);
53408                 if(tab.isHidden()){
53409                     this.tabs.unhideTab(tab.id);
53410                 }
53411                 tab.activate();
53412             }else{
53413                 this.setActivePanel(panel);
53414             }
53415         }
53416         return panel;
53417     },
53418
53419     /**
53420      * Get the active panel for this region.
53421      * @return {Roo.ContentPanel} The active panel or null
53422      */
53423     getActivePanel : function(){
53424         return this.activePanel;
53425     },
53426
53427     validateVisibility : function(){
53428         if(this.panels.getCount() < 1){
53429             this.updateTitle("&#160;");
53430             this.closeBtn.hide();
53431             this.hide();
53432         }else{
53433             if(!this.isVisible()){
53434                 this.show();
53435             }
53436         }
53437     },
53438
53439     /**
53440      * Adds the passed ContentPanel(s) to this region.
53441      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53442      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53443      */
53444     add : function(panel){
53445         if(arguments.length > 1){
53446             for(var i = 0, len = arguments.length; i < len; i++) {
53447                 this.add(arguments[i]);
53448             }
53449             return null;
53450         }
53451         if(this.hasPanel(panel)){
53452             this.showPanel(panel);
53453             return panel;
53454         }
53455         panel.setRegion(this);
53456         this.panels.add(panel);
53457         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53458             this.bodyEl.dom.appendChild(panel.getEl().dom);
53459             if(panel.background !== true){
53460                 this.setActivePanel(panel);
53461             }
53462             this.fireEvent("paneladded", this, panel);
53463             return panel;
53464         }
53465         if(!this.tabs){
53466             this.initTabs();
53467         }else{
53468             this.initPanelAsTab(panel);
53469         }
53470         if(panel.background !== true){
53471             this.tabs.activate(panel.getEl().id);
53472         }
53473         this.fireEvent("paneladded", this, panel);
53474         return panel;
53475     },
53476
53477     /**
53478      * Hides the tab for the specified panel.
53479      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53480      */
53481     hidePanel : function(panel){
53482         if(this.tabs && (panel = this.getPanel(panel))){
53483             this.tabs.hideTab(panel.getEl().id);
53484         }
53485     },
53486
53487     /**
53488      * Unhides the tab for a previously hidden panel.
53489      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53490      */
53491     unhidePanel : function(panel){
53492         if(this.tabs && (panel = this.getPanel(panel))){
53493             this.tabs.unhideTab(panel.getEl().id);
53494         }
53495     },
53496
53497     clearPanels : function(){
53498         while(this.panels.getCount() > 0){
53499              this.remove(this.panels.first());
53500         }
53501     },
53502
53503     /**
53504      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53505      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53506      * @param {Boolean} preservePanel Overrides the config preservePanel option
53507      * @return {Roo.ContentPanel} The panel that was removed
53508      */
53509     remove : function(panel, preservePanel){
53510         panel = this.getPanel(panel);
53511         if(!panel){
53512             return null;
53513         }
53514         var e = {};
53515         this.fireEvent("beforeremove", this, panel, e);
53516         if(e.cancel === true){
53517             return null;
53518         }
53519         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53520         var panelId = panel.getId();
53521         this.panels.removeKey(panelId);
53522         if(preservePanel){
53523             document.body.appendChild(panel.getEl().dom);
53524         }
53525         if(this.tabs){
53526             this.tabs.removeTab(panel.getEl().id);
53527         }else if (!preservePanel){
53528             this.bodyEl.dom.removeChild(panel.getEl().dom);
53529         }
53530         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53531             var p = this.panels.first();
53532             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53533             tempEl.appendChild(p.getEl().dom);
53534             this.bodyEl.update("");
53535             this.bodyEl.dom.appendChild(p.getEl().dom);
53536             tempEl = null;
53537             this.updateTitle(p.getTitle());
53538             this.tabs = null;
53539             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53540             this.setActivePanel(p);
53541         }
53542         panel.setRegion(null);
53543         if(this.activePanel == panel){
53544             this.activePanel = null;
53545         }
53546         if(this.config.autoDestroy !== false && preservePanel !== true){
53547             try{panel.destroy();}catch(e){}
53548         }
53549         this.fireEvent("panelremoved", this, panel);
53550         return panel;
53551     },
53552
53553     /**
53554      * Returns the TabPanel component used by this region
53555      * @return {Roo.TabPanel}
53556      */
53557     getTabs : function(){
53558         return this.tabs;
53559     },
53560
53561     createTool : function(parentEl, className){
53562         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53563             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53564         btn.addClassOnOver("x-layout-tools-button-over");
53565         return btn;
53566     }
53567 });/*
53568  * Based on:
53569  * Ext JS Library 1.1.1
53570  * Copyright(c) 2006-2007, Ext JS, LLC.
53571  *
53572  * Originally Released Under LGPL - original licence link has changed is not relivant.
53573  *
53574  * Fork - LGPL
53575  * <script type="text/javascript">
53576  */
53577  
53578
53579
53580 /**
53581  * @class Roo.SplitLayoutRegion
53582  * @extends Roo.LayoutRegion
53583  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53584  */
53585 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53586     this.cursor = cursor;
53587     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53588 };
53589
53590 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53591     splitTip : "Drag to resize.",
53592     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53593     useSplitTips : false,
53594
53595     applyConfig : function(config){
53596         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53597         if(config.split){
53598             if(!this.split){
53599                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53600                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53601                 /** The SplitBar for this region 
53602                 * @type Roo.SplitBar */
53603                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53604                 this.split.on("moved", this.onSplitMove, this);
53605                 this.split.useShim = config.useShim === true;
53606                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53607                 if(this.useSplitTips){
53608                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53609                 }
53610                 if(config.collapsible){
53611                     this.split.el.on("dblclick", this.collapse,  this);
53612                 }
53613             }
53614             if(typeof config.minSize != "undefined"){
53615                 this.split.minSize = config.minSize;
53616             }
53617             if(typeof config.maxSize != "undefined"){
53618                 this.split.maxSize = config.maxSize;
53619             }
53620             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53621                 this.hideSplitter();
53622             }
53623         }
53624     },
53625
53626     getHMaxSize : function(){
53627          var cmax = this.config.maxSize || 10000;
53628          var center = this.mgr.getRegion("center");
53629          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53630     },
53631
53632     getVMaxSize : function(){
53633          var cmax = this.config.maxSize || 10000;
53634          var center = this.mgr.getRegion("center");
53635          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53636     },
53637
53638     onSplitMove : function(split, newSize){
53639         this.fireEvent("resized", this, newSize);
53640     },
53641     
53642     /** 
53643      * Returns the {@link Roo.SplitBar} for this region.
53644      * @return {Roo.SplitBar}
53645      */
53646     getSplitBar : function(){
53647         return this.split;
53648     },
53649     
53650     hide : function(){
53651         this.hideSplitter();
53652         Roo.SplitLayoutRegion.superclass.hide.call(this);
53653     },
53654
53655     hideSplitter : function(){
53656         if(this.split){
53657             this.split.el.setLocation(-2000,-2000);
53658             this.split.el.hide();
53659         }
53660     },
53661
53662     show : function(){
53663         if(this.split){
53664             this.split.el.show();
53665         }
53666         Roo.SplitLayoutRegion.superclass.show.call(this);
53667     },
53668     
53669     beforeSlide: function(){
53670         if(Roo.isGecko){// firefox overflow auto bug workaround
53671             this.bodyEl.clip();
53672             if(this.tabs) {
53673                 this.tabs.bodyEl.clip();
53674             }
53675             if(this.activePanel){
53676                 this.activePanel.getEl().clip();
53677                 
53678                 if(this.activePanel.beforeSlide){
53679                     this.activePanel.beforeSlide();
53680                 }
53681             }
53682         }
53683     },
53684     
53685     afterSlide : function(){
53686         if(Roo.isGecko){// firefox overflow auto bug workaround
53687             this.bodyEl.unclip();
53688             if(this.tabs) {
53689                 this.tabs.bodyEl.unclip();
53690             }
53691             if(this.activePanel){
53692                 this.activePanel.getEl().unclip();
53693                 if(this.activePanel.afterSlide){
53694                     this.activePanel.afterSlide();
53695                 }
53696             }
53697         }
53698     },
53699
53700     initAutoHide : function(){
53701         if(this.autoHide !== false){
53702             if(!this.autoHideHd){
53703                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53704                 this.autoHideHd = {
53705                     "mouseout": function(e){
53706                         if(!e.within(this.el, true)){
53707                             st.delay(500);
53708                         }
53709                     },
53710                     "mouseover" : function(e){
53711                         st.cancel();
53712                     },
53713                     scope : this
53714                 };
53715             }
53716             this.el.on(this.autoHideHd);
53717         }
53718     },
53719
53720     clearAutoHide : function(){
53721         if(this.autoHide !== false){
53722             this.el.un("mouseout", this.autoHideHd.mouseout);
53723             this.el.un("mouseover", this.autoHideHd.mouseover);
53724         }
53725     },
53726
53727     clearMonitor : function(){
53728         Roo.get(document).un("click", this.slideInIf, this);
53729     },
53730
53731     // these names are backwards but not changed for compat
53732     slideOut : function(){
53733         if(this.isSlid || this.el.hasActiveFx()){
53734             return;
53735         }
53736         this.isSlid = true;
53737         if(this.collapseBtn){
53738             this.collapseBtn.hide();
53739         }
53740         this.closeBtnState = this.closeBtn.getStyle('display');
53741         this.closeBtn.hide();
53742         if(this.stickBtn){
53743             this.stickBtn.show();
53744         }
53745         this.el.show();
53746         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53747         this.beforeSlide();
53748         this.el.setStyle("z-index", 10001);
53749         this.el.slideIn(this.getSlideAnchor(), {
53750             callback: function(){
53751                 this.afterSlide();
53752                 this.initAutoHide();
53753                 Roo.get(document).on("click", this.slideInIf, this);
53754                 this.fireEvent("slideshow", this);
53755             },
53756             scope: this,
53757             block: true
53758         });
53759     },
53760
53761     afterSlideIn : function(){
53762         this.clearAutoHide();
53763         this.isSlid = false;
53764         this.clearMonitor();
53765         this.el.setStyle("z-index", "");
53766         if(this.collapseBtn){
53767             this.collapseBtn.show();
53768         }
53769         this.closeBtn.setStyle('display', this.closeBtnState);
53770         if(this.stickBtn){
53771             this.stickBtn.hide();
53772         }
53773         this.fireEvent("slidehide", this);
53774     },
53775
53776     slideIn : function(cb){
53777         if(!this.isSlid || this.el.hasActiveFx()){
53778             Roo.callback(cb);
53779             return;
53780         }
53781         this.isSlid = false;
53782         this.beforeSlide();
53783         this.el.slideOut(this.getSlideAnchor(), {
53784             callback: function(){
53785                 this.el.setLeftTop(-10000, -10000);
53786                 this.afterSlide();
53787                 this.afterSlideIn();
53788                 Roo.callback(cb);
53789             },
53790             scope: this,
53791             block: true
53792         });
53793     },
53794     
53795     slideInIf : function(e){
53796         if(!e.within(this.el)){
53797             this.slideIn();
53798         }
53799     },
53800
53801     animateCollapse : function(){
53802         this.beforeSlide();
53803         this.el.setStyle("z-index", 20000);
53804         var anchor = this.getSlideAnchor();
53805         this.el.slideOut(anchor, {
53806             callback : function(){
53807                 this.el.setStyle("z-index", "");
53808                 this.collapsedEl.slideIn(anchor, {duration:.3});
53809                 this.afterSlide();
53810                 this.el.setLocation(-10000,-10000);
53811                 this.el.hide();
53812                 this.fireEvent("collapsed", this);
53813             },
53814             scope: this,
53815             block: true
53816         });
53817     },
53818
53819     animateExpand : function(){
53820         this.beforeSlide();
53821         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53822         this.el.setStyle("z-index", 20000);
53823         this.collapsedEl.hide({
53824             duration:.1
53825         });
53826         this.el.slideIn(this.getSlideAnchor(), {
53827             callback : function(){
53828                 this.el.setStyle("z-index", "");
53829                 this.afterSlide();
53830                 if(this.split){
53831                     this.split.el.show();
53832                 }
53833                 this.fireEvent("invalidated", this);
53834                 this.fireEvent("expanded", this);
53835             },
53836             scope: this,
53837             block: true
53838         });
53839     },
53840
53841     anchors : {
53842         "west" : "left",
53843         "east" : "right",
53844         "north" : "top",
53845         "south" : "bottom"
53846     },
53847
53848     sanchors : {
53849         "west" : "l",
53850         "east" : "r",
53851         "north" : "t",
53852         "south" : "b"
53853     },
53854
53855     canchors : {
53856         "west" : "tl-tr",
53857         "east" : "tr-tl",
53858         "north" : "tl-bl",
53859         "south" : "bl-tl"
53860     },
53861
53862     getAnchor : function(){
53863         return this.anchors[this.position];
53864     },
53865
53866     getCollapseAnchor : function(){
53867         return this.canchors[this.position];
53868     },
53869
53870     getSlideAnchor : function(){
53871         return this.sanchors[this.position];
53872     },
53873
53874     getAlignAdj : function(){
53875         var cm = this.cmargins;
53876         switch(this.position){
53877             case "west":
53878                 return [0, 0];
53879             break;
53880             case "east":
53881                 return [0, 0];
53882             break;
53883             case "north":
53884                 return [0, 0];
53885             break;
53886             case "south":
53887                 return [0, 0];
53888             break;
53889         }
53890     },
53891
53892     getExpandAdj : function(){
53893         var c = this.collapsedEl, cm = this.cmargins;
53894         switch(this.position){
53895             case "west":
53896                 return [-(cm.right+c.getWidth()+cm.left), 0];
53897             break;
53898             case "east":
53899                 return [cm.right+c.getWidth()+cm.left, 0];
53900             break;
53901             case "north":
53902                 return [0, -(cm.top+cm.bottom+c.getHeight())];
53903             break;
53904             case "south":
53905                 return [0, cm.top+cm.bottom+c.getHeight()];
53906             break;
53907         }
53908     }
53909 });/*
53910  * Based on:
53911  * Ext JS Library 1.1.1
53912  * Copyright(c) 2006-2007, Ext JS, LLC.
53913  *
53914  * Originally Released Under LGPL - original licence link has changed is not relivant.
53915  *
53916  * Fork - LGPL
53917  * <script type="text/javascript">
53918  */
53919 /*
53920  * These classes are private internal classes
53921  */
53922 Roo.CenterLayoutRegion = function(mgr, config){
53923     Roo.LayoutRegion.call(this, mgr, config, "center");
53924     this.visible = true;
53925     this.minWidth = config.minWidth || 20;
53926     this.minHeight = config.minHeight || 20;
53927 };
53928
53929 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
53930     hide : function(){
53931         // center panel can't be hidden
53932     },
53933     
53934     show : function(){
53935         // center panel can't be hidden
53936     },
53937     
53938     getMinWidth: function(){
53939         return this.minWidth;
53940     },
53941     
53942     getMinHeight: function(){
53943         return this.minHeight;
53944     }
53945 });
53946
53947
53948 Roo.NorthLayoutRegion = function(mgr, config){
53949     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
53950     if(this.split){
53951         this.split.placement = Roo.SplitBar.TOP;
53952         this.split.orientation = Roo.SplitBar.VERTICAL;
53953         this.split.el.addClass("x-layout-split-v");
53954     }
53955     var size = config.initialSize || config.height;
53956     if(typeof size != "undefined"){
53957         this.el.setHeight(size);
53958     }
53959 };
53960 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
53961     orientation: Roo.SplitBar.VERTICAL,
53962     getBox : function(){
53963         if(this.collapsed){
53964             return this.collapsedEl.getBox();
53965         }
53966         var box = this.el.getBox();
53967         if(this.split){
53968             box.height += this.split.el.getHeight();
53969         }
53970         return box;
53971     },
53972     
53973     updateBox : function(box){
53974         if(this.split && !this.collapsed){
53975             box.height -= this.split.el.getHeight();
53976             this.split.el.setLeft(box.x);
53977             this.split.el.setTop(box.y+box.height);
53978             this.split.el.setWidth(box.width);
53979         }
53980         if(this.collapsed){
53981             this.updateBody(box.width, null);
53982         }
53983         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53984     }
53985 });
53986
53987 Roo.SouthLayoutRegion = function(mgr, config){
53988     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
53989     if(this.split){
53990         this.split.placement = Roo.SplitBar.BOTTOM;
53991         this.split.orientation = Roo.SplitBar.VERTICAL;
53992         this.split.el.addClass("x-layout-split-v");
53993     }
53994     var size = config.initialSize || config.height;
53995     if(typeof size != "undefined"){
53996         this.el.setHeight(size);
53997     }
53998 };
53999 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54000     orientation: Roo.SplitBar.VERTICAL,
54001     getBox : function(){
54002         if(this.collapsed){
54003             return this.collapsedEl.getBox();
54004         }
54005         var box = this.el.getBox();
54006         if(this.split){
54007             var sh = this.split.el.getHeight();
54008             box.height += sh;
54009             box.y -= sh;
54010         }
54011         return box;
54012     },
54013     
54014     updateBox : function(box){
54015         if(this.split && !this.collapsed){
54016             var sh = this.split.el.getHeight();
54017             box.height -= sh;
54018             box.y += sh;
54019             this.split.el.setLeft(box.x);
54020             this.split.el.setTop(box.y-sh);
54021             this.split.el.setWidth(box.width);
54022         }
54023         if(this.collapsed){
54024             this.updateBody(box.width, null);
54025         }
54026         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54027     }
54028 });
54029
54030 Roo.EastLayoutRegion = function(mgr, config){
54031     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54032     if(this.split){
54033         this.split.placement = Roo.SplitBar.RIGHT;
54034         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54035         this.split.el.addClass("x-layout-split-h");
54036     }
54037     var size = config.initialSize || config.width;
54038     if(typeof size != "undefined"){
54039         this.el.setWidth(size);
54040     }
54041 };
54042 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54043     orientation: Roo.SplitBar.HORIZONTAL,
54044     getBox : function(){
54045         if(this.collapsed){
54046             return this.collapsedEl.getBox();
54047         }
54048         var box = this.el.getBox();
54049         if(this.split){
54050             var sw = this.split.el.getWidth();
54051             box.width += sw;
54052             box.x -= sw;
54053         }
54054         return box;
54055     },
54056
54057     updateBox : function(box){
54058         if(this.split && !this.collapsed){
54059             var sw = this.split.el.getWidth();
54060             box.width -= sw;
54061             this.split.el.setLeft(box.x);
54062             this.split.el.setTop(box.y);
54063             this.split.el.setHeight(box.height);
54064             box.x += sw;
54065         }
54066         if(this.collapsed){
54067             this.updateBody(null, box.height);
54068         }
54069         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54070     }
54071 });
54072
54073 Roo.WestLayoutRegion = function(mgr, config){
54074     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54075     if(this.split){
54076         this.split.placement = Roo.SplitBar.LEFT;
54077         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54078         this.split.el.addClass("x-layout-split-h");
54079     }
54080     var size = config.initialSize || config.width;
54081     if(typeof size != "undefined"){
54082         this.el.setWidth(size);
54083     }
54084 };
54085 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54086     orientation: Roo.SplitBar.HORIZONTAL,
54087     getBox : function(){
54088         if(this.collapsed){
54089             return this.collapsedEl.getBox();
54090         }
54091         var box = this.el.getBox();
54092         if(this.split){
54093             box.width += this.split.el.getWidth();
54094         }
54095         return box;
54096     },
54097     
54098     updateBox : function(box){
54099         if(this.split && !this.collapsed){
54100             var sw = this.split.el.getWidth();
54101             box.width -= sw;
54102             this.split.el.setLeft(box.x+box.width);
54103             this.split.el.setTop(box.y);
54104             this.split.el.setHeight(box.height);
54105         }
54106         if(this.collapsed){
54107             this.updateBody(null, box.height);
54108         }
54109         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54110     }
54111 });
54112 /*
54113  * Based on:
54114  * Ext JS Library 1.1.1
54115  * Copyright(c) 2006-2007, Ext JS, LLC.
54116  *
54117  * Originally Released Under LGPL - original licence link has changed is not relivant.
54118  *
54119  * Fork - LGPL
54120  * <script type="text/javascript">
54121  */
54122  
54123  
54124 /*
54125  * Private internal class for reading and applying state
54126  */
54127 Roo.LayoutStateManager = function(layout){
54128      // default empty state
54129      this.state = {
54130         north: {},
54131         south: {},
54132         east: {},
54133         west: {}       
54134     };
54135 };
54136
54137 Roo.LayoutStateManager.prototype = {
54138     init : function(layout, provider){
54139         this.provider = provider;
54140         var state = provider.get(layout.id+"-layout-state");
54141         if(state){
54142             var wasUpdating = layout.isUpdating();
54143             if(!wasUpdating){
54144                 layout.beginUpdate();
54145             }
54146             for(var key in state){
54147                 if(typeof state[key] != "function"){
54148                     var rstate = state[key];
54149                     var r = layout.getRegion(key);
54150                     if(r && rstate){
54151                         if(rstate.size){
54152                             r.resizeTo(rstate.size);
54153                         }
54154                         if(rstate.collapsed == true){
54155                             r.collapse(true);
54156                         }else{
54157                             r.expand(null, true);
54158                         }
54159                     }
54160                 }
54161             }
54162             if(!wasUpdating){
54163                 layout.endUpdate();
54164             }
54165             this.state = state; 
54166         }
54167         this.layout = layout;
54168         layout.on("regionresized", this.onRegionResized, this);
54169         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54170         layout.on("regionexpanded", this.onRegionExpanded, this);
54171     },
54172     
54173     storeState : function(){
54174         this.provider.set(this.layout.id+"-layout-state", this.state);
54175     },
54176     
54177     onRegionResized : function(region, newSize){
54178         this.state[region.getPosition()].size = newSize;
54179         this.storeState();
54180     },
54181     
54182     onRegionCollapsed : function(region){
54183         this.state[region.getPosition()].collapsed = true;
54184         this.storeState();
54185     },
54186     
54187     onRegionExpanded : function(region){
54188         this.state[region.getPosition()].collapsed = false;
54189         this.storeState();
54190     }
54191 };/*
54192  * Based on:
54193  * Ext JS Library 1.1.1
54194  * Copyright(c) 2006-2007, Ext JS, LLC.
54195  *
54196  * Originally Released Under LGPL - original licence link has changed is not relivant.
54197  *
54198  * Fork - LGPL
54199  * <script type="text/javascript">
54200  */
54201 /**
54202  * @class Roo.ContentPanel
54203  * @extends Roo.util.Observable
54204  * A basic ContentPanel element.
54205  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54206  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54207  * @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
54208  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54209  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54210  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54211  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54212  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54213  * @cfg {String} title          The title for this panel
54214  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54215  * @cfg {String} url            Calls {@link #setUrl} with this value
54216  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54217  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54218  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54219  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54220  * @cfg {String}    style  Extra style to add to the content panel 
54221
54222  * @constructor
54223  * Create a new ContentPanel.
54224  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54225  * @param {String/Object} config A string to set only the title or a config object
54226  * @param {String} content (optional) Set the HTML content for this panel
54227  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54228  */
54229 Roo.ContentPanel = function(el, config, content){
54230     
54231      
54232     /*
54233     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54234         config = el;
54235         el = Roo.id();
54236     }
54237     if (config && config.parentLayout) { 
54238         el = config.parentLayout.el.createChild(); 
54239     }
54240     */
54241     if(el.autoCreate){ // xtype is available if this is called from factory
54242         config = el;
54243         el = Roo.id();
54244     }
54245     this.el = Roo.get(el);
54246     if(!this.el && config && config.autoCreate){
54247         if(typeof config.autoCreate == "object"){
54248             if(!config.autoCreate.id){
54249                 config.autoCreate.id = config.id||el;
54250             }
54251             this.el = Roo.DomHelper.append(document.body,
54252                         config.autoCreate, true);
54253         }else{
54254             this.el = Roo.DomHelper.append(document.body,
54255                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54256         }
54257     }
54258     
54259     
54260     this.closable = false;
54261     this.loaded = false;
54262     this.active = false;
54263     if(typeof config == "string"){
54264         this.title = config;
54265     }else{
54266         Roo.apply(this, config);
54267     }
54268     
54269     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54270         this.wrapEl = this.el.wrap();
54271         this.toolbar.container = this.el.insertSibling(false, 'before');
54272         this.toolbar = new Roo.Toolbar(this.toolbar);
54273     }
54274     
54275     // xtype created footer. - not sure if will work as we normally have to render first..
54276     if (this.footer && !this.footer.el && this.footer.xtype) {
54277         if (!this.wrapEl) {
54278             this.wrapEl = this.el.wrap();
54279         }
54280     
54281         this.footer.container = this.wrapEl.createChild();
54282          
54283         this.footer = Roo.factory(this.footer, Roo);
54284         
54285     }
54286     
54287     if(this.resizeEl){
54288         this.resizeEl = Roo.get(this.resizeEl, true);
54289     }else{
54290         this.resizeEl = this.el;
54291     }
54292     // handle view.xtype
54293     
54294  
54295     
54296     
54297     this.addEvents({
54298         /**
54299          * @event activate
54300          * Fires when this panel is activated. 
54301          * @param {Roo.ContentPanel} this
54302          */
54303         "activate" : true,
54304         /**
54305          * @event deactivate
54306          * Fires when this panel is activated. 
54307          * @param {Roo.ContentPanel} this
54308          */
54309         "deactivate" : true,
54310
54311         /**
54312          * @event resize
54313          * Fires when this panel is resized if fitToFrame is true.
54314          * @param {Roo.ContentPanel} this
54315          * @param {Number} width The width after any component adjustments
54316          * @param {Number} height The height after any component adjustments
54317          */
54318         "resize" : true,
54319         
54320          /**
54321          * @event render
54322          * Fires when this tab is created
54323          * @param {Roo.ContentPanel} this
54324          */
54325         "render" : true
54326          
54327         
54328     });
54329     
54330
54331     
54332     
54333     if(this.autoScroll){
54334         this.resizeEl.setStyle("overflow", "auto");
54335     } else {
54336         // fix randome scrolling
54337         this.el.on('scroll', function() {
54338             Roo.log('fix random scolling');
54339             this.scrollTo('top',0); 
54340         });
54341     }
54342     content = content || this.content;
54343     if(content){
54344         this.setContent(content);
54345     }
54346     if(config && config.url){
54347         this.setUrl(this.url, this.params, this.loadOnce);
54348     }
54349     
54350     
54351     
54352     Roo.ContentPanel.superclass.constructor.call(this);
54353     
54354     if (this.view && typeof(this.view.xtype) != 'undefined') {
54355         this.view.el = this.el.appendChild(document.createElement("div"));
54356         this.view = Roo.factory(this.view); 
54357         this.view.render  &&  this.view.render(false, '');  
54358     }
54359     
54360     
54361     this.fireEvent('render', this);
54362 };
54363
54364 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54365     tabTip:'',
54366     setRegion : function(region){
54367         this.region = region;
54368         if(region){
54369            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54370         }else{
54371            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54372         } 
54373     },
54374     
54375     /**
54376      * Returns the toolbar for this Panel if one was configured. 
54377      * @return {Roo.Toolbar} 
54378      */
54379     getToolbar : function(){
54380         return this.toolbar;
54381     },
54382     
54383     setActiveState : function(active){
54384         this.active = active;
54385         if(!active){
54386             this.fireEvent("deactivate", this);
54387         }else{
54388             this.fireEvent("activate", this);
54389         }
54390     },
54391     /**
54392      * Updates this panel's element
54393      * @param {String} content The new content
54394      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54395     */
54396     setContent : function(content, loadScripts){
54397         this.el.update(content, loadScripts);
54398     },
54399
54400     ignoreResize : function(w, h){
54401         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54402             return true;
54403         }else{
54404             this.lastSize = {width: w, height: h};
54405             return false;
54406         }
54407     },
54408     /**
54409      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54410      * @return {Roo.UpdateManager} The UpdateManager
54411      */
54412     getUpdateManager : function(){
54413         return this.el.getUpdateManager();
54414     },
54415      /**
54416      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54417      * @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:
54418 <pre><code>
54419 panel.load({
54420     url: "your-url.php",
54421     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54422     callback: yourFunction,
54423     scope: yourObject, //(optional scope)
54424     discardUrl: false,
54425     nocache: false,
54426     text: "Loading...",
54427     timeout: 30,
54428     scripts: false
54429 });
54430 </code></pre>
54431      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54432      * 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.
54433      * @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}
54434      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54435      * @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.
54436      * @return {Roo.ContentPanel} this
54437      */
54438     load : function(){
54439         var um = this.el.getUpdateManager();
54440         um.update.apply(um, arguments);
54441         return this;
54442     },
54443
54444
54445     /**
54446      * 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.
54447      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54448      * @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)
54449      * @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)
54450      * @return {Roo.UpdateManager} The UpdateManager
54451      */
54452     setUrl : function(url, params, loadOnce){
54453         if(this.refreshDelegate){
54454             this.removeListener("activate", this.refreshDelegate);
54455         }
54456         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54457         this.on("activate", this.refreshDelegate);
54458         return this.el.getUpdateManager();
54459     },
54460     
54461     _handleRefresh : function(url, params, loadOnce){
54462         if(!loadOnce || !this.loaded){
54463             var updater = this.el.getUpdateManager();
54464             updater.update(url, params, this._setLoaded.createDelegate(this));
54465         }
54466     },
54467     
54468     _setLoaded : function(){
54469         this.loaded = true;
54470     }, 
54471     
54472     /**
54473      * Returns this panel's id
54474      * @return {String} 
54475      */
54476     getId : function(){
54477         return this.el.id;
54478     },
54479     
54480     /** 
54481      * Returns this panel's element - used by regiosn to add.
54482      * @return {Roo.Element} 
54483      */
54484     getEl : function(){
54485         return this.wrapEl || this.el;
54486     },
54487     
54488     adjustForComponents : function(width, height)
54489     {
54490         //Roo.log('adjustForComponents ');
54491         if(this.resizeEl != this.el){
54492             width -= this.el.getFrameWidth('lr');
54493             height -= this.el.getFrameWidth('tb');
54494         }
54495         if(this.toolbar){
54496             var te = this.toolbar.getEl();
54497             height -= te.getHeight();
54498             te.setWidth(width);
54499         }
54500         if(this.footer){
54501             var te = this.footer.getEl();
54502             //Roo.log("footer:" + te.getHeight());
54503             
54504             height -= te.getHeight();
54505             te.setWidth(width);
54506         }
54507         
54508         
54509         if(this.adjustments){
54510             width += this.adjustments[0];
54511             height += this.adjustments[1];
54512         }
54513         return {"width": width, "height": height};
54514     },
54515     
54516     setSize : function(width, height){
54517         if(this.fitToFrame && !this.ignoreResize(width, height)){
54518             if(this.fitContainer && this.resizeEl != this.el){
54519                 this.el.setSize(width, height);
54520             }
54521             var size = this.adjustForComponents(width, height);
54522             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54523             this.fireEvent('resize', this, size.width, size.height);
54524         }
54525     },
54526     
54527     /**
54528      * Returns this panel's title
54529      * @return {String} 
54530      */
54531     getTitle : function(){
54532         return this.title;
54533     },
54534     
54535     /**
54536      * Set this panel's title
54537      * @param {String} title
54538      */
54539     setTitle : function(title){
54540         this.title = title;
54541         if(this.region){
54542             this.region.updatePanelTitle(this, title);
54543         }
54544     },
54545     
54546     /**
54547      * Returns true is this panel was configured to be closable
54548      * @return {Boolean} 
54549      */
54550     isClosable : function(){
54551         return this.closable;
54552     },
54553     
54554     beforeSlide : function(){
54555         this.el.clip();
54556         this.resizeEl.clip();
54557     },
54558     
54559     afterSlide : function(){
54560         this.el.unclip();
54561         this.resizeEl.unclip();
54562     },
54563     
54564     /**
54565      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54566      *   Will fail silently if the {@link #setUrl} method has not been called.
54567      *   This does not activate the panel, just updates its content.
54568      */
54569     refresh : function(){
54570         if(this.refreshDelegate){
54571            this.loaded = false;
54572            this.refreshDelegate();
54573         }
54574     },
54575     
54576     /**
54577      * Destroys this panel
54578      */
54579     destroy : function(){
54580         this.el.removeAllListeners();
54581         var tempEl = document.createElement("span");
54582         tempEl.appendChild(this.el.dom);
54583         tempEl.innerHTML = "";
54584         this.el.remove();
54585         this.el = null;
54586     },
54587     
54588     /**
54589      * form - if the content panel contains a form - this is a reference to it.
54590      * @type {Roo.form.Form}
54591      */
54592     form : false,
54593     /**
54594      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54595      *    This contains a reference to it.
54596      * @type {Roo.View}
54597      */
54598     view : false,
54599     
54600       /**
54601      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54602      * <pre><code>
54603
54604 layout.addxtype({
54605        xtype : 'Form',
54606        items: [ .... ]
54607    }
54608 );
54609
54610 </code></pre>
54611      * @param {Object} cfg Xtype definition of item to add.
54612      */
54613     
54614     addxtype : function(cfg) {
54615         // add form..
54616         if (cfg.xtype.match(/^Form$/)) {
54617             
54618             var el;
54619             //if (this.footer) {
54620             //    el = this.footer.container.insertSibling(false, 'before');
54621             //} else {
54622                 el = this.el.createChild();
54623             //}
54624
54625             this.form = new  Roo.form.Form(cfg);
54626             
54627             
54628             if ( this.form.allItems.length) {
54629                 this.form.render(el.dom);
54630             }
54631             return this.form;
54632         }
54633         // should only have one of theses..
54634         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54635             // views.. should not be just added - used named prop 'view''
54636             
54637             cfg.el = this.el.appendChild(document.createElement("div"));
54638             // factory?
54639             
54640             var ret = new Roo.factory(cfg);
54641              
54642              ret.render && ret.render(false, ''); // render blank..
54643             this.view = ret;
54644             return ret;
54645         }
54646         return false;
54647     }
54648 });
54649
54650 /**
54651  * @class Roo.GridPanel
54652  * @extends Roo.ContentPanel
54653  * @constructor
54654  * Create a new GridPanel.
54655  * @param {Roo.grid.Grid} grid The grid for this panel
54656  * @param {String/Object} config A string to set only the panel's title, or a config object
54657  */
54658 Roo.GridPanel = function(grid, config){
54659     
54660   
54661     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54662         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54663         
54664     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54665     
54666     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54667     
54668     if(this.toolbar){
54669         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54670     }
54671     // xtype created footer. - not sure if will work as we normally have to render first..
54672     if (this.footer && !this.footer.el && this.footer.xtype) {
54673         
54674         this.footer.container = this.grid.getView().getFooterPanel(true);
54675         this.footer.dataSource = this.grid.dataSource;
54676         this.footer = Roo.factory(this.footer, Roo);
54677         
54678     }
54679     
54680     grid.monitorWindowResize = false; // turn off autosizing
54681     grid.autoHeight = false;
54682     grid.autoWidth = false;
54683     this.grid = grid;
54684     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54685 };
54686
54687 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54688     getId : function(){
54689         return this.grid.id;
54690     },
54691     
54692     /**
54693      * Returns the grid for this panel
54694      * @return {Roo.grid.Grid} 
54695      */
54696     getGrid : function(){
54697         return this.grid;    
54698     },
54699     
54700     setSize : function(width, height){
54701         if(!this.ignoreResize(width, height)){
54702             var grid = this.grid;
54703             var size = this.adjustForComponents(width, height);
54704             grid.getGridEl().setSize(size.width, size.height);
54705             grid.autoSize();
54706         }
54707     },
54708     
54709     beforeSlide : function(){
54710         this.grid.getView().scroller.clip();
54711     },
54712     
54713     afterSlide : function(){
54714         this.grid.getView().scroller.unclip();
54715     },
54716     
54717     destroy : function(){
54718         this.grid.destroy();
54719         delete this.grid;
54720         Roo.GridPanel.superclass.destroy.call(this); 
54721     }
54722 });
54723
54724
54725 /**
54726  * @class Roo.NestedLayoutPanel
54727  * @extends Roo.ContentPanel
54728  * @constructor
54729  * Create a new NestedLayoutPanel.
54730  * 
54731  * 
54732  * @param {Roo.BorderLayout} layout The layout for this panel
54733  * @param {String/Object} config A string to set only the title or a config object
54734  */
54735 Roo.NestedLayoutPanel = function(layout, config)
54736 {
54737     // construct with only one argument..
54738     /* FIXME - implement nicer consturctors
54739     if (layout.layout) {
54740         config = layout;
54741         layout = config.layout;
54742         delete config.layout;
54743     }
54744     if (layout.xtype && !layout.getEl) {
54745         // then layout needs constructing..
54746         layout = Roo.factory(layout, Roo);
54747     }
54748     */
54749     
54750     
54751     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54752     
54753     layout.monitorWindowResize = false; // turn off autosizing
54754     this.layout = layout;
54755     this.layout.getEl().addClass("x-layout-nested-layout");
54756     
54757     
54758     
54759     
54760 };
54761
54762 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54763
54764     setSize : function(width, height){
54765         if(!this.ignoreResize(width, height)){
54766             var size = this.adjustForComponents(width, height);
54767             var el = this.layout.getEl();
54768             el.setSize(size.width, size.height);
54769             var touch = el.dom.offsetWidth;
54770             this.layout.layout();
54771             // ie requires a double layout on the first pass
54772             if(Roo.isIE && !this.initialized){
54773                 this.initialized = true;
54774                 this.layout.layout();
54775             }
54776         }
54777     },
54778     
54779     // activate all subpanels if not currently active..
54780     
54781     setActiveState : function(active){
54782         this.active = active;
54783         if(!active){
54784             this.fireEvent("deactivate", this);
54785             return;
54786         }
54787         
54788         this.fireEvent("activate", this);
54789         // not sure if this should happen before or after..
54790         if (!this.layout) {
54791             return; // should not happen..
54792         }
54793         var reg = false;
54794         for (var r in this.layout.regions) {
54795             reg = this.layout.getRegion(r);
54796             if (reg.getActivePanel()) {
54797                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54798                 reg.setActivePanel(reg.getActivePanel());
54799                 continue;
54800             }
54801             if (!reg.panels.length) {
54802                 continue;
54803             }
54804             reg.showPanel(reg.getPanel(0));
54805         }
54806         
54807         
54808         
54809         
54810     },
54811     
54812     /**
54813      * Returns the nested BorderLayout for this panel
54814      * @return {Roo.BorderLayout} 
54815      */
54816     getLayout : function(){
54817         return this.layout;
54818     },
54819     
54820      /**
54821      * Adds a xtype elements to the layout of the nested panel
54822      * <pre><code>
54823
54824 panel.addxtype({
54825        xtype : 'ContentPanel',
54826        region: 'west',
54827        items: [ .... ]
54828    }
54829 );
54830
54831 panel.addxtype({
54832         xtype : 'NestedLayoutPanel',
54833         region: 'west',
54834         layout: {
54835            center: { },
54836            west: { }   
54837         },
54838         items : [ ... list of content panels or nested layout panels.. ]
54839    }
54840 );
54841 </code></pre>
54842      * @param {Object} cfg Xtype definition of item to add.
54843      */
54844     addxtype : function(cfg) {
54845         return this.layout.addxtype(cfg);
54846     
54847     }
54848 });
54849
54850 Roo.ScrollPanel = function(el, config, content){
54851     config = config || {};
54852     config.fitToFrame = true;
54853     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54854     
54855     this.el.dom.style.overflow = "hidden";
54856     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54857     this.el.removeClass("x-layout-inactive-content");
54858     this.el.on("mousewheel", this.onWheel, this);
54859
54860     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54861     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54862     up.unselectable(); down.unselectable();
54863     up.on("click", this.scrollUp, this);
54864     down.on("click", this.scrollDown, this);
54865     up.addClassOnOver("x-scroller-btn-over");
54866     down.addClassOnOver("x-scroller-btn-over");
54867     up.addClassOnClick("x-scroller-btn-click");
54868     down.addClassOnClick("x-scroller-btn-click");
54869     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
54870
54871     this.resizeEl = this.el;
54872     this.el = wrap; this.up = up; this.down = down;
54873 };
54874
54875 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
54876     increment : 100,
54877     wheelIncrement : 5,
54878     scrollUp : function(){
54879         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
54880     },
54881
54882     scrollDown : function(){
54883         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
54884     },
54885
54886     afterScroll : function(){
54887         var el = this.resizeEl;
54888         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
54889         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54890         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54891     },
54892
54893     setSize : function(){
54894         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
54895         this.afterScroll();
54896     },
54897
54898     onWheel : function(e){
54899         var d = e.getWheelDelta();
54900         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
54901         this.afterScroll();
54902         e.stopEvent();
54903     },
54904
54905     setContent : function(content, loadScripts){
54906         this.resizeEl.update(content, loadScripts);
54907     }
54908
54909 });
54910
54911
54912
54913
54914
54915
54916
54917
54918
54919 /**
54920  * @class Roo.TreePanel
54921  * @extends Roo.ContentPanel
54922  * @constructor
54923  * Create a new TreePanel. - defaults to fit/scoll contents.
54924  * @param {String/Object} config A string to set only the panel's title, or a config object
54925  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
54926  */
54927 Roo.TreePanel = function(config){
54928     var el = config.el;
54929     var tree = config.tree;
54930     delete config.tree; 
54931     delete config.el; // hopefull!
54932     
54933     // wrapper for IE7 strict & safari scroll issue
54934     
54935     var treeEl = el.createChild();
54936     config.resizeEl = treeEl;
54937     
54938     
54939     
54940     Roo.TreePanel.superclass.constructor.call(this, el, config);
54941  
54942  
54943     this.tree = new Roo.tree.TreePanel(treeEl , tree);
54944     //console.log(tree);
54945     this.on('activate', function()
54946     {
54947         if (this.tree.rendered) {
54948             return;
54949         }
54950         //console.log('render tree');
54951         this.tree.render();
54952     });
54953     // this should not be needed.. - it's actually the 'el' that resizes?
54954     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
54955     
54956     //this.on('resize',  function (cp, w, h) {
54957     //        this.tree.innerCt.setWidth(w);
54958     //        this.tree.innerCt.setHeight(h);
54959     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
54960     //});
54961
54962         
54963     
54964 };
54965
54966 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
54967     fitToFrame : true,
54968     autoScroll : true
54969 });
54970
54971
54972
54973
54974
54975
54976
54977
54978
54979
54980
54981 /*
54982  * Based on:
54983  * Ext JS Library 1.1.1
54984  * Copyright(c) 2006-2007, Ext JS, LLC.
54985  *
54986  * Originally Released Under LGPL - original licence link has changed is not relivant.
54987  *
54988  * Fork - LGPL
54989  * <script type="text/javascript">
54990  */
54991  
54992
54993 /**
54994  * @class Roo.ReaderLayout
54995  * @extends Roo.BorderLayout
54996  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
54997  * center region containing two nested regions (a top one for a list view and one for item preview below),
54998  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
54999  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55000  * expedites the setup of the overall layout and regions for this common application style.
55001  * Example:
55002  <pre><code>
55003 var reader = new Roo.ReaderLayout();
55004 var CP = Roo.ContentPanel;  // shortcut for adding
55005
55006 reader.beginUpdate();
55007 reader.add("north", new CP("north", "North"));
55008 reader.add("west", new CP("west", {title: "West"}));
55009 reader.add("east", new CP("east", {title: "East"}));
55010
55011 reader.regions.listView.add(new CP("listView", "List"));
55012 reader.regions.preview.add(new CP("preview", "Preview"));
55013 reader.endUpdate();
55014 </code></pre>
55015 * @constructor
55016 * Create a new ReaderLayout
55017 * @param {Object} config Configuration options
55018 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55019 * document.body if omitted)
55020 */
55021 Roo.ReaderLayout = function(config, renderTo){
55022     var c = config || {size:{}};
55023     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55024         north: c.north !== false ? Roo.apply({
55025             split:false,
55026             initialSize: 32,
55027             titlebar: false
55028         }, c.north) : false,
55029         west: c.west !== false ? Roo.apply({
55030             split:true,
55031             initialSize: 200,
55032             minSize: 175,
55033             maxSize: 400,
55034             titlebar: true,
55035             collapsible: true,
55036             animate: true,
55037             margins:{left:5,right:0,bottom:5,top:5},
55038             cmargins:{left:5,right:5,bottom:5,top:5}
55039         }, c.west) : false,
55040         east: c.east !== false ? Roo.apply({
55041             split:true,
55042             initialSize: 200,
55043             minSize: 175,
55044             maxSize: 400,
55045             titlebar: true,
55046             collapsible: true,
55047             animate: true,
55048             margins:{left:0,right:5,bottom:5,top:5},
55049             cmargins:{left:5,right:5,bottom:5,top:5}
55050         }, c.east) : false,
55051         center: Roo.apply({
55052             tabPosition: 'top',
55053             autoScroll:false,
55054             closeOnTab: true,
55055             titlebar:false,
55056             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55057         }, c.center)
55058     });
55059
55060     this.el.addClass('x-reader');
55061
55062     this.beginUpdate();
55063
55064     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55065         south: c.preview !== false ? Roo.apply({
55066             split:true,
55067             initialSize: 200,
55068             minSize: 100,
55069             autoScroll:true,
55070             collapsible:true,
55071             titlebar: true,
55072             cmargins:{top:5,left:0, right:0, bottom:0}
55073         }, c.preview) : false,
55074         center: Roo.apply({
55075             autoScroll:false,
55076             titlebar:false,
55077             minHeight:200
55078         }, c.listView)
55079     });
55080     this.add('center', new Roo.NestedLayoutPanel(inner,
55081             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55082
55083     this.endUpdate();
55084
55085     this.regions.preview = inner.getRegion('south');
55086     this.regions.listView = inner.getRegion('center');
55087 };
55088
55089 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55090  * Based on:
55091  * Ext JS Library 1.1.1
55092  * Copyright(c) 2006-2007, Ext JS, LLC.
55093  *
55094  * Originally Released Under LGPL - original licence link has changed is not relivant.
55095  *
55096  * Fork - LGPL
55097  * <script type="text/javascript">
55098  */
55099  
55100 /**
55101  * @class Roo.grid.Grid
55102  * @extends Roo.util.Observable
55103  * This class represents the primary interface of a component based grid control.
55104  * <br><br>Usage:<pre><code>
55105  var grid = new Roo.grid.Grid("my-container-id", {
55106      ds: myDataStore,
55107      cm: myColModel,
55108      selModel: mySelectionModel,
55109      autoSizeColumns: true,
55110      monitorWindowResize: false,
55111      trackMouseOver: true
55112  });
55113  // set any options
55114  grid.render();
55115  * </code></pre>
55116  * <b>Common Problems:</b><br/>
55117  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55118  * element will correct this<br/>
55119  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55120  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55121  * are unpredictable.<br/>
55122  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55123  * grid to calculate dimensions/offsets.<br/>
55124   * @constructor
55125  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55126  * The container MUST have some type of size defined for the grid to fill. The container will be
55127  * automatically set to position relative if it isn't already.
55128  * @param {Object} config A config object that sets properties on this grid.
55129  */
55130 Roo.grid.Grid = function(container, config){
55131         // initialize the container
55132         this.container = Roo.get(container);
55133         this.container.update("");
55134         this.container.setStyle("overflow", "hidden");
55135     this.container.addClass('x-grid-container');
55136
55137     this.id = this.container.id;
55138
55139     Roo.apply(this, config);
55140     // check and correct shorthanded configs
55141     if(this.ds){
55142         this.dataSource = this.ds;
55143         delete this.ds;
55144     }
55145     if(this.cm){
55146         this.colModel = this.cm;
55147         delete this.cm;
55148     }
55149     if(this.sm){
55150         this.selModel = this.sm;
55151         delete this.sm;
55152     }
55153
55154     if (this.selModel) {
55155         this.selModel = Roo.factory(this.selModel, Roo.grid);
55156         this.sm = this.selModel;
55157         this.sm.xmodule = this.xmodule || false;
55158     }
55159     if (typeof(this.colModel.config) == 'undefined') {
55160         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55161         this.cm = this.colModel;
55162         this.cm.xmodule = this.xmodule || false;
55163     }
55164     if (this.dataSource) {
55165         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55166         this.ds = this.dataSource;
55167         this.ds.xmodule = this.xmodule || false;
55168          
55169     }
55170     
55171     
55172     
55173     if(this.width){
55174         this.container.setWidth(this.width);
55175     }
55176
55177     if(this.height){
55178         this.container.setHeight(this.height);
55179     }
55180     /** @private */
55181         this.addEvents({
55182         // raw events
55183         /**
55184          * @event click
55185          * The raw click event for the entire grid.
55186          * @param {Roo.EventObject} e
55187          */
55188         "click" : true,
55189         /**
55190          * @event dblclick
55191          * The raw dblclick event for the entire grid.
55192          * @param {Roo.EventObject} e
55193          */
55194         "dblclick" : true,
55195         /**
55196          * @event contextmenu
55197          * The raw contextmenu event for the entire grid.
55198          * @param {Roo.EventObject} e
55199          */
55200         "contextmenu" : true,
55201         /**
55202          * @event mousedown
55203          * The raw mousedown event for the entire grid.
55204          * @param {Roo.EventObject} e
55205          */
55206         "mousedown" : true,
55207         /**
55208          * @event mouseup
55209          * The raw mouseup event for the entire grid.
55210          * @param {Roo.EventObject} e
55211          */
55212         "mouseup" : true,
55213         /**
55214          * @event mouseover
55215          * The raw mouseover event for the entire grid.
55216          * @param {Roo.EventObject} e
55217          */
55218         "mouseover" : true,
55219         /**
55220          * @event mouseout
55221          * The raw mouseout event for the entire grid.
55222          * @param {Roo.EventObject} e
55223          */
55224         "mouseout" : true,
55225         /**
55226          * @event keypress
55227          * The raw keypress event for the entire grid.
55228          * @param {Roo.EventObject} e
55229          */
55230         "keypress" : true,
55231         /**
55232          * @event keydown
55233          * The raw keydown event for the entire grid.
55234          * @param {Roo.EventObject} e
55235          */
55236         "keydown" : true,
55237
55238         // custom events
55239
55240         /**
55241          * @event cellclick
55242          * Fires when a cell is clicked
55243          * @param {Grid} this
55244          * @param {Number} rowIndex
55245          * @param {Number} columnIndex
55246          * @param {Roo.EventObject} e
55247          */
55248         "cellclick" : true,
55249         /**
55250          * @event celldblclick
55251          * Fires when a cell is double clicked
55252          * @param {Grid} this
55253          * @param {Number} rowIndex
55254          * @param {Number} columnIndex
55255          * @param {Roo.EventObject} e
55256          */
55257         "celldblclick" : true,
55258         /**
55259          * @event rowclick
55260          * Fires when a row is clicked
55261          * @param {Grid} this
55262          * @param {Number} rowIndex
55263          * @param {Roo.EventObject} e
55264          */
55265         "rowclick" : true,
55266         /**
55267          * @event rowdblclick
55268          * Fires when a row is double clicked
55269          * @param {Grid} this
55270          * @param {Number} rowIndex
55271          * @param {Roo.EventObject} e
55272          */
55273         "rowdblclick" : true,
55274         /**
55275          * @event headerclick
55276          * Fires when a header is clicked
55277          * @param {Grid} this
55278          * @param {Number} columnIndex
55279          * @param {Roo.EventObject} e
55280          */
55281         "headerclick" : true,
55282         /**
55283          * @event headerdblclick
55284          * Fires when a header cell is double clicked
55285          * @param {Grid} this
55286          * @param {Number} columnIndex
55287          * @param {Roo.EventObject} e
55288          */
55289         "headerdblclick" : true,
55290         /**
55291          * @event rowcontextmenu
55292          * Fires when a row is right clicked
55293          * @param {Grid} this
55294          * @param {Number} rowIndex
55295          * @param {Roo.EventObject} e
55296          */
55297         "rowcontextmenu" : true,
55298         /**
55299          * @event cellcontextmenu
55300          * Fires when a cell is right clicked
55301          * @param {Grid} this
55302          * @param {Number} rowIndex
55303          * @param {Number} cellIndex
55304          * @param {Roo.EventObject} e
55305          */
55306          "cellcontextmenu" : true,
55307         /**
55308          * @event headercontextmenu
55309          * Fires when a header is right clicked
55310          * @param {Grid} this
55311          * @param {Number} columnIndex
55312          * @param {Roo.EventObject} e
55313          */
55314         "headercontextmenu" : true,
55315         /**
55316          * @event bodyscroll
55317          * Fires when the body element is scrolled
55318          * @param {Number} scrollLeft
55319          * @param {Number} scrollTop
55320          */
55321         "bodyscroll" : true,
55322         /**
55323          * @event columnresize
55324          * Fires when the user resizes a column
55325          * @param {Number} columnIndex
55326          * @param {Number} newSize
55327          */
55328         "columnresize" : true,
55329         /**
55330          * @event columnmove
55331          * Fires when the user moves a column
55332          * @param {Number} oldIndex
55333          * @param {Number} newIndex
55334          */
55335         "columnmove" : true,
55336         /**
55337          * @event startdrag
55338          * Fires when row(s) start being dragged
55339          * @param {Grid} this
55340          * @param {Roo.GridDD} dd The drag drop object
55341          * @param {event} e The raw browser event
55342          */
55343         "startdrag" : true,
55344         /**
55345          * @event enddrag
55346          * Fires when a drag operation is complete
55347          * @param {Grid} this
55348          * @param {Roo.GridDD} dd The drag drop object
55349          * @param {event} e The raw browser event
55350          */
55351         "enddrag" : true,
55352         /**
55353          * @event dragdrop
55354          * Fires when dragged row(s) are dropped on a valid DD target
55355          * @param {Grid} this
55356          * @param {Roo.GridDD} dd The drag drop object
55357          * @param {String} targetId The target drag drop object
55358          * @param {event} e The raw browser event
55359          */
55360         "dragdrop" : true,
55361         /**
55362          * @event dragover
55363          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55364          * @param {Grid} this
55365          * @param {Roo.GridDD} dd The drag drop object
55366          * @param {String} targetId The target drag drop object
55367          * @param {event} e The raw browser event
55368          */
55369         "dragover" : true,
55370         /**
55371          * @event dragenter
55372          *  Fires when the dragged row(s) first cross another DD target while being dragged
55373          * @param {Grid} this
55374          * @param {Roo.GridDD} dd The drag drop object
55375          * @param {String} targetId The target drag drop object
55376          * @param {event} e The raw browser event
55377          */
55378         "dragenter" : true,
55379         /**
55380          * @event dragout
55381          * Fires when the dragged row(s) leave another DD target while being dragged
55382          * @param {Grid} this
55383          * @param {Roo.GridDD} dd The drag drop object
55384          * @param {String} targetId The target drag drop object
55385          * @param {event} e The raw browser event
55386          */
55387         "dragout" : true,
55388         /**
55389          * @event rowclass
55390          * Fires when a row is rendered, so you can change add a style to it.
55391          * @param {GridView} gridview   The grid view
55392          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55393          */
55394         'rowclass' : true,
55395
55396         /**
55397          * @event render
55398          * Fires when the grid is rendered
55399          * @param {Grid} grid
55400          */
55401         'render' : true
55402     });
55403
55404     Roo.grid.Grid.superclass.constructor.call(this);
55405 };
55406 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55407     
55408     /**
55409      * @cfg {String} ddGroup - drag drop group.
55410      */
55411       /**
55412      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55413      */
55414
55415     /**
55416      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55417      */
55418     minColumnWidth : 25,
55419
55420     /**
55421      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55422      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55423      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55424      */
55425     autoSizeColumns : false,
55426
55427     /**
55428      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55429      */
55430     autoSizeHeaders : true,
55431
55432     /**
55433      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55434      */
55435     monitorWindowResize : true,
55436
55437     /**
55438      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55439      * rows measured to get a columns size. Default is 0 (all rows).
55440      */
55441     maxRowsToMeasure : 0,
55442
55443     /**
55444      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55445      */
55446     trackMouseOver : true,
55447
55448     /**
55449     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55450     */
55451       /**
55452     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55453     */
55454     
55455     /**
55456     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55457     */
55458     enableDragDrop : false,
55459     
55460     /**
55461     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55462     */
55463     enableColumnMove : true,
55464     
55465     /**
55466     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55467     */
55468     enableColumnHide : true,
55469     
55470     /**
55471     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55472     */
55473     enableRowHeightSync : false,
55474     
55475     /**
55476     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55477     */
55478     stripeRows : true,
55479     
55480     /**
55481     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55482     */
55483     autoHeight : false,
55484
55485     /**
55486      * @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.
55487      */
55488     autoExpandColumn : false,
55489
55490     /**
55491     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55492     * Default is 50.
55493     */
55494     autoExpandMin : 50,
55495
55496     /**
55497     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55498     */
55499     autoExpandMax : 1000,
55500
55501     /**
55502     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55503     */
55504     view : null,
55505
55506     /**
55507     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55508     */
55509     loadMask : false,
55510     /**
55511     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55512     */
55513     dropTarget: false,
55514     
55515    
55516     
55517     // private
55518     rendered : false,
55519
55520     /**
55521     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55522     * of a fixed width. Default is false.
55523     */
55524     /**
55525     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55526     */
55527     
55528     
55529     /**
55530     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55531     * %0 is replaced with the number of selected rows.
55532     */
55533     ddText : "{0} selected row{1}",
55534     
55535     
55536     /**
55537      * Called once after all setup has been completed and the grid is ready to be rendered.
55538      * @return {Roo.grid.Grid} this
55539      */
55540     render : function()
55541     {
55542         var c = this.container;
55543         // try to detect autoHeight/width mode
55544         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55545             this.autoHeight = true;
55546         }
55547         var view = this.getView();
55548         view.init(this);
55549
55550         c.on("click", this.onClick, this);
55551         c.on("dblclick", this.onDblClick, this);
55552         c.on("contextmenu", this.onContextMenu, this);
55553         c.on("keydown", this.onKeyDown, this);
55554         if (Roo.isTouch) {
55555             c.on("touchstart", this.onTouchStart, this);
55556         }
55557
55558         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55559
55560         this.getSelectionModel().init(this);
55561
55562         view.render();
55563
55564         if(this.loadMask){
55565             this.loadMask = new Roo.LoadMask(this.container,
55566                     Roo.apply({store:this.dataSource}, this.loadMask));
55567         }
55568         
55569         
55570         if (this.toolbar && this.toolbar.xtype) {
55571             this.toolbar.container = this.getView().getHeaderPanel(true);
55572             this.toolbar = new Roo.Toolbar(this.toolbar);
55573         }
55574         if (this.footer && this.footer.xtype) {
55575             this.footer.dataSource = this.getDataSource();
55576             this.footer.container = this.getView().getFooterPanel(true);
55577             this.footer = Roo.factory(this.footer, Roo);
55578         }
55579         if (this.dropTarget && this.dropTarget.xtype) {
55580             delete this.dropTarget.xtype;
55581             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55582         }
55583         
55584         
55585         this.rendered = true;
55586         this.fireEvent('render', this);
55587         return this;
55588     },
55589
55590     /**
55591      * Reconfigures the grid to use a different Store and Column Model.
55592      * The View will be bound to the new objects and refreshed.
55593      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55594      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55595      */
55596     reconfigure : function(dataSource, colModel){
55597         if(this.loadMask){
55598             this.loadMask.destroy();
55599             this.loadMask = new Roo.LoadMask(this.container,
55600                     Roo.apply({store:dataSource}, this.loadMask));
55601         }
55602         this.view.bind(dataSource, colModel);
55603         this.dataSource = dataSource;
55604         this.colModel = colModel;
55605         this.view.refresh(true);
55606     },
55607     /**
55608      * addColumns
55609      * Add's a column, default at the end..
55610      
55611      * @param {int} position to add (default end)
55612      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55613      */
55614     addColumns : function(pos, ar)
55615     {
55616         
55617         for (var i =0;i< ar.length;i++) {
55618             var cfg = ar[i];
55619             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55620             this.cm.lookup[cfg.id] = cfg;
55621         }
55622         
55623         
55624         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55625             pos = this.cm.config.length; //this.cm.config.push(cfg);
55626         } 
55627         pos = Math.max(0,pos);
55628         ar.unshift(0);
55629         ar.unshift(pos);
55630         this.cm.config.splice.apply(this.cm.config, ar);
55631         
55632         
55633         
55634         this.view.generateRules(this.cm);
55635         this.view.refresh(true);
55636         
55637     },
55638     
55639     
55640     
55641     
55642     // private
55643     onKeyDown : function(e){
55644         this.fireEvent("keydown", e);
55645     },
55646
55647     /**
55648      * Destroy this grid.
55649      * @param {Boolean} removeEl True to remove the element
55650      */
55651     destroy : function(removeEl, keepListeners){
55652         if(this.loadMask){
55653             this.loadMask.destroy();
55654         }
55655         var c = this.container;
55656         c.removeAllListeners();
55657         this.view.destroy();
55658         this.colModel.purgeListeners();
55659         if(!keepListeners){
55660             this.purgeListeners();
55661         }
55662         c.update("");
55663         if(removeEl === true){
55664             c.remove();
55665         }
55666     },
55667
55668     // private
55669     processEvent : function(name, e){
55670         // does this fire select???
55671         //Roo.log('grid:processEvent '  + name);
55672         
55673         if (name != 'touchstart' ) {
55674             this.fireEvent(name, e);    
55675         }
55676         
55677         var t = e.getTarget();
55678         var v = this.view;
55679         var header = v.findHeaderIndex(t);
55680         if(header !== false){
55681             var ename = name == 'touchstart' ? 'click' : name;
55682              
55683             this.fireEvent("header" + ename, this, header, e);
55684         }else{
55685             var row = v.findRowIndex(t);
55686             var cell = v.findCellIndex(t);
55687             if (name == 'touchstart') {
55688                 // first touch is always a click.
55689                 // hopefull this happens after selection is updated.?
55690                 name = false;
55691                 
55692                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55693                     var cs = this.selModel.getSelectedCell();
55694                     if (row == cs[0] && cell == cs[1]){
55695                         name = 'dblclick';
55696                     }
55697                 }
55698                 if (typeof(this.selModel.getSelections) != 'undefined') {
55699                     var cs = this.selModel.getSelections();
55700                     var ds = this.dataSource;
55701                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55702                         name = 'dblclick';
55703                     }
55704                 }
55705                 if (!name) {
55706                     return;
55707                 }
55708             }
55709             
55710             
55711             if(row !== false){
55712                 this.fireEvent("row" + name, this, row, e);
55713                 if(cell !== false){
55714                     this.fireEvent("cell" + name, this, row, cell, e);
55715                 }
55716             }
55717         }
55718     },
55719
55720     // private
55721     onClick : function(e){
55722         this.processEvent("click", e);
55723     },
55724    // private
55725     onTouchStart : function(e){
55726         this.processEvent("touchstart", e);
55727     },
55728
55729     // private
55730     onContextMenu : function(e, t){
55731         this.processEvent("contextmenu", e);
55732     },
55733
55734     // private
55735     onDblClick : function(e){
55736         this.processEvent("dblclick", e);
55737     },
55738
55739     // private
55740     walkCells : function(row, col, step, fn, scope){
55741         var cm = this.colModel, clen = cm.getColumnCount();
55742         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55743         if(step < 0){
55744             if(col < 0){
55745                 row--;
55746                 first = false;
55747             }
55748             while(row >= 0){
55749                 if(!first){
55750                     col = clen-1;
55751                 }
55752                 first = false;
55753                 while(col >= 0){
55754                     if(fn.call(scope || this, row, col, cm) === true){
55755                         return [row, col];
55756                     }
55757                     col--;
55758                 }
55759                 row--;
55760             }
55761         } else {
55762             if(col >= clen){
55763                 row++;
55764                 first = false;
55765             }
55766             while(row < rlen){
55767                 if(!first){
55768                     col = 0;
55769                 }
55770                 first = false;
55771                 while(col < clen){
55772                     if(fn.call(scope || this, row, col, cm) === true){
55773                         return [row, col];
55774                     }
55775                     col++;
55776                 }
55777                 row++;
55778             }
55779         }
55780         return null;
55781     },
55782
55783     // private
55784     getSelections : function(){
55785         return this.selModel.getSelections();
55786     },
55787
55788     /**
55789      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55790      * but if manual update is required this method will initiate it.
55791      */
55792     autoSize : function(){
55793         if(this.rendered){
55794             this.view.layout();
55795             if(this.view.adjustForScroll){
55796                 this.view.adjustForScroll();
55797             }
55798         }
55799     },
55800
55801     /**
55802      * Returns the grid's underlying element.
55803      * @return {Element} The element
55804      */
55805     getGridEl : function(){
55806         return this.container;
55807     },
55808
55809     // private for compatibility, overridden by editor grid
55810     stopEditing : function(){},
55811
55812     /**
55813      * Returns the grid's SelectionModel.
55814      * @return {SelectionModel}
55815      */
55816     getSelectionModel : function(){
55817         if(!this.selModel){
55818             this.selModel = new Roo.grid.RowSelectionModel();
55819         }
55820         return this.selModel;
55821     },
55822
55823     /**
55824      * Returns the grid's DataSource.
55825      * @return {DataSource}
55826      */
55827     getDataSource : function(){
55828         return this.dataSource;
55829     },
55830
55831     /**
55832      * Returns the grid's ColumnModel.
55833      * @return {ColumnModel}
55834      */
55835     getColumnModel : function(){
55836         return this.colModel;
55837     },
55838
55839     /**
55840      * Returns the grid's GridView object.
55841      * @return {GridView}
55842      */
55843     getView : function(){
55844         if(!this.view){
55845             this.view = new Roo.grid.GridView(this.viewConfig);
55846         }
55847         return this.view;
55848     },
55849     /**
55850      * Called to get grid's drag proxy text, by default returns this.ddText.
55851      * Override this to put something different in the dragged text.
55852      * @return {String}
55853      */
55854     getDragDropText : function(){
55855         var count = this.selModel.getCount();
55856         return String.format(this.ddText, count, count == 1 ? '' : 's');
55857     }
55858 });
55859 /*
55860  * Based on:
55861  * Ext JS Library 1.1.1
55862  * Copyright(c) 2006-2007, Ext JS, LLC.
55863  *
55864  * Originally Released Under LGPL - original licence link has changed is not relivant.
55865  *
55866  * Fork - LGPL
55867  * <script type="text/javascript">
55868  */
55869  
55870 Roo.grid.AbstractGridView = function(){
55871         this.grid = null;
55872         
55873         this.events = {
55874             "beforerowremoved" : true,
55875             "beforerowsinserted" : true,
55876             "beforerefresh" : true,
55877             "rowremoved" : true,
55878             "rowsinserted" : true,
55879             "rowupdated" : true,
55880             "refresh" : true
55881         };
55882     Roo.grid.AbstractGridView.superclass.constructor.call(this);
55883 };
55884
55885 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
55886     rowClass : "x-grid-row",
55887     cellClass : "x-grid-cell",
55888     tdClass : "x-grid-td",
55889     hdClass : "x-grid-hd",
55890     splitClass : "x-grid-hd-split",
55891     
55892     init: function(grid){
55893         this.grid = grid;
55894                 var cid = this.grid.getGridEl().id;
55895         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
55896         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
55897         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
55898         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
55899         },
55900         
55901     getColumnRenderers : function(){
55902         var renderers = [];
55903         var cm = this.grid.colModel;
55904         var colCount = cm.getColumnCount();
55905         for(var i = 0; i < colCount; i++){
55906             renderers[i] = cm.getRenderer(i);
55907         }
55908         return renderers;
55909     },
55910     
55911     getColumnIds : function(){
55912         var ids = [];
55913         var cm = this.grid.colModel;
55914         var colCount = cm.getColumnCount();
55915         for(var i = 0; i < colCount; i++){
55916             ids[i] = cm.getColumnId(i);
55917         }
55918         return ids;
55919     },
55920     
55921     getDataIndexes : function(){
55922         if(!this.indexMap){
55923             this.indexMap = this.buildIndexMap();
55924         }
55925         return this.indexMap.colToData;
55926     },
55927     
55928     getColumnIndexByDataIndex : function(dataIndex){
55929         if(!this.indexMap){
55930             this.indexMap = this.buildIndexMap();
55931         }
55932         return this.indexMap.dataToCol[dataIndex];
55933     },
55934     
55935     /**
55936      * Set a css style for a column dynamically. 
55937      * @param {Number} colIndex The index of the column
55938      * @param {String} name The css property name
55939      * @param {String} value The css value
55940      */
55941     setCSSStyle : function(colIndex, name, value){
55942         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
55943         Roo.util.CSS.updateRule(selector, name, value);
55944     },
55945     
55946     generateRules : function(cm){
55947         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
55948         Roo.util.CSS.removeStyleSheet(rulesId);
55949         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55950             var cid = cm.getColumnId(i);
55951             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
55952                          this.tdSelector, cid, " {\n}\n",
55953                          this.hdSelector, cid, " {\n}\n",
55954                          this.splitSelector, cid, " {\n}\n");
55955         }
55956         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
55957     }
55958 });/*
55959  * Based on:
55960  * Ext JS Library 1.1.1
55961  * Copyright(c) 2006-2007, Ext JS, LLC.
55962  *
55963  * Originally Released Under LGPL - original licence link has changed is not relivant.
55964  *
55965  * Fork - LGPL
55966  * <script type="text/javascript">
55967  */
55968
55969 // private
55970 // This is a support class used internally by the Grid components
55971 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
55972     this.grid = grid;
55973     this.view = grid.getView();
55974     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
55975     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
55976     if(hd2){
55977         this.setHandleElId(Roo.id(hd));
55978         this.setOuterHandleElId(Roo.id(hd2));
55979     }
55980     this.scroll = false;
55981 };
55982 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
55983     maxDragWidth: 120,
55984     getDragData : function(e){
55985         var t = Roo.lib.Event.getTarget(e);
55986         var h = this.view.findHeaderCell(t);
55987         if(h){
55988             return {ddel: h.firstChild, header:h};
55989         }
55990         return false;
55991     },
55992
55993     onInitDrag : function(e){
55994         this.view.headersDisabled = true;
55995         var clone = this.dragData.ddel.cloneNode(true);
55996         clone.id = Roo.id();
55997         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
55998         this.proxy.update(clone);
55999         return true;
56000     },
56001
56002     afterValidDrop : function(){
56003         var v = this.view;
56004         setTimeout(function(){
56005             v.headersDisabled = false;
56006         }, 50);
56007     },
56008
56009     afterInvalidDrop : function(){
56010         var v = this.view;
56011         setTimeout(function(){
56012             v.headersDisabled = false;
56013         }, 50);
56014     }
56015 });
56016 /*
56017  * Based on:
56018  * Ext JS Library 1.1.1
56019  * Copyright(c) 2006-2007, Ext JS, LLC.
56020  *
56021  * Originally Released Under LGPL - original licence link has changed is not relivant.
56022  *
56023  * Fork - LGPL
56024  * <script type="text/javascript">
56025  */
56026 // private
56027 // This is a support class used internally by the Grid components
56028 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56029     this.grid = grid;
56030     this.view = grid.getView();
56031     // split the proxies so they don't interfere with mouse events
56032     this.proxyTop = Roo.DomHelper.append(document.body, {
56033         cls:"col-move-top", html:"&#160;"
56034     }, true);
56035     this.proxyBottom = Roo.DomHelper.append(document.body, {
56036         cls:"col-move-bottom", html:"&#160;"
56037     }, true);
56038     this.proxyTop.hide = this.proxyBottom.hide = function(){
56039         this.setLeftTop(-100,-100);
56040         this.setStyle("visibility", "hidden");
56041     };
56042     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56043     // temporarily disabled
56044     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56045     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56046 };
56047 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56048     proxyOffsets : [-4, -9],
56049     fly: Roo.Element.fly,
56050
56051     getTargetFromEvent : function(e){
56052         var t = Roo.lib.Event.getTarget(e);
56053         var cindex = this.view.findCellIndex(t);
56054         if(cindex !== false){
56055             return this.view.getHeaderCell(cindex);
56056         }
56057         return null;
56058     },
56059
56060     nextVisible : function(h){
56061         var v = this.view, cm = this.grid.colModel;
56062         h = h.nextSibling;
56063         while(h){
56064             if(!cm.isHidden(v.getCellIndex(h))){
56065                 return h;
56066             }
56067             h = h.nextSibling;
56068         }
56069         return null;
56070     },
56071
56072     prevVisible : function(h){
56073         var v = this.view, cm = this.grid.colModel;
56074         h = h.prevSibling;
56075         while(h){
56076             if(!cm.isHidden(v.getCellIndex(h))){
56077                 return h;
56078             }
56079             h = h.prevSibling;
56080         }
56081         return null;
56082     },
56083
56084     positionIndicator : function(h, n, e){
56085         var x = Roo.lib.Event.getPageX(e);
56086         var r = Roo.lib.Dom.getRegion(n.firstChild);
56087         var px, pt, py = r.top + this.proxyOffsets[1];
56088         if((r.right - x) <= (r.right-r.left)/2){
56089             px = r.right+this.view.borderWidth;
56090             pt = "after";
56091         }else{
56092             px = r.left;
56093             pt = "before";
56094         }
56095         var oldIndex = this.view.getCellIndex(h);
56096         var newIndex = this.view.getCellIndex(n);
56097
56098         if(this.grid.colModel.isFixed(newIndex)){
56099             return false;
56100         }
56101
56102         var locked = this.grid.colModel.isLocked(newIndex);
56103
56104         if(pt == "after"){
56105             newIndex++;
56106         }
56107         if(oldIndex < newIndex){
56108             newIndex--;
56109         }
56110         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56111             return false;
56112         }
56113         px +=  this.proxyOffsets[0];
56114         this.proxyTop.setLeftTop(px, py);
56115         this.proxyTop.show();
56116         if(!this.bottomOffset){
56117             this.bottomOffset = this.view.mainHd.getHeight();
56118         }
56119         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56120         this.proxyBottom.show();
56121         return pt;
56122     },
56123
56124     onNodeEnter : function(n, dd, e, data){
56125         if(data.header != n){
56126             this.positionIndicator(data.header, n, e);
56127         }
56128     },
56129
56130     onNodeOver : function(n, dd, e, data){
56131         var result = false;
56132         if(data.header != n){
56133             result = this.positionIndicator(data.header, n, e);
56134         }
56135         if(!result){
56136             this.proxyTop.hide();
56137             this.proxyBottom.hide();
56138         }
56139         return result ? this.dropAllowed : this.dropNotAllowed;
56140     },
56141
56142     onNodeOut : function(n, dd, e, data){
56143         this.proxyTop.hide();
56144         this.proxyBottom.hide();
56145     },
56146
56147     onNodeDrop : function(n, dd, e, data){
56148         var h = data.header;
56149         if(h != n){
56150             var cm = this.grid.colModel;
56151             var x = Roo.lib.Event.getPageX(e);
56152             var r = Roo.lib.Dom.getRegion(n.firstChild);
56153             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56154             var oldIndex = this.view.getCellIndex(h);
56155             var newIndex = this.view.getCellIndex(n);
56156             var locked = cm.isLocked(newIndex);
56157             if(pt == "after"){
56158                 newIndex++;
56159             }
56160             if(oldIndex < newIndex){
56161                 newIndex--;
56162             }
56163             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56164                 return false;
56165             }
56166             cm.setLocked(oldIndex, locked, true);
56167             cm.moveColumn(oldIndex, newIndex);
56168             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56169             return true;
56170         }
56171         return false;
56172     }
56173 });
56174 /*
56175  * Based on:
56176  * Ext JS Library 1.1.1
56177  * Copyright(c) 2006-2007, Ext JS, LLC.
56178  *
56179  * Originally Released Under LGPL - original licence link has changed is not relivant.
56180  *
56181  * Fork - LGPL
56182  * <script type="text/javascript">
56183  */
56184   
56185 /**
56186  * @class Roo.grid.GridView
56187  * @extends Roo.util.Observable
56188  *
56189  * @constructor
56190  * @param {Object} config
56191  */
56192 Roo.grid.GridView = function(config){
56193     Roo.grid.GridView.superclass.constructor.call(this);
56194     this.el = null;
56195
56196     Roo.apply(this, config);
56197 };
56198
56199 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56200
56201     unselectable :  'unselectable="on"',
56202     unselectableCls :  'x-unselectable',
56203     
56204     
56205     rowClass : "x-grid-row",
56206
56207     cellClass : "x-grid-col",
56208
56209     tdClass : "x-grid-td",
56210
56211     hdClass : "x-grid-hd",
56212
56213     splitClass : "x-grid-split",
56214
56215     sortClasses : ["sort-asc", "sort-desc"],
56216
56217     enableMoveAnim : false,
56218
56219     hlColor: "C3DAF9",
56220
56221     dh : Roo.DomHelper,
56222
56223     fly : Roo.Element.fly,
56224
56225     css : Roo.util.CSS,
56226
56227     borderWidth: 1,
56228
56229     splitOffset: 3,
56230
56231     scrollIncrement : 22,
56232
56233     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56234
56235     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56236
56237     bind : function(ds, cm){
56238         if(this.ds){
56239             this.ds.un("load", this.onLoad, this);
56240             this.ds.un("datachanged", this.onDataChange, this);
56241             this.ds.un("add", this.onAdd, this);
56242             this.ds.un("remove", this.onRemove, this);
56243             this.ds.un("update", this.onUpdate, this);
56244             this.ds.un("clear", this.onClear, this);
56245         }
56246         if(ds){
56247             ds.on("load", this.onLoad, this);
56248             ds.on("datachanged", this.onDataChange, this);
56249             ds.on("add", this.onAdd, this);
56250             ds.on("remove", this.onRemove, this);
56251             ds.on("update", this.onUpdate, this);
56252             ds.on("clear", this.onClear, this);
56253         }
56254         this.ds = ds;
56255
56256         if(this.cm){
56257             this.cm.un("widthchange", this.onColWidthChange, this);
56258             this.cm.un("headerchange", this.onHeaderChange, this);
56259             this.cm.un("hiddenchange", this.onHiddenChange, this);
56260             this.cm.un("columnmoved", this.onColumnMove, this);
56261             this.cm.un("columnlockchange", this.onColumnLock, this);
56262         }
56263         if(cm){
56264             this.generateRules(cm);
56265             cm.on("widthchange", this.onColWidthChange, this);
56266             cm.on("headerchange", this.onHeaderChange, this);
56267             cm.on("hiddenchange", this.onHiddenChange, this);
56268             cm.on("columnmoved", this.onColumnMove, this);
56269             cm.on("columnlockchange", this.onColumnLock, this);
56270         }
56271         this.cm = cm;
56272     },
56273
56274     init: function(grid){
56275         Roo.grid.GridView.superclass.init.call(this, grid);
56276
56277         this.bind(grid.dataSource, grid.colModel);
56278
56279         grid.on("headerclick", this.handleHeaderClick, this);
56280
56281         if(grid.trackMouseOver){
56282             grid.on("mouseover", this.onRowOver, this);
56283             grid.on("mouseout", this.onRowOut, this);
56284         }
56285         grid.cancelTextSelection = function(){};
56286         this.gridId = grid.id;
56287
56288         var tpls = this.templates || {};
56289
56290         if(!tpls.master){
56291             tpls.master = new Roo.Template(
56292                '<div class="x-grid" hidefocus="true">',
56293                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56294                   '<div class="x-grid-topbar"></div>',
56295                   '<div class="x-grid-scroller"><div></div></div>',
56296                   '<div class="x-grid-locked">',
56297                       '<div class="x-grid-header">{lockedHeader}</div>',
56298                       '<div class="x-grid-body">{lockedBody}</div>',
56299                   "</div>",
56300                   '<div class="x-grid-viewport">',
56301                       '<div class="x-grid-header">{header}</div>',
56302                       '<div class="x-grid-body">{body}</div>',
56303                   "</div>",
56304                   '<div class="x-grid-bottombar"></div>',
56305                  
56306                   '<div class="x-grid-resize-proxy">&#160;</div>',
56307                "</div>"
56308             );
56309             tpls.master.disableformats = true;
56310         }
56311
56312         if(!tpls.header){
56313             tpls.header = new Roo.Template(
56314                '<table border="0" cellspacing="0" cellpadding="0">',
56315                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56316                "</table>{splits}"
56317             );
56318             tpls.header.disableformats = true;
56319         }
56320         tpls.header.compile();
56321
56322         if(!tpls.hcell){
56323             tpls.hcell = new Roo.Template(
56324                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56325                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56326                 "</div></td>"
56327              );
56328              tpls.hcell.disableFormats = true;
56329         }
56330         tpls.hcell.compile();
56331
56332         if(!tpls.hsplit){
56333             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56334                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56335             tpls.hsplit.disableFormats = true;
56336         }
56337         tpls.hsplit.compile();
56338
56339         if(!tpls.body){
56340             tpls.body = new Roo.Template(
56341                '<table border="0" cellspacing="0" cellpadding="0">',
56342                "<tbody>{rows}</tbody>",
56343                "</table>"
56344             );
56345             tpls.body.disableFormats = true;
56346         }
56347         tpls.body.compile();
56348
56349         if(!tpls.row){
56350             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56351             tpls.row.disableFormats = true;
56352         }
56353         tpls.row.compile();
56354
56355         if(!tpls.cell){
56356             tpls.cell = new Roo.Template(
56357                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56358                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56359                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56360                 "</td>"
56361             );
56362             tpls.cell.disableFormats = true;
56363         }
56364         tpls.cell.compile();
56365
56366         this.templates = tpls;
56367     },
56368
56369     // remap these for backwards compat
56370     onColWidthChange : function(){
56371         this.updateColumns.apply(this, arguments);
56372     },
56373     onHeaderChange : function(){
56374         this.updateHeaders.apply(this, arguments);
56375     }, 
56376     onHiddenChange : function(){
56377         this.handleHiddenChange.apply(this, arguments);
56378     },
56379     onColumnMove : function(){
56380         this.handleColumnMove.apply(this, arguments);
56381     },
56382     onColumnLock : function(){
56383         this.handleLockChange.apply(this, arguments);
56384     },
56385
56386     onDataChange : function(){
56387         this.refresh();
56388         this.updateHeaderSortState();
56389     },
56390
56391     onClear : function(){
56392         this.refresh();
56393     },
56394
56395     onUpdate : function(ds, record){
56396         this.refreshRow(record);
56397     },
56398
56399     refreshRow : function(record){
56400         var ds = this.ds, index;
56401         if(typeof record == 'number'){
56402             index = record;
56403             record = ds.getAt(index);
56404         }else{
56405             index = ds.indexOf(record);
56406         }
56407         this.insertRows(ds, index, index, true);
56408         this.onRemove(ds, record, index+1, true);
56409         this.syncRowHeights(index, index);
56410         this.layout();
56411         this.fireEvent("rowupdated", this, index, record);
56412     },
56413
56414     onAdd : function(ds, records, index){
56415         this.insertRows(ds, index, index + (records.length-1));
56416     },
56417
56418     onRemove : function(ds, record, index, isUpdate){
56419         if(isUpdate !== true){
56420             this.fireEvent("beforerowremoved", this, index, record);
56421         }
56422         var bt = this.getBodyTable(), lt = this.getLockedTable();
56423         if(bt.rows[index]){
56424             bt.firstChild.removeChild(bt.rows[index]);
56425         }
56426         if(lt.rows[index]){
56427             lt.firstChild.removeChild(lt.rows[index]);
56428         }
56429         if(isUpdate !== true){
56430             this.stripeRows(index);
56431             this.syncRowHeights(index, index);
56432             this.layout();
56433             this.fireEvent("rowremoved", this, index, record);
56434         }
56435     },
56436
56437     onLoad : function(){
56438         this.scrollToTop();
56439     },
56440
56441     /**
56442      * Scrolls the grid to the top
56443      */
56444     scrollToTop : function(){
56445         if(this.scroller){
56446             this.scroller.dom.scrollTop = 0;
56447             this.syncScroll();
56448         }
56449     },
56450
56451     /**
56452      * Gets a panel in the header of the grid that can be used for toolbars etc.
56453      * After modifying the contents of this panel a call to grid.autoSize() may be
56454      * required to register any changes in size.
56455      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56456      * @return Roo.Element
56457      */
56458     getHeaderPanel : function(doShow){
56459         if(doShow){
56460             this.headerPanel.show();
56461         }
56462         return this.headerPanel;
56463     },
56464
56465     /**
56466      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56467      * After modifying the contents of this panel a call to grid.autoSize() may be
56468      * required to register any changes in size.
56469      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56470      * @return Roo.Element
56471      */
56472     getFooterPanel : function(doShow){
56473         if(doShow){
56474             this.footerPanel.show();
56475         }
56476         return this.footerPanel;
56477     },
56478
56479     initElements : function(){
56480         var E = Roo.Element;
56481         var el = this.grid.getGridEl().dom.firstChild;
56482         var cs = el.childNodes;
56483
56484         this.el = new E(el);
56485         
56486          this.focusEl = new E(el.firstChild);
56487         this.focusEl.swallowEvent("click", true);
56488         
56489         this.headerPanel = new E(cs[1]);
56490         this.headerPanel.enableDisplayMode("block");
56491
56492         this.scroller = new E(cs[2]);
56493         this.scrollSizer = new E(this.scroller.dom.firstChild);
56494
56495         this.lockedWrap = new E(cs[3]);
56496         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56497         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56498
56499         this.mainWrap = new E(cs[4]);
56500         this.mainHd = new E(this.mainWrap.dom.firstChild);
56501         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56502
56503         this.footerPanel = new E(cs[5]);
56504         this.footerPanel.enableDisplayMode("block");
56505
56506         this.resizeProxy = new E(cs[6]);
56507
56508         this.headerSelector = String.format(
56509            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56510            this.lockedHd.id, this.mainHd.id
56511         );
56512
56513         this.splitterSelector = String.format(
56514            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56515            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56516         );
56517     },
56518     idToCssName : function(s)
56519     {
56520         return s.replace(/[^a-z0-9]+/ig, '-');
56521     },
56522
56523     getHeaderCell : function(index){
56524         return Roo.DomQuery.select(this.headerSelector)[index];
56525     },
56526
56527     getHeaderCellMeasure : function(index){
56528         return this.getHeaderCell(index).firstChild;
56529     },
56530
56531     getHeaderCellText : function(index){
56532         return this.getHeaderCell(index).firstChild.firstChild;
56533     },
56534
56535     getLockedTable : function(){
56536         return this.lockedBody.dom.firstChild;
56537     },
56538
56539     getBodyTable : function(){
56540         return this.mainBody.dom.firstChild;
56541     },
56542
56543     getLockedRow : function(index){
56544         return this.getLockedTable().rows[index];
56545     },
56546
56547     getRow : function(index){
56548         return this.getBodyTable().rows[index];
56549     },
56550
56551     getRowComposite : function(index){
56552         if(!this.rowEl){
56553             this.rowEl = new Roo.CompositeElementLite();
56554         }
56555         var els = [], lrow, mrow;
56556         if(lrow = this.getLockedRow(index)){
56557             els.push(lrow);
56558         }
56559         if(mrow = this.getRow(index)){
56560             els.push(mrow);
56561         }
56562         this.rowEl.elements = els;
56563         return this.rowEl;
56564     },
56565     /**
56566      * Gets the 'td' of the cell
56567      * 
56568      * @param {Integer} rowIndex row to select
56569      * @param {Integer} colIndex column to select
56570      * 
56571      * @return {Object} 
56572      */
56573     getCell : function(rowIndex, colIndex){
56574         var locked = this.cm.getLockedCount();
56575         var source;
56576         if(colIndex < locked){
56577             source = this.lockedBody.dom.firstChild;
56578         }else{
56579             source = this.mainBody.dom.firstChild;
56580             colIndex -= locked;
56581         }
56582         return source.rows[rowIndex].childNodes[colIndex];
56583     },
56584
56585     getCellText : function(rowIndex, colIndex){
56586         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56587     },
56588
56589     getCellBox : function(cell){
56590         var b = this.fly(cell).getBox();
56591         if(Roo.isOpera){ // opera fails to report the Y
56592             b.y = cell.offsetTop + this.mainBody.getY();
56593         }
56594         return b;
56595     },
56596
56597     getCellIndex : function(cell){
56598         var id = String(cell.className).match(this.cellRE);
56599         if(id){
56600             return parseInt(id[1], 10);
56601         }
56602         return 0;
56603     },
56604
56605     findHeaderIndex : function(n){
56606         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56607         return r ? this.getCellIndex(r) : false;
56608     },
56609
56610     findHeaderCell : function(n){
56611         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56612         return r ? r : false;
56613     },
56614
56615     findRowIndex : function(n){
56616         if(!n){
56617             return false;
56618         }
56619         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56620         return r ? r.rowIndex : false;
56621     },
56622
56623     findCellIndex : function(node){
56624         var stop = this.el.dom;
56625         while(node && node != stop){
56626             if(this.findRE.test(node.className)){
56627                 return this.getCellIndex(node);
56628             }
56629             node = node.parentNode;
56630         }
56631         return false;
56632     },
56633
56634     getColumnId : function(index){
56635         return this.cm.getColumnId(index);
56636     },
56637
56638     getSplitters : function()
56639     {
56640         if(this.splitterSelector){
56641            return Roo.DomQuery.select(this.splitterSelector);
56642         }else{
56643             return null;
56644       }
56645     },
56646
56647     getSplitter : function(index){
56648         return this.getSplitters()[index];
56649     },
56650
56651     onRowOver : function(e, t){
56652         var row;
56653         if((row = this.findRowIndex(t)) !== false){
56654             this.getRowComposite(row).addClass("x-grid-row-over");
56655         }
56656     },
56657
56658     onRowOut : function(e, t){
56659         var row;
56660         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56661             this.getRowComposite(row).removeClass("x-grid-row-over");
56662         }
56663     },
56664
56665     renderHeaders : function(){
56666         var cm = this.cm;
56667         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56668         var cb = [], lb = [], sb = [], lsb = [], p = {};
56669         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56670             p.cellId = "x-grid-hd-0-" + i;
56671             p.splitId = "x-grid-csplit-0-" + i;
56672             p.id = cm.getColumnId(i);
56673             p.value = cm.getColumnHeader(i) || "";
56674             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56675             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56676             if(!cm.isLocked(i)){
56677                 cb[cb.length] = ct.apply(p);
56678                 sb[sb.length] = st.apply(p);
56679             }else{
56680                 lb[lb.length] = ct.apply(p);
56681                 lsb[lsb.length] = st.apply(p);
56682             }
56683         }
56684         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56685                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56686     },
56687
56688     updateHeaders : function(){
56689         var html = this.renderHeaders();
56690         this.lockedHd.update(html[0]);
56691         this.mainHd.update(html[1]);
56692     },
56693
56694     /**
56695      * Focuses the specified row.
56696      * @param {Number} row The row index
56697      */
56698     focusRow : function(row)
56699     {
56700         //Roo.log('GridView.focusRow');
56701         var x = this.scroller.dom.scrollLeft;
56702         this.focusCell(row, 0, false);
56703         this.scroller.dom.scrollLeft = x;
56704     },
56705
56706     /**
56707      * Focuses the specified cell.
56708      * @param {Number} row The row index
56709      * @param {Number} col The column index
56710      * @param {Boolean} hscroll false to disable horizontal scrolling
56711      */
56712     focusCell : function(row, col, hscroll)
56713     {
56714         //Roo.log('GridView.focusCell');
56715         var el = this.ensureVisible(row, col, hscroll);
56716         this.focusEl.alignTo(el, "tl-tl");
56717         if(Roo.isGecko){
56718             this.focusEl.focus();
56719         }else{
56720             this.focusEl.focus.defer(1, this.focusEl);
56721         }
56722     },
56723
56724     /**
56725      * Scrolls the specified cell into view
56726      * @param {Number} row The row index
56727      * @param {Number} col The column index
56728      * @param {Boolean} hscroll false to disable horizontal scrolling
56729      */
56730     ensureVisible : function(row, col, hscroll)
56731     {
56732         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56733         //return null; //disable for testing.
56734         if(typeof row != "number"){
56735             row = row.rowIndex;
56736         }
56737         if(row < 0 && row >= this.ds.getCount()){
56738             return  null;
56739         }
56740         col = (col !== undefined ? col : 0);
56741         var cm = this.grid.colModel;
56742         while(cm.isHidden(col)){
56743             col++;
56744         }
56745
56746         var el = this.getCell(row, col);
56747         if(!el){
56748             return null;
56749         }
56750         var c = this.scroller.dom;
56751
56752         var ctop = parseInt(el.offsetTop, 10);
56753         var cleft = parseInt(el.offsetLeft, 10);
56754         var cbot = ctop + el.offsetHeight;
56755         var cright = cleft + el.offsetWidth;
56756         
56757         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56758         var stop = parseInt(c.scrollTop, 10);
56759         var sleft = parseInt(c.scrollLeft, 10);
56760         var sbot = stop + ch;
56761         var sright = sleft + c.clientWidth;
56762         /*
56763         Roo.log('GridView.ensureVisible:' +
56764                 ' ctop:' + ctop +
56765                 ' c.clientHeight:' + c.clientHeight +
56766                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56767                 ' stop:' + stop +
56768                 ' cbot:' + cbot +
56769                 ' sbot:' + sbot +
56770                 ' ch:' + ch  
56771                 );
56772         */
56773         if(ctop < stop){
56774              c.scrollTop = ctop;
56775             //Roo.log("set scrolltop to ctop DISABLE?");
56776         }else if(cbot > sbot){
56777             //Roo.log("set scrolltop to cbot-ch");
56778             c.scrollTop = cbot-ch;
56779         }
56780         
56781         if(hscroll !== false){
56782             if(cleft < sleft){
56783                 c.scrollLeft = cleft;
56784             }else if(cright > sright){
56785                 c.scrollLeft = cright-c.clientWidth;
56786             }
56787         }
56788          
56789         return el;
56790     },
56791
56792     updateColumns : function(){
56793         this.grid.stopEditing();
56794         var cm = this.grid.colModel, colIds = this.getColumnIds();
56795         //var totalWidth = cm.getTotalWidth();
56796         var pos = 0;
56797         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56798             //if(cm.isHidden(i)) continue;
56799             var w = cm.getColumnWidth(i);
56800             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56801             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56802         }
56803         this.updateSplitters();
56804     },
56805
56806     generateRules : function(cm){
56807         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56808         Roo.util.CSS.removeStyleSheet(rulesId);
56809         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56810             var cid = cm.getColumnId(i);
56811             var align = '';
56812             if(cm.config[i].align){
56813                 align = 'text-align:'+cm.config[i].align+';';
56814             }
56815             var hidden = '';
56816             if(cm.isHidden(i)){
56817                 hidden = 'display:none;';
56818             }
56819             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56820             ruleBuf.push(
56821                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56822                     this.hdSelector, cid, " {\n", align, width, "}\n",
56823                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56824                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56825         }
56826         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56827     },
56828
56829     updateSplitters : function(){
56830         var cm = this.cm, s = this.getSplitters();
56831         if(s){ // splitters not created yet
56832             var pos = 0, locked = true;
56833             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56834                 if(cm.isHidden(i)) {
56835                     continue;
56836                 }
56837                 var w = cm.getColumnWidth(i); // make sure it's a number
56838                 if(!cm.isLocked(i) && locked){
56839                     pos = 0;
56840                     locked = false;
56841                 }
56842                 pos += w;
56843                 s[i].style.left = (pos-this.splitOffset) + "px";
56844             }
56845         }
56846     },
56847
56848     handleHiddenChange : function(colModel, colIndex, hidden){
56849         if(hidden){
56850             this.hideColumn(colIndex);
56851         }else{
56852             this.unhideColumn(colIndex);
56853         }
56854     },
56855
56856     hideColumn : function(colIndex){
56857         var cid = this.getColumnId(colIndex);
56858         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56859         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56860         if(Roo.isSafari){
56861             this.updateHeaders();
56862         }
56863         this.updateSplitters();
56864         this.layout();
56865     },
56866
56867     unhideColumn : function(colIndex){
56868         var cid = this.getColumnId(colIndex);
56869         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
56870         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
56871
56872         if(Roo.isSafari){
56873             this.updateHeaders();
56874         }
56875         this.updateSplitters();
56876         this.layout();
56877     },
56878
56879     insertRows : function(dm, firstRow, lastRow, isUpdate){
56880         if(firstRow == 0 && lastRow == dm.getCount()-1){
56881             this.refresh();
56882         }else{
56883             if(!isUpdate){
56884                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
56885             }
56886             var s = this.getScrollState();
56887             var markup = this.renderRows(firstRow, lastRow);
56888             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
56889             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
56890             this.restoreScroll(s);
56891             if(!isUpdate){
56892                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
56893                 this.syncRowHeights(firstRow, lastRow);
56894                 this.stripeRows(firstRow);
56895                 this.layout();
56896             }
56897         }
56898     },
56899
56900     bufferRows : function(markup, target, index){
56901         var before = null, trows = target.rows, tbody = target.tBodies[0];
56902         if(index < trows.length){
56903             before = trows[index];
56904         }
56905         var b = document.createElement("div");
56906         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
56907         var rows = b.firstChild.rows;
56908         for(var i = 0, len = rows.length; i < len; i++){
56909             if(before){
56910                 tbody.insertBefore(rows[0], before);
56911             }else{
56912                 tbody.appendChild(rows[0]);
56913             }
56914         }
56915         b.innerHTML = "";
56916         b = null;
56917     },
56918
56919     deleteRows : function(dm, firstRow, lastRow){
56920         if(dm.getRowCount()<1){
56921             this.fireEvent("beforerefresh", this);
56922             this.mainBody.update("");
56923             this.lockedBody.update("");
56924             this.fireEvent("refresh", this);
56925         }else{
56926             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
56927             var bt = this.getBodyTable();
56928             var tbody = bt.firstChild;
56929             var rows = bt.rows;
56930             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
56931                 tbody.removeChild(rows[firstRow]);
56932             }
56933             this.stripeRows(firstRow);
56934             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
56935         }
56936     },
56937
56938     updateRows : function(dataSource, firstRow, lastRow){
56939         var s = this.getScrollState();
56940         this.refresh();
56941         this.restoreScroll(s);
56942     },
56943
56944     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
56945         if(!noRefresh){
56946            this.refresh();
56947         }
56948         this.updateHeaderSortState();
56949     },
56950
56951     getScrollState : function(){
56952         
56953         var sb = this.scroller.dom;
56954         return {left: sb.scrollLeft, top: sb.scrollTop};
56955     },
56956
56957     stripeRows : function(startRow){
56958         if(!this.grid.stripeRows || this.ds.getCount() < 1){
56959             return;
56960         }
56961         startRow = startRow || 0;
56962         var rows = this.getBodyTable().rows;
56963         var lrows = this.getLockedTable().rows;
56964         var cls = ' x-grid-row-alt ';
56965         for(var i = startRow, len = rows.length; i < len; i++){
56966             var row = rows[i], lrow = lrows[i];
56967             var isAlt = ((i+1) % 2 == 0);
56968             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
56969             if(isAlt == hasAlt){
56970                 continue;
56971             }
56972             if(isAlt){
56973                 row.className += " x-grid-row-alt";
56974             }else{
56975                 row.className = row.className.replace("x-grid-row-alt", "");
56976             }
56977             if(lrow){
56978                 lrow.className = row.className;
56979             }
56980         }
56981     },
56982
56983     restoreScroll : function(state){
56984         //Roo.log('GridView.restoreScroll');
56985         var sb = this.scroller.dom;
56986         sb.scrollLeft = state.left;
56987         sb.scrollTop = state.top;
56988         this.syncScroll();
56989     },
56990
56991     syncScroll : function(){
56992         //Roo.log('GridView.syncScroll');
56993         var sb = this.scroller.dom;
56994         var sh = this.mainHd.dom;
56995         var bs = this.mainBody.dom;
56996         var lv = this.lockedBody.dom;
56997         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
56998         lv.scrollTop = bs.scrollTop = sb.scrollTop;
56999     },
57000
57001     handleScroll : function(e){
57002         this.syncScroll();
57003         var sb = this.scroller.dom;
57004         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57005         e.stopEvent();
57006     },
57007
57008     handleWheel : function(e){
57009         var d = e.getWheelDelta();
57010         this.scroller.dom.scrollTop -= d*22;
57011         // set this here to prevent jumpy scrolling on large tables
57012         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57013         e.stopEvent();
57014     },
57015
57016     renderRows : function(startRow, endRow){
57017         // pull in all the crap needed to render rows
57018         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57019         var colCount = cm.getColumnCount();
57020
57021         if(ds.getCount() < 1){
57022             return ["", ""];
57023         }
57024
57025         // build a map for all the columns
57026         var cs = [];
57027         for(var i = 0; i < colCount; i++){
57028             var name = cm.getDataIndex(i);
57029             cs[i] = {
57030                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57031                 renderer : cm.getRenderer(i),
57032                 id : cm.getColumnId(i),
57033                 locked : cm.isLocked(i),
57034                 has_editor : cm.isCellEditable(i)
57035             };
57036         }
57037
57038         startRow = startRow || 0;
57039         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57040
57041         // records to render
57042         var rs = ds.getRange(startRow, endRow);
57043
57044         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57045     },
57046
57047     // As much as I hate to duplicate code, this was branched because FireFox really hates
57048     // [].join("") on strings. The performance difference was substantial enough to
57049     // branch this function
57050     doRender : Roo.isGecko ?
57051             function(cs, rs, ds, startRow, colCount, stripe){
57052                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57053                 // buffers
57054                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57055                 
57056                 var hasListener = this.grid.hasListener('rowclass');
57057                 var rowcfg = {};
57058                 for(var j = 0, len = rs.length; j < len; j++){
57059                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57060                     for(var i = 0; i < colCount; i++){
57061                         c = cs[i];
57062                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57063                         p.id = c.id;
57064                         p.css = p.attr = "";
57065                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57066                         if(p.value == undefined || p.value === "") {
57067                             p.value = "&#160;";
57068                         }
57069                         if(c.has_editor){
57070                             p.css += ' x-grid-editable-cell';
57071                         }
57072                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57073                             p.css +=  ' x-grid-dirty-cell';
57074                         }
57075                         var markup = ct.apply(p);
57076                         if(!c.locked){
57077                             cb+= markup;
57078                         }else{
57079                             lcb+= markup;
57080                         }
57081                     }
57082                     var alt = [];
57083                     if(stripe && ((rowIndex+1) % 2 == 0)){
57084                         alt.push("x-grid-row-alt")
57085                     }
57086                     if(r.dirty){
57087                         alt.push(  " x-grid-dirty-row");
57088                     }
57089                     rp.cells = lcb;
57090                     if(this.getRowClass){
57091                         alt.push(this.getRowClass(r, rowIndex));
57092                     }
57093                     if (hasListener) {
57094                         rowcfg = {
57095                              
57096                             record: r,
57097                             rowIndex : rowIndex,
57098                             rowClass : ''
57099                         };
57100                         this.grid.fireEvent('rowclass', this, rowcfg);
57101                         alt.push(rowcfg.rowClass);
57102                     }
57103                     rp.alt = alt.join(" ");
57104                     lbuf+= rt.apply(rp);
57105                     rp.cells = cb;
57106                     buf+=  rt.apply(rp);
57107                 }
57108                 return [lbuf, buf];
57109             } :
57110             function(cs, rs, ds, startRow, colCount, stripe){
57111                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57112                 // buffers
57113                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57114                 var hasListener = this.grid.hasListener('rowclass');
57115  
57116                 var rowcfg = {};
57117                 for(var j = 0, len = rs.length; j < len; j++){
57118                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57119                     for(var i = 0; i < colCount; i++){
57120                         c = cs[i];
57121                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57122                         p.id = c.id;
57123                         p.css = p.attr = "";
57124                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57125                         if(p.value == undefined || p.value === "") {
57126                             p.value = "&#160;";
57127                         }
57128                         //Roo.log(c);
57129                          if(c.has_editor){
57130                             p.css += ' x-grid-editable-cell';
57131                         }
57132                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57133                             p.css += ' x-grid-dirty-cell' 
57134                         }
57135                         
57136                         var markup = ct.apply(p);
57137                         if(!c.locked){
57138                             cb[cb.length] = markup;
57139                         }else{
57140                             lcb[lcb.length] = markup;
57141                         }
57142                     }
57143                     var alt = [];
57144                     if(stripe && ((rowIndex+1) % 2 == 0)){
57145                         alt.push( "x-grid-row-alt");
57146                     }
57147                     if(r.dirty){
57148                         alt.push(" x-grid-dirty-row");
57149                     }
57150                     rp.cells = lcb;
57151                     if(this.getRowClass){
57152                         alt.push( this.getRowClass(r, rowIndex));
57153                     }
57154                     if (hasListener) {
57155                         rowcfg = {
57156                              
57157                             record: r,
57158                             rowIndex : rowIndex,
57159                             rowClass : ''
57160                         };
57161                         this.grid.fireEvent('rowclass', this, rowcfg);
57162                         alt.push(rowcfg.rowClass);
57163                     }
57164                     
57165                     rp.alt = alt.join(" ");
57166                     rp.cells = lcb.join("");
57167                     lbuf[lbuf.length] = rt.apply(rp);
57168                     rp.cells = cb.join("");
57169                     buf[buf.length] =  rt.apply(rp);
57170                 }
57171                 return [lbuf.join(""), buf.join("")];
57172             },
57173
57174     renderBody : function(){
57175         var markup = this.renderRows();
57176         var bt = this.templates.body;
57177         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57178     },
57179
57180     /**
57181      * Refreshes the grid
57182      * @param {Boolean} headersToo
57183      */
57184     refresh : function(headersToo){
57185         this.fireEvent("beforerefresh", this);
57186         this.grid.stopEditing();
57187         var result = this.renderBody();
57188         this.lockedBody.update(result[0]);
57189         this.mainBody.update(result[1]);
57190         if(headersToo === true){
57191             this.updateHeaders();
57192             this.updateColumns();
57193             this.updateSplitters();
57194             this.updateHeaderSortState();
57195         }
57196         this.syncRowHeights();
57197         this.layout();
57198         this.fireEvent("refresh", this);
57199     },
57200
57201     handleColumnMove : function(cm, oldIndex, newIndex){
57202         this.indexMap = null;
57203         var s = this.getScrollState();
57204         this.refresh(true);
57205         this.restoreScroll(s);
57206         this.afterMove(newIndex);
57207     },
57208
57209     afterMove : function(colIndex){
57210         if(this.enableMoveAnim && Roo.enableFx){
57211             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57212         }
57213         // if multisort - fix sortOrder, and reload..
57214         if (this.grid.dataSource.multiSort) {
57215             // the we can call sort again..
57216             var dm = this.grid.dataSource;
57217             var cm = this.grid.colModel;
57218             var so = [];
57219             for(var i = 0; i < cm.config.length; i++ ) {
57220                 
57221                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57222                     continue; // dont' bother, it's not in sort list or being set.
57223                 }
57224                 
57225                 so.push(cm.config[i].dataIndex);
57226             };
57227             dm.sortOrder = so;
57228             dm.load(dm.lastOptions);
57229             
57230             
57231         }
57232         
57233     },
57234
57235     updateCell : function(dm, rowIndex, dataIndex){
57236         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57237         if(typeof colIndex == "undefined"){ // not present in grid
57238             return;
57239         }
57240         var cm = this.grid.colModel;
57241         var cell = this.getCell(rowIndex, colIndex);
57242         var cellText = this.getCellText(rowIndex, colIndex);
57243
57244         var p = {
57245             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57246             id : cm.getColumnId(colIndex),
57247             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57248         };
57249         var renderer = cm.getRenderer(colIndex);
57250         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57251         if(typeof val == "undefined" || val === "") {
57252             val = "&#160;";
57253         }
57254         cellText.innerHTML = val;
57255         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57256         this.syncRowHeights(rowIndex, rowIndex);
57257     },
57258
57259     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57260         var maxWidth = 0;
57261         if(this.grid.autoSizeHeaders){
57262             var h = this.getHeaderCellMeasure(colIndex);
57263             maxWidth = Math.max(maxWidth, h.scrollWidth);
57264         }
57265         var tb, index;
57266         if(this.cm.isLocked(colIndex)){
57267             tb = this.getLockedTable();
57268             index = colIndex;
57269         }else{
57270             tb = this.getBodyTable();
57271             index = colIndex - this.cm.getLockedCount();
57272         }
57273         if(tb && tb.rows){
57274             var rows = tb.rows;
57275             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57276             for(var i = 0; i < stopIndex; i++){
57277                 var cell = rows[i].childNodes[index].firstChild;
57278                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57279             }
57280         }
57281         return maxWidth + /*margin for error in IE*/ 5;
57282     },
57283     /**
57284      * Autofit a column to its content.
57285      * @param {Number} colIndex
57286      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57287      */
57288      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57289          if(this.cm.isHidden(colIndex)){
57290              return; // can't calc a hidden column
57291          }
57292         if(forceMinSize){
57293             var cid = this.cm.getColumnId(colIndex);
57294             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57295            if(this.grid.autoSizeHeaders){
57296                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57297            }
57298         }
57299         var newWidth = this.calcColumnWidth(colIndex);
57300         this.cm.setColumnWidth(colIndex,
57301             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57302         if(!suppressEvent){
57303             this.grid.fireEvent("columnresize", colIndex, newWidth);
57304         }
57305     },
57306
57307     /**
57308      * Autofits all columns to their content and then expands to fit any extra space in the grid
57309      */
57310      autoSizeColumns : function(){
57311         var cm = this.grid.colModel;
57312         var colCount = cm.getColumnCount();
57313         for(var i = 0; i < colCount; i++){
57314             this.autoSizeColumn(i, true, true);
57315         }
57316         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57317             this.fitColumns();
57318         }else{
57319             this.updateColumns();
57320             this.layout();
57321         }
57322     },
57323
57324     /**
57325      * Autofits all columns to the grid's width proportionate with their current size
57326      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57327      */
57328     fitColumns : function(reserveScrollSpace){
57329         var cm = this.grid.colModel;
57330         var colCount = cm.getColumnCount();
57331         var cols = [];
57332         var width = 0;
57333         var i, w;
57334         for (i = 0; i < colCount; i++){
57335             if(!cm.isHidden(i) && !cm.isFixed(i)){
57336                 w = cm.getColumnWidth(i);
57337                 cols.push(i);
57338                 cols.push(w);
57339                 width += w;
57340             }
57341         }
57342         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57343         if(reserveScrollSpace){
57344             avail -= 17;
57345         }
57346         var frac = (avail - cm.getTotalWidth())/width;
57347         while (cols.length){
57348             w = cols.pop();
57349             i = cols.pop();
57350             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57351         }
57352         this.updateColumns();
57353         this.layout();
57354     },
57355
57356     onRowSelect : function(rowIndex){
57357         var row = this.getRowComposite(rowIndex);
57358         row.addClass("x-grid-row-selected");
57359     },
57360
57361     onRowDeselect : function(rowIndex){
57362         var row = this.getRowComposite(rowIndex);
57363         row.removeClass("x-grid-row-selected");
57364     },
57365
57366     onCellSelect : function(row, col){
57367         var cell = this.getCell(row, col);
57368         if(cell){
57369             Roo.fly(cell).addClass("x-grid-cell-selected");
57370         }
57371     },
57372
57373     onCellDeselect : function(row, col){
57374         var cell = this.getCell(row, col);
57375         if(cell){
57376             Roo.fly(cell).removeClass("x-grid-cell-selected");
57377         }
57378     },
57379
57380     updateHeaderSortState : function(){
57381         
57382         // sort state can be single { field: xxx, direction : yyy}
57383         // or   { xxx=>ASC , yyy : DESC ..... }
57384         
57385         var mstate = {};
57386         if (!this.ds.multiSort) { 
57387             var state = this.ds.getSortState();
57388             if(!state){
57389                 return;
57390             }
57391             mstate[state.field] = state.direction;
57392             // FIXME... - this is not used here.. but might be elsewhere..
57393             this.sortState = state;
57394             
57395         } else {
57396             mstate = this.ds.sortToggle;
57397         }
57398         //remove existing sort classes..
57399         
57400         var sc = this.sortClasses;
57401         var hds = this.el.select(this.headerSelector).removeClass(sc);
57402         
57403         for(var f in mstate) {
57404         
57405             var sortColumn = this.cm.findColumnIndex(f);
57406             
57407             if(sortColumn != -1){
57408                 var sortDir = mstate[f];        
57409                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57410             }
57411         }
57412         
57413          
57414         
57415     },
57416
57417
57418     handleHeaderClick : function(g, index,e){
57419         
57420         Roo.log("header click");
57421         
57422         if (Roo.isTouch) {
57423             // touch events on header are handled by context
57424             this.handleHdCtx(g,index,e);
57425             return;
57426         }
57427         
57428         
57429         if(this.headersDisabled){
57430             return;
57431         }
57432         var dm = g.dataSource, cm = g.colModel;
57433         if(!cm.isSortable(index)){
57434             return;
57435         }
57436         g.stopEditing();
57437         
57438         if (dm.multiSort) {
57439             // update the sortOrder
57440             var so = [];
57441             for(var i = 0; i < cm.config.length; i++ ) {
57442                 
57443                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57444                     continue; // dont' bother, it's not in sort list or being set.
57445                 }
57446                 
57447                 so.push(cm.config[i].dataIndex);
57448             };
57449             dm.sortOrder = so;
57450         }
57451         
57452         
57453         dm.sort(cm.getDataIndex(index));
57454     },
57455
57456
57457     destroy : function(){
57458         if(this.colMenu){
57459             this.colMenu.removeAll();
57460             Roo.menu.MenuMgr.unregister(this.colMenu);
57461             this.colMenu.getEl().remove();
57462             delete this.colMenu;
57463         }
57464         if(this.hmenu){
57465             this.hmenu.removeAll();
57466             Roo.menu.MenuMgr.unregister(this.hmenu);
57467             this.hmenu.getEl().remove();
57468             delete this.hmenu;
57469         }
57470         if(this.grid.enableColumnMove){
57471             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57472             if(dds){
57473                 for(var dd in dds){
57474                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57475                         var elid = dds[dd].dragElId;
57476                         dds[dd].unreg();
57477                         Roo.get(elid).remove();
57478                     } else if(dds[dd].config.isTarget){
57479                         dds[dd].proxyTop.remove();
57480                         dds[dd].proxyBottom.remove();
57481                         dds[dd].unreg();
57482                     }
57483                     if(Roo.dd.DDM.locationCache[dd]){
57484                         delete Roo.dd.DDM.locationCache[dd];
57485                     }
57486                 }
57487                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57488             }
57489         }
57490         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57491         this.bind(null, null);
57492         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57493     },
57494
57495     handleLockChange : function(){
57496         this.refresh(true);
57497     },
57498
57499     onDenyColumnLock : function(){
57500
57501     },
57502
57503     onDenyColumnHide : function(){
57504
57505     },
57506
57507     handleHdMenuClick : function(item){
57508         var index = this.hdCtxIndex;
57509         var cm = this.cm, ds = this.ds;
57510         switch(item.id){
57511             case "asc":
57512                 ds.sort(cm.getDataIndex(index), "ASC");
57513                 break;
57514             case "desc":
57515                 ds.sort(cm.getDataIndex(index), "DESC");
57516                 break;
57517             case "lock":
57518                 var lc = cm.getLockedCount();
57519                 if(cm.getColumnCount(true) <= lc+1){
57520                     this.onDenyColumnLock();
57521                     return;
57522                 }
57523                 if(lc != index){
57524                     cm.setLocked(index, true, true);
57525                     cm.moveColumn(index, lc);
57526                     this.grid.fireEvent("columnmove", index, lc);
57527                 }else{
57528                     cm.setLocked(index, true);
57529                 }
57530             break;
57531             case "unlock":
57532                 var lc = cm.getLockedCount();
57533                 if((lc-1) != index){
57534                     cm.setLocked(index, false, true);
57535                     cm.moveColumn(index, lc-1);
57536                     this.grid.fireEvent("columnmove", index, lc-1);
57537                 }else{
57538                     cm.setLocked(index, false);
57539                 }
57540             break;
57541             case 'wider': // used to expand cols on touch..
57542             case 'narrow':
57543                 var cw = cm.getColumnWidth(index);
57544                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57545                 cw = Math.max(0, cw);
57546                 cw = Math.min(cw,4000);
57547                 cm.setColumnWidth(index, cw);
57548                 break;
57549                 
57550             default:
57551                 index = cm.getIndexById(item.id.substr(4));
57552                 if(index != -1){
57553                     if(item.checked && cm.getColumnCount(true) <= 1){
57554                         this.onDenyColumnHide();
57555                         return false;
57556                     }
57557                     cm.setHidden(index, item.checked);
57558                 }
57559         }
57560         return true;
57561     },
57562
57563     beforeColMenuShow : function(){
57564         var cm = this.cm,  colCount = cm.getColumnCount();
57565         this.colMenu.removeAll();
57566         for(var i = 0; i < colCount; i++){
57567             this.colMenu.add(new Roo.menu.CheckItem({
57568                 id: "col-"+cm.getColumnId(i),
57569                 text: cm.getColumnHeader(i),
57570                 checked: !cm.isHidden(i),
57571                 hideOnClick:false
57572             }));
57573         }
57574     },
57575
57576     handleHdCtx : function(g, index, e){
57577         e.stopEvent();
57578         var hd = this.getHeaderCell(index);
57579         this.hdCtxIndex = index;
57580         var ms = this.hmenu.items, cm = this.cm;
57581         ms.get("asc").setDisabled(!cm.isSortable(index));
57582         ms.get("desc").setDisabled(!cm.isSortable(index));
57583         if(this.grid.enableColLock !== false){
57584             ms.get("lock").setDisabled(cm.isLocked(index));
57585             ms.get("unlock").setDisabled(!cm.isLocked(index));
57586         }
57587         this.hmenu.show(hd, "tl-bl");
57588     },
57589
57590     handleHdOver : function(e){
57591         var hd = this.findHeaderCell(e.getTarget());
57592         if(hd && !this.headersDisabled){
57593             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57594                this.fly(hd).addClass("x-grid-hd-over");
57595             }
57596         }
57597     },
57598
57599     handleHdOut : function(e){
57600         var hd = this.findHeaderCell(e.getTarget());
57601         if(hd){
57602             this.fly(hd).removeClass("x-grid-hd-over");
57603         }
57604     },
57605
57606     handleSplitDblClick : function(e, t){
57607         var i = this.getCellIndex(t);
57608         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57609             this.autoSizeColumn(i, true);
57610             this.layout();
57611         }
57612     },
57613
57614     render : function(){
57615
57616         var cm = this.cm;
57617         var colCount = cm.getColumnCount();
57618
57619         if(this.grid.monitorWindowResize === true){
57620             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57621         }
57622         var header = this.renderHeaders();
57623         var body = this.templates.body.apply({rows:""});
57624         var html = this.templates.master.apply({
57625             lockedBody: body,
57626             body: body,
57627             lockedHeader: header[0],
57628             header: header[1]
57629         });
57630
57631         //this.updateColumns();
57632
57633         this.grid.getGridEl().dom.innerHTML = html;
57634
57635         this.initElements();
57636         
57637         // a kludge to fix the random scolling effect in webkit
57638         this.el.on("scroll", function() {
57639             this.el.dom.scrollTop=0; // hopefully not recursive..
57640         },this);
57641
57642         this.scroller.on("scroll", this.handleScroll, this);
57643         this.lockedBody.on("mousewheel", this.handleWheel, this);
57644         this.mainBody.on("mousewheel", this.handleWheel, this);
57645
57646         this.mainHd.on("mouseover", this.handleHdOver, this);
57647         this.mainHd.on("mouseout", this.handleHdOut, this);
57648         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57649                 {delegate: "."+this.splitClass});
57650
57651         this.lockedHd.on("mouseover", this.handleHdOver, this);
57652         this.lockedHd.on("mouseout", this.handleHdOut, this);
57653         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57654                 {delegate: "."+this.splitClass});
57655
57656         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57657             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57658         }
57659
57660         this.updateSplitters();
57661
57662         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57663             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57664             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57665         }
57666
57667         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57668             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57669             this.hmenu.add(
57670                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57671                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57672             );
57673             if(this.grid.enableColLock !== false){
57674                 this.hmenu.add('-',
57675                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57676                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57677                 );
57678             }
57679             if (Roo.isTouch) {
57680                  this.hmenu.add('-',
57681                     {id:"wider", text: this.columnsWiderText},
57682                     {id:"narrow", text: this.columnsNarrowText }
57683                 );
57684                 
57685                  
57686             }
57687             
57688             if(this.grid.enableColumnHide !== false){
57689
57690                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57691                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57692                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57693
57694                 this.hmenu.add('-',
57695                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57696                 );
57697             }
57698             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57699
57700             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57701         }
57702
57703         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57704             this.dd = new Roo.grid.GridDragZone(this.grid, {
57705                 ddGroup : this.grid.ddGroup || 'GridDD'
57706             });
57707             
57708         }
57709
57710         /*
57711         for(var i = 0; i < colCount; i++){
57712             if(cm.isHidden(i)){
57713                 this.hideColumn(i);
57714             }
57715             if(cm.config[i].align){
57716                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57717                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57718             }
57719         }*/
57720         
57721         this.updateHeaderSortState();
57722
57723         this.beforeInitialResize();
57724         this.layout(true);
57725
57726         // two part rendering gives faster view to the user
57727         this.renderPhase2.defer(1, this);
57728     },
57729
57730     renderPhase2 : function(){
57731         // render the rows now
57732         this.refresh();
57733         if(this.grid.autoSizeColumns){
57734             this.autoSizeColumns();
57735         }
57736     },
57737
57738     beforeInitialResize : function(){
57739
57740     },
57741
57742     onColumnSplitterMoved : function(i, w){
57743         this.userResized = true;
57744         var cm = this.grid.colModel;
57745         cm.setColumnWidth(i, w, true);
57746         var cid = cm.getColumnId(i);
57747         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57748         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57749         this.updateSplitters();
57750         this.layout();
57751         this.grid.fireEvent("columnresize", i, w);
57752     },
57753
57754     syncRowHeights : function(startIndex, endIndex){
57755         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57756             startIndex = startIndex || 0;
57757             var mrows = this.getBodyTable().rows;
57758             var lrows = this.getLockedTable().rows;
57759             var len = mrows.length-1;
57760             endIndex = Math.min(endIndex || len, len);
57761             for(var i = startIndex; i <= endIndex; i++){
57762                 var m = mrows[i], l = lrows[i];
57763                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57764                 m.style.height = l.style.height = h + "px";
57765             }
57766         }
57767     },
57768
57769     layout : function(initialRender, is2ndPass)
57770     {
57771         var g = this.grid;
57772         var auto = g.autoHeight;
57773         var scrollOffset = 16;
57774         var c = g.getGridEl(), cm = this.cm,
57775                 expandCol = g.autoExpandColumn,
57776                 gv = this;
57777         //c.beginMeasure();
57778
57779         if(!c.dom.offsetWidth){ // display:none?
57780             if(initialRender){
57781                 this.lockedWrap.show();
57782                 this.mainWrap.show();
57783             }
57784             return;
57785         }
57786
57787         var hasLock = this.cm.isLocked(0);
57788
57789         var tbh = this.headerPanel.getHeight();
57790         var bbh = this.footerPanel.getHeight();
57791
57792         if(auto){
57793             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57794             var newHeight = ch + c.getBorderWidth("tb");
57795             if(g.maxHeight){
57796                 newHeight = Math.min(g.maxHeight, newHeight);
57797             }
57798             c.setHeight(newHeight);
57799         }
57800
57801         if(g.autoWidth){
57802             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57803         }
57804
57805         var s = this.scroller;
57806
57807         var csize = c.getSize(true);
57808
57809         this.el.setSize(csize.width, csize.height);
57810
57811         this.headerPanel.setWidth(csize.width);
57812         this.footerPanel.setWidth(csize.width);
57813
57814         var hdHeight = this.mainHd.getHeight();
57815         var vw = csize.width;
57816         var vh = csize.height - (tbh + bbh);
57817
57818         s.setSize(vw, vh);
57819
57820         var bt = this.getBodyTable();
57821         
57822         if(cm.getLockedCount() == cm.config.length){
57823             bt = this.getLockedTable();
57824         }
57825         
57826         var ltWidth = hasLock ?
57827                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57828
57829         var scrollHeight = bt.offsetHeight;
57830         var scrollWidth = ltWidth + bt.offsetWidth;
57831         var vscroll = false, hscroll = false;
57832
57833         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57834
57835         var lw = this.lockedWrap, mw = this.mainWrap;
57836         var lb = this.lockedBody, mb = this.mainBody;
57837
57838         setTimeout(function(){
57839             var t = s.dom.offsetTop;
57840             var w = s.dom.clientWidth,
57841                 h = s.dom.clientHeight;
57842
57843             lw.setTop(t);
57844             lw.setSize(ltWidth, h);
57845
57846             mw.setLeftTop(ltWidth, t);
57847             mw.setSize(w-ltWidth, h);
57848
57849             lb.setHeight(h-hdHeight);
57850             mb.setHeight(h-hdHeight);
57851
57852             if(is2ndPass !== true && !gv.userResized && expandCol){
57853                 // high speed resize without full column calculation
57854                 
57855                 var ci = cm.getIndexById(expandCol);
57856                 if (ci < 0) {
57857                     ci = cm.findColumnIndex(expandCol);
57858                 }
57859                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57860                 var expandId = cm.getColumnId(ci);
57861                 var  tw = cm.getTotalWidth(false);
57862                 var currentWidth = cm.getColumnWidth(ci);
57863                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
57864                 if(currentWidth != cw){
57865                     cm.setColumnWidth(ci, cw, true);
57866                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57867                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57868                     gv.updateSplitters();
57869                     gv.layout(false, true);
57870                 }
57871             }
57872
57873             if(initialRender){
57874                 lw.show();
57875                 mw.show();
57876             }
57877             //c.endMeasure();
57878         }, 10);
57879     },
57880
57881     onWindowResize : function(){
57882         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
57883             return;
57884         }
57885         this.layout();
57886     },
57887
57888     appendFooter : function(parentEl){
57889         return null;
57890     },
57891
57892     sortAscText : "Sort Ascending",
57893     sortDescText : "Sort Descending",
57894     lockText : "Lock Column",
57895     unlockText : "Unlock Column",
57896     columnsText : "Columns",
57897  
57898     columnsWiderText : "Wider",
57899     columnsNarrowText : "Thinner"
57900 });
57901
57902
57903 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
57904     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
57905     this.proxy.el.addClass('x-grid3-col-dd');
57906 };
57907
57908 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
57909     handleMouseDown : function(e){
57910
57911     },
57912
57913     callHandleMouseDown : function(e){
57914         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
57915     }
57916 });
57917 /*
57918  * Based on:
57919  * Ext JS Library 1.1.1
57920  * Copyright(c) 2006-2007, Ext JS, LLC.
57921  *
57922  * Originally Released Under LGPL - original licence link has changed is not relivant.
57923  *
57924  * Fork - LGPL
57925  * <script type="text/javascript">
57926  */
57927  
57928 // private
57929 // This is a support class used internally by the Grid components
57930 Roo.grid.SplitDragZone = function(grid, hd, hd2){
57931     this.grid = grid;
57932     this.view = grid.getView();
57933     this.proxy = this.view.resizeProxy;
57934     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
57935         "gridSplitters" + this.grid.getGridEl().id, {
57936         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
57937     });
57938     this.setHandleElId(Roo.id(hd));
57939     this.setOuterHandleElId(Roo.id(hd2));
57940     this.scroll = false;
57941 };
57942 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
57943     fly: Roo.Element.fly,
57944
57945     b4StartDrag : function(x, y){
57946         this.view.headersDisabled = true;
57947         this.proxy.setHeight(this.view.mainWrap.getHeight());
57948         var w = this.cm.getColumnWidth(this.cellIndex);
57949         var minw = Math.max(w-this.grid.minColumnWidth, 0);
57950         this.resetConstraints();
57951         this.setXConstraint(minw, 1000);
57952         this.setYConstraint(0, 0);
57953         this.minX = x - minw;
57954         this.maxX = x + 1000;
57955         this.startPos = x;
57956         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
57957     },
57958
57959
57960     handleMouseDown : function(e){
57961         ev = Roo.EventObject.setEvent(e);
57962         var t = this.fly(ev.getTarget());
57963         if(t.hasClass("x-grid-split")){
57964             this.cellIndex = this.view.getCellIndex(t.dom);
57965             this.split = t.dom;
57966             this.cm = this.grid.colModel;
57967             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
57968                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
57969             }
57970         }
57971     },
57972
57973     endDrag : function(e){
57974         this.view.headersDisabled = false;
57975         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
57976         var diff = endX - this.startPos;
57977         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
57978     },
57979
57980     autoOffset : function(){
57981         this.setDelta(0,0);
57982     }
57983 });/*
57984  * Based on:
57985  * Ext JS Library 1.1.1
57986  * Copyright(c) 2006-2007, Ext JS, LLC.
57987  *
57988  * Originally Released Under LGPL - original licence link has changed is not relivant.
57989  *
57990  * Fork - LGPL
57991  * <script type="text/javascript">
57992  */
57993  
57994 // private
57995 // This is a support class used internally by the Grid components
57996 Roo.grid.GridDragZone = function(grid, config){
57997     this.view = grid.getView();
57998     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
57999     if(this.view.lockedBody){
58000         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58001         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58002     }
58003     this.scroll = false;
58004     this.grid = grid;
58005     this.ddel = document.createElement('div');
58006     this.ddel.className = 'x-grid-dd-wrap';
58007 };
58008
58009 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58010     ddGroup : "GridDD",
58011
58012     getDragData : function(e){
58013         var t = Roo.lib.Event.getTarget(e);
58014         var rowIndex = this.view.findRowIndex(t);
58015         var sm = this.grid.selModel;
58016             
58017         //Roo.log(rowIndex);
58018         
58019         if (sm.getSelectedCell) {
58020             // cell selection..
58021             if (!sm.getSelectedCell()) {
58022                 return false;
58023             }
58024             if (rowIndex != sm.getSelectedCell()[0]) {
58025                 return false;
58026             }
58027         
58028         }
58029         if (sm.getSelections && sm.getSelections().length < 1) {
58030             return false;
58031         }
58032         
58033         
58034         // before it used to all dragging of unseleted... - now we dont do that.
58035         if(rowIndex !== false){
58036             
58037             // if editorgrid.. 
58038             
58039             
58040             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58041                
58042             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58043               //  
58044             //}
58045             if (e.hasModifier()){
58046                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58047             }
58048             
58049             Roo.log("getDragData");
58050             
58051             return {
58052                 grid: this.grid,
58053                 ddel: this.ddel,
58054                 rowIndex: rowIndex,
58055                 selections: sm.getSelections ? sm.getSelections() : (
58056                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58057             };
58058         }
58059         return false;
58060     },
58061     
58062     
58063     onInitDrag : function(e){
58064         var data = this.dragData;
58065         this.ddel.innerHTML = this.grid.getDragDropText();
58066         this.proxy.update(this.ddel);
58067         // fire start drag?
58068     },
58069
58070     afterRepair : function(){
58071         this.dragging = false;
58072     },
58073
58074     getRepairXY : function(e, data){
58075         return false;
58076     },
58077
58078     onEndDrag : function(data, e){
58079         // fire end drag?
58080     },
58081
58082     onValidDrop : function(dd, e, id){
58083         // fire drag drop?
58084         this.hideProxy();
58085     },
58086
58087     beforeInvalidDrop : function(e, id){
58088
58089     }
58090 });/*
58091  * Based on:
58092  * Ext JS Library 1.1.1
58093  * Copyright(c) 2006-2007, Ext JS, LLC.
58094  *
58095  * Originally Released Under LGPL - original licence link has changed is not relivant.
58096  *
58097  * Fork - LGPL
58098  * <script type="text/javascript">
58099  */
58100  
58101
58102 /**
58103  * @class Roo.grid.ColumnModel
58104  * @extends Roo.util.Observable
58105  * This is the default implementation of a ColumnModel used by the Grid. It defines
58106  * the columns in the grid.
58107  * <br>Usage:<br>
58108  <pre><code>
58109  var colModel = new Roo.grid.ColumnModel([
58110         {header: "Ticker", width: 60, sortable: true, locked: true},
58111         {header: "Company Name", width: 150, sortable: true},
58112         {header: "Market Cap.", width: 100, sortable: true},
58113         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58114         {header: "Employees", width: 100, sortable: true, resizable: false}
58115  ]);
58116  </code></pre>
58117  * <p>
58118  
58119  * The config options listed for this class are options which may appear in each
58120  * individual column definition.
58121  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58122  * @constructor
58123  * @param {Object} config An Array of column config objects. See this class's
58124  * config objects for details.
58125 */
58126 Roo.grid.ColumnModel = function(config){
58127         /**
58128      * The config passed into the constructor
58129      */
58130     this.config = config;
58131     this.lookup = {};
58132
58133     // if no id, create one
58134     // if the column does not have a dataIndex mapping,
58135     // map it to the order it is in the config
58136     for(var i = 0, len = config.length; i < len; i++){
58137         var c = config[i];
58138         if(typeof c.dataIndex == "undefined"){
58139             c.dataIndex = i;
58140         }
58141         if(typeof c.renderer == "string"){
58142             c.renderer = Roo.util.Format[c.renderer];
58143         }
58144         if(typeof c.id == "undefined"){
58145             c.id = Roo.id();
58146         }
58147         if(c.editor && c.editor.xtype){
58148             c.editor  = Roo.factory(c.editor, Roo.grid);
58149         }
58150         if(c.editor && c.editor.isFormField){
58151             c.editor = new Roo.grid.GridEditor(c.editor);
58152         }
58153         this.lookup[c.id] = c;
58154     }
58155
58156     /**
58157      * The width of columns which have no width specified (defaults to 100)
58158      * @type Number
58159      */
58160     this.defaultWidth = 100;
58161
58162     /**
58163      * Default sortable of columns which have no sortable specified (defaults to false)
58164      * @type Boolean
58165      */
58166     this.defaultSortable = false;
58167
58168     this.addEvents({
58169         /**
58170              * @event widthchange
58171              * Fires when the width of a column changes.
58172              * @param {ColumnModel} this
58173              * @param {Number} columnIndex The column index
58174              * @param {Number} newWidth The new width
58175              */
58176             "widthchange": true,
58177         /**
58178              * @event headerchange
58179              * Fires when the text of a header changes.
58180              * @param {ColumnModel} this
58181              * @param {Number} columnIndex The column index
58182              * @param {Number} newText The new header text
58183              */
58184             "headerchange": true,
58185         /**
58186              * @event hiddenchange
58187              * Fires when a column is hidden or "unhidden".
58188              * @param {ColumnModel} this
58189              * @param {Number} columnIndex The column index
58190              * @param {Boolean} hidden true if hidden, false otherwise
58191              */
58192             "hiddenchange": true,
58193             /**
58194          * @event columnmoved
58195          * Fires when a column is moved.
58196          * @param {ColumnModel} this
58197          * @param {Number} oldIndex
58198          * @param {Number} newIndex
58199          */
58200         "columnmoved" : true,
58201         /**
58202          * @event columlockchange
58203          * Fires when a column's locked state is changed
58204          * @param {ColumnModel} this
58205          * @param {Number} colIndex
58206          * @param {Boolean} locked true if locked
58207          */
58208         "columnlockchange" : true
58209     });
58210     Roo.grid.ColumnModel.superclass.constructor.call(this);
58211 };
58212 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58213     /**
58214      * @cfg {String} header The header text to display in the Grid view.
58215      */
58216     /**
58217      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58218      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58219      * specified, the column's index is used as an index into the Record's data Array.
58220      */
58221     /**
58222      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58223      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58224      */
58225     /**
58226      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58227      * Defaults to the value of the {@link #defaultSortable} property.
58228      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58229      */
58230     /**
58231      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58232      */
58233     /**
58234      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58235      */
58236     /**
58237      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58238      */
58239     /**
58240      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58241      */
58242     /**
58243      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58244      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58245      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58246      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58247      */
58248        /**
58249      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58250      */
58251     /**
58252      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58253      */
58254     /**
58255      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58256      */
58257     /**
58258      * @cfg {String} cursor (Optional)
58259      */
58260     /**
58261      * @cfg {String} tooltip (Optional)
58262      */
58263     /**
58264      * @cfg {Number} xs (Optional)
58265      */
58266     /**
58267      * @cfg {Number} sm (Optional)
58268      */
58269     /**
58270      * @cfg {Number} md (Optional)
58271      */
58272     /**
58273      * @cfg {Number} lg (Optional)
58274      */
58275     /**
58276      * Returns the id of the column at the specified index.
58277      * @param {Number} index The column index
58278      * @return {String} the id
58279      */
58280     getColumnId : function(index){
58281         return this.config[index].id;
58282     },
58283
58284     /**
58285      * Returns the column for a specified id.
58286      * @param {String} id The column id
58287      * @return {Object} the column
58288      */
58289     getColumnById : function(id){
58290         return this.lookup[id];
58291     },
58292
58293     
58294     /**
58295      * Returns the column for a specified dataIndex.
58296      * @param {String} dataIndex The column dataIndex
58297      * @return {Object|Boolean} the column or false if not found
58298      */
58299     getColumnByDataIndex: function(dataIndex){
58300         var index = this.findColumnIndex(dataIndex);
58301         return index > -1 ? this.config[index] : false;
58302     },
58303     
58304     /**
58305      * Returns the index for a specified column id.
58306      * @param {String} id The column id
58307      * @return {Number} the index, or -1 if not found
58308      */
58309     getIndexById : function(id){
58310         for(var i = 0, len = this.config.length; i < len; i++){
58311             if(this.config[i].id == id){
58312                 return i;
58313             }
58314         }
58315         return -1;
58316     },
58317     
58318     /**
58319      * Returns the index for a specified column dataIndex.
58320      * @param {String} dataIndex The column dataIndex
58321      * @return {Number} the index, or -1 if not found
58322      */
58323     
58324     findColumnIndex : function(dataIndex){
58325         for(var i = 0, len = this.config.length; i < len; i++){
58326             if(this.config[i].dataIndex == dataIndex){
58327                 return i;
58328             }
58329         }
58330         return -1;
58331     },
58332     
58333     
58334     moveColumn : function(oldIndex, newIndex){
58335         var c = this.config[oldIndex];
58336         this.config.splice(oldIndex, 1);
58337         this.config.splice(newIndex, 0, c);
58338         this.dataMap = null;
58339         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58340     },
58341
58342     isLocked : function(colIndex){
58343         return this.config[colIndex].locked === true;
58344     },
58345
58346     setLocked : function(colIndex, value, suppressEvent){
58347         if(this.isLocked(colIndex) == value){
58348             return;
58349         }
58350         this.config[colIndex].locked = value;
58351         if(!suppressEvent){
58352             this.fireEvent("columnlockchange", this, colIndex, value);
58353         }
58354     },
58355
58356     getTotalLockedWidth : function(){
58357         var totalWidth = 0;
58358         for(var i = 0; i < this.config.length; i++){
58359             if(this.isLocked(i) && !this.isHidden(i)){
58360                 this.totalWidth += this.getColumnWidth(i);
58361             }
58362         }
58363         return totalWidth;
58364     },
58365
58366     getLockedCount : function(){
58367         for(var i = 0, len = this.config.length; i < len; i++){
58368             if(!this.isLocked(i)){
58369                 return i;
58370             }
58371         }
58372         
58373         return this.config.length;
58374     },
58375
58376     /**
58377      * Returns the number of columns.
58378      * @return {Number}
58379      */
58380     getColumnCount : function(visibleOnly){
58381         if(visibleOnly === true){
58382             var c = 0;
58383             for(var i = 0, len = this.config.length; i < len; i++){
58384                 if(!this.isHidden(i)){
58385                     c++;
58386                 }
58387             }
58388             return c;
58389         }
58390         return this.config.length;
58391     },
58392
58393     /**
58394      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58395      * @param {Function} fn
58396      * @param {Object} scope (optional)
58397      * @return {Array} result
58398      */
58399     getColumnsBy : function(fn, scope){
58400         var r = [];
58401         for(var i = 0, len = this.config.length; i < len; i++){
58402             var c = this.config[i];
58403             if(fn.call(scope||this, c, i) === true){
58404                 r[r.length] = c;
58405             }
58406         }
58407         return r;
58408     },
58409
58410     /**
58411      * Returns true if the specified column is sortable.
58412      * @param {Number} col The column index
58413      * @return {Boolean}
58414      */
58415     isSortable : function(col){
58416         if(typeof this.config[col].sortable == "undefined"){
58417             return this.defaultSortable;
58418         }
58419         return this.config[col].sortable;
58420     },
58421
58422     /**
58423      * Returns the rendering (formatting) function defined for the column.
58424      * @param {Number} col The column index.
58425      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58426      */
58427     getRenderer : function(col){
58428         if(!this.config[col].renderer){
58429             return Roo.grid.ColumnModel.defaultRenderer;
58430         }
58431         return this.config[col].renderer;
58432     },
58433
58434     /**
58435      * Sets the rendering (formatting) function for a column.
58436      * @param {Number} col The column index
58437      * @param {Function} fn The function to use to process the cell's raw data
58438      * to return HTML markup for the grid view. The render function is called with
58439      * the following parameters:<ul>
58440      * <li>Data value.</li>
58441      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58442      * <li>css A CSS style string to apply to the table cell.</li>
58443      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58444      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58445      * <li>Row index</li>
58446      * <li>Column index</li>
58447      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58448      */
58449     setRenderer : function(col, fn){
58450         this.config[col].renderer = fn;
58451     },
58452
58453     /**
58454      * Returns the width for the specified column.
58455      * @param {Number} col The column index
58456      * @return {Number}
58457      */
58458     getColumnWidth : function(col){
58459         return this.config[col].width * 1 || this.defaultWidth;
58460     },
58461
58462     /**
58463      * Sets the width for a column.
58464      * @param {Number} col The column index
58465      * @param {Number} width The new width
58466      */
58467     setColumnWidth : function(col, width, suppressEvent){
58468         this.config[col].width = width;
58469         this.totalWidth = null;
58470         if(!suppressEvent){
58471              this.fireEvent("widthchange", this, col, width);
58472         }
58473     },
58474
58475     /**
58476      * Returns the total width of all columns.
58477      * @param {Boolean} includeHidden True to include hidden column widths
58478      * @return {Number}
58479      */
58480     getTotalWidth : function(includeHidden){
58481         if(!this.totalWidth){
58482             this.totalWidth = 0;
58483             for(var i = 0, len = this.config.length; i < len; i++){
58484                 if(includeHidden || !this.isHidden(i)){
58485                     this.totalWidth += this.getColumnWidth(i);
58486                 }
58487             }
58488         }
58489         return this.totalWidth;
58490     },
58491
58492     /**
58493      * Returns the header for the specified column.
58494      * @param {Number} col The column index
58495      * @return {String}
58496      */
58497     getColumnHeader : function(col){
58498         return this.config[col].header;
58499     },
58500
58501     /**
58502      * Sets the header for a column.
58503      * @param {Number} col The column index
58504      * @param {String} header The new header
58505      */
58506     setColumnHeader : function(col, header){
58507         this.config[col].header = header;
58508         this.fireEvent("headerchange", this, col, header);
58509     },
58510
58511     /**
58512      * Returns the tooltip for the specified column.
58513      * @param {Number} col The column index
58514      * @return {String}
58515      */
58516     getColumnTooltip : function(col){
58517             return this.config[col].tooltip;
58518     },
58519     /**
58520      * Sets the tooltip for a column.
58521      * @param {Number} col The column index
58522      * @param {String} tooltip The new tooltip
58523      */
58524     setColumnTooltip : function(col, tooltip){
58525             this.config[col].tooltip = tooltip;
58526     },
58527
58528     /**
58529      * Returns the dataIndex for the specified column.
58530      * @param {Number} col The column index
58531      * @return {Number}
58532      */
58533     getDataIndex : function(col){
58534         return this.config[col].dataIndex;
58535     },
58536
58537     /**
58538      * Sets the dataIndex for a column.
58539      * @param {Number} col The column index
58540      * @param {Number} dataIndex The new dataIndex
58541      */
58542     setDataIndex : function(col, dataIndex){
58543         this.config[col].dataIndex = dataIndex;
58544     },
58545
58546     
58547     
58548     /**
58549      * Returns true if the cell is editable.
58550      * @param {Number} colIndex The column index
58551      * @param {Number} rowIndex The row index - this is nto actually used..?
58552      * @return {Boolean}
58553      */
58554     isCellEditable : function(colIndex, rowIndex){
58555         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58556     },
58557
58558     /**
58559      * Returns the editor defined for the cell/column.
58560      * return false or null to disable editing.
58561      * @param {Number} colIndex The column index
58562      * @param {Number} rowIndex The row index
58563      * @return {Object}
58564      */
58565     getCellEditor : function(colIndex, rowIndex){
58566         return this.config[colIndex].editor;
58567     },
58568
58569     /**
58570      * Sets if a column is editable.
58571      * @param {Number} col The column index
58572      * @param {Boolean} editable True if the column is editable
58573      */
58574     setEditable : function(col, editable){
58575         this.config[col].editable = editable;
58576     },
58577
58578
58579     /**
58580      * Returns true if the column is hidden.
58581      * @param {Number} colIndex The column index
58582      * @return {Boolean}
58583      */
58584     isHidden : function(colIndex){
58585         return this.config[colIndex].hidden;
58586     },
58587
58588
58589     /**
58590      * Returns true if the column width cannot be changed
58591      */
58592     isFixed : function(colIndex){
58593         return this.config[colIndex].fixed;
58594     },
58595
58596     /**
58597      * Returns true if the column can be resized
58598      * @return {Boolean}
58599      */
58600     isResizable : function(colIndex){
58601         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58602     },
58603     /**
58604      * Sets if a column is hidden.
58605      * @param {Number} colIndex The column index
58606      * @param {Boolean} hidden True if the column is hidden
58607      */
58608     setHidden : function(colIndex, hidden){
58609         this.config[colIndex].hidden = hidden;
58610         this.totalWidth = null;
58611         this.fireEvent("hiddenchange", this, colIndex, hidden);
58612     },
58613
58614     /**
58615      * Sets the editor for a column.
58616      * @param {Number} col The column index
58617      * @param {Object} editor The editor object
58618      */
58619     setEditor : function(col, editor){
58620         this.config[col].editor = editor;
58621     }
58622 });
58623
58624 Roo.grid.ColumnModel.defaultRenderer = function(value)
58625 {
58626     if(typeof value == "object") {
58627         return value;
58628     }
58629         if(typeof value == "string" && value.length < 1){
58630             return "&#160;";
58631         }
58632     
58633         return String.format("{0}", value);
58634 };
58635
58636 // Alias for backwards compatibility
58637 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58638 /*
58639  * Based on:
58640  * Ext JS Library 1.1.1
58641  * Copyright(c) 2006-2007, Ext JS, LLC.
58642  *
58643  * Originally Released Under LGPL - original licence link has changed is not relivant.
58644  *
58645  * Fork - LGPL
58646  * <script type="text/javascript">
58647  */
58648
58649 /**
58650  * @class Roo.grid.AbstractSelectionModel
58651  * @extends Roo.util.Observable
58652  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58653  * implemented by descendant classes.  This class should not be directly instantiated.
58654  * @constructor
58655  */
58656 Roo.grid.AbstractSelectionModel = function(){
58657     this.locked = false;
58658     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58659 };
58660
58661 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58662     /** @ignore Called by the grid automatically. Do not call directly. */
58663     init : function(grid){
58664         this.grid = grid;
58665         this.initEvents();
58666     },
58667
58668     /**
58669      * Locks the selections.
58670      */
58671     lock : function(){
58672         this.locked = true;
58673     },
58674
58675     /**
58676      * Unlocks the selections.
58677      */
58678     unlock : function(){
58679         this.locked = false;
58680     },
58681
58682     /**
58683      * Returns true if the selections are locked.
58684      * @return {Boolean}
58685      */
58686     isLocked : function(){
58687         return this.locked;
58688     }
58689 });/*
58690  * Based on:
58691  * Ext JS Library 1.1.1
58692  * Copyright(c) 2006-2007, Ext JS, LLC.
58693  *
58694  * Originally Released Under LGPL - original licence link has changed is not relivant.
58695  *
58696  * Fork - LGPL
58697  * <script type="text/javascript">
58698  */
58699 /**
58700  * @extends Roo.grid.AbstractSelectionModel
58701  * @class Roo.grid.RowSelectionModel
58702  * The default SelectionModel used by {@link Roo.grid.Grid}.
58703  * It supports multiple selections and keyboard selection/navigation. 
58704  * @constructor
58705  * @param {Object} config
58706  */
58707 Roo.grid.RowSelectionModel = function(config){
58708     Roo.apply(this, config);
58709     this.selections = new Roo.util.MixedCollection(false, function(o){
58710         return o.id;
58711     });
58712
58713     this.last = false;
58714     this.lastActive = false;
58715
58716     this.addEvents({
58717         /**
58718              * @event selectionchange
58719              * Fires when the selection changes
58720              * @param {SelectionModel} this
58721              */
58722             "selectionchange" : true,
58723         /**
58724              * @event afterselectionchange
58725              * Fires after the selection changes (eg. by key press or clicking)
58726              * @param {SelectionModel} this
58727              */
58728             "afterselectionchange" : true,
58729         /**
58730              * @event beforerowselect
58731              * Fires when a row is selected being selected, return false to cancel.
58732              * @param {SelectionModel} this
58733              * @param {Number} rowIndex The selected index
58734              * @param {Boolean} keepExisting False if other selections will be cleared
58735              */
58736             "beforerowselect" : true,
58737         /**
58738              * @event rowselect
58739              * Fires when a row is selected.
58740              * @param {SelectionModel} this
58741              * @param {Number} rowIndex The selected index
58742              * @param {Roo.data.Record} r The record
58743              */
58744             "rowselect" : true,
58745         /**
58746              * @event rowdeselect
58747              * Fires when a row is deselected.
58748              * @param {SelectionModel} this
58749              * @param {Number} rowIndex The selected index
58750              */
58751         "rowdeselect" : true
58752     });
58753     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58754     this.locked = false;
58755 };
58756
58757 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58758     /**
58759      * @cfg {Boolean} singleSelect
58760      * True to allow selection of only one row at a time (defaults to false)
58761      */
58762     singleSelect : false,
58763
58764     // private
58765     initEvents : function(){
58766
58767         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58768             this.grid.on("mousedown", this.handleMouseDown, this);
58769         }else{ // allow click to work like normal
58770             this.grid.on("rowclick", this.handleDragableRowClick, this);
58771         }
58772
58773         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58774             "up" : function(e){
58775                 if(!e.shiftKey){
58776                     this.selectPrevious(e.shiftKey);
58777                 }else if(this.last !== false && this.lastActive !== false){
58778                     var last = this.last;
58779                     this.selectRange(this.last,  this.lastActive-1);
58780                     this.grid.getView().focusRow(this.lastActive);
58781                     if(last !== false){
58782                         this.last = last;
58783                     }
58784                 }else{
58785                     this.selectFirstRow();
58786                 }
58787                 this.fireEvent("afterselectionchange", this);
58788             },
58789             "down" : function(e){
58790                 if(!e.shiftKey){
58791                     this.selectNext(e.shiftKey);
58792                 }else if(this.last !== false && this.lastActive !== false){
58793                     var last = this.last;
58794                     this.selectRange(this.last,  this.lastActive+1);
58795                     this.grid.getView().focusRow(this.lastActive);
58796                     if(last !== false){
58797                         this.last = last;
58798                     }
58799                 }else{
58800                     this.selectFirstRow();
58801                 }
58802                 this.fireEvent("afterselectionchange", this);
58803             },
58804             scope: this
58805         });
58806
58807         var view = this.grid.view;
58808         view.on("refresh", this.onRefresh, this);
58809         view.on("rowupdated", this.onRowUpdated, this);
58810         view.on("rowremoved", this.onRemove, this);
58811     },
58812
58813     // private
58814     onRefresh : function(){
58815         var ds = this.grid.dataSource, i, v = this.grid.view;
58816         var s = this.selections;
58817         s.each(function(r){
58818             if((i = ds.indexOfId(r.id)) != -1){
58819                 v.onRowSelect(i);
58820                 s.add(ds.getAt(i)); // updating the selection relate data
58821             }else{
58822                 s.remove(r);
58823             }
58824         });
58825     },
58826
58827     // private
58828     onRemove : function(v, index, r){
58829         this.selections.remove(r);
58830     },
58831
58832     // private
58833     onRowUpdated : function(v, index, r){
58834         if(this.isSelected(r)){
58835             v.onRowSelect(index);
58836         }
58837     },
58838
58839     /**
58840      * Select records.
58841      * @param {Array} records The records to select
58842      * @param {Boolean} keepExisting (optional) True to keep existing selections
58843      */
58844     selectRecords : function(records, keepExisting){
58845         if(!keepExisting){
58846             this.clearSelections();
58847         }
58848         var ds = this.grid.dataSource;
58849         for(var i = 0, len = records.length; i < len; i++){
58850             this.selectRow(ds.indexOf(records[i]), true);
58851         }
58852     },
58853
58854     /**
58855      * Gets the number of selected rows.
58856      * @return {Number}
58857      */
58858     getCount : function(){
58859         return this.selections.length;
58860     },
58861
58862     /**
58863      * Selects the first row in the grid.
58864      */
58865     selectFirstRow : function(){
58866         this.selectRow(0);
58867     },
58868
58869     /**
58870      * Select the last row.
58871      * @param {Boolean} keepExisting (optional) True to keep existing selections
58872      */
58873     selectLastRow : function(keepExisting){
58874         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
58875     },
58876
58877     /**
58878      * Selects the row immediately following the last selected row.
58879      * @param {Boolean} keepExisting (optional) True to keep existing selections
58880      */
58881     selectNext : function(keepExisting){
58882         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
58883             this.selectRow(this.last+1, keepExisting);
58884             this.grid.getView().focusRow(this.last);
58885         }
58886     },
58887
58888     /**
58889      * Selects the row that precedes the last selected row.
58890      * @param {Boolean} keepExisting (optional) True to keep existing selections
58891      */
58892     selectPrevious : function(keepExisting){
58893         if(this.last){
58894             this.selectRow(this.last-1, keepExisting);
58895             this.grid.getView().focusRow(this.last);
58896         }
58897     },
58898
58899     /**
58900      * Returns the selected records
58901      * @return {Array} Array of selected records
58902      */
58903     getSelections : function(){
58904         return [].concat(this.selections.items);
58905     },
58906
58907     /**
58908      * Returns the first selected record.
58909      * @return {Record}
58910      */
58911     getSelected : function(){
58912         return this.selections.itemAt(0);
58913     },
58914
58915
58916     /**
58917      * Clears all selections.
58918      */
58919     clearSelections : function(fast){
58920         if(this.locked) {
58921             return;
58922         }
58923         if(fast !== true){
58924             var ds = this.grid.dataSource;
58925             var s = this.selections;
58926             s.each(function(r){
58927                 this.deselectRow(ds.indexOfId(r.id));
58928             }, this);
58929             s.clear();
58930         }else{
58931             this.selections.clear();
58932         }
58933         this.last = false;
58934     },
58935
58936
58937     /**
58938      * Selects all rows.
58939      */
58940     selectAll : function(){
58941         if(this.locked) {
58942             return;
58943         }
58944         this.selections.clear();
58945         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
58946             this.selectRow(i, true);
58947         }
58948     },
58949
58950     /**
58951      * Returns True if there is a selection.
58952      * @return {Boolean}
58953      */
58954     hasSelection : function(){
58955         return this.selections.length > 0;
58956     },
58957
58958     /**
58959      * Returns True if the specified row is selected.
58960      * @param {Number/Record} record The record or index of the record to check
58961      * @return {Boolean}
58962      */
58963     isSelected : function(index){
58964         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
58965         return (r && this.selections.key(r.id) ? true : false);
58966     },
58967
58968     /**
58969      * Returns True if the specified record id is selected.
58970      * @param {String} id The id of record to check
58971      * @return {Boolean}
58972      */
58973     isIdSelected : function(id){
58974         return (this.selections.key(id) ? true : false);
58975     },
58976
58977     // private
58978     handleMouseDown : function(e, t){
58979         var view = this.grid.getView(), rowIndex;
58980         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
58981             return;
58982         };
58983         if(e.shiftKey && this.last !== false){
58984             var last = this.last;
58985             this.selectRange(last, rowIndex, e.ctrlKey);
58986             this.last = last; // reset the last
58987             view.focusRow(rowIndex);
58988         }else{
58989             var isSelected = this.isSelected(rowIndex);
58990             if(e.button !== 0 && isSelected){
58991                 view.focusRow(rowIndex);
58992             }else if(e.ctrlKey && isSelected){
58993                 this.deselectRow(rowIndex);
58994             }else if(!isSelected){
58995                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
58996                 view.focusRow(rowIndex);
58997             }
58998         }
58999         this.fireEvent("afterselectionchange", this);
59000     },
59001     // private
59002     handleDragableRowClick :  function(grid, rowIndex, e) 
59003     {
59004         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59005             this.selectRow(rowIndex, false);
59006             grid.view.focusRow(rowIndex);
59007              this.fireEvent("afterselectionchange", this);
59008         }
59009     },
59010     
59011     /**
59012      * Selects multiple rows.
59013      * @param {Array} rows Array of the indexes of the row to select
59014      * @param {Boolean} keepExisting (optional) True to keep existing selections
59015      */
59016     selectRows : function(rows, keepExisting){
59017         if(!keepExisting){
59018             this.clearSelections();
59019         }
59020         for(var i = 0, len = rows.length; i < len; i++){
59021             this.selectRow(rows[i], true);
59022         }
59023     },
59024
59025     /**
59026      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59027      * @param {Number} startRow The index of the first row in the range
59028      * @param {Number} endRow The index of the last row in the range
59029      * @param {Boolean} keepExisting (optional) True to retain existing selections
59030      */
59031     selectRange : function(startRow, endRow, keepExisting){
59032         if(this.locked) {
59033             return;
59034         }
59035         if(!keepExisting){
59036             this.clearSelections();
59037         }
59038         if(startRow <= endRow){
59039             for(var i = startRow; i <= endRow; i++){
59040                 this.selectRow(i, true);
59041             }
59042         }else{
59043             for(var i = startRow; i >= endRow; i--){
59044                 this.selectRow(i, true);
59045             }
59046         }
59047     },
59048
59049     /**
59050      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59051      * @param {Number} startRow The index of the first row in the range
59052      * @param {Number} endRow The index of the last row in the range
59053      */
59054     deselectRange : function(startRow, endRow, preventViewNotify){
59055         if(this.locked) {
59056             return;
59057         }
59058         for(var i = startRow; i <= endRow; i++){
59059             this.deselectRow(i, preventViewNotify);
59060         }
59061     },
59062
59063     /**
59064      * Selects a row.
59065      * @param {Number} row The index of the row to select
59066      * @param {Boolean} keepExisting (optional) True to keep existing selections
59067      */
59068     selectRow : function(index, keepExisting, preventViewNotify){
59069         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
59070             return;
59071         }
59072         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59073             if(!keepExisting || this.singleSelect){
59074                 this.clearSelections();
59075             }
59076             var r = this.grid.dataSource.getAt(index);
59077             this.selections.add(r);
59078             this.last = this.lastActive = index;
59079             if(!preventViewNotify){
59080                 this.grid.getView().onRowSelect(index);
59081             }
59082             this.fireEvent("rowselect", this, index, r);
59083             this.fireEvent("selectionchange", this);
59084         }
59085     },
59086
59087     /**
59088      * Deselects a row.
59089      * @param {Number} row The index of the row to deselect
59090      */
59091     deselectRow : function(index, preventViewNotify){
59092         if(this.locked) {
59093             return;
59094         }
59095         if(this.last == index){
59096             this.last = false;
59097         }
59098         if(this.lastActive == index){
59099             this.lastActive = false;
59100         }
59101         var r = this.grid.dataSource.getAt(index);
59102         this.selections.remove(r);
59103         if(!preventViewNotify){
59104             this.grid.getView().onRowDeselect(index);
59105         }
59106         this.fireEvent("rowdeselect", this, index);
59107         this.fireEvent("selectionchange", this);
59108     },
59109
59110     // private
59111     restoreLast : function(){
59112         if(this._last){
59113             this.last = this._last;
59114         }
59115     },
59116
59117     // private
59118     acceptsNav : function(row, col, cm){
59119         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59120     },
59121
59122     // private
59123     onEditorKey : function(field, e){
59124         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59125         if(k == e.TAB){
59126             e.stopEvent();
59127             ed.completeEdit();
59128             if(e.shiftKey){
59129                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59130             }else{
59131                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59132             }
59133         }else if(k == e.ENTER && !e.ctrlKey){
59134             e.stopEvent();
59135             ed.completeEdit();
59136             if(e.shiftKey){
59137                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59138             }else{
59139                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59140             }
59141         }else if(k == e.ESC){
59142             ed.cancelEdit();
59143         }
59144         if(newCell){
59145             g.startEditing(newCell[0], newCell[1]);
59146         }
59147     }
59148 });/*
59149  * Based on:
59150  * Ext JS Library 1.1.1
59151  * Copyright(c) 2006-2007, Ext JS, LLC.
59152  *
59153  * Originally Released Under LGPL - original licence link has changed is not relivant.
59154  *
59155  * Fork - LGPL
59156  * <script type="text/javascript">
59157  */
59158 /**
59159  * @class Roo.grid.CellSelectionModel
59160  * @extends Roo.grid.AbstractSelectionModel
59161  * This class provides the basic implementation for cell selection in a grid.
59162  * @constructor
59163  * @param {Object} config The object containing the configuration of this model.
59164  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59165  */
59166 Roo.grid.CellSelectionModel = function(config){
59167     Roo.apply(this, config);
59168
59169     this.selection = null;
59170
59171     this.addEvents({
59172         /**
59173              * @event beforerowselect
59174              * Fires before a cell is selected.
59175              * @param {SelectionModel} this
59176              * @param {Number} rowIndex The selected row index
59177              * @param {Number} colIndex The selected cell index
59178              */
59179             "beforecellselect" : true,
59180         /**
59181              * @event cellselect
59182              * Fires when a cell is selected.
59183              * @param {SelectionModel} this
59184              * @param {Number} rowIndex The selected row index
59185              * @param {Number} colIndex The selected cell index
59186              */
59187             "cellselect" : true,
59188         /**
59189              * @event selectionchange
59190              * Fires when the active selection changes.
59191              * @param {SelectionModel} this
59192              * @param {Object} selection null for no selection or an object (o) with two properties
59193                 <ul>
59194                 <li>o.record: the record object for the row the selection is in</li>
59195                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59196                 </ul>
59197              */
59198             "selectionchange" : true,
59199         /**
59200              * @event tabend
59201              * Fires when the tab (or enter) was pressed on the last editable cell
59202              * You can use this to trigger add new row.
59203              * @param {SelectionModel} this
59204              */
59205             "tabend" : true,
59206          /**
59207              * @event beforeeditnext
59208              * Fires before the next editable sell is made active
59209              * You can use this to skip to another cell or fire the tabend
59210              *    if you set cell to false
59211              * @param {Object} eventdata object : { cell : [ row, col ] } 
59212              */
59213             "beforeeditnext" : true
59214     });
59215     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59216 };
59217
59218 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59219     
59220     enter_is_tab: false,
59221
59222     /** @ignore */
59223     initEvents : function(){
59224         this.grid.on("mousedown", this.handleMouseDown, this);
59225         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59226         var view = this.grid.view;
59227         view.on("refresh", this.onViewChange, this);
59228         view.on("rowupdated", this.onRowUpdated, this);
59229         view.on("beforerowremoved", this.clearSelections, this);
59230         view.on("beforerowsinserted", this.clearSelections, this);
59231         if(this.grid.isEditor){
59232             this.grid.on("beforeedit", this.beforeEdit,  this);
59233         }
59234     },
59235
59236         //private
59237     beforeEdit : function(e){
59238         this.select(e.row, e.column, false, true, e.record);
59239     },
59240
59241         //private
59242     onRowUpdated : function(v, index, r){
59243         if(this.selection && this.selection.record == r){
59244             v.onCellSelect(index, this.selection.cell[1]);
59245         }
59246     },
59247
59248         //private
59249     onViewChange : function(){
59250         this.clearSelections(true);
59251     },
59252
59253         /**
59254          * Returns the currently selected cell,.
59255          * @return {Array} The selected cell (row, column) or null if none selected.
59256          */
59257     getSelectedCell : function(){
59258         return this.selection ? this.selection.cell : null;
59259     },
59260
59261     /**
59262      * Clears all selections.
59263      * @param {Boolean} true to prevent the gridview from being notified about the change.
59264      */
59265     clearSelections : function(preventNotify){
59266         var s = this.selection;
59267         if(s){
59268             if(preventNotify !== true){
59269                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59270             }
59271             this.selection = null;
59272             this.fireEvent("selectionchange", this, null);
59273         }
59274     },
59275
59276     /**
59277      * Returns true if there is a selection.
59278      * @return {Boolean}
59279      */
59280     hasSelection : function(){
59281         return this.selection ? true : false;
59282     },
59283
59284     /** @ignore */
59285     handleMouseDown : function(e, t){
59286         var v = this.grid.getView();
59287         if(this.isLocked()){
59288             return;
59289         };
59290         var row = v.findRowIndex(t);
59291         var cell = v.findCellIndex(t);
59292         if(row !== false && cell !== false){
59293             this.select(row, cell);
59294         }
59295     },
59296
59297     /**
59298      * Selects a cell.
59299      * @param {Number} rowIndex
59300      * @param {Number} collIndex
59301      */
59302     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59303         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59304             this.clearSelections();
59305             r = r || this.grid.dataSource.getAt(rowIndex);
59306             this.selection = {
59307                 record : r,
59308                 cell : [rowIndex, colIndex]
59309             };
59310             if(!preventViewNotify){
59311                 var v = this.grid.getView();
59312                 v.onCellSelect(rowIndex, colIndex);
59313                 if(preventFocus !== true){
59314                     v.focusCell(rowIndex, colIndex);
59315                 }
59316             }
59317             this.fireEvent("cellselect", this, rowIndex, colIndex);
59318             this.fireEvent("selectionchange", this, this.selection);
59319         }
59320     },
59321
59322         //private
59323     isSelectable : function(rowIndex, colIndex, cm){
59324         return !cm.isHidden(colIndex);
59325     },
59326
59327     /** @ignore */
59328     handleKeyDown : function(e){
59329         //Roo.log('Cell Sel Model handleKeyDown');
59330         if(!e.isNavKeyPress()){
59331             return;
59332         }
59333         var g = this.grid, s = this.selection;
59334         if(!s){
59335             e.stopEvent();
59336             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59337             if(cell){
59338                 this.select(cell[0], cell[1]);
59339             }
59340             return;
59341         }
59342         var sm = this;
59343         var walk = function(row, col, step){
59344             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59345         };
59346         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59347         var newCell;
59348
59349       
59350
59351         switch(k){
59352             case e.TAB:
59353                 // handled by onEditorKey
59354                 if (g.isEditor && g.editing) {
59355                     return;
59356                 }
59357                 if(e.shiftKey) {
59358                     newCell = walk(r, c-1, -1);
59359                 } else {
59360                     newCell = walk(r, c+1, 1);
59361                 }
59362                 break;
59363             
59364             case e.DOWN:
59365                newCell = walk(r+1, c, 1);
59366                 break;
59367             
59368             case e.UP:
59369                 newCell = walk(r-1, c, -1);
59370                 break;
59371             
59372             case e.RIGHT:
59373                 newCell = walk(r, c+1, 1);
59374                 break;
59375             
59376             case e.LEFT:
59377                 newCell = walk(r, c-1, -1);
59378                 break;
59379             
59380             case e.ENTER:
59381                 
59382                 if(g.isEditor && !g.editing){
59383                    g.startEditing(r, c);
59384                    e.stopEvent();
59385                    return;
59386                 }
59387                 
59388                 
59389              break;
59390         };
59391         if(newCell){
59392             this.select(newCell[0], newCell[1]);
59393             e.stopEvent();
59394             
59395         }
59396     },
59397
59398     acceptsNav : function(row, col, cm){
59399         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59400     },
59401     /**
59402      * Selects a cell.
59403      * @param {Number} field (not used) - as it's normally used as a listener
59404      * @param {Number} e - event - fake it by using
59405      *
59406      * var e = Roo.EventObjectImpl.prototype;
59407      * e.keyCode = e.TAB
59408      *
59409      * 
59410      */
59411     onEditorKey : function(field, e){
59412         
59413         var k = e.getKey(),
59414             newCell,
59415             g = this.grid,
59416             ed = g.activeEditor,
59417             forward = false;
59418         ///Roo.log('onEditorKey' + k);
59419         
59420         
59421         if (this.enter_is_tab && k == e.ENTER) {
59422             k = e.TAB;
59423         }
59424         
59425         if(k == e.TAB){
59426             if(e.shiftKey){
59427                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59428             }else{
59429                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59430                 forward = true;
59431             }
59432             
59433             e.stopEvent();
59434             
59435         } else if(k == e.ENTER &&  !e.ctrlKey){
59436             ed.completeEdit();
59437             e.stopEvent();
59438             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59439         
59440                 } else if(k == e.ESC){
59441             ed.cancelEdit();
59442         }
59443                 
59444         if (newCell) {
59445             var ecall = { cell : newCell, forward : forward };
59446             this.fireEvent('beforeeditnext', ecall );
59447             newCell = ecall.cell;
59448                         forward = ecall.forward;
59449         }
59450                 
59451         if(newCell){
59452             //Roo.log('next cell after edit');
59453             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59454         } else if (forward) {
59455             // tabbed past last
59456             this.fireEvent.defer(100, this, ['tabend',this]);
59457         }
59458     }
59459 });/*
59460  * Based on:
59461  * Ext JS Library 1.1.1
59462  * Copyright(c) 2006-2007, Ext JS, LLC.
59463  *
59464  * Originally Released Under LGPL - original licence link has changed is not relivant.
59465  *
59466  * Fork - LGPL
59467  * <script type="text/javascript">
59468  */
59469  
59470 /**
59471  * @class Roo.grid.EditorGrid
59472  * @extends Roo.grid.Grid
59473  * Class for creating and editable grid.
59474  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59475  * The container MUST have some type of size defined for the grid to fill. The container will be 
59476  * automatically set to position relative if it isn't already.
59477  * @param {Object} dataSource The data model to bind to
59478  * @param {Object} colModel The column model with info about this grid's columns
59479  */
59480 Roo.grid.EditorGrid = function(container, config){
59481     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59482     this.getGridEl().addClass("xedit-grid");
59483
59484     if(!this.selModel){
59485         this.selModel = new Roo.grid.CellSelectionModel();
59486     }
59487
59488     this.activeEditor = null;
59489
59490         this.addEvents({
59491             /**
59492              * @event beforeedit
59493              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59494              * <ul style="padding:5px;padding-left:16px;">
59495              * <li>grid - This grid</li>
59496              * <li>record - The record being edited</li>
59497              * <li>field - The field name being edited</li>
59498              * <li>value - The value for the field being edited.</li>
59499              * <li>row - The grid row index</li>
59500              * <li>column - The grid column index</li>
59501              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59502              * </ul>
59503              * @param {Object} e An edit event (see above for description)
59504              */
59505             "beforeedit" : true,
59506             /**
59507              * @event afteredit
59508              * Fires after a cell is edited. <br />
59509              * <ul style="padding:5px;padding-left:16px;">
59510              * <li>grid - This grid</li>
59511              * <li>record - The record being edited</li>
59512              * <li>field - The field name being edited</li>
59513              * <li>value - The value being set</li>
59514              * <li>originalValue - The original value for the field, before the edit.</li>
59515              * <li>row - The grid row index</li>
59516              * <li>column - The grid column index</li>
59517              * </ul>
59518              * @param {Object} e An edit event (see above for description)
59519              */
59520             "afteredit" : true,
59521             /**
59522              * @event validateedit
59523              * Fires after a cell is edited, but before the value is set in the record. 
59524          * You can use this to modify the value being set in the field, Return false
59525              * to cancel the change. The edit event object has the following properties <br />
59526              * <ul style="padding:5px;padding-left:16px;">
59527          * <li>editor - This editor</li>
59528              * <li>grid - This grid</li>
59529              * <li>record - The record being edited</li>
59530              * <li>field - The field name being edited</li>
59531              * <li>value - The value being set</li>
59532              * <li>originalValue - The original value for the field, before the edit.</li>
59533              * <li>row - The grid row index</li>
59534              * <li>column - The grid column index</li>
59535              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59536              * </ul>
59537              * @param {Object} e An edit event (see above for description)
59538              */
59539             "validateedit" : true
59540         });
59541     this.on("bodyscroll", this.stopEditing,  this);
59542     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59543 };
59544
59545 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59546     /**
59547      * @cfg {Number} clicksToEdit
59548      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59549      */
59550     clicksToEdit: 2,
59551
59552     // private
59553     isEditor : true,
59554     // private
59555     trackMouseOver: false, // causes very odd FF errors
59556
59557     onCellDblClick : function(g, row, col){
59558         this.startEditing(row, col);
59559     },
59560
59561     onEditComplete : function(ed, value, startValue){
59562         this.editing = false;
59563         this.activeEditor = null;
59564         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59565         var r = ed.record;
59566         var field = this.colModel.getDataIndex(ed.col);
59567         var e = {
59568             grid: this,
59569             record: r,
59570             field: field,
59571             originalValue: startValue,
59572             value: value,
59573             row: ed.row,
59574             column: ed.col,
59575             cancel:false,
59576             editor: ed
59577         };
59578         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59579         cell.show();
59580           
59581         if(String(value) !== String(startValue)){
59582             
59583             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59584                 r.set(field, e.value);
59585                 // if we are dealing with a combo box..
59586                 // then we also set the 'name' colum to be the displayField
59587                 if (ed.field.displayField && ed.field.name) {
59588                     r.set(ed.field.name, ed.field.el.dom.value);
59589                 }
59590                 
59591                 delete e.cancel; //?? why!!!
59592                 this.fireEvent("afteredit", e);
59593             }
59594         } else {
59595             this.fireEvent("afteredit", e); // always fire it!
59596         }
59597         this.view.focusCell(ed.row, ed.col);
59598     },
59599
59600     /**
59601      * Starts editing the specified for the specified row/column
59602      * @param {Number} rowIndex
59603      * @param {Number} colIndex
59604      */
59605     startEditing : function(row, col){
59606         this.stopEditing();
59607         if(this.colModel.isCellEditable(col, row)){
59608             this.view.ensureVisible(row, col, true);
59609           
59610             var r = this.dataSource.getAt(row);
59611             var field = this.colModel.getDataIndex(col);
59612             var cell = Roo.get(this.view.getCell(row,col));
59613             var e = {
59614                 grid: this,
59615                 record: r,
59616                 field: field,
59617                 value: r.data[field],
59618                 row: row,
59619                 column: col,
59620                 cancel:false 
59621             };
59622             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59623                 this.editing = true;
59624                 var ed = this.colModel.getCellEditor(col, row);
59625                 
59626                 if (!ed) {
59627                     return;
59628                 }
59629                 if(!ed.rendered){
59630                     ed.render(ed.parentEl || document.body);
59631                 }
59632                 ed.field.reset();
59633                
59634                 cell.hide();
59635                 
59636                 (function(){ // complex but required for focus issues in safari, ie and opera
59637                     ed.row = row;
59638                     ed.col = col;
59639                     ed.record = r;
59640                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59641                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59642                     this.activeEditor = ed;
59643                     var v = r.data[field];
59644                     ed.startEdit(this.view.getCell(row, col), v);
59645                     // combo's with 'displayField and name set
59646                     if (ed.field.displayField && ed.field.name) {
59647                         ed.field.el.dom.value = r.data[ed.field.name];
59648                     }
59649                     
59650                     
59651                 }).defer(50, this);
59652             }
59653         }
59654     },
59655         
59656     /**
59657      * Stops any active editing
59658      */
59659     stopEditing : function(){
59660         if(this.activeEditor){
59661             this.activeEditor.completeEdit();
59662         }
59663         this.activeEditor = null;
59664     },
59665         
59666          /**
59667      * Called to get grid's drag proxy text, by default returns this.ddText.
59668      * @return {String}
59669      */
59670     getDragDropText : function(){
59671         var count = this.selModel.getSelectedCell() ? 1 : 0;
59672         return String.format(this.ddText, count, count == 1 ? '' : 's');
59673     }
59674         
59675 });/*
59676  * Based on:
59677  * Ext JS Library 1.1.1
59678  * Copyright(c) 2006-2007, Ext JS, LLC.
59679  *
59680  * Originally Released Under LGPL - original licence link has changed is not relivant.
59681  *
59682  * Fork - LGPL
59683  * <script type="text/javascript">
59684  */
59685
59686 // private - not really -- you end up using it !
59687 // This is a support class used internally by the Grid components
59688
59689 /**
59690  * @class Roo.grid.GridEditor
59691  * @extends Roo.Editor
59692  * Class for creating and editable grid elements.
59693  * @param {Object} config any settings (must include field)
59694  */
59695 Roo.grid.GridEditor = function(field, config){
59696     if (!config && field.field) {
59697         config = field;
59698         field = Roo.factory(config.field, Roo.form);
59699     }
59700     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59701     field.monitorTab = false;
59702 };
59703
59704 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59705     
59706     /**
59707      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59708      */
59709     
59710     alignment: "tl-tl",
59711     autoSize: "width",
59712     hideEl : false,
59713     cls: "x-small-editor x-grid-editor",
59714     shim:false,
59715     shadow:"frame"
59716 });/*
59717  * Based on:
59718  * Ext JS Library 1.1.1
59719  * Copyright(c) 2006-2007, Ext JS, LLC.
59720  *
59721  * Originally Released Under LGPL - original licence link has changed is not relivant.
59722  *
59723  * Fork - LGPL
59724  * <script type="text/javascript">
59725  */
59726   
59727
59728   
59729 Roo.grid.PropertyRecord = Roo.data.Record.create([
59730     {name:'name',type:'string'},  'value'
59731 ]);
59732
59733
59734 Roo.grid.PropertyStore = function(grid, source){
59735     this.grid = grid;
59736     this.store = new Roo.data.Store({
59737         recordType : Roo.grid.PropertyRecord
59738     });
59739     this.store.on('update', this.onUpdate,  this);
59740     if(source){
59741         this.setSource(source);
59742     }
59743     Roo.grid.PropertyStore.superclass.constructor.call(this);
59744 };
59745
59746
59747
59748 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59749     setSource : function(o){
59750         this.source = o;
59751         this.store.removeAll();
59752         var data = [];
59753         for(var k in o){
59754             if(this.isEditableValue(o[k])){
59755                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59756             }
59757         }
59758         this.store.loadRecords({records: data}, {}, true);
59759     },
59760
59761     onUpdate : function(ds, record, type){
59762         if(type == Roo.data.Record.EDIT){
59763             var v = record.data['value'];
59764             var oldValue = record.modified['value'];
59765             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59766                 this.source[record.id] = v;
59767                 record.commit();
59768                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59769             }else{
59770                 record.reject();
59771             }
59772         }
59773     },
59774
59775     getProperty : function(row){
59776        return this.store.getAt(row);
59777     },
59778
59779     isEditableValue: function(val){
59780         if(val && val instanceof Date){
59781             return true;
59782         }else if(typeof val == 'object' || typeof val == 'function'){
59783             return false;
59784         }
59785         return true;
59786     },
59787
59788     setValue : function(prop, value){
59789         this.source[prop] = value;
59790         this.store.getById(prop).set('value', value);
59791     },
59792
59793     getSource : function(){
59794         return this.source;
59795     }
59796 });
59797
59798 Roo.grid.PropertyColumnModel = function(grid, store){
59799     this.grid = grid;
59800     var g = Roo.grid;
59801     g.PropertyColumnModel.superclass.constructor.call(this, [
59802         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59803         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59804     ]);
59805     this.store = store;
59806     this.bselect = Roo.DomHelper.append(document.body, {
59807         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59808             {tag: 'option', value: 'true', html: 'true'},
59809             {tag: 'option', value: 'false', html: 'false'}
59810         ]
59811     });
59812     Roo.id(this.bselect);
59813     var f = Roo.form;
59814     this.editors = {
59815         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59816         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59817         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59818         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59819         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59820     };
59821     this.renderCellDelegate = this.renderCell.createDelegate(this);
59822     this.renderPropDelegate = this.renderProp.createDelegate(this);
59823 };
59824
59825 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59826     
59827     
59828     nameText : 'Name',
59829     valueText : 'Value',
59830     
59831     dateFormat : 'm/j/Y',
59832     
59833     
59834     renderDate : function(dateVal){
59835         return dateVal.dateFormat(this.dateFormat);
59836     },
59837
59838     renderBool : function(bVal){
59839         return bVal ? 'true' : 'false';
59840     },
59841
59842     isCellEditable : function(colIndex, rowIndex){
59843         return colIndex == 1;
59844     },
59845
59846     getRenderer : function(col){
59847         return col == 1 ?
59848             this.renderCellDelegate : this.renderPropDelegate;
59849     },
59850
59851     renderProp : function(v){
59852         return this.getPropertyName(v);
59853     },
59854
59855     renderCell : function(val){
59856         var rv = val;
59857         if(val instanceof Date){
59858             rv = this.renderDate(val);
59859         }else if(typeof val == 'boolean'){
59860             rv = this.renderBool(val);
59861         }
59862         return Roo.util.Format.htmlEncode(rv);
59863     },
59864
59865     getPropertyName : function(name){
59866         var pn = this.grid.propertyNames;
59867         return pn && pn[name] ? pn[name] : name;
59868     },
59869
59870     getCellEditor : function(colIndex, rowIndex){
59871         var p = this.store.getProperty(rowIndex);
59872         var n = p.data['name'], val = p.data['value'];
59873         
59874         if(typeof(this.grid.customEditors[n]) == 'string'){
59875             return this.editors[this.grid.customEditors[n]];
59876         }
59877         if(typeof(this.grid.customEditors[n]) != 'undefined'){
59878             return this.grid.customEditors[n];
59879         }
59880         if(val instanceof Date){
59881             return this.editors['date'];
59882         }else if(typeof val == 'number'){
59883             return this.editors['number'];
59884         }else if(typeof val == 'boolean'){
59885             return this.editors['boolean'];
59886         }else{
59887             return this.editors['string'];
59888         }
59889     }
59890 });
59891
59892 /**
59893  * @class Roo.grid.PropertyGrid
59894  * @extends Roo.grid.EditorGrid
59895  * This class represents the  interface of a component based property grid control.
59896  * <br><br>Usage:<pre><code>
59897  var grid = new Roo.grid.PropertyGrid("my-container-id", {
59898       
59899  });
59900  // set any options
59901  grid.render();
59902  * </code></pre>
59903   
59904  * @constructor
59905  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
59906  * The container MUST have some type of size defined for the grid to fill. The container will be
59907  * automatically set to position relative if it isn't already.
59908  * @param {Object} config A config object that sets properties on this grid.
59909  */
59910 Roo.grid.PropertyGrid = function(container, config){
59911     config = config || {};
59912     var store = new Roo.grid.PropertyStore(this);
59913     this.store = store;
59914     var cm = new Roo.grid.PropertyColumnModel(this, store);
59915     store.store.sort('name', 'ASC');
59916     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
59917         ds: store.store,
59918         cm: cm,
59919         enableColLock:false,
59920         enableColumnMove:false,
59921         stripeRows:false,
59922         trackMouseOver: false,
59923         clicksToEdit:1
59924     }, config));
59925     this.getGridEl().addClass('x-props-grid');
59926     this.lastEditRow = null;
59927     this.on('columnresize', this.onColumnResize, this);
59928     this.addEvents({
59929          /**
59930              * @event beforepropertychange
59931              * Fires before a property changes (return false to stop?)
59932              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
59933              * @param {String} id Record Id
59934              * @param {String} newval New Value
59935          * @param {String} oldval Old Value
59936              */
59937         "beforepropertychange": true,
59938         /**
59939              * @event propertychange
59940              * Fires after a property changes
59941              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
59942              * @param {String} id Record Id
59943              * @param {String} newval New Value
59944          * @param {String} oldval Old Value
59945              */
59946         "propertychange": true
59947     });
59948     this.customEditors = this.customEditors || {};
59949 };
59950 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
59951     
59952      /**
59953      * @cfg {Object} customEditors map of colnames=> custom editors.
59954      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
59955      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
59956      * false disables editing of the field.
59957          */
59958     
59959       /**
59960      * @cfg {Object} propertyNames map of property Names to their displayed value
59961          */
59962     
59963     render : function(){
59964         Roo.grid.PropertyGrid.superclass.render.call(this);
59965         this.autoSize.defer(100, this);
59966     },
59967
59968     autoSize : function(){
59969         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
59970         if(this.view){
59971             this.view.fitColumns();
59972         }
59973     },
59974
59975     onColumnResize : function(){
59976         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
59977         this.autoSize();
59978     },
59979     /**
59980      * Sets the data for the Grid
59981      * accepts a Key => Value object of all the elements avaiable.
59982      * @param {Object} data  to appear in grid.
59983      */
59984     setSource : function(source){
59985         this.store.setSource(source);
59986         //this.autoSize();
59987     },
59988     /**
59989      * Gets all the data from the grid.
59990      * @return {Object} data  data stored in grid
59991      */
59992     getSource : function(){
59993         return this.store.getSource();
59994     }
59995 });/*
59996   
59997  * Licence LGPL
59998  
59999  */
60000  
60001 /**
60002  * @class Roo.grid.Calendar
60003  * @extends Roo.util.Grid
60004  * This class extends the Grid to provide a calendar widget
60005  * <br><br>Usage:<pre><code>
60006  var grid = new Roo.grid.Calendar("my-container-id", {
60007      ds: myDataStore,
60008      cm: myColModel,
60009      selModel: mySelectionModel,
60010      autoSizeColumns: true,
60011      monitorWindowResize: false,
60012      trackMouseOver: true
60013      eventstore : real data store..
60014  });
60015  // set any options
60016  grid.render();
60017   
60018   * @constructor
60019  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60020  * The container MUST have some type of size defined for the grid to fill. The container will be
60021  * automatically set to position relative if it isn't already.
60022  * @param {Object} config A config object that sets properties on this grid.
60023  */
60024 Roo.grid.Calendar = function(container, config){
60025         // initialize the container
60026         this.container = Roo.get(container);
60027         this.container.update("");
60028         this.container.setStyle("overflow", "hidden");
60029     this.container.addClass('x-grid-container');
60030
60031     this.id = this.container.id;
60032
60033     Roo.apply(this, config);
60034     // check and correct shorthanded configs
60035     
60036     var rows = [];
60037     var d =1;
60038     for (var r = 0;r < 6;r++) {
60039         
60040         rows[r]=[];
60041         for (var c =0;c < 7;c++) {
60042             rows[r][c]= '';
60043         }
60044     }
60045     if (this.eventStore) {
60046         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60047         this.eventStore.on('load',this.onLoad, this);
60048         this.eventStore.on('beforeload',this.clearEvents, this);
60049          
60050     }
60051     
60052     this.dataSource = new Roo.data.Store({
60053             proxy: new Roo.data.MemoryProxy(rows),
60054             reader: new Roo.data.ArrayReader({}, [
60055                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60056     });
60057
60058     this.dataSource.load();
60059     this.ds = this.dataSource;
60060     this.ds.xmodule = this.xmodule || false;
60061     
60062     
60063     var cellRender = function(v,x,r)
60064     {
60065         return String.format(
60066             '<div class="fc-day  fc-widget-content"><div>' +
60067                 '<div class="fc-event-container"></div>' +
60068                 '<div class="fc-day-number">{0}</div>'+
60069                 
60070                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60071             '</div></div>', v);
60072     
60073     }
60074     
60075     
60076     this.colModel = new Roo.grid.ColumnModel( [
60077         {
60078             xtype: 'ColumnModel',
60079             xns: Roo.grid,
60080             dataIndex : 'weekday0',
60081             header : 'Sunday',
60082             renderer : cellRender
60083         },
60084         {
60085             xtype: 'ColumnModel',
60086             xns: Roo.grid,
60087             dataIndex : 'weekday1',
60088             header : 'Monday',
60089             renderer : cellRender
60090         },
60091         {
60092             xtype: 'ColumnModel',
60093             xns: Roo.grid,
60094             dataIndex : 'weekday2',
60095             header : 'Tuesday',
60096             renderer : cellRender
60097         },
60098         {
60099             xtype: 'ColumnModel',
60100             xns: Roo.grid,
60101             dataIndex : 'weekday3',
60102             header : 'Wednesday',
60103             renderer : cellRender
60104         },
60105         {
60106             xtype: 'ColumnModel',
60107             xns: Roo.grid,
60108             dataIndex : 'weekday4',
60109             header : 'Thursday',
60110             renderer : cellRender
60111         },
60112         {
60113             xtype: 'ColumnModel',
60114             xns: Roo.grid,
60115             dataIndex : 'weekday5',
60116             header : 'Friday',
60117             renderer : cellRender
60118         },
60119         {
60120             xtype: 'ColumnModel',
60121             xns: Roo.grid,
60122             dataIndex : 'weekday6',
60123             header : 'Saturday',
60124             renderer : cellRender
60125         }
60126     ]);
60127     this.cm = this.colModel;
60128     this.cm.xmodule = this.xmodule || false;
60129  
60130         
60131           
60132     //this.selModel = new Roo.grid.CellSelectionModel();
60133     //this.sm = this.selModel;
60134     //this.selModel.init(this);
60135     
60136     
60137     if(this.width){
60138         this.container.setWidth(this.width);
60139     }
60140
60141     if(this.height){
60142         this.container.setHeight(this.height);
60143     }
60144     /** @private */
60145         this.addEvents({
60146         // raw events
60147         /**
60148          * @event click
60149          * The raw click event for the entire grid.
60150          * @param {Roo.EventObject} e
60151          */
60152         "click" : true,
60153         /**
60154          * @event dblclick
60155          * The raw dblclick event for the entire grid.
60156          * @param {Roo.EventObject} e
60157          */
60158         "dblclick" : true,
60159         /**
60160          * @event contextmenu
60161          * The raw contextmenu event for the entire grid.
60162          * @param {Roo.EventObject} e
60163          */
60164         "contextmenu" : true,
60165         /**
60166          * @event mousedown
60167          * The raw mousedown event for the entire grid.
60168          * @param {Roo.EventObject} e
60169          */
60170         "mousedown" : true,
60171         /**
60172          * @event mouseup
60173          * The raw mouseup event for the entire grid.
60174          * @param {Roo.EventObject} e
60175          */
60176         "mouseup" : true,
60177         /**
60178          * @event mouseover
60179          * The raw mouseover event for the entire grid.
60180          * @param {Roo.EventObject} e
60181          */
60182         "mouseover" : true,
60183         /**
60184          * @event mouseout
60185          * The raw mouseout event for the entire grid.
60186          * @param {Roo.EventObject} e
60187          */
60188         "mouseout" : true,
60189         /**
60190          * @event keypress
60191          * The raw keypress event for the entire grid.
60192          * @param {Roo.EventObject} e
60193          */
60194         "keypress" : true,
60195         /**
60196          * @event keydown
60197          * The raw keydown event for the entire grid.
60198          * @param {Roo.EventObject} e
60199          */
60200         "keydown" : true,
60201
60202         // custom events
60203
60204         /**
60205          * @event cellclick
60206          * Fires when a cell is clicked
60207          * @param {Grid} this
60208          * @param {Number} rowIndex
60209          * @param {Number} columnIndex
60210          * @param {Roo.EventObject} e
60211          */
60212         "cellclick" : true,
60213         /**
60214          * @event celldblclick
60215          * Fires when a cell is double clicked
60216          * @param {Grid} this
60217          * @param {Number} rowIndex
60218          * @param {Number} columnIndex
60219          * @param {Roo.EventObject} e
60220          */
60221         "celldblclick" : true,
60222         /**
60223          * @event rowclick
60224          * Fires when a row is clicked
60225          * @param {Grid} this
60226          * @param {Number} rowIndex
60227          * @param {Roo.EventObject} e
60228          */
60229         "rowclick" : true,
60230         /**
60231          * @event rowdblclick
60232          * Fires when a row is double clicked
60233          * @param {Grid} this
60234          * @param {Number} rowIndex
60235          * @param {Roo.EventObject} e
60236          */
60237         "rowdblclick" : true,
60238         /**
60239          * @event headerclick
60240          * Fires when a header is clicked
60241          * @param {Grid} this
60242          * @param {Number} columnIndex
60243          * @param {Roo.EventObject} e
60244          */
60245         "headerclick" : true,
60246         /**
60247          * @event headerdblclick
60248          * Fires when a header cell is double clicked
60249          * @param {Grid} this
60250          * @param {Number} columnIndex
60251          * @param {Roo.EventObject} e
60252          */
60253         "headerdblclick" : true,
60254         /**
60255          * @event rowcontextmenu
60256          * Fires when a row is right clicked
60257          * @param {Grid} this
60258          * @param {Number} rowIndex
60259          * @param {Roo.EventObject} e
60260          */
60261         "rowcontextmenu" : true,
60262         /**
60263          * @event cellcontextmenu
60264          * Fires when a cell is right clicked
60265          * @param {Grid} this
60266          * @param {Number} rowIndex
60267          * @param {Number} cellIndex
60268          * @param {Roo.EventObject} e
60269          */
60270          "cellcontextmenu" : true,
60271         /**
60272          * @event headercontextmenu
60273          * Fires when a header is right clicked
60274          * @param {Grid} this
60275          * @param {Number} columnIndex
60276          * @param {Roo.EventObject} e
60277          */
60278         "headercontextmenu" : true,
60279         /**
60280          * @event bodyscroll
60281          * Fires when the body element is scrolled
60282          * @param {Number} scrollLeft
60283          * @param {Number} scrollTop
60284          */
60285         "bodyscroll" : true,
60286         /**
60287          * @event columnresize
60288          * Fires when the user resizes a column
60289          * @param {Number} columnIndex
60290          * @param {Number} newSize
60291          */
60292         "columnresize" : true,
60293         /**
60294          * @event columnmove
60295          * Fires when the user moves a column
60296          * @param {Number} oldIndex
60297          * @param {Number} newIndex
60298          */
60299         "columnmove" : true,
60300         /**
60301          * @event startdrag
60302          * Fires when row(s) start being dragged
60303          * @param {Grid} this
60304          * @param {Roo.GridDD} dd The drag drop object
60305          * @param {event} e The raw browser event
60306          */
60307         "startdrag" : true,
60308         /**
60309          * @event enddrag
60310          * Fires when a drag operation is complete
60311          * @param {Grid} this
60312          * @param {Roo.GridDD} dd The drag drop object
60313          * @param {event} e The raw browser event
60314          */
60315         "enddrag" : true,
60316         /**
60317          * @event dragdrop
60318          * Fires when dragged row(s) are dropped on a valid DD target
60319          * @param {Grid} this
60320          * @param {Roo.GridDD} dd The drag drop object
60321          * @param {String} targetId The target drag drop object
60322          * @param {event} e The raw browser event
60323          */
60324         "dragdrop" : true,
60325         /**
60326          * @event dragover
60327          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60328          * @param {Grid} this
60329          * @param {Roo.GridDD} dd The drag drop object
60330          * @param {String} targetId The target drag drop object
60331          * @param {event} e The raw browser event
60332          */
60333         "dragover" : true,
60334         /**
60335          * @event dragenter
60336          *  Fires when the dragged row(s) first cross another DD target while being dragged
60337          * @param {Grid} this
60338          * @param {Roo.GridDD} dd The drag drop object
60339          * @param {String} targetId The target drag drop object
60340          * @param {event} e The raw browser event
60341          */
60342         "dragenter" : true,
60343         /**
60344          * @event dragout
60345          * Fires when the dragged row(s) leave another DD target while being dragged
60346          * @param {Grid} this
60347          * @param {Roo.GridDD} dd The drag drop object
60348          * @param {String} targetId The target drag drop object
60349          * @param {event} e The raw browser event
60350          */
60351         "dragout" : true,
60352         /**
60353          * @event rowclass
60354          * Fires when a row is rendered, so you can change add a style to it.
60355          * @param {GridView} gridview   The grid view
60356          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60357          */
60358         'rowclass' : true,
60359
60360         /**
60361          * @event render
60362          * Fires when the grid is rendered
60363          * @param {Grid} grid
60364          */
60365         'render' : true,
60366             /**
60367              * @event select
60368              * Fires when a date is selected
60369              * @param {DatePicker} this
60370              * @param {Date} date The selected date
60371              */
60372         'select': true,
60373         /**
60374              * @event monthchange
60375              * Fires when the displayed month changes 
60376              * @param {DatePicker} this
60377              * @param {Date} date The selected month
60378              */
60379         'monthchange': true,
60380         /**
60381              * @event evententer
60382              * Fires when mouse over an event
60383              * @param {Calendar} this
60384              * @param {event} Event
60385              */
60386         'evententer': true,
60387         /**
60388              * @event eventleave
60389              * Fires when the mouse leaves an
60390              * @param {Calendar} this
60391              * @param {event}
60392              */
60393         'eventleave': true,
60394         /**
60395              * @event eventclick
60396              * Fires when the mouse click an
60397              * @param {Calendar} this
60398              * @param {event}
60399              */
60400         'eventclick': true,
60401         /**
60402              * @event eventrender
60403              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60404              * @param {Calendar} this
60405              * @param {data} data to be modified
60406              */
60407         'eventrender': true
60408         
60409     });
60410
60411     Roo.grid.Grid.superclass.constructor.call(this);
60412     this.on('render', function() {
60413         this.view.el.addClass('x-grid-cal'); 
60414         
60415         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60416
60417     },this);
60418     
60419     if (!Roo.grid.Calendar.style) {
60420         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60421             
60422             
60423             '.x-grid-cal .x-grid-col' :  {
60424                 height: 'auto !important',
60425                 'vertical-align': 'top'
60426             },
60427             '.x-grid-cal  .fc-event-hori' : {
60428                 height: '14px'
60429             }
60430              
60431             
60432         }, Roo.id());
60433     }
60434
60435     
60436     
60437 };
60438 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60439     /**
60440      * @cfg {Store} eventStore The store that loads events.
60441      */
60442     eventStore : 25,
60443
60444      
60445     activeDate : false,
60446     startDay : 0,
60447     autoWidth : true,
60448     monitorWindowResize : false,
60449
60450     
60451     resizeColumns : function() {
60452         var col = (this.view.el.getWidth() / 7) - 3;
60453         // loop through cols, and setWidth
60454         for(var i =0 ; i < 7 ; i++){
60455             this.cm.setColumnWidth(i, col);
60456         }
60457     },
60458      setDate :function(date) {
60459         
60460         Roo.log('setDate?');
60461         
60462         this.resizeColumns();
60463         var vd = this.activeDate;
60464         this.activeDate = date;
60465 //        if(vd && this.el){
60466 //            var t = date.getTime();
60467 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60468 //                Roo.log('using add remove');
60469 //                
60470 //                this.fireEvent('monthchange', this, date);
60471 //                
60472 //                this.cells.removeClass("fc-state-highlight");
60473 //                this.cells.each(function(c){
60474 //                   if(c.dateValue == t){
60475 //                       c.addClass("fc-state-highlight");
60476 //                       setTimeout(function(){
60477 //                            try{c.dom.firstChild.focus();}catch(e){}
60478 //                       }, 50);
60479 //                       return false;
60480 //                   }
60481 //                   return true;
60482 //                });
60483 //                return;
60484 //            }
60485 //        }
60486         
60487         var days = date.getDaysInMonth();
60488         
60489         var firstOfMonth = date.getFirstDateOfMonth();
60490         var startingPos = firstOfMonth.getDay()-this.startDay;
60491         
60492         if(startingPos < this.startDay){
60493             startingPos += 7;
60494         }
60495         
60496         var pm = date.add(Date.MONTH, -1);
60497         var prevStart = pm.getDaysInMonth()-startingPos;
60498 //        
60499         
60500         
60501         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60502         
60503         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60504         //this.cells.addClassOnOver('fc-state-hover');
60505         
60506         var cells = this.cells.elements;
60507         var textEls = this.textNodes;
60508         
60509         //Roo.each(cells, function(cell){
60510         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60511         //});
60512         
60513         days += startingPos;
60514
60515         // convert everything to numbers so it's fast
60516         var day = 86400000;
60517         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60518         //Roo.log(d);
60519         //Roo.log(pm);
60520         //Roo.log(prevStart);
60521         
60522         var today = new Date().clearTime().getTime();
60523         var sel = date.clearTime().getTime();
60524         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60525         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60526         var ddMatch = this.disabledDatesRE;
60527         var ddText = this.disabledDatesText;
60528         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60529         var ddaysText = this.disabledDaysText;
60530         var format = this.format;
60531         
60532         var setCellClass = function(cal, cell){
60533             
60534             //Roo.log('set Cell Class');
60535             cell.title = "";
60536             var t = d.getTime();
60537             
60538             //Roo.log(d);
60539             
60540             
60541             cell.dateValue = t;
60542             if(t == today){
60543                 cell.className += " fc-today";
60544                 cell.className += " fc-state-highlight";
60545                 cell.title = cal.todayText;
60546             }
60547             if(t == sel){
60548                 // disable highlight in other month..
60549                 cell.className += " fc-state-highlight";
60550                 
60551             }
60552             // disabling
60553             if(t < min) {
60554                 //cell.className = " fc-state-disabled";
60555                 cell.title = cal.minText;
60556                 return;
60557             }
60558             if(t > max) {
60559                 //cell.className = " fc-state-disabled";
60560                 cell.title = cal.maxText;
60561                 return;
60562             }
60563             if(ddays){
60564                 if(ddays.indexOf(d.getDay()) != -1){
60565                     // cell.title = ddaysText;
60566                    // cell.className = " fc-state-disabled";
60567                 }
60568             }
60569             if(ddMatch && format){
60570                 var fvalue = d.dateFormat(format);
60571                 if(ddMatch.test(fvalue)){
60572                     cell.title = ddText.replace("%0", fvalue);
60573                    cell.className = " fc-state-disabled";
60574                 }
60575             }
60576             
60577             if (!cell.initialClassName) {
60578                 cell.initialClassName = cell.dom.className;
60579             }
60580             
60581             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60582         };
60583
60584         var i = 0;
60585         
60586         for(; i < startingPos; i++) {
60587             cells[i].dayName =  (++prevStart);
60588             Roo.log(textEls[i]);
60589             d.setDate(d.getDate()+1);
60590             
60591             //cells[i].className = "fc-past fc-other-month";
60592             setCellClass(this, cells[i]);
60593         }
60594         
60595         var intDay = 0;
60596         
60597         for(; i < days; i++){
60598             intDay = i - startingPos + 1;
60599             cells[i].dayName =  (intDay);
60600             d.setDate(d.getDate()+1);
60601             
60602             cells[i].className = ''; // "x-date-active";
60603             setCellClass(this, cells[i]);
60604         }
60605         var extraDays = 0;
60606         
60607         for(; i < 42; i++) {
60608             //textEls[i].innerHTML = (++extraDays);
60609             
60610             d.setDate(d.getDate()+1);
60611             cells[i].dayName = (++extraDays);
60612             cells[i].className = "fc-future fc-other-month";
60613             setCellClass(this, cells[i]);
60614         }
60615         
60616         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60617         
60618         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60619         
60620         // this will cause all the cells to mis
60621         var rows= [];
60622         var i =0;
60623         for (var r = 0;r < 6;r++) {
60624             for (var c =0;c < 7;c++) {
60625                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60626             }    
60627         }
60628         
60629         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60630         for(i=0;i<cells.length;i++) {
60631             
60632             this.cells.elements[i].dayName = cells[i].dayName ;
60633             this.cells.elements[i].className = cells[i].className;
60634             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60635             this.cells.elements[i].title = cells[i].title ;
60636             this.cells.elements[i].dateValue = cells[i].dateValue ;
60637         }
60638         
60639         
60640         
60641         
60642         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60643         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60644         
60645         ////if(totalRows != 6){
60646             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60647            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60648        // }
60649         
60650         this.fireEvent('monthchange', this, date);
60651         
60652         
60653     },
60654  /**
60655      * Returns the grid's SelectionModel.
60656      * @return {SelectionModel}
60657      */
60658     getSelectionModel : function(){
60659         if(!this.selModel){
60660             this.selModel = new Roo.grid.CellSelectionModel();
60661         }
60662         return this.selModel;
60663     },
60664
60665     load: function() {
60666         this.eventStore.load()
60667         
60668         
60669         
60670     },
60671     
60672     findCell : function(dt) {
60673         dt = dt.clearTime().getTime();
60674         var ret = false;
60675         this.cells.each(function(c){
60676             //Roo.log("check " +c.dateValue + '?=' + dt);
60677             if(c.dateValue == dt){
60678                 ret = c;
60679                 return false;
60680             }
60681             return true;
60682         });
60683         
60684         return ret;
60685     },
60686     
60687     findCells : function(rec) {
60688         var s = rec.data.start_dt.clone().clearTime().getTime();
60689        // Roo.log(s);
60690         var e= rec.data.end_dt.clone().clearTime().getTime();
60691        // Roo.log(e);
60692         var ret = [];
60693         this.cells.each(function(c){
60694              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60695             
60696             if(c.dateValue > e){
60697                 return ;
60698             }
60699             if(c.dateValue < s){
60700                 return ;
60701             }
60702             ret.push(c);
60703         });
60704         
60705         return ret;    
60706     },
60707     
60708     findBestRow: function(cells)
60709     {
60710         var ret = 0;
60711         
60712         for (var i =0 ; i < cells.length;i++) {
60713             ret  = Math.max(cells[i].rows || 0,ret);
60714         }
60715         return ret;
60716         
60717     },
60718     
60719     
60720     addItem : function(rec)
60721     {
60722         // look for vertical location slot in
60723         var cells = this.findCells(rec);
60724         
60725         rec.row = this.findBestRow(cells);
60726         
60727         // work out the location.
60728         
60729         var crow = false;
60730         var rows = [];
60731         for(var i =0; i < cells.length; i++) {
60732             if (!crow) {
60733                 crow = {
60734                     start : cells[i],
60735                     end :  cells[i]
60736                 };
60737                 continue;
60738             }
60739             if (crow.start.getY() == cells[i].getY()) {
60740                 // on same row.
60741                 crow.end = cells[i];
60742                 continue;
60743             }
60744             // different row.
60745             rows.push(crow);
60746             crow = {
60747                 start: cells[i],
60748                 end : cells[i]
60749             };
60750             
60751         }
60752         
60753         rows.push(crow);
60754         rec.els = [];
60755         rec.rows = rows;
60756         rec.cells = cells;
60757         for (var i = 0; i < cells.length;i++) {
60758             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60759             
60760         }
60761         
60762         
60763     },
60764     
60765     clearEvents: function() {
60766         
60767         if (!this.eventStore.getCount()) {
60768             return;
60769         }
60770         // reset number of rows in cells.
60771         Roo.each(this.cells.elements, function(c){
60772             c.rows = 0;
60773         });
60774         
60775         this.eventStore.each(function(e) {
60776             this.clearEvent(e);
60777         },this);
60778         
60779     },
60780     
60781     clearEvent : function(ev)
60782     {
60783         if (ev.els) {
60784             Roo.each(ev.els, function(el) {
60785                 el.un('mouseenter' ,this.onEventEnter, this);
60786                 el.un('mouseleave' ,this.onEventLeave, this);
60787                 el.remove();
60788             },this);
60789             ev.els = [];
60790         }
60791     },
60792     
60793     
60794     renderEvent : function(ev,ctr) {
60795         if (!ctr) {
60796              ctr = this.view.el.select('.fc-event-container',true).first();
60797         }
60798         
60799          
60800         this.clearEvent(ev);
60801             //code
60802        
60803         
60804         
60805         ev.els = [];
60806         var cells = ev.cells;
60807         var rows = ev.rows;
60808         this.fireEvent('eventrender', this, ev);
60809         
60810         for(var i =0; i < rows.length; i++) {
60811             
60812             cls = '';
60813             if (i == 0) {
60814                 cls += ' fc-event-start';
60815             }
60816             if ((i+1) == rows.length) {
60817                 cls += ' fc-event-end';
60818             }
60819             
60820             //Roo.log(ev.data);
60821             // how many rows should it span..
60822             var cg = this.eventTmpl.append(ctr,Roo.apply({
60823                 fccls : cls
60824                 
60825             }, ev.data) , true);
60826             
60827             
60828             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60829             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60830             cg.on('click', this.onEventClick, this, ev);
60831             
60832             ev.els.push(cg);
60833             
60834             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60835             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60836             //Roo.log(cg);
60837              
60838             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60839             cg.setWidth(ebox.right - sbox.x -2);
60840         }
60841     },
60842     
60843     renderEvents: function()
60844     {   
60845         // first make sure there is enough space..
60846         
60847         if (!this.eventTmpl) {
60848             this.eventTmpl = new Roo.Template(
60849                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
60850                     '<div class="fc-event-inner">' +
60851                         '<span class="fc-event-time">{time}</span>' +
60852                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
60853                     '</div>' +
60854                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
60855                 '</div>'
60856             );
60857                 
60858         }
60859                
60860         
60861         
60862         this.cells.each(function(c) {
60863             //Roo.log(c.select('.fc-day-content div',true).first());
60864             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
60865         });
60866         
60867         var ctr = this.view.el.select('.fc-event-container',true).first();
60868         
60869         var cls;
60870         this.eventStore.each(function(ev){
60871             
60872             this.renderEvent(ev);
60873              
60874              
60875         }, this);
60876         this.view.layout();
60877         
60878     },
60879     
60880     onEventEnter: function (e, el,event,d) {
60881         this.fireEvent('evententer', this, el, event);
60882     },
60883     
60884     onEventLeave: function (e, el,event,d) {
60885         this.fireEvent('eventleave', this, el, event);
60886     },
60887     
60888     onEventClick: function (e, el,event,d) {
60889         this.fireEvent('eventclick', this, el, event);
60890     },
60891     
60892     onMonthChange: function () {
60893         this.store.load();
60894     },
60895     
60896     onLoad: function () {
60897         
60898         //Roo.log('calendar onload');
60899 //         
60900         if(this.eventStore.getCount() > 0){
60901             
60902            
60903             
60904             this.eventStore.each(function(d){
60905                 
60906                 
60907                 // FIXME..
60908                 var add =   d.data;
60909                 if (typeof(add.end_dt) == 'undefined')  {
60910                     Roo.log("Missing End time in calendar data: ");
60911                     Roo.log(d);
60912                     return;
60913                 }
60914                 if (typeof(add.start_dt) == 'undefined')  {
60915                     Roo.log("Missing Start time in calendar data: ");
60916                     Roo.log(d);
60917                     return;
60918                 }
60919                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
60920                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
60921                 add.id = add.id || d.id;
60922                 add.title = add.title || '??';
60923                 
60924                 this.addItem(d);
60925                 
60926              
60927             },this);
60928         }
60929         
60930         this.renderEvents();
60931     }
60932     
60933
60934 });
60935 /*
60936  grid : {
60937                 xtype: 'Grid',
60938                 xns: Roo.grid,
60939                 listeners : {
60940                     render : function ()
60941                     {
60942                         _this.grid = this;
60943                         
60944                         if (!this.view.el.hasClass('course-timesheet')) {
60945                             this.view.el.addClass('course-timesheet');
60946                         }
60947                         if (this.tsStyle) {
60948                             this.ds.load({});
60949                             return; 
60950                         }
60951                         Roo.log('width');
60952                         Roo.log(_this.grid.view.el.getWidth());
60953                         
60954                         
60955                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
60956                             '.course-timesheet .x-grid-row' : {
60957                                 height: '80px'
60958                             },
60959                             '.x-grid-row td' : {
60960                                 'vertical-align' : 0
60961                             },
60962                             '.course-edit-link' : {
60963                                 'color' : 'blue',
60964                                 'text-overflow' : 'ellipsis',
60965                                 'overflow' : 'hidden',
60966                                 'white-space' : 'nowrap',
60967                                 'cursor' : 'pointer'
60968                             },
60969                             '.sub-link' : {
60970                                 'color' : 'green'
60971                             },
60972                             '.de-act-sup-link' : {
60973                                 'color' : 'purple',
60974                                 'text-decoration' : 'line-through'
60975                             },
60976                             '.de-act-link' : {
60977                                 'color' : 'red',
60978                                 'text-decoration' : 'line-through'
60979                             },
60980                             '.course-timesheet .course-highlight' : {
60981                                 'border-top-style': 'dashed !important',
60982                                 'border-bottom-bottom': 'dashed !important'
60983                             },
60984                             '.course-timesheet .course-item' : {
60985                                 'font-family'   : 'tahoma, arial, helvetica',
60986                                 'font-size'     : '11px',
60987                                 'overflow'      : 'hidden',
60988                                 'padding-left'  : '10px',
60989                                 'padding-right' : '10px',
60990                                 'padding-top' : '10px' 
60991                             }
60992                             
60993                         }, Roo.id());
60994                                 this.ds.load({});
60995                     }
60996                 },
60997                 autoWidth : true,
60998                 monitorWindowResize : false,
60999                 cellrenderer : function(v,x,r)
61000                 {
61001                     return v;
61002                 },
61003                 sm : {
61004                     xtype: 'CellSelectionModel',
61005                     xns: Roo.grid
61006                 },
61007                 dataSource : {
61008                     xtype: 'Store',
61009                     xns: Roo.data,
61010                     listeners : {
61011                         beforeload : function (_self, options)
61012                         {
61013                             options.params = options.params || {};
61014                             options.params._month = _this.monthField.getValue();
61015                             options.params.limit = 9999;
61016                             options.params['sort'] = 'when_dt';    
61017                             options.params['dir'] = 'ASC';    
61018                             this.proxy.loadResponse = this.loadResponse;
61019                             Roo.log("load?");
61020                             //this.addColumns();
61021                         },
61022                         load : function (_self, records, options)
61023                         {
61024                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61025                                 // if you click on the translation.. you can edit it...
61026                                 var el = Roo.get(this);
61027                                 var id = el.dom.getAttribute('data-id');
61028                                 var d = el.dom.getAttribute('data-date');
61029                                 var t = el.dom.getAttribute('data-time');
61030                                 //var id = this.child('span').dom.textContent;
61031                                 
61032                                 //Roo.log(this);
61033                                 Pman.Dialog.CourseCalendar.show({
61034                                     id : id,
61035                                     when_d : d,
61036                                     when_t : t,
61037                                     productitem_active : id ? 1 : 0
61038                                 }, function() {
61039                                     _this.grid.ds.load({});
61040                                 });
61041                            
61042                            });
61043                            
61044                            _this.panel.fireEvent('resize', [ '', '' ]);
61045                         }
61046                     },
61047                     loadResponse : function(o, success, response){
61048                             // this is overridden on before load..
61049                             
61050                             Roo.log("our code?");       
61051                             //Roo.log(success);
61052                             //Roo.log(response)
61053                             delete this.activeRequest;
61054                             if(!success){
61055                                 this.fireEvent("loadexception", this, o, response);
61056                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61057                                 return;
61058                             }
61059                             var result;
61060                             try {
61061                                 result = o.reader.read(response);
61062                             }catch(e){
61063                                 Roo.log("load exception?");
61064                                 this.fireEvent("loadexception", this, o, response, e);
61065                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61066                                 return;
61067                             }
61068                             Roo.log("ready...");        
61069                             // loop through result.records;
61070                             // and set this.tdate[date] = [] << array of records..
61071                             _this.tdata  = {};
61072                             Roo.each(result.records, function(r){
61073                                 //Roo.log(r.data);
61074                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61075                                     _this.tdata[r.data.when_dt.format('j')] = [];
61076                                 }
61077                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61078                             });
61079                             
61080                             //Roo.log(_this.tdata);
61081                             
61082                             result.records = [];
61083                             result.totalRecords = 6;
61084                     
61085                             // let's generate some duumy records for the rows.
61086                             //var st = _this.dateField.getValue();
61087                             
61088                             // work out monday..
61089                             //st = st.add(Date.DAY, -1 * st.format('w'));
61090                             
61091                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61092                             
61093                             var firstOfMonth = date.getFirstDayOfMonth();
61094                             var days = date.getDaysInMonth();
61095                             var d = 1;
61096                             var firstAdded = false;
61097                             for (var i = 0; i < result.totalRecords ; i++) {
61098                                 //var d= st.add(Date.DAY, i);
61099                                 var row = {};
61100                                 var added = 0;
61101                                 for(var w = 0 ; w < 7 ; w++){
61102                                     if(!firstAdded && firstOfMonth != w){
61103                                         continue;
61104                                     }
61105                                     if(d > days){
61106                                         continue;
61107                                     }
61108                                     firstAdded = true;
61109                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61110                                     row['weekday'+w] = String.format(
61111                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61112                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61113                                                     d,
61114                                                     date.format('Y-m-')+dd
61115                                                 );
61116                                     added++;
61117                                     if(typeof(_this.tdata[d]) != 'undefined'){
61118                                         Roo.each(_this.tdata[d], function(r){
61119                                             var is_sub = '';
61120                                             var deactive = '';
61121                                             var id = r.id;
61122                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61123                                             if(r.parent_id*1>0){
61124                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61125                                                 id = r.parent_id;
61126                                             }
61127                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61128                                                 deactive = 'de-act-link';
61129                                             }
61130                                             
61131                                             row['weekday'+w] += String.format(
61132                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61133                                                     id, //0
61134                                                     r.product_id_name, //1
61135                                                     r.when_dt.format('h:ia'), //2
61136                                                     is_sub, //3
61137                                                     deactive, //4
61138                                                     desc // 5
61139                                             );
61140                                         });
61141                                     }
61142                                     d++;
61143                                 }
61144                                 
61145                                 // only do this if something added..
61146                                 if(added > 0){ 
61147                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61148                                 }
61149                                 
61150                                 
61151                                 // push it twice. (second one with an hour..
61152                                 
61153                             }
61154                             //Roo.log(result);
61155                             this.fireEvent("load", this, o, o.request.arg);
61156                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61157                         },
61158                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61159                     proxy : {
61160                         xtype: 'HttpProxy',
61161                         xns: Roo.data,
61162                         method : 'GET',
61163                         url : baseURL + '/Roo/Shop_course.php'
61164                     },
61165                     reader : {
61166                         xtype: 'JsonReader',
61167                         xns: Roo.data,
61168                         id : 'id',
61169                         fields : [
61170                             {
61171                                 'name': 'id',
61172                                 'type': 'int'
61173                             },
61174                             {
61175                                 'name': 'when_dt',
61176                                 'type': 'string'
61177                             },
61178                             {
61179                                 'name': 'end_dt',
61180                                 'type': 'string'
61181                             },
61182                             {
61183                                 'name': 'parent_id',
61184                                 'type': 'int'
61185                             },
61186                             {
61187                                 'name': 'product_id',
61188                                 'type': 'int'
61189                             },
61190                             {
61191                                 'name': 'productitem_id',
61192                                 'type': 'int'
61193                             },
61194                             {
61195                                 'name': 'guid',
61196                                 'type': 'int'
61197                             }
61198                         ]
61199                     }
61200                 },
61201                 toolbar : {
61202                     xtype: 'Toolbar',
61203                     xns: Roo,
61204                     items : [
61205                         {
61206                             xtype: 'Button',
61207                             xns: Roo.Toolbar,
61208                             listeners : {
61209                                 click : function (_self, e)
61210                                 {
61211                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61212                                     sd.setMonth(sd.getMonth()-1);
61213                                     _this.monthField.setValue(sd.format('Y-m-d'));
61214                                     _this.grid.ds.load({});
61215                                 }
61216                             },
61217                             text : "Back"
61218                         },
61219                         {
61220                             xtype: 'Separator',
61221                             xns: Roo.Toolbar
61222                         },
61223                         {
61224                             xtype: 'MonthField',
61225                             xns: Roo.form,
61226                             listeners : {
61227                                 render : function (_self)
61228                                 {
61229                                     _this.monthField = _self;
61230                                    // _this.monthField.set  today
61231                                 },
61232                                 select : function (combo, date)
61233                                 {
61234                                     _this.grid.ds.load({});
61235                                 }
61236                             },
61237                             value : (function() { return new Date(); })()
61238                         },
61239                         {
61240                             xtype: 'Separator',
61241                             xns: Roo.Toolbar
61242                         },
61243                         {
61244                             xtype: 'TextItem',
61245                             xns: Roo.Toolbar,
61246                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61247                         },
61248                         {
61249                             xtype: 'Fill',
61250                             xns: Roo.Toolbar
61251                         },
61252                         {
61253                             xtype: 'Button',
61254                             xns: Roo.Toolbar,
61255                             listeners : {
61256                                 click : function (_self, e)
61257                                 {
61258                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61259                                     sd.setMonth(sd.getMonth()+1);
61260                                     _this.monthField.setValue(sd.format('Y-m-d'));
61261                                     _this.grid.ds.load({});
61262                                 }
61263                             },
61264                             text : "Next"
61265                         }
61266                     ]
61267                 },
61268                  
61269             }
61270         };
61271         
61272         *//*
61273  * Based on:
61274  * Ext JS Library 1.1.1
61275  * Copyright(c) 2006-2007, Ext JS, LLC.
61276  *
61277  * Originally Released Under LGPL - original licence link has changed is not relivant.
61278  *
61279  * Fork - LGPL
61280  * <script type="text/javascript">
61281  */
61282  
61283 /**
61284  * @class Roo.LoadMask
61285  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61286  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61287  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61288  * element's UpdateManager load indicator and will be destroyed after the initial load.
61289  * @constructor
61290  * Create a new LoadMask
61291  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61292  * @param {Object} config The config object
61293  */
61294 Roo.LoadMask = function(el, config){
61295     this.el = Roo.get(el);
61296     Roo.apply(this, config);
61297     if(this.store){
61298         this.store.on('beforeload', this.onBeforeLoad, this);
61299         this.store.on('load', this.onLoad, this);
61300         this.store.on('loadexception', this.onLoadException, this);
61301         this.removeMask = false;
61302     }else{
61303         var um = this.el.getUpdateManager();
61304         um.showLoadIndicator = false; // disable the default indicator
61305         um.on('beforeupdate', this.onBeforeLoad, this);
61306         um.on('update', this.onLoad, this);
61307         um.on('failure', this.onLoad, this);
61308         this.removeMask = true;
61309     }
61310 };
61311
61312 Roo.LoadMask.prototype = {
61313     /**
61314      * @cfg {Boolean} removeMask
61315      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61316      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61317      */
61318     /**
61319      * @cfg {String} msg
61320      * The text to display in a centered loading message box (defaults to 'Loading...')
61321      */
61322     msg : 'Loading...',
61323     /**
61324      * @cfg {String} msgCls
61325      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61326      */
61327     msgCls : 'x-mask-loading',
61328
61329     /**
61330      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61331      * @type Boolean
61332      */
61333     disabled: false,
61334
61335     /**
61336      * Disables the mask to prevent it from being displayed
61337      */
61338     disable : function(){
61339        this.disabled = true;
61340     },
61341
61342     /**
61343      * Enables the mask so that it can be displayed
61344      */
61345     enable : function(){
61346         this.disabled = false;
61347     },
61348     
61349     onLoadException : function()
61350     {
61351         Roo.log(arguments);
61352         
61353         if (typeof(arguments[3]) != 'undefined') {
61354             Roo.MessageBox.alert("Error loading",arguments[3]);
61355         } 
61356         /*
61357         try {
61358             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61359                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61360             }   
61361         } catch(e) {
61362             
61363         }
61364         */
61365     
61366         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61367     },
61368     // private
61369     onLoad : function()
61370     {
61371         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61372     },
61373
61374     // private
61375     onBeforeLoad : function(){
61376         if(!this.disabled){
61377             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61378         }
61379     },
61380
61381     // private
61382     destroy : function(){
61383         if(this.store){
61384             this.store.un('beforeload', this.onBeforeLoad, this);
61385             this.store.un('load', this.onLoad, this);
61386             this.store.un('loadexception', this.onLoadException, this);
61387         }else{
61388             var um = this.el.getUpdateManager();
61389             um.un('beforeupdate', this.onBeforeLoad, this);
61390             um.un('update', this.onLoad, this);
61391             um.un('failure', this.onLoad, this);
61392         }
61393     }
61394 };/*
61395  * Based on:
61396  * Ext JS Library 1.1.1
61397  * Copyright(c) 2006-2007, Ext JS, LLC.
61398  *
61399  * Originally Released Under LGPL - original licence link has changed is not relivant.
61400  *
61401  * Fork - LGPL
61402  * <script type="text/javascript">
61403  */
61404
61405
61406 /**
61407  * @class Roo.XTemplate
61408  * @extends Roo.Template
61409  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61410 <pre><code>
61411 var t = new Roo.XTemplate(
61412         '&lt;select name="{name}"&gt;',
61413                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61414         '&lt;/select&gt;'
61415 );
61416  
61417 // then append, applying the master template values
61418  </code></pre>
61419  *
61420  * Supported features:
61421  *
61422  *  Tags:
61423
61424 <pre><code>
61425       {a_variable} - output encoded.
61426       {a_variable.format:("Y-m-d")} - call a method on the variable
61427       {a_variable:raw} - unencoded output
61428       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61429       {a_variable:this.method_on_template(...)} - call a method on the template object.
61430  
61431 </code></pre>
61432  *  The tpl tag:
61433 <pre><code>
61434         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61435         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61436         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61437         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61438   
61439         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61440         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61441 </code></pre>
61442  *      
61443  */
61444 Roo.XTemplate = function()
61445 {
61446     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61447     if (this.html) {
61448         this.compile();
61449     }
61450 };
61451
61452
61453 Roo.extend(Roo.XTemplate, Roo.Template, {
61454
61455     /**
61456      * The various sub templates
61457      */
61458     tpls : false,
61459     /**
61460      *
61461      * basic tag replacing syntax
61462      * WORD:WORD()
61463      *
61464      * // you can fake an object call by doing this
61465      *  x.t:(test,tesT) 
61466      * 
61467      */
61468     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61469
61470     /**
61471      * compile the template
61472      *
61473      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61474      *
61475      */
61476     compile: function()
61477     {
61478         var s = this.html;
61479      
61480         s = ['<tpl>', s, '</tpl>'].join('');
61481     
61482         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61483             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61484             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61485             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61486             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61487             m,
61488             id     = 0,
61489             tpls   = [];
61490     
61491         while(true == !!(m = s.match(re))){
61492             var forMatch   = m[0].match(nameRe),
61493                 ifMatch   = m[0].match(ifRe),
61494                 execMatch   = m[0].match(execRe),
61495                 namedMatch   = m[0].match(namedRe),
61496                 
61497                 exp  = null, 
61498                 fn   = null,
61499                 exec = null,
61500                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61501                 
61502             if (ifMatch) {
61503                 // if - puts fn into test..
61504                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61505                 if(exp){
61506                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61507                 }
61508             }
61509             
61510             if (execMatch) {
61511                 // exec - calls a function... returns empty if true is  returned.
61512                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61513                 if(exp){
61514                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61515                 }
61516             }
61517             
61518             
61519             if (name) {
61520                 // for = 
61521                 switch(name){
61522                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61523                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61524                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61525                 }
61526             }
61527             var uid = namedMatch ? namedMatch[1] : id;
61528             
61529             
61530             tpls.push({
61531                 id:     namedMatch ? namedMatch[1] : id,
61532                 target: name,
61533                 exec:   exec,
61534                 test:   fn,
61535                 body:   m[1] || ''
61536             });
61537             if (namedMatch) {
61538                 s = s.replace(m[0], '');
61539             } else { 
61540                 s = s.replace(m[0], '{xtpl'+ id + '}');
61541             }
61542             ++id;
61543         }
61544         this.tpls = [];
61545         for(var i = tpls.length-1; i >= 0; --i){
61546             this.compileTpl(tpls[i]);
61547             this.tpls[tpls[i].id] = tpls[i];
61548         }
61549         this.master = tpls[tpls.length-1];
61550         return this;
61551     },
61552     /**
61553      * same as applyTemplate, except it's done to one of the subTemplates
61554      * when using named templates, you can do:
61555      *
61556      * var str = pl.applySubTemplate('your-name', values);
61557      *
61558      * 
61559      * @param {Number} id of the template
61560      * @param {Object} values to apply to template
61561      * @param {Object} parent (normaly the instance of this object)
61562      */
61563     applySubTemplate : function(id, values, parent)
61564     {
61565         
61566         
61567         var t = this.tpls[id];
61568         
61569         
61570         try { 
61571             if(t.test && !t.test.call(this, values, parent)){
61572                 return '';
61573             }
61574         } catch(e) {
61575             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61576             Roo.log(e.toString());
61577             Roo.log(t.test);
61578             return ''
61579         }
61580         try { 
61581             
61582             if(t.exec && t.exec.call(this, values, parent)){
61583                 return '';
61584             }
61585         } catch(e) {
61586             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61587             Roo.log(e.toString());
61588             Roo.log(t.exec);
61589             return ''
61590         }
61591         try {
61592             var vs = t.target ? t.target.call(this, values, parent) : values;
61593             parent = t.target ? values : parent;
61594             if(t.target && vs instanceof Array){
61595                 var buf = [];
61596                 for(var i = 0, len = vs.length; i < len; i++){
61597                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61598                 }
61599                 return buf.join('');
61600             }
61601             return t.compiled.call(this, vs, parent);
61602         } catch (e) {
61603             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61604             Roo.log(e.toString());
61605             Roo.log(t.compiled);
61606             return '';
61607         }
61608     },
61609
61610     compileTpl : function(tpl)
61611     {
61612         var fm = Roo.util.Format;
61613         var useF = this.disableFormats !== true;
61614         var sep = Roo.isGecko ? "+" : ",";
61615         var undef = function(str) {
61616             Roo.log("Property not found :"  + str);
61617             return '';
61618         };
61619         
61620         var fn = function(m, name, format, args)
61621         {
61622             //Roo.log(arguments);
61623             args = args ? args.replace(/\\'/g,"'") : args;
61624             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61625             if (typeof(format) == 'undefined') {
61626                 format= 'htmlEncode';
61627             }
61628             if (format == 'raw' ) {
61629                 format = false;
61630             }
61631             
61632             if(name.substr(0, 4) == 'xtpl'){
61633                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61634             }
61635             
61636             // build an array of options to determine if value is undefined..
61637             
61638             // basically get 'xxxx.yyyy' then do
61639             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61640             //    (function () { Roo.log("Property not found"); return ''; })() :
61641             //    ......
61642             
61643             var udef_ar = [];
61644             var lookfor = '';
61645             Roo.each(name.split('.'), function(st) {
61646                 lookfor += (lookfor.length ? '.': '') + st;
61647                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61648             });
61649             
61650             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61651             
61652             
61653             if(format && useF){
61654                 
61655                 args = args ? ',' + args : "";
61656                  
61657                 if(format.substr(0, 5) != "this."){
61658                     format = "fm." + format + '(';
61659                 }else{
61660                     format = 'this.call("'+ format.substr(5) + '", ';
61661                     args = ", values";
61662                 }
61663                 
61664                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61665             }
61666              
61667             if (args.length) {
61668                 // called with xxyx.yuu:(test,test)
61669                 // change to ()
61670                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61671             }
61672             // raw.. - :raw modifier..
61673             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61674             
61675         };
61676         var body;
61677         // branched to use + in gecko and [].join() in others
61678         if(Roo.isGecko){
61679             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61680                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61681                     "';};};";
61682         }else{
61683             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61684             body.push(tpl.body.replace(/(\r\n|\n)/g,
61685                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61686             body.push("'].join('');};};");
61687             body = body.join('');
61688         }
61689         
61690         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61691        
61692         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61693         eval(body);
61694         
61695         return this;
61696     },
61697
61698     applyTemplate : function(values){
61699         return this.master.compiled.call(this, values, {});
61700         //var s = this.subs;
61701     },
61702
61703     apply : function(){
61704         return this.applyTemplate.apply(this, arguments);
61705     }
61706
61707  });
61708
61709 Roo.XTemplate.from = function(el){
61710     el = Roo.getDom(el);
61711     return new Roo.XTemplate(el.value || el.innerHTML);
61712 };